diff options
Diffstat (limited to 'system/slpkg')
-rw-r--r-- | system/slpkg/README | 16 | ||||
-rw-r--r-- | system/slpkg/slack-desc | 10 | ||||
-rw-r--r-- | system/slpkg/slpkg.SlackBuild | 8 | ||||
-rw-r--r-- | system/slpkg/slpkg.info | 8 |
4 files changed, 23 insertions, 19 deletions
diff --git a/system/slpkg/README b/system/slpkg/README index 94145cfd3e..e8b20955a7 100644 --- a/system/slpkg/README +++ b/system/slpkg/README @@ -1,5 +1,11 @@ -Slpkg is a software package manager that installs, updates and -removes packages on Slackware-based systems. It automatically -calculates dependencies and figures out what things need to -happen to install packages. Slpkg makes it easier to manage -groups of machines without the need for manual updates. +Slpkg is a software package manager that installs, updates, +and removes packages on Slackware-based systems. It automatically +calculates dependencies and determines the required steps for package +installation. Slpkg simplifies managing machine groups by eliminating +manual updates. +The tool adheres to the standards of the slackbuilds.org organization +for building packages and follows Slackware Linux's procedures for +package installation, upgrades, and removal. + +Optional dependency: + python3-pythondialog alternatives for dependency and package management diff --git a/system/slpkg/slack-desc b/system/slpkg/slack-desc index e9abbc7cd9..67f52515d2 100644 --- a/system/slpkg/slack-desc +++ b/system/slpkg/slack-desc @@ -8,11 +8,11 @@ |-----handy-ruler------------------------------------------------------| slpkg: slpkg (Slackware Packaging Tool) slpkg: -slpkg: Slpkg is a software package manager that installs, updates and -slpkg: removes packages on Slackware-based systems. It automatically -slpkg: calculates dependencies and figures out what things need to -slpkg: happen to install packages. Slpkg makes it easier to manage -slpkg: groups of machines without the need for manual updates. +slpkg: Slpkg is a software package manager that installs, updates, +slpkg: and removes packages on Slackware-based systems. It automatically +slpkg: calculates dependencies and determines the required steps for +slpkg: package installation. Slpkg simplifies managing machine groups by +slpkg: eliminating manual updates. slpkg: slpkg: Homepage: https://dslackw.gitlab.io/slpkg slpkg: diff --git a/system/slpkg/slpkg.SlackBuild b/system/slpkg/slpkg.SlackBuild index 3e4c76d240..49e9d86442 100644 --- a/system/slpkg/slpkg.SlackBuild +++ b/system/slpkg/slpkg.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=slpkg -VERSION=${VERSION:-5.2.1} +VERSION=${VERSION:-5.3.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -94,16 +94,14 @@ for file in $FILES; do install -D -m0644 configs/$file.toml $PKG/etc/slpkg/$file.toml.new done -mkdir -p $PKG/usr/man/man1 & mkdir -p $PKG/usr/man/fr/man1 +mkdir -p $PKG/usr/man/man1 cp man/slpkg.1 $PKG/usr/man/man1 -cp man/slpkg-fr.1 $PKG/usr/man/fr/man1/slpkg.1 find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a README.md ChangeLog.txt LICENSE requirements.txt repositories.txt \ - $PKG/usr/doc/$PRGNAM-$VERSION +cp -a README.md ChangeLog.txt LICENSE repositories.txt $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install diff --git a/system/slpkg/slpkg.info b/system/slpkg/slpkg.info index f324eb2082..234c5adc07 100644 --- a/system/slpkg/slpkg.info +++ b/system/slpkg/slpkg.info @@ -1,10 +1,10 @@ PRGNAM="slpkg" -VERSION="5.2.1" +VERSION="5.3.0" HOMEPAGE="https://dslackw.gitlab.io/slpkg" -DOWNLOAD="https://gitlab.com/dslackw/slpkg/-/archive/5.2.1/slpkg-5.2.1.tar.gz" -MD5SUM="6020a3983c8ef78869ae90e0b2992e49" +DOWNLOAD="https://gitlab.com/dslackw/slpkg/-/archive/5.3.0/slpkg-5.3.0.tar.gz" +MD5SUM="c6cec2604558cb2473fbed01095bc3c0" DOWNLOAD_x86_64="" MD5SUM_x86_64="" -REQUIRES="python3-tomlkit python3-pythondialog" +REQUIRES="python3-tomlkit" MAINTAINER="Dimitris Zlatanidis" EMAIL="dslackw@gmail.com" |