diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2019-10-13 19:01:25 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2019-10-13 23:17:53 +0200 |
commit | 5d65e7741e0ac50a0c28d9e5c3575a0ae60fb66e (patch) | |
tree | b7b86000ddbfe05618051d011fed5c16a63a78a6 /source/a | |
parent | 775310bf07e34137f86d467187836baea192c3d7 (diff) | |
download | current-5d65e7741e0ac50a0c28d9e5c3575a0ae60fb66e.tar.gz current-5d65e7741e0ac50a0c28d9e5c3575a0ae60fb66e.tar.xz |
Sun Oct 13 19:01:25 UTC 201920191013190125
a/pkgtools-15.0-noarch-26.txz: Rebuilt.
upgradepkg: add spaces to --dry-run package list. Thanks to Markus Wiesner.
l/aspell-0.60.8-x86_64-1.txz: Upgraded.
n/network-scripts-15.0-noarch-9.txz: Rebuilt.
rc.inet1: Fix typos and spacing.
rc.inet2: Start rc.firewall first. This had been later in the script due to
the now unsupported idea of having /usr on NFS. Thanks to abga.
rc.inet2: If present and executable, start the Kerberos init scripts.
rc.inet2: Remove obsolete rpc.pcnfsd/rpc.bwnfsd section from the end.
n/proftpd-1.3.6a-x86_64-1.txz: Upgraded.
xap/pan-0.146-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/a')
-rwxr-xr-x | source/a/pkgtools/pkgtools.SlackBuild | 2 | ||||
-rw-r--r-- | source/a/pkgtools/scripts/upgradepkg | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source/a/pkgtools/pkgtools.SlackBuild b/source/a/pkgtools/pkgtools.SlackBuild index 773e3d6c0..da23c76d5 100755 --- a/source/a/pkgtools/pkgtools.SlackBuild +++ b/source/a/pkgtools/pkgtools.SlackBuild @@ -30,7 +30,7 @@ PKGNAM=pkgtools # *** UPDATE THESE WITH EACH BUILD: VERSION=15.0 ARCH=${ARCH:-noarch} -BUILD=${BUILD:-25} +BUILD=${BUILD:-26} # If the variable PRINT_PACKAGE_NAME is set, then this script will report what # the name of the created package would be, and then exit. This information diff --git a/source/a/pkgtools/scripts/upgradepkg b/source/a/pkgtools/scripts/upgradepkg index f81d3c738..d71ca4b03 100644 --- a/source/a/pkgtools/scripts/upgradepkg +++ b/source/a/pkgtools/scripts/upgradepkg @@ -322,10 +322,10 @@ EOF TIMESTAMP=$(date +%Y-%m-%d,%T) SHORT="$(package_name $OLD)" if [ "$DRY_RUN" = "true" ]; then - echo -n "$NEW would upgrade: " + echo -n "$NEW would upgrade:" for installed_package in $ADM_DIR/packages/$SHORT* ; do if [ "$(package_name $installed_package)" = "$SHORT" ]; then - echo -n "$(pkgbase $installed_package)" + echo -n " $(pkgbase $installed_package)" fi done echo |