diff --git a/LICENSE b/LICENSE index cf79dd8..c35cc73 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019 - 2022 Bartosz Jablonski +Copyright (c) 2019 - 2022 Bartosz Jablonski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 68c572f..0b50411 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ In this repository we are presenting the **SAS Packages Framework** which allows ### Current version: -**The latest version** of SPF is **`20221121`**. +**The latest version** of SPF is **`20221125`**. To get started with SAS Packages try this [**`Getting Started with SAS Packages`**](https://github.com/yabwon/SAS_PACKAGES/blob/main/SPF/Documentation/Getting_Started_with_SAS_Packages.pdf "Getting Started with SAS Packages") presentation (see the `./SPF/Documentation` directory). @@ -170,13 +170,13 @@ If you find the SPF useful **share info** about it or **give it a [star](https:/ Packages: -- **SQLinDS**\[2.2.2\], based on Mike Rhoads' article *Use the Full Power of SAS in Your Function-Style Macros*. The package allows to write SQL queries in the data step, e.g. +- **SQLinDS**\[2.2.3\], based on Mike Rhoads' article *Use the Full Power of SAS in Your Function-Style Macros*. The package allows to write SQL queries in the data step, e.g. ```sas data class; set %SQL(select * from sashelp.class order by age); run; ``` -SHA256 digest for SQLinDS: 085F0B8BD4A59343E2913FF9635EA6E551ADD54E9678C35F5096D4A0A895B9C5 +SHA256 digest for SQLinDS: D5A66E60602270E5FB1E592FA3E0C2F2C640BC077FE799A2223CB9BA275F6F47 [Documentation for SQLinDS](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/sqlinds.md "Documentation for SQLinDS") @@ -186,13 +186,13 @@ SHA256 digest for MacroCore: A23C29529F3CE7D0C8BEE9545C5D22D5B5594907547374A5135 [Documentation for MacroCore](https://core.sasjs.io "Documentation for MacroCore") -- **DFA** (Dynamic Function Arrays)\[0.5.2\], contains set of macros and FCMP functions which implement: a dynamically allocated array, a stack, a fifo queue, an ordered stack, and a priority queue, run `%helpPackage(DFA,createDFArray)` to find examples. +- **DFA** (Dynamic Function Arrays)\[0.5.3\], contains set of macros and FCMP functions which implement: a dynamically allocated array, a stack, a fifo queue, an ordered stack, and a priority queue, run `%helpPackage(DFA,createDFArray)` to find examples. -SHA256 digest for DFA: 3F618EDAC8B4F4BE6C19D606E6BCC58121A16BA1383D2EE64C680B4B7FA9C96A +SHA256 digest for DFA: 7520CF21CBF1FD4AD2BC05C5DD343E508FCEA507575EBC060B4AD322FB80AB04 [Documentation for DFA](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/dfa.md "Documentation for DFA") -- **macroArray**\[1.0.2\], implementation of an array concept in a macrolanguage, e.g. +- **macroArray**\[1.0.3\], implementation of an array concept in a macrolanguage, e.g. ```sas %array(ABC[17] (111:127), macarray=Y); @@ -211,12 +211,12 @@ SHA256 digest for DFA: 3F618EDAC8B4F4BE6C19D606E6BCC58121A16BA1383D2EE64C680B4B7 which = 1:H:2 ); ``` -SHA256 digest for macroArray: DA57FFE85F49201FD61A53411D19E97FB5A6AC3C34E34FDF4B913545699551FF +SHA256 digest for macroArray: 440920272D1838505EA5C033B1C448C612DE2FCCFD57F157BB90ED980E4001CC [Documentation for macroArray](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/macroarray.md "Documentation for macroArray") -- **BasePlus**\[1.17.2\] adds a bunch of functionalities I am missing in BASE SAS, such as: +- **BasePlus**\[1.17.3\] adds a bunch of functionalities I am missing in BASE SAS, such as: ```sas call arrMissToRight(myArray); call arrFillMiss(17, myArray); @@ -234,21 +234,21 @@ format x bool.; %zipLibrary(sashelp,libOut=work) ``` -SHA256 digest for BasePlus: EBA9EDB3D50D854288970CC0E965DA6AD5B057F6E6433EEBEC4A02B9A25CF6E2 +SHA256 digest for BasePlus: D8DBB7CC5952331FA59FEBBBDD15BC543FE3C89A8BA9150FE6AF5E412868EBE7 [Documentation for BasePlus](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/baseplus.md "Documentation for BasePlus") -- **GSM** (Generate Secure Macros)\[0.20.2\], package allows +- **GSM** (Generate Secure Macros)\[0.20.3\], package allows to create secured macros stored in SAS Proc FCMP functions. The dataset with functions can be shared between different operating systems and allows to generate macros on site without showing their code. -SHA256 digest for GSM: E47C94B536B661DEE390F5C3EA1684DD1A246106F4FBBDAFA57F5E34D4BB16D5 +SHA256 digest for GSM: 50D8340E080BEA459E68BE315146AD3B809930DB8DC7B23C7A492C3815ACD83F [Documentation for GSM](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/gsm.md "Documentation for GSM") -- **dynMacroArray**\[0.2.2\], set of macros (wrappers for a hash table) emulating dynamic array in the data step (macro predecessor of DFA). Development of this package is currently on hold. +- **dynMacroArray**\[0.2.3\], set of macros (wrappers for a hash table) emulating dynamic array in the data step (macro predecessor of DFA). Development of this package is currently on hold. -SHA256 digest for dynMacroArray: DD0BF1768DA05EBB5F8C6E7409A0929E28DF11CB499F75B433D9648855AACAE4 +SHA256 digest for dynMacroArray: 440920272D1838505EA5C033B1C448C612DE2FCCFD57F157BB90ED980E4001CC ### ====== diff --git a/SPF/Documentation/SAS(r) packages - the way to share (a how to)- Paper 4725-2020 - extended.pdf b/SPF/Documentation/SAS(r) packages - the way to share (a how to)- Paper 4725-2020 - extended.pdf index 3fd49e2..46081f1 100644 Binary files a/SPF/Documentation/SAS(r) packages - the way to share (a how to)- Paper 4725-2020 - extended.pdf and b/SPF/Documentation/SAS(r) packages - the way to share (a how to)- Paper 4725-2020 - extended.pdf differ diff --git a/SPF/Macros/extendpackagesfileref.sas b/SPF/Macros/extendpackagesfileref.sas index 94b0d22..5230a8c 100644 --- a/SPF/Macros/extendpackagesfileref.sas +++ b/SPF/Macros/extendpackagesfileref.sas @@ -6,7 +6,7 @@ when empty the "packages" value is used */ )/secure /*** HELP END ***/ -des = 'Macro to list directories pointed by "packages" fileref, version 20221121. Run %extendPackagesFileref(HELP) for help info.' +des = 'Macro to list directories pointed by "packages" fileref, version 20221125. Run %extendPackagesFileref(HELP) for help info.' ; %if %QUPCASE(&packages.) = HELP %then @@ -22,7 +22,7 @@ des = 'Macro to list directories pointed by "packages" fileref, version 20221121 %put ### This is short help information for the `extendPackagesFileref` macro #; %put #-----------------------------------------------------------------------------------------#;; %put # #; - %put # Macro to list directories pointed by 'packages' fileref, version `20221121` #; + %put # Macro to list directories pointed by 'packages' fileref, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; diff --git a/SPF/Macros/generatepackage.sas b/SPF/Macros/generatepackage.sas index 7c467ea..3599e9c 100644 --- a/SPF/Macros/generatepackage.sas +++ b/SPF/Macros/generatepackage.sas @@ -23,7 +23,7 @@ default value 1 means "delete tests work" */ )/ secure minoperator /*** HELP END ***/ -des = 'Macro to generate SAS packages, version 20221121. Run %generatePackage() for help info.' +des = 'Macro to generate SAS packages, version 20221125. Run %generatePackage() for help info.' ; %if (%superq(filesLocation) = ) OR (%qupcase(&filesLocation.) = HELP) %then %do; @@ -38,7 +38,7 @@ des = 'Macro to generate SAS packages, version 20221121. Run %generatePackage() %put ### This is short help information for the `generatePackage` macro #; %put #-------------------------------------------------------------------------------#; %put # #; - %put # Macro to generate SAS packages, version `20221121` #; + %put # Macro to generate SAS packages, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; @@ -898,11 +898,16 @@ data _null_; put ' %put NOTE- ;'; put ' %put NOTE- *** START ***; ' /; - put '%if NOT (%str(*)=%superq(cherryPick)) %then %do; '; /* Cherry Pick test0 start */ - put ' %put NOTE- ;' / - ' %put NOTE- *** Cherry Picking in action. ***; ' / - ' %put NOTE- ;' ; - put '%end; '; /* Cherry Pick test0 end */ + put 'data _null_; '; + put ' if NOT ("*"=symget("cherryPick")) then do; '; /* Cherry Pick test0 start */ + put ' put "NOTE- "; ' / + ' put "NOTE: *** Cherry Picking ***"; ' / + ' put "NOTE- Cherry Picking in action!! Be advised that"; ' / + ' put "NOTE- dependencies/required packages will not be loaded!"; ' / + ' put "NOTE- "; ' ; + put ' end; ' ; /* Cherry Pick test0 end */ + put 'run; '; + put '%include ' " &_PackageFileref_.(packagemetadata.sas) / nosource2; " /; /* <- copied also to loadPackage macro */ @@ -987,9 +992,9 @@ data _null_; length packageReqPackages $ 32767; packageReqPackages = lowcase(symget('packageReqPackages')); - put '%if (%str(*)=%superq(cherryPick)) %then %do; /* test for Cherry Picking */ '; /* try to load required packages */ put 'data _null_ ; '; + put ' if "*" NE symget("cherryPick") then do; put "NOTE: No required packages loading."; stop; end; '; put ' length req name $ 64 vers verR $ 24 versN verRN 8 SYSloadedPackages $ 32767; '; put ' if SYMEXIST("SYSloadedPackages") = 1 and SYMGLOBL("SYSloadedPackages") = 1 then '; put ' do; '; @@ -1043,7 +1048,8 @@ data _null_; /* test if required packages are loaded */ put 'data _null_ ; '; - put ' length req name $ 64 vers verR $ 24 versN verRN 8 SYSloadedPackages $ 32767; '; + put ' if "*" NE symget("cherryPick") then do; put "NOTE: No required packages checking."; stop; end; '; + put ' length req name $ 64 vers verR $ 24 versN verRN 8 SYSloadedPackages $ 32767; '; put ' if SYMEXIST("SYSloadedPackages") = 1 and SYMGLOBL("SYSloadedPackages") = 1 then '; put ' do; '; put ' do until(EOF); '; @@ -1101,13 +1107,6 @@ data _null_; put ' end; '; put ' stop; '; put 'run; '; - put '%end; '; - put '%else %do; '; - put ' %put NOTE- ; '; - put ' %put NOTE- Cherry Picking in action!! Be advised that; '; - put ' %put NOTE- dependencies/required packages will not be loaded!; '; - put '%end; '; - %end; %if (%superq(packageRequired) ne ) @@ -1859,7 +1858,7 @@ data _null_; put ' end ; '; %end; - put 'put "***"; put "* SAS package generated by generatePackage, version 20221121 *"; put "***";'; + put 'put "***"; put "* SAS package generated by generatePackage, version 20221125 *"; put "***";'; put 'run; ' /; diff --git a/SPF/Macros/helppackage.sas b/SPF/Macros/helppackage.sas index 40d0588..3c4729f 100644 --- a/SPF/Macros/helppackage.sas +++ b/SPF/Macros/helppackage.sas @@ -24,7 +24,7 @@ */ )/secure /*** HELP END ***/ -des = 'Macro to get help about SAS package, version 20221121. Run %helpPackage() for help info.' +des = 'Macro to get help about SAS package, version 20221125. Run %helpPackage() for help info.' ; %if (%superq(packageName) = ) OR (%qupcase(&packageName.) = HELP) %then %do; @@ -39,7 +39,7 @@ des = 'Macro to get help about SAS package, version 20221121. Run %helpPackage() %put ### This is short help information for the `helpPackage` macro #; %put #-------------------------------------------------------------------------------#; %put # #; - %put # Macro to get help about SAS packages, version `20221121` #; + %put # Macro to get help about SAS packages, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; @@ -169,7 +169,7 @@ TODO: - add MD5(&packageName.) value hash instead "package" word in filenames [DONE] */ -/* Macros to install SAS packages, version 20221121 */ +/* Macros to install SAS packages, version 20221125 */ /* A SAS package is a zip file containing a group of files with SAS code (macros, functions, data steps generating data, etc.) wrapped up together and %INCLUDEed by diff --git a/SPF/Macros/installpackage.sas b/SPF/Macros/installpackage.sas index d9c38e1..3d055e0 100644 --- a/SPF/Macros/installpackage.sas +++ b/SPF/Macros/installpackage.sas @@ -14,7 +14,7 @@ /secure minoperator /*** HELP END ***/ -des = 'Macro to install SAS package, version 20221121. Run %%installPackage() for help info.' +des = 'Macro to install SAS package, version 20221125. Run %%installPackage() for help info.' ; %if (%superq(packagesNames) = ) OR (%qupcase(&packagesNames.) = HELP) %then %do; @@ -29,7 +29,7 @@ des = 'Macro to install SAS package, version 20221121. Run %%installPackage() fo %put ### This is short help information for the `installPackage` macro #; %put #--------------------------------------------------------------------------------------------#;; %put # #; - %put # Macro to install SAS packages, version `20221121` #; + %put # Macro to install SAS packages, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; @@ -458,7 +458,7 @@ des = 'Macro to install SAS package, version 20221121. Run %%installPackage() fo /* Macro to list SAS packages in packages folder. - Version 20221121 + Version 20221125 A SAS package is a zip file containing a group of SAS codes (macros, functions, data steps generating diff --git a/SPF/Macros/listpackages.sas b/SPF/Macros/listpackages.sas index 5b2650e..d47ea2e 100644 --- a/SPF/Macros/listpackages.sas +++ b/SPF/Macros/listpackages.sas @@ -1,7 +1,7 @@ /*+listPackages+*/ %macro listPackages()/secure PARMBUFF -des = 'Macro to list SAS packages from `packages` fileref, type %listPackages(HELP) for help, version 20221121.' +des = 'Macro to list SAS packages from `packages` fileref, type %listPackages(HELP) for help, version 20221125.' ; %if %QUPCASE(&SYSPBUFF.) = %str(%(HELP%)) %then %do; @@ -16,7 +16,7 @@ des = 'Macro to list SAS packages from `packages` fileref, type %listPackages(HE %put ### This is short help information for the `listPackages` macro #; %put #-----------------------------------------------------------------------------------------#;; %put # #; - %put # Macro to list available SAS packages, version `20221121` #; + %put # Macro to list available SAS packages, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; @@ -166,7 +166,7 @@ options ls = &ls_tmp. ps = &ps_tmp. ¬es_tmp. &source_tmp.; /* Macro to generate SAS packages. - Version 20221121 + Version 20221125 A SAS package is a zip file containing a group of SAS codes (macros, functions, data steps generating diff --git a/SPF/Macros/loadpackage.sas b/SPF/Macros/loadpackage.sas index 9f525d2..f79dc88 100644 --- a/SPF/Macros/loadpackage.sas +++ b/SPF/Macros/loadpackage.sas @@ -31,7 +31,7 @@ */ )/secure /*** HELP END ***/ -des = 'Macro to load SAS package, version 20221121. Run %loadPackage() for help info.' +des = 'Macro to load SAS package, version 20221125. Run %loadPackage() for help info.' minoperator ; %if (%superq(packageName) = ) OR (%qupcase(&packageName.) = HELP) %then @@ -47,7 +47,7 @@ minoperator %put ### This is short help information for the `loadPackage` macro #; %put #-------------------------------------------------------------------------------#; %put # #; - %put # Macro to *load* SAS packages, version `20221121` #; + %put # Macro to *load* SAS packages, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; diff --git a/SPF/Macros/loadpackages.sas b/SPF/Macros/loadpackages.sas index 4caf1a2..b7a1c6c 100644 --- a/SPF/Macros/loadpackages.sas +++ b/SPF/Macros/loadpackages.sas @@ -11,7 +11,7 @@ */ )/secure /*** HELP END ***/ -des = 'Macro to load multiple SAS packages at one run, version 20221121. Run %loadPackages() for help info.' +des = 'Macro to load multiple SAS packages at one run, version 20221125. Run %loadPackages() for help info.' parmbuff ; %if (%superq(packagesNames) = ) OR (%qupcase(&packagesNames.) = HELP) %then @@ -27,7 +27,7 @@ parmbuff %put ### This is short help information for the `loadPackageS` macro #; %put #-------------------------------------------------------------------------------#; %put # #; - %put # Macro wrapper for the loadPackage macro, version `20221121` #; + %put # Macro wrapper for the loadPackage macro, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; diff --git a/SPF/Macros/previewpackage.sas b/SPF/Macros/previewpackage.sas index fbba1f9..c86da50 100644 --- a/SPF/Macros/previewpackage.sas +++ b/SPF/Macros/previewpackage.sas @@ -23,7 +23,7 @@ */ )/secure /*** HELP END ***/ -des = 'Macro to preview content of a SAS package, version 20221121. Run %previewPackage() for help info.' +des = 'Macro to preview content of a SAS package, version 20221125. Run %previewPackage() for help info.' ; %if (%superq(packageName) = ) OR (%qupcase(&packageName.) = HELP) %then %do; @@ -38,7 +38,7 @@ des = 'Macro to preview content of a SAS package, version 20221121. Run %preview %put ### This is short help information for the `previewPackage` macro #; %put #-------------------------------------------------------------------------------#; %put # #; - %put # Macro to get previwe of a SAS packages, version `20221121` #; + %put # Macro to get previwe of a SAS packages, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; diff --git a/SPF/Macros/unloadpackage.sas b/SPF/Macros/unloadpackage.sas index 820d38c..d25a1c8 100644 --- a/SPF/Macros/unloadpackage.sas +++ b/SPF/Macros/unloadpackage.sas @@ -20,7 +20,7 @@ */ )/secure /*** HELP END ***/ -des = 'Macro to unload SAS package, version 20221121. Run %unloadPackage() for help info.' +des = 'Macro to unload SAS package, version 20221125. Run %unloadPackage() for help info.' ; %if (%superq(packageName) = ) OR (%qupcase(&packageName.) = HELP) %then %do; @@ -35,7 +35,7 @@ des = 'Macro to unload SAS package, version 20221121. Run %unloadPackage() for h %put ### This is short help information for the `unloadPackage` macro #; %put #-------------------------------------------------------------------------------#; %put # #; - %put # Macro to unload SAS packages, version `20221121` #; + %put # Macro to unload SAS packages, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; diff --git a/SPF/Macros/verifypackage.sas b/SPF/Macros/verifypackage.sas index 92df9a7..10833a8 100644 --- a/SPF/Macros/verifypackage.sas +++ b/SPF/Macros/verifypackage.sas @@ -13,7 +13,7 @@ hashing_file() function, SAS 9.4M6 */ )/secure /*** HELP END ***/ -des = 'Macro to verify SAS package with the hash digest, version 20221121. Run %verifyPackage() for help info.' +des = 'Macro to verify SAS package with the hash digest, version 20221125. Run %verifyPackage() for help info.' ; %if (%superq(packageName) = ) OR (%qupcase(&packageName.) = HELP) %then %do; @@ -28,7 +28,7 @@ des = 'Macro to verify SAS package with the hash digest, version 20221121. Run % %put ### This is short help information for the `verifyPackage` macro #; %put #-------------------------------------------------------------------------------#; %put # #; - %put # Macro to verify SAS package with it hash digest, version `20221121` #; + %put # Macro to verify SAS package with it hash digest, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; diff --git a/SPF/SPFinit.md b/SPF/SPFinit.md index 3c89cc0..eb687c6 100644 --- a/SPF/SPFinit.md +++ b/SPF/SPFinit.md @@ -21,7 +21,7 @@ A **SAS package** is an automatically generated, single, stand alone *zip* file The *purpose of a package* is to be a simple, and easy to access, code sharing medium, which will allow: on the one hand, to separate the code complex dependencies created by the developer from the user experience with the final product and, on the other hand, reduce developer's and user's unnecessary frustration related to a remote deployment process. -In this repository we are presenting the **SAS Packages Framework** which allows to develop and use SAS packages. The latest version of SPF is **`20221121`**. +In this repository we are presenting the **SAS Packages Framework** which allows to develop and use SAS packages. The latest version of SPF is **`20221125`**. **To get started with SAS Packages** try this [**`Getting Started with SAS Packages`**](https://github.com/yabwon/SAS_PACKAGES/blob/main/SPF/Documentation/Getting_Started_with_SAS_Packages.pdf "Getting Started with SAS Packages") presentation (see the `./SPF/Documentation` directory). @@ -39,7 +39,7 @@ After assigning the directory do not change them when using the SPF since it may ## This is short help information for the `installPackage` macro -------------------------------------------------------------------------------------------- - Macro to install SAS packages, version `20221121` + Macro to install SAS packages, version `20221125` A SAS package is a zip file containing a group of SAS codes (macros, functions, data steps generating @@ -141,7 +141,7 @@ filename packages "C:/SAS_PACKAGES"; ## This is short help information for the `helpPackage` macro ------------------------------------------------------------------------------- - Macro to get help about SAS packages, version `20221121` + Macro to get help about SAS packages, version `20221125` A SAS package is a zip file containing a group of SAS codes (macros, functions, data steps generating @@ -211,7 +211,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages; ## This is short help information for the `loadPackage` macro ------------------------------------------------------------------------------- - Macro to *load* SAS packages, version `20221121` + Macro to *load* SAS packages, version `20221125` A SAS package is a zip file containing a group of SAS codes (macros, functions, data steps generating @@ -308,7 +308,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages; ## This is short help information for the `loadPackageS` macro ------------------------------------------------------------------------------- - Macro wrapper for the loadPackage macro, version `20221121` + Macro wrapper for the loadPackage macro, version `20221125` A SAS package is a zip file containing a group of SAS codes (macros, functions, data steps generating @@ -357,7 +357,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages; ## This is short help information for the `unloadPackage` macro ------------------------------------------------------------------------------- - Macro to unload SAS packages, version `20221121` + Macro to unload SAS packages, version `20221125` A SAS package is a zip file containing a group of SAS codes (macros, functions, data steps generating @@ -422,7 +422,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages; ## This is short help information for the `listPackages` macro ----------------------------------------------------------------------------------------- - Macro to list available SAS packages, version `20221121` + Macro to list available SAS packages, version `20221125` A SAS package is a zip file containing a group of SAS codes (macros, functions, data steps generating @@ -463,7 +463,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages; ## This is short help information for the `verifyPackage` macro ------------------------------------------------------------------------------- - Macro to verify SAS package with it hash digest, version `20221121` + Macro to verify SAS package with it hash digest, version `20221125` A SAS package is a zip file containing a group of SAS codes (macros, functions, data steps generating @@ -517,7 +517,7 @@ filename packages "C:/SAS_PACKAGES"; %* set-up a directory for packages; ## This is short help information for the `previewPackage` macro ------------------------------------------------------------------------------- - Macro to get previwe of a SAS packages, version `20221121` + Macro to get previwe of a SAS packages, version `20221125` A SAS package is a zip file containing a group of SAS codes (macros, functions, data steps generating @@ -584,7 +584,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages; ## This is short help information for the `generatePackage` macro ------------------------------------------------------------------------------- - Macro to generate SAS packages, version `20221121` + Macro to generate SAS packages, version `20221125` A SAS package is a zip file containing a group of SAS codes (macros, functions, data steps generating @@ -768,7 +768,7 @@ All files have to have `.sas` extension. Other files are ignored. ## This is short help information for the `extendPackagesFileref` macro ----------------------------------------------------------------------------------------- - Macro to list directories pointed by 'packages' fileref, version `20221121` + Macro to list directories pointed by 'packages' fileref, version `20221125` A SAS package is a zip file containing a group of SAS codes (macros, functions, data steps generating diff --git a/SPF/SPFinit.sas b/SPF/SPFinit.sas index 5c64833..1d30297 100644 --- a/SPF/SPFinit.sas +++ b/SPF/SPFinit.sas @@ -42,7 +42,7 @@ - to unload, or - to generate SAS packages. - Version 20221121. + Version 20221125. See examples below. A SAS package is a zip file containing a group of files @@ -86,7 +86,7 @@ */ )/secure /*** HELP END ***/ -des = 'Macro to load SAS package, version 20221121. Run %loadPackage() for help info.' +des = 'Macro to load SAS package, version 20221125. Run %loadPackage() for help info.' minoperator ; %if (%superq(packageName) = ) OR (%qupcase(&packageName.) = HELP) %then @@ -102,7 +102,7 @@ minoperator %put ### This is short help information for the `loadPackage` macro #; %put #-------------------------------------------------------------------------------#; %put # #; - %put # Macro to *load* SAS packages, version `20221121` #; + %put # Macro to *load* SAS packages, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; @@ -329,7 +329,7 @@ minoperator */ )/secure /*** HELP END ***/ -des = 'Macro to unload SAS package, version 20221121. Run %unloadPackage() for help info.' +des = 'Macro to unload SAS package, version 20221125. Run %unloadPackage() for help info.' ; %if (%superq(packageName) = ) OR (%qupcase(&packageName.) = HELP) %then %do; @@ -344,7 +344,7 @@ des = 'Macro to unload SAS package, version 20221121. Run %unloadPackage() for h %put ### This is short help information for the `unloadPackage` macro #; %put #-------------------------------------------------------------------------------#; %put # #; - %put # Macro to unload SAS packages, version `20221121` #; + %put # Macro to unload SAS packages, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; @@ -489,7 +489,7 @@ des = 'Macro to unload SAS package, version 20221121. Run %unloadPackage() for h */ )/secure /*** HELP END ***/ -des = 'Macro to get help about SAS package, version 20221121. Run %helpPackage() for help info.' +des = 'Macro to get help about SAS package, version 20221125. Run %helpPackage() for help info.' ; %if (%superq(packageName) = ) OR (%qupcase(&packageName.) = HELP) %then %do; @@ -504,7 +504,7 @@ des = 'Macro to get help about SAS package, version 20221121. Run %helpPackage() %put ### This is short help information for the `helpPackage` macro #; %put #-------------------------------------------------------------------------------#; %put # #; - %put # Macro to get help about SAS packages, version `20221121` #; + %put # Macro to get help about SAS packages, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; @@ -634,7 +634,7 @@ TODO: - add MD5(&packageName.) value hash instead "package" word in filenames [DONE] */ -/* Macros to install SAS packages, version 20221121 */ +/* Macros to install SAS packages, version 20221125 */ /* A SAS package is a zip file containing a group of files with SAS code (macros, functions, data steps generating data, etc.) wrapped up together and %INCLUDEed by @@ -657,7 +657,7 @@ TODO: /secure minoperator /*** HELP END ***/ -des = 'Macro to install SAS package, version 20221121. Run %%installPackage() for help info.' +des = 'Macro to install SAS package, version 20221125. Run %%installPackage() for help info.' ; %if (%superq(packagesNames) = ) OR (%qupcase(&packagesNames.) = HELP) %then %do; @@ -672,7 +672,7 @@ des = 'Macro to install SAS package, version 20221121. Run %%installPackage() fo %put ### This is short help information for the `installPackage` macro #; %put #--------------------------------------------------------------------------------------------#;; %put # #; - %put # Macro to install SAS packages, version `20221121` #; + %put # Macro to install SAS packages, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; @@ -1101,7 +1101,7 @@ des = 'Macro to install SAS package, version 20221121. Run %%installPackage() fo /* Macro to list SAS packages in packages folder. - Version 20221121 + Version 20221125 A SAS package is a zip file containing a group of SAS codes (macros, functions, data steps generating @@ -1122,7 +1122,7 @@ des = 'Macro to install SAS package, version 20221121. Run %%installPackage() fo /*+listPackages+*/ %macro listPackages()/secure PARMBUFF -des = 'Macro to list SAS packages from `packages` fileref, type %listPackages(HELP) for help, version 20221121.' +des = 'Macro to list SAS packages from `packages` fileref, type %listPackages(HELP) for help, version 20221125.' ; %if %QUPCASE(&SYSPBUFF.) = %str(%(HELP%)) %then %do; @@ -1137,7 +1137,7 @@ des = 'Macro to list SAS packages from `packages` fileref, type %listPackages(HE %put ### This is short help information for the `listPackages` macro #; %put #-----------------------------------------------------------------------------------------#;; %put # #; - %put # Macro to list available SAS packages, version `20221121` #; + %put # Macro to list available SAS packages, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; @@ -1287,7 +1287,7 @@ options ls = &ls_tmp. ps = &ps_tmp. ¬es_tmp. &source_tmp.; /* Macro to generate SAS packages. - Version 20221121 + Version 20221125 A SAS package is a zip file containing a group of SAS codes (macros, functions, data steps generating @@ -1324,7 +1324,7 @@ options ls = &ls_tmp. ps = &ps_tmp. ¬es_tmp. &source_tmp.; default value 1 means "delete tests work" */ )/ secure minoperator /*** HELP END ***/ -des = 'Macro to generate SAS packages, version 20221121. Run %generatePackage() for help info.' +des = 'Macro to generate SAS packages, version 20221125. Run %generatePackage() for help info.' ; %if (%superq(filesLocation) = ) OR (%qupcase(&filesLocation.) = HELP) %then %do; @@ -1339,7 +1339,7 @@ des = 'Macro to generate SAS packages, version 20221121. Run %generatePackage() %put ### This is short help information for the `generatePackage` macro #; %put #-------------------------------------------------------------------------------#; %put # #; - %put # Macro to generate SAS packages, version `20221121` #; + %put # Macro to generate SAS packages, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; @@ -2199,11 +2199,16 @@ data _null_; put ' %put NOTE- ;'; put ' %put NOTE- *** START ***; ' /; - put '%if NOT (%str(*)=%superq(cherryPick)) %then %do; '; /* Cherry Pick test0 start */ - put ' %put NOTE- ;' / - ' %put NOTE- *** Cherry Picking in action. ***; ' / - ' %put NOTE- ;' ; - put '%end; '; /* Cherry Pick test0 end */ + put 'data _null_; '; + put ' if NOT ("*"=symget("cherryPick")) then do; '; /* Cherry Pick test0 start */ + put ' put "NOTE- "; ' / + ' put "NOTE: *** Cherry Picking ***"; ' / + ' put "NOTE- Cherry Picking in action!! Be advised that"; ' / + ' put "NOTE- dependencies/required packages will not be loaded!"; ' / + ' put "NOTE- "; ' ; + put ' end; ' ; /* Cherry Pick test0 end */ + put 'run; '; + put '%include ' " &_PackageFileref_.(packagemetadata.sas) / nosource2; " /; /* <- copied also to loadPackage macro */ @@ -2288,9 +2293,9 @@ data _null_; length packageReqPackages $ 32767; packageReqPackages = lowcase(symget('packageReqPackages')); - put '%if (%str(*)=%superq(cherryPick)) %then %do; /* test for Cherry Picking */ '; /* try to load required packages */ put 'data _null_ ; '; + put ' if "*" NE symget("cherryPick") then do; put "NOTE: No required packages loading."; stop; end; '; put ' length req name $ 64 vers verR $ 24 versN verRN 8 SYSloadedPackages $ 32767; '; put ' if SYMEXIST("SYSloadedPackages") = 1 and SYMGLOBL("SYSloadedPackages") = 1 then '; put ' do; '; @@ -2344,7 +2349,8 @@ data _null_; /* test if required packages are loaded */ put 'data _null_ ; '; - put ' length req name $ 64 vers verR $ 24 versN verRN 8 SYSloadedPackages $ 32767; '; + put ' if "*" NE symget("cherryPick") then do; put "NOTE: No required packages checking."; stop; end; '; + put ' length req name $ 64 vers verR $ 24 versN verRN 8 SYSloadedPackages $ 32767; '; put ' if SYMEXIST("SYSloadedPackages") = 1 and SYMGLOBL("SYSloadedPackages") = 1 then '; put ' do; '; put ' do until(EOF); '; @@ -2402,13 +2408,6 @@ data _null_; put ' end; '; put ' stop; '; put 'run; '; - put '%end; '; - put '%else %do; '; - put ' %put NOTE- ; '; - put ' %put NOTE- Cherry Picking in action!! Be advised that; '; - put ' %put NOTE- dependencies/required packages will not be loaded!; '; - put '%end; '; - %end; %if (%superq(packageRequired) ne ) @@ -3160,7 +3159,7 @@ data _null_; put ' end ; '; %end; - put 'put "***"; put "* SAS package generated by generatePackage, version 20221121 *"; put "***";'; + put 'put "***"; put "* SAS package generated by generatePackage, version 20221125 *"; put "***";'; put 'run; ' /; @@ -4024,7 +4023,7 @@ TODO: (in Polish) */ )/secure /*** HELP END ***/ -des = 'Macro to load multiple SAS packages at one run, version 20221121. Run %loadPackages() for help info.' +des = 'Macro to load multiple SAS packages at one run, version 20221125. Run %loadPackages() for help info.' parmbuff ; %if (%superq(packagesNames) = ) OR (%qupcase(&packagesNames.) = HELP) %then @@ -4040,7 +4039,7 @@ parmbuff %put ### This is short help information for the `loadPackageS` macro #; %put #-------------------------------------------------------------------------------#; %put # #; - %put # Macro wrapper for the loadPackage macro, version `20221121` #; + %put # Macro wrapper for the loadPackage macro, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; @@ -4137,7 +4136,7 @@ parmbuff hashing_file() function, SAS 9.4M6 */ )/secure /*** HELP END ***/ -des = 'Macro to verify SAS package with the hash digest, version 20221121. Run %verifyPackage() for help info.' +des = 'Macro to verify SAS package with the hash digest, version 20221125. Run %verifyPackage() for help info.' ; %if (%superq(packageName) = ) OR (%qupcase(&packageName.) = HELP) %then %do; @@ -4152,7 +4151,7 @@ des = 'Macro to verify SAS package with the hash digest, version 20221121. Run % %put ### This is short help information for the `verifyPackage` macro #; %put #-------------------------------------------------------------------------------#; %put # #; - %put # Macro to verify SAS package with it hash digest, version `20221121` #; + %put # Macro to verify SAS package with it hash digest, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; @@ -4323,7 +4322,7 @@ des = 'Macro to verify SAS package with the hash digest, version 20221121. Run % */ )/secure /*** HELP END ***/ -des = 'Macro to preview content of a SAS package, version 20221121. Run %previewPackage() for help info.' +des = 'Macro to preview content of a SAS package, version 20221125. Run %previewPackage() for help info.' ; %if (%superq(packageName) = ) OR (%qupcase(&packageName.) = HELP) %then %do; @@ -4338,7 +4337,7 @@ des = 'Macro to preview content of a SAS package, version 20221121. Run %preview %put ### This is short help information for the `previewPackage` macro #; %put #-------------------------------------------------------------------------------#; %put # #; - %put # Macro to get previwe of a SAS packages, version `20221121` #; + %put # Macro to get previwe of a SAS packages, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; @@ -4465,7 +4464,7 @@ des = 'Macro to preview content of a SAS package, version 20221121. Run %preview when empty the "packages" value is used */ )/secure /*** HELP END ***/ -des = 'Macro to list directories pointed by "packages" fileref, version 20221121. Run %extendPackagesFileref(HELP) for help info.' +des = 'Macro to list directories pointed by "packages" fileref, version 20221125. Run %extendPackagesFileref(HELP) for help info.' ; %if %QUPCASE(&packages.) = HELP %then @@ -4481,7 +4480,7 @@ des = 'Macro to list directories pointed by "packages" fileref, version 20221121 %put ### This is short help information for the `extendPackagesFileref` macro #; %put #-----------------------------------------------------------------------------------------#;; %put # #; - %put # Macro to list directories pointed by 'packages' fileref, version `20221121` #; + %put # Macro to list directories pointed by 'packages' fileref, version `20221125` #; %put # #; %put # A SAS package is a zip file containing a group #; %put # of SAS codes (macros, functions, data steps generating #; diff --git a/packages/README.md b/packages/README.md index fad7df7..8318435 100644 --- a/packages/README.md +++ b/packages/README.md @@ -10,7 +10,7 @@ Packages: --- -- **SQLinDS**\[2.2.2\], based on Mike Rhoads' article *Use the Full Power of SAS in Your Function-Style Macros*. The package allows to write SQL queries in the data step, e.g. +- **SQLinDS**\[2.2.3\], based on Mike Rhoads' article *Use the Full Power of SAS in Your Function-Style Macros*. The package allows to write SQL queries in the data step, e.g. ```sas data class; set %SQL( @@ -22,7 +22,7 @@ data class; WH = weight + height; run; ``` -SHA256 digest for SQLinDS: 085F0B8BD4A59343E2913FF9635EA6E551ADD54E9678C35F5096D4A0A895B9C5 +SHA256 digest for SQLinDS: D5A66E60602270E5FB1E592FA3E0C2F2C640BC077FE799A2223CB9BA275F6F47 [Documentation for SQLinDS](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/sqlinds.md "Documentation for SQLinDS") @@ -36,7 +36,7 @@ SHA256 digest for MacroCore: A23C29529F3CE7D0C8BEE9545C5D22D5B5594907547374A5135 --- -- **DFA** (Dynamic Function Arrays)\[0.5.2\], contains set of macros and FCMP functions which implement: a dynamically allocated array, a stack, a fifo queue, an ordered stack, and a priority queue, run `%helpPackage(DFA,createDFArray)` to find examples. +- **DFA** (Dynamic Function Arrays)\[0.5.3\], contains set of macros and FCMP functions which implement: a dynamically allocated array, a stack, a fifo queue, an ordered stack, and a priority queue, run `%helpPackage(DFA,createDFArray)` to find examples. ```sas %createDFArray(ArrDynamic, resizefactor=17); @@ -63,13 +63,13 @@ data _null_; end; run; ``` -SHA256 digest for DFA: 3F618EDAC8B4F4BE6C19D606E6BCC58121A16BA1383D2EE64C680B4B7FA9C96A +SHA256 digest for DFA: 7520CF21CBF1FD4AD2BC05C5DD343E508FCEA507575EBC060B4AD322FB80AB04 [Documentation for DFA](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/dfa.md "Documentation for DFA") --- -- **macroArray**\[1.0.2\], implementation of an array concept in a macro language, e.g. +- **macroArray**\[1.0.3\], implementation of an array concept in a macro language, e.g. ```sas %array(ABC[17] (111:127), macarray=Y); @@ -88,13 +88,13 @@ SHA256 digest for DFA: 3F618EDAC8B4F4BE6C19D606E6BCC58121A16BA1383D2EE64C680B4B7 which = 1:H:2 ); ``` -SHA256 digest for macroArray: DA57FFE85F49201FD61A53411D19E97FB5A6AC3C34E34FDF4B913545699551FF +SHA256 digest for macroArray: 244B88C82AD7E6E93B8B85BC701ECDDB20B68F38B16C500EE9B49E1167ADC298 [Documentation for macroArray](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/macroarray.md "Documentation for macroArray") --- -- **BasePlus**\[1.17.2\] adds a bunch of functionalities I am missing in BASE SAS, such as: +- **BasePlus**\[1.17.3\] adds a bunch of functionalities I am missing in BASE SAS, such as: ```sas call arrMissToRight(myArray); call arrFillMiss(17, myArray); @@ -112,25 +112,25 @@ format x bool.; %zipLibrary(sashelp,libOut=work) ``` -SHA256 digest for BasePlus: EBA9EDB3D50D854288970CC0E965DA6AD5B057F6E6433EEBEC4A02B9A25CF6E2 +SHA256 digest for BasePlus: D8DBB7CC5952331FA59FEBBBDD15BC543FE3C89A8BA9150FE6AF5E412868EBE7 [Documentation for BasePlus](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/baseplus.md "Documentation for BasePlus") --- -- **GSM** (Generate Secure Macros)\[0.20.2\], package allows +- **GSM** (Generate Secure Macros)\[0.20.3\], package allows to create secured macros stored in SAS Proc FCMP functions. The dataset with functions can be shared between different operating systems and allows to generate macros on site without showing their code. -SHA256 digest for GSM: E47C94B536B661DEE390F5C3EA1684DD1A246106F4FBBDAFA57F5E34D4BB16D5 +SHA256 digest for GSM: 50D8340E080BEA459E68BE315146AD3B809930DB8DC7B23C7A492C3815ACD83F [Documentation for GSM](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/gsm.md "Documentation for GSM") --- -- **dynMacroArray**\[0.2.2\], set of macros (wrappers for a hash table) emulating dynamic array in the data step (macro predecessor of DFA). Development of this package is currently on hold. +- **dynMacroArray**\[0.2.3\], set of macros (wrappers for a hash table) emulating dynamic array in the data step (macro predecessor of DFA). Development of this package is currently on hold. -SHA256 digest for dynMacroArray: DD0BF1768DA05EBB5F8C6E7409A0929E28DF11CB499F75B433D9648855AACAE4 +SHA256 digest for dynMacroArray: 440920272D1838505EA5C033B1C448C612DE2FCCFD57F157BB90ED980E4001CC --- diff --git a/packages/SHA256_for_packages.txt b/packages/SHA256_for_packages.txt index 5cd63dc..7e077a1 100644 --- a/packages/SHA256_for_packages.txt +++ b/packages/SHA256_for_packages.txt @@ -1,3 +1,12 @@ +/* 20221125 */ +BasePlus: D8DBB7CC5952331FA59FEBBBDD15BC543FE3C89A8BA9150FE6AF5E412868EBE7 +DFA: 7520CF21CBF1FD4AD2BC05C5DD343E508FCEA507575EBC060B4AD322FB80AB04 +dynMacroArray: 440920272D1838505EA5C033B1C448C612DE2FCCFD57F157BB90ED980E4001CC +GSM: 50D8340E080BEA459E68BE315146AD3B809930DB8DC7B23C7A492C3815ACD83F +macroArray: 244B88C82AD7E6E93B8B85BC701ECDDB20B68F38B16C500EE9B49E1167ADC298 +SQLinDS: D5A66E60602270E5FB1E592FA3E0C2F2C640BC077FE799A2223CB9BA275F6F47 + + /* 20221121 */ BasePlus: EBA9EDB3D50D854288970CC0E965DA6AD5B057F6E6433EEBEC4A02B9A25CF6E2 DFA: 3F618EDAC8B4F4BE6C19D606E6BCC58121A16BA1383D2EE64C680B4B7FA9C96A diff --git a/packages/baseplus.md b/packages/baseplus.md index 956d08f..2f2173a 100644 --- a/packages/baseplus.md +++ b/packages/baseplus.md @@ -56,7 +56,7 @@ --- -# The BasePlus package [ver. 1.17.2] ############################################### +# The BasePlus package [ver. 1.17.3] ############################################### The **BasePlus** package implements useful functions and functionalities I miss in the BASE SAS. @@ -273,10 +273,10 @@ Package contains: 48. functions quicksorthashsddv 49. functions quicksortlight -*SAS package generated by generatePackage, version 20221121* +*SAS package generated by generatePackage, version 20221125* The SHA256 hash digest for package BasePlus: -`EBA9EDB3D50D854288970CC0E965DA6AD5B057F6E6433EEBEC4A02B9A25CF6E2` +`D8DBB7CC5952331FA59FEBBBDD15BC543FE3C89A8BA9150FE6AF5E412868EBE7` --- # Content description ############################################################################################ diff --git a/packages/baseplus.zip b/packages/baseplus.zip index 90cec4a..eb85b9d 100644 Binary files a/packages/baseplus.zip and b/packages/baseplus.zip differ diff --git a/packages/dfa.md b/packages/dfa.md index 81eedbe..a47dacd 100644 --- a/packages/dfa.md +++ b/packages/dfa.md @@ -18,7 +18,7 @@ --- -# The DFA package [ver. 0.5.2] ############################################### +# The DFA package [ver. 0.5.3] ############################################### The **DFA** (a.k.a. *Dynamic Function Array*) package implements: - dynamic numeric and character arrays, @@ -52,10 +52,10 @@ Package contains: 12. exec generatearrays 13. clean generatearrays -*SAS package generated by generatePackage, version 20221121* +*SAS package generated by generatePackage, version 20221125* The SHA256 hash digest for package BasePlus: -`3F618EDAC8B4F4BE6C19D606E6BCC58121A16BA1383D2EE64C680B4B7FA9C96A` +`7520CF21CBF1FD4AD2BC05C5DD343E508FCEA507575EBC060B4AD322FB80AB04` --- # Content description ############################################################################################ diff --git a/packages/dfa.zip b/packages/dfa.zip index bdaae95..8cadb25 100644 Binary files a/packages/dfa.zip and b/packages/dfa.zip differ diff --git a/packages/dynmacroarray.zip b/packages/dynmacroarray.zip index 1c18117..f63bd93 100644 Binary files a/packages/dynmacroarray.zip and b/packages/dynmacroarray.zip differ diff --git a/packages/gsm.md b/packages/gsm.md index 345d2f9..be995d4 100644 --- a/packages/gsm.md +++ b/packages/gsm.md @@ -8,7 +8,7 @@ --- -# The GSM package [ver. 0.20.2] ############################################### +# The GSM package [ver. 0.20.3] ############################################### The **GSM** (a.k.a. *Generate Secure Macros*) package allows to create secured macros stored in SAS Proc FCMP functions. @@ -91,10 +91,10 @@ Package contains: Required SAS Components: `Base SAS Software` -* SAS package generated by generatePackage, version 20221121 * +*SAS package generated by generatePackage, version 20221125* The SHA256 hash digest for package GSM: -`E47C94B536B661DEE390F5C3EA1684DD1A246106F4FBBDAFA57F5E34D4BB16D5` +`50D8340E080BEA459E68BE315146AD3B809930DB8DC7B23C7A492C3815ACD83F` ## >>> `%GSM()` macro: <<< ####################### diff --git a/packages/gsm.zip b/packages/gsm.zip index 1c20c10..41156ed 100644 Binary files a/packages/gsm.zip and b/packages/gsm.zip differ diff --git a/packages/macroarray.md b/packages/macroarray.md index 4b36a1c..6fe5166 100644 --- a/packages/macroarray.md +++ b/packages/macroarray.md @@ -19,7 +19,7 @@ --- -# The macroArray package [ver. 1.0.2] ############################################### +# The macroArray package [ver. 1.0.3] ############################################### The **macroArray** package implements a macro array facility: - `%array()`, @@ -75,10 +75,10 @@ Package contains: Required SAS Components: *Base SAS Software* -*SAS package generated by generatePackage, version 20221121.* +*SAS package generated by generatePackage, version 20221125* The SHA256 hash digest for package macroArray: -`DA57FFE85F49201FD61A53411D19E97FB5A6AC3C34E34FDF4B913545699551FF` +`440920272D1838505EA5C033B1C448C612DE2FCCFD57F157BB90ED980E4001CC` --- # Content description ############################################################################################ diff --git a/packages/macroarray.zip b/packages/macroarray.zip index 5ec8db4..68d305c 100644 Binary files a/packages/macroarray.zip and b/packages/macroarray.zip differ diff --git a/packages/sqlinds.md b/packages/sqlinds.md index 0019b22..62ea5a1 100644 --- a/packages/sqlinds.md +++ b/packages/sqlinds.md @@ -1,4 +1,4 @@ -- [The SQLinDS package [ver. 2.2.2]](#sqlinds-package) +- [The SQLinDS package](#sqlinds-package) - [Content description](#content-description) * [library `dsSQL`](#library-dssql) * [`%dsSQL_inner()` macro](#dssql-inner-macro) @@ -8,7 +8,7 @@ --- -# The SQLinDS package [ver. 2.2.2] ############################################### +# The SQLinDS package [ver. 2.2.3] ############################################### The **SQLinDS** package is an implementation of the *macro-function-sandwich* concept introduced in the @@ -46,10 +46,10 @@ Package contains: Required SAS Components: *Base SAS Software* -*SAS package generated by generatePackage, version 20221121* +*SAS package generated by generatePackage, version 20221125* The SHA256 hash digest for package SQLinDS: -`085F0B8BD4A59343E2913FF9635EA6E551ADD54E9678C35F5096D4A0A895B9C5` +`D5A66E60602270E5FB1E592FA3E0C2F2C640BC077FE799A2223CB9BA275F6F47` --- # Content description ############################################################################################ diff --git a/packages/sqlinds.zip b/packages/sqlinds.zip index 1192e81..7ac4fd1 100644 Binary files a/packages/sqlinds.zip and b/packages/sqlinds.zip differ