mirror of
https://github.com/zuno/slackpkgplus
synced 2025-01-13 20:01:04 +01:00
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:
parent
30eae62fcf
commit
7c210bb714
3 changed files with 21 additions and 3 deletions
|
@ -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
|
Thu Apr 26 23:49:04 CEST 2018
|
||||||
pkg/slackpkg+-1.7.0d1-noarch-3mt.txz
|
pkg/slackpkg+-1.7.0d1-noarch-3mt.txz
|
||||||
- Do not log 'install.log' and 'fatal.log' when DOWNLOADONLY=on
|
- Do not log 'install.log' and 'fatal.log' when DOWNLOADONLY=on
|
||||||
|
|
|
@ -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
|
Thu Apr 26 23:49:04 CEST 2018
|
||||||
pkg/slackpkg+-1.7.0d1-noarch-3mt.txz
|
pkg/slackpkg+-1.7.0d1-noarch-3mt.txz
|
||||||
- Do not log 'install.log' and 'fatal.log' when DOWNLOADONLY=on
|
- Do not log 'install.log' and 'fatal.log' when DOWNLOADONLY=on
|
||||||
|
|
|
@ -301,7 +301,7 @@ if [ "$SLACKPKGPLUS" = "on" ];then
|
||||||
done
|
done
|
||||||
DELALL="$OLDDEL"
|
DELALL="$OLDDEL"
|
||||||
fi
|
fi
|
||||||
ls -1 $ROOT/var/log/packages > $TMPDIR/tmplist
|
ls -1 $ROOT/var/log/packages/ > $TMPDIR/tmplist
|
||||||
|
|
||||||
for i in $SHOWLIST; do
|
for i in $SHOWLIST; do
|
||||||
PKGFOUND=$(grep -m1 -e "^$(echo $i|rev|cut -f4- -d-|rev)-[^-]\+-[^-]\+-[^-]\+$" $TMPDIR/tmplist)
|
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# ]"
|
echo "[ Status#] [ Repository#] [ Package# ]"
|
||||||
|
|
||||||
INSTPKGS="$(ls -f $ROOT/var/log/packages)"
|
INSTPKGS="$(ls -f $ROOT/var/log/packages/)"
|
||||||
|
|
||||||
for i in $1; do
|
for i in $1; do
|
||||||
REPO=${i/:*/} #$(echo "$i" | cut -f1 -d":")
|
REPO=${i/:*/} #$(echo "$i" | cut -f1 -d":")
|
||||||
|
@ -1342,7 +1342,7 @@ if [ "$SLACKPKGPLUS" = "on" ];then
|
||||||
rm -f $TMPDIR/dialog.tmp
|
rm -f $TMPDIR/dialog.tmp
|
||||||
|
|
||||||
if [ "$2" = "upgrade" ]; then
|
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
|
for i in $1; do
|
||||||
TMPONOFF=$ONOFF
|
TMPONOFF=$ONOFF
|
||||||
BASENAME=$(cutpkg $i)
|
BASENAME=$(cutpkg $i)
|
||||||
|
|
Loading…
Reference in a new issue