SAS Packages Framework, version 20250729

SAS Packages Framework, version 20250729

Changes:
- New parameter `github=` added to the `%installPackage()` macro.
- Documentation updated.
This commit is contained in:
Bart Jablonski
2025-07-29 11:51:56 +02:00
parent 030a0932a8
commit f63ff497ee
16 changed files with 149 additions and 108 deletions

View File

@@ -1,7 +1,7 @@
---
# SAS Packages Framework, version `20250728`
# SAS Packages Framework, version `20250729`
---
@@ -29,7 +29,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 **`20250728`**.
In this repository we are presenting the **SAS Packages Framework** which allows to develop and use SAS packages. The latest version of SPF is **`20250729`**.
**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).
@@ -52,7 +52,7 @@ them using the SPF can be found [**HERE**](https://github.com/yabwon/HoW-SASPack
## This is short help information for the `installPackage` macro <a name="installpackage"></a>
--------------------------------------------------------------------------------------------
Macro to install SAS packages, version `20250728`
Macro to install SAS packages, version `20250729`
A SAS package is a zip file containing a group
of SAS codes (macros, functions, data steps generating
@@ -127,6 +127,11 @@ them using the SPF can be found [**HERE**](https://github.com/yabwon/HoW-SASPack
has the following form: `<number of successes>.<number of failures>`
The macro variable is created as a *global* macro variable.
- `github=` *Optional.* A name of a user or an organization in GitHub.
Allows an easy set of the search path for packages available on GitHub:
`https://github.com/<github>/<packagename>/raw/.../`
All characters except `[A-z0-9_.-]` are compressed.
--------------------------------------------------------------------------------------------
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation` to learn more.
@@ -175,7 +180,7 @@ filename packages "C:/SAS_PACKAGES";
## This is short help information for the `helpPackage` macro <a name="helppackage"></a>
-------------------------------------------------------------------------------
Macro to get help about SAS packages, version `20250728`
Macro to get help about SAS packages, version `20250729`
A SAS package is a zip file containing a group
of SAS codes (macros, functions, data steps generating
@@ -253,7 +258,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
## This is short help information for the `loadPackage` macro <a name="loadpackage"></a>
-------------------------------------------------------------------------------
Macro to *load* SAS packages, version `20250728`
Macro to *load* SAS packages, version `20250729`
A SAS package is a zip file containing a group
of SAS codes (macros, functions, data steps generating
@@ -411,7 +416,7 @@ If created, those macros are automatically deleted when the `%unloadPackage()` m
## This is short help information for the `loadPackageS` macro <a name="loadpackages"></a>
-------------------------------------------------------------------------------
Macro wrapper for the loadPackage macro, version `20250728`
Macro wrapper for the loadPackage macro, version `20250729`
A SAS package is a zip file containing a group
of SAS codes (macros, functions, data steps generating
@@ -462,7 +467,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
## This is short help information for the `unloadPackage` macro <a name="unloadpackage"></a>
-------------------------------------------------------------------------------
Macro to unload SAS packages, version `20250728`
Macro to unload SAS packages, version `20250729`
A SAS package is a zip file containing a group
of SAS codes (macros, functions, data steps generating
@@ -529,7 +534,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
## This is short help information for the `listPackages` macro <a name="listpackages"></a>
-----------------------------------------------------------------------------------------
Macro to list available SAS packages, version `20250728`
Macro to list available SAS packages, version `20250729`
A SAS package is a zip file containing a group
of SAS codes (macros, functions, data steps generating
@@ -572,7 +577,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
## This is short help information for the `verifyPackage` macro <a name="verifypackage"></a>
-------------------------------------------------------------------------------
Macro to verify SAS package with it hash digest, version `20250728`
Macro to verify SAS package with it hash digest, version `20250729`
A SAS package is a zip file containing a group
of SAS codes (macros, functions, data steps generating
@@ -626,7 +631,7 @@ filename packages "C:/SAS_PACKAGES"; %* set-up a directory for packages;
## This is short help information for the `previewPackage` macro <a name="previewpackage"></a>
-------------------------------------------------------------------------------
Macro to get preview of a SAS packages, version `20250728`
Macro to get preview of a SAS packages, version `20250729`
A SAS package is a zip file containing a group
of SAS codes (macros, functions, data steps generating
@@ -695,7 +700,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
## This is short help information for the `generatePackage` macro <a name="generatepackage"></a>
-------------------------------------------------------------------------------
Macro to generate SAS packages, version `20250728`
Macro to generate SAS packages, version `20250729`
A SAS package is a zip file containing a group
of SAS codes (macros, functions, data steps generating
@@ -910,7 +915,7 @@ All files have to have `.sas` extension. Other files are ignored.
## This is short help information for the `extendPackagesFileref` macro <a name="extendpackagesfileref"></a>
-----------------------------------------------------------------------------------------
Macro to list directories pointed by 'packages' fileref, version `20250728`
Macro to list directories pointed by 'packages' fileref, version `20250729`
A SAS package is a zip file containing a group
of SAS codes (macros, functions, data steps generating
@@ -952,7 +957,7 @@ filename packages ("D:/NEW_DIR" %extendPackagesFileref()); %* add new directory;
## This is short help information for the `loadPackageAddCnt` macro <a name="loadpackageaddcnt"></a>
-------------------------------------------------------------------------------
Macro to load *additional content* for a SAS package, version `20250728`
Macro to load *additional content* for a SAS package, version `20250729`
A SAS package is a zip file containing a group
of SAS codes (macros, functions, data steps generating
@@ -1046,7 +1051,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
-------------------------------------------------------------------------------
Utility macro to *split* single file with SAS package code into multiple
files with separate snippets, version `20250728`
files with separate snippets, version `20250729`
A SAS package is a zip file containing a group
of SAS codes (macros, functions, data steps generating