Fri Jun 15 16:09:51 CEST 2018

pkg/slackpkg+-1.7.0d1-noarch-4mt.txz
  - Fix incompatibility with slackpkg-2.83.0-noarch-3
  - Fix setupmultilib script. It did use oldstyle 'multilib:'
  - Fix a regression in TAG PRIORITY
  - Handle the case where /var/log/packages is a symlink
This commit is contained in:
Matteo Rossini 2018-06-15 17:12:06 +02:00
parent 30eae62fcf
commit 7c210bb714
3 changed files with 21 additions and 3 deletions

View file

@ -1,3 +1,12 @@
Fri Jun 15 16:09:51 CEST 2018
pkg/slackpkg+-1.7.0d1-noarch-4mt.txz
- Fix incompatibility with slackpkg-2.83.0-noarch-3
- Fix setupmultilib script. It did use oldstyle 'multilib:'
- Fix a regression in TAG PRIORITY
- Handle the case where /var/log/packages is a symlink
+-------------------------+
Thu Apr 26 23:49:04 CEST 2018
pkg/slackpkg+-1.7.0d1-noarch-3mt.txz
- Do not log 'install.log' and 'fatal.log' when DOWNLOADONLY=on

View file

@ -1,3 +1,12 @@
Fri Jun 15 16:09:51 CEST 2018
pkg/slackpkg+-1.7.0d1-noarch-4mt.txz
- Fix incompatibility with slackpkg-2.83.0-noarch-3
- Fix setupmultilib script. It did use oldstyle 'multilib:'
- Fix a regression in TAG PRIORITY
- Handle the case where /var/log/packages is a symlink
+-------------------------+
Thu Apr 26 23:49:04 CEST 2018
pkg/slackpkg+-1.7.0d1-noarch-3mt.txz
- Do not log 'install.log' and 'fatal.log' when DOWNLOADONLY=on

View file

@ -301,7 +301,7 @@ if [ "$SLACKPKGPLUS" = "on" ];then
done
DELALL="$OLDDEL"
fi
ls -1 $ROOT/var/log/packages > $TMPDIR/tmplist
ls -1 $ROOT/var/log/packages/ > $TMPDIR/tmplist
for i in $SHOWLIST; do
PKGFOUND=$(grep -m1 -e "^$(echo $i|rev|cut -f4- -d-|rev)-[^-]\+-[^-]\+-[^-]\+$" $TMPDIR/tmplist)
@ -1150,7 +1150,7 @@ if [ "$SLACKPKGPLUS" = "on" ];then
{
echo "[ Status#] [ Repository#] [ Package# ]"
INSTPKGS="$(ls -f $ROOT/var/log/packages)"
INSTPKGS="$(ls -f $ROOT/var/log/packages/)"
for i in $1; do
REPO=${i/:*/} #$(echo "$i" | cut -f1 -d":")
@ -1342,7 +1342,7 @@ if [ "$SLACKPKGPLUS" = "on" ];then
rm -f $TMPDIR/dialog.tmp
if [ "$2" = "upgrade" ]; then
ls -1 $ROOT/var/log/packages > $TMPDIR/tmplist
ls -1 $ROOT/var/log/packages/ > $TMPDIR/tmplist
for i in $1; do
TMPONOFF=$ONOFF
BASENAME=$(cutpkg $i)