Note requirement to escape special characters in blacklist

This commit is contained in:
Robby Workman 2018-12-02 00:43:19 -06:00
parent 5fdb8c5a0b
commit 0463acfd1d
2 changed files with 6 additions and 1 deletions

View file

@ -8,7 +8,8 @@ For Next Release
to be ignored by slackpkg. The new behavior is that *only* the to be ignored by slackpkg. The new behavior is that *only* the
glibc package is ignored. If you want to blacklist all packages glibc package is ignored. If you want to blacklist all packages
whose names begin with glibc, you would need to add "glibc.*" to whose names begin with glibc, you would need to add "glibc.*" to
the blacklist now. (David Woodfall) the blacklist now. Also note that any special characters, e.g. "+",
will need to be escaped in the blacklist file. (David Woodfall)
- Add support for listing .new files without PAGER (David Woodfall) - Add support for listing .new files without PAGER (David Woodfall)
- Remove switch.ch mirrors - Remove switch.ch mirrors
- Add config option to allow *not* saving .orig configs (Darren Austin) - Add config option to allow *not* saving .orig configs (Darren Austin)

View file

@ -17,6 +17,10 @@
# To blacklist *all* of the "xorg-server-*" packages, use this: # To blacklist *all* of the "xorg-server-*" packages, use this:
# xorg-server.* # xorg-server.*
# #
# You will need to escape any special characters that are present in the
# package name. For example, to blacklist the gcc-g++ package, use this:
# gcc-g\+\+
#
# DON'T put any space(s) before or after the package name or regexp. # DON'T put any space(s) before or after the package name or regexp.
# If you do this, the blacklist will NOT work. # If you do this, the blacklist will NOT work.
# #