diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2019-02-27 03:09:41 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2019-02-27 08:59:45 +0100 |
commit | aea2ef36ce7429426cea468334d292fe11ce1dd9 (patch) | |
tree | 6b70f2d0153e7073af72cfcf7990cdb32d59b4fc /source/n/ca-certificates | |
parent | 604397857e72280ba64741771fa6667d71608201 (diff) | |
download | current-aea2ef36ce7429426cea468334d292fe11ce1dd9.tar.gz current-aea2ef36ce7429426cea468334d292fe11ce1dd9.tar.xz |
Wed Feb 27 03:09:41 UTC 201920190227030941
a/btrfs-progs-4.20.2-x86_64-1.txz: Upgraded.
a/openssl-solibs-1.1.1b-x86_64-1.txz: Upgraded.
ap/ddrescue-1.24-x86_64-1.txz: Upgraded.
ap/sqlite-3.27.2-x86_64-1.txz: Upgraded.
l/libssh-0.8.7-x86_64-1.txz: Upgraded.
l/talloc-2.1.16-x86_64-1.txz: Upgraded.
l/tdb-1.3.18-x86_64-1.txz: Upgraded.
l/tevent-0.9.39-x86_64-1.txz: Upgraded.
n/ca-certificates-20181210-noarch-2.txz: Rebuilt.
Use "c_rehash" rather than "openssl rehash" for compatibility with all
versions of OpenSSL.
n/epic5-2.1.1-x86_64-1.txz: Upgraded.
n/openssl-1.1.1b-x86_64-1.txz: Upgraded.
x/xorg-server-1.20.4-x86_64-1.txz: Upgraded.
x/xorg-server-xephyr-1.20.4-x86_64-1.txz: Upgraded.
x/xorg-server-xnest-1.20.4-x86_64-1.txz: Upgraded.
x/xorg-server-xvfb-1.20.4-x86_64-1.txz: Upgraded.
xap/mozilla-thunderbird-60.5.2-x86_64-1.txz: Upgraded.
This is a bugfix release.
For more information, see:
https://www.mozilla.org/en-US/thunderbird/60.5.2/releasenotes/
Diffstat (limited to 'source/n/ca-certificates')
-rwxr-xr-x | source/n/ca-certificates/ca-certificates.SlackBuild | 7 | ||||
-rw-r--r-- | source/n/ca-certificates/slack-desc | 2 | ||||
-rw-r--r-- | source/n/ca-certificates/update-ca-certificates.c_rehash.diff | 14 |
3 files changed, 21 insertions, 2 deletions
diff --git a/source/n/ca-certificates/ca-certificates.SlackBuild b/source/n/ca-certificates/ca-certificates.SlackBuild index 847769370..08c7bd3e5 100755 --- a/source/n/ca-certificates/ca-certificates.SlackBuild +++ b/source/n/ca-certificates/ca-certificates.SlackBuild @@ -28,7 +28,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=ca-certificates VERSION=${VERSION:-$(echo certdata-*.txt.xz | cut -f 2 -d - | cut -f 1 -d .)} ARCH=noarch -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} # 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 @@ -64,6 +64,11 @@ find . \ # Remove incompatible command operators used to call 'run-parts': zcat $CWD/fixup_update-ca-certificates.diff.gz | patch -p1 || exit 1 +# Use "c_rehash" rather than "openssl rehash". They act mostly the same, but +# the openssl builtin is not available on older versions of Slackware, while +# c_rehash will always be there. +zcat $CWD/update-ca-certificates.c_rehash.diff.gz | patch -p1 || exit 1 + # Update to certdata.txt from $CWD: xzcat $CWD/certdata-${VERSION}.txt.xz > mozilla/certdata.txt diff --git a/source/n/ca-certificates/slack-desc b/source/n/ca-certificates/slack-desc index 0ccfdb193..d33aa3756 100644 --- a/source/n/ca-certificates/slack-desc +++ b/source/n/ca-certificates/slack-desc @@ -11,7 +11,7 @@ ca-certificates: ca-certificates: This package includes PEM files of CA certificates to allow SSL-based ca-certificates: applications to check for the authenticity of SSL connections. ca-certificates: -ca-certificates: Homepage: http://packages.qa.debian.org/c/ca-certificates.html +ca-certificates: ca-certificates: ca-certificates: ca-certificates: diff --git a/source/n/ca-certificates/update-ca-certificates.c_rehash.diff b/source/n/ca-certificates/update-ca-certificates.c_rehash.diff new file mode 100644 index 000000000..c32849bee --- /dev/null +++ b/source/n/ca-certificates/update-ca-certificates.c_rehash.diff @@ -0,0 +1,14 @@ +--- ./sbin/update-ca-certificates.orig 2019-02-26 14:32:54.468993281 -0600 ++++ ./sbin/update-ca-certificates 2019-02-26 14:33:18.352991305 -0600 +@@ -174,9 +174,9 @@ + # only run if set of files has changed + if [ "$verbose" = 0 ] + then +- openssl rehash . > /dev/null ++ c_rehash . > /dev/null + else +- openssl rehash . ++ c_rehash . + fi + fi + |