Tue Jan 11 19:24:04 CET 2022

pkg/slackpkg+-1.7.11-noarch-1mt.txz:
  - zlookkernel.sh also supports grub (thanks to RezaT4795)
  - repositories.lst updated
  - Added "comma" syntax. Now you can add a comma (,) at start or at end
    of packagename to match the exact name, so "libreoffice," does match
    the "libreoffice" package and not the libreoffice-dict-* ecc. for ex:
       slackpkg upgrade libreoffice,
       slackpkg install alienbob:libreoffice,
       slackpkg download libreoffice,
       slackpkg search libreoffice,
This commit is contained in:
Matteo Rossini 2022-01-11 19:34:27 +01:00
parent c5a3de6316
commit d5f89697c5
6 changed files with 46 additions and 5 deletions

View file

@ -1,3 +1,16 @@
Tue Jan 11 19:24:04 CET 2022
pkg/slackpkg+-1.7.11-noarch-1mt.txz:
- zlookkernel.sh also supports grub (thanks to RezaT4795)
- repositories.lst updated
- Added "comma" syntax. Now you can add a comma (,) at start or at end
of packagename to match the exact name, so "libreoffice," does match
the "libreoffice" package and not the libreoffice-dict-* ecc. for ex:
slackpkg upgrade libreoffice,
slackpkg install alienbob:libreoffice,
slackpkg download libreoffice,
slackpkg search libreoffice,
+-------------------------+
Sun Dec 19 23:40:59 CET 2021 Sun Dec 19 23:40:59 CET 2021
pkg/slackpkg+-1.7.10-noarch-1mt.txz: pkg/slackpkg+-1.7.10-noarch-1mt.txz:
- According to slackpkg 15.0.9, automatically rebuild package lists if - According to slackpkg 15.0.9, automatically rebuild package lists if

View file

@ -1,6 +1,6 @@
= Full Changes list = = Full Changes list =
== From 1.7 to 1.7.10 == == From 1.7 to 1.7.11 ==
*Configuration file: *Configuration file:
@ -30,6 +30,21 @@
*New features: *New features:
- Added "comma" syntax. Now you can select an exact package name adding a comma (,)
at the end of the package name
slackpkg upgrade libreoffice,
slackpkg install alienbob:libreoffice,
slackpkg download libreoffice,
slackpkg search libreoffice,
without comma slackpkg shows libreoffice libreoffice-dict-* libreoffice-l10n-*
that means up to 500 packages that you have to deselect. With the comma
slackpkg shows the libreoffice package only.
You can also add it at the start of name
slackpkg install alienbob:libreoffice,
slackpkg install alienbob:,libreoffice
slackpkg install ,alienbob:libreoffice
are all equivalent
- Added manpages (italian and english) for slackpkgplus.conf - Added manpages (italian and english) for slackpkgplus.conf
to read the italian manpage be sure to export LANG=it_IT@euro and use the to read the italian manpage be sure to export LANG=it_IT@euro and use the
ISO8859-15 charset in console. ISO8859-15 charset in console.
@ -128,7 +143,7 @@
but greylist system use the older syntax but greylist system use the older syntax
- Added zlookkernel.sh - Added zlookkernel.sh
It help you to reconfigure initrd. It does support lilo and elilo (EFI) It help you to reconfigure initrd. It does support lilo , elilo (EFI) and grub
set PLUGIN_ZLOOKKERNEL=enable to use it set PLUGIN_ZLOOKKERNEL=enable to use it
For instructions read notes in the code: For instructions read notes in the code:
/usr/libexec/slackpkg/functions.d/zlookkernel.sh /usr/libexec/slackpkg/functions.d/zlookkernel.sh

View file

@ -1,3 +1,16 @@
Tue Jan 11 19:24:04 CET 2022
pkg/slackpkg+-1.7.11-noarch-1mt.txz:
- zlookkernel.sh also supports grub (thanks to RezaT4795)
- repositories.lst updated
- Added "comma" syntax. Now you can add a comma (,) at start or at end
of packagename to match the exact name, so "libreoffice," does match
the "libreoffice" package and not the libreoffice-dict-* ecc. for ex:
slackpkg upgrade libreoffice,
slackpkg install alienbob:libreoffice,
slackpkg download libreoffice,
slackpkg search libreoffice,
+-------------------------+
Sun Dec 19 23:40:59 CET 2021 Sun Dec 19 23:40:59 CET 2021
pkg/slackpkg+-1.7.10-noarch-1mt.txz: pkg/slackpkg+-1.7.10-noarch-1mt.txz:
- According to slackpkg 15.0.9, automatically rebuild package lists if - According to slackpkg 15.0.9, automatically rebuild package lists if

View file

@ -1935,7 +1935,7 @@ if [ "$SLACKPKGPLUS" = "on" ];then
cleanup cleanup
fi fi
SPKGPLUS_VERSION="1.7.10" SPKGPLUS_VERSION="1.7.11"
VERSION="$VERSION / slackpkg+ $SPKGPLUS_VERSION" VERSION="$VERSION / slackpkg+ $SPKGPLUS_VERSION"
if [ ${VERSION:0:4} == "2.82" ];then if [ ${VERSION:0:4} == "2.82" ];then

View file

@ -148,7 +148,7 @@ MIRRORPLUS['slackpkgplus']=https://slakfinder.org/slackpkg+15/
# Plugin section: # Plugin section:
# Here you can enable some optional feature. Please read documentation before enable it. # Here you can enable some optional feature. Please read documentation before enable it.
# #
# ZLookKernel can help you to rebuild initrd and reinstall lilo/elilo. This feature was # ZLookKernel can help you to rebuild initrd and reinstall lilo/elilo/grub. This feature was
# removed in slackpkg-15.0. 'enable' this setting to enable it. # removed in slackpkg-15.0. 'enable' this setting to enable it.
# read /usr/libexec/slackpkg/functions.d/zlookkernel.sh for more information # read /usr/libexec/slackpkg/functions.d/zlookkernel.sh for more information
# It will ask confirmations at every step, unless you will set 'PLUGIN_ZLOOKKERNEL_PROMPT=off' # It will ask confirmations at every step, unless you will set 'PLUGIN_ZLOOKKERNEL_PROMPT=off'

View file

@ -163,7 +163,7 @@ MIRRORPLUS['slackpkgplus']=https://slakfinder.org/slackpkg+15/
# Plugin section: # Plugin section:
# Here you can enable some optional feature. Please read documentation before enable it. # Here you can enable some optional feature. Please read documentation before enable it.
# #
# ZLookKernel can help you to rebuild initrd and reinstall lilo/elilo. This feature was # ZLookKernel can help you to rebuild initrd and reinstall lilo/elilo/grub. This feature was
# removed in slackpkg-15.0. 'enable' this setting to enable it. # removed in slackpkg-15.0. 'enable' this setting to enable it.
# read /usr/libexec/slackpkg/functions.d/zlookkernel.sh for more information # read /usr/libexec/slackpkg/functions.d/zlookkernel.sh for more information
# It will ask confirmations at every step, unless you will set 'PLUGIN_ZLOOKKERNEL_PROMPT=off' # It will ask confirmations at every step, unless you will set 'PLUGIN_ZLOOKKERNEL_PROMPT=off'