A python library to run and live-log OS commands, functions, scripts, and batch jobs either immedietly, or to be queued for later execution.
Warning: This package is still in the Beta stage. It is not ready for production use. Please do not use for any critical software
In order to download the source code to your local computer for testing, or for development, you can clone from the remote repository using either SSH, or HTTPS. Below are instructions on how to do so using GitHub hosted code as remote.
git clone https://github.com/pvshvp-oss/pyrunning.git
OR
git clone git@github.com:pvshvp-oss/pyrunning.git
Change to the project directory (cd pyrunning
) and run any of the below scripts:
sh packaging/arch/setup.sh <MODE>
: Builds and installs a packagesh packaging/arch/build-package.sh <MODE>
: Just builds a package without installing it locallysh packaging/arch/install-package.sh <MODE>
: Just installs a package locally, except if no built package is detected, a package is built.
Change to the project directory (cd pyrunning
) and run any of the below scripts:
sh packaging/debian/build-package.sh <MODE>
: Just builds a package without installing it locally
where <MODE>
can be one of the below
1. local
: Selects pyrunning-local from the local project that you have cloned already.
2. git
: Selects pyrunning-git from the latest git commit. Note - Not available for Debian.
3. stable
: Selects pyrunning from the git tag corresponding to the pkgver
specified in the PKGBUILD. If pkgver=0.1.2
, then the git tag v0.1.2
is used for packaging.
Note: Any additional parameters passed to the above scripts are automatically sent to
makepkg
orpacman
(whichever is applicable).