From 4c189bc9bc307a9cd477afb9ff560c7138f8bdd0 Mon Sep 17 00:00:00 2001 From: Patrick J Volkerding Date: Mon, 3 May 2021 19:58:20 +0000 Subject: Mon May 3 19:58:20 UTC 2021 a/kernel-firmware-20210503_3f23f51-noarch-1.txz: Upgraded. ap/mariadb-10.5.9-x86_64-1.txz: Upgraded. Reverted to the latest stable release. d/mercurial-5.8-x86_64-1.txz: Upgraded. kde/calligra-3.2.1-x86_64-8.txz: Rebuilt. Recompiled against poppler-21.05.0. kde/cantor-21.04.0-x86_64-2.txz: Rebuilt. Recompiled against poppler-21.05.0. kde/kfilemetadata-5.81.0-x86_64-2.txz: Rebuilt. Recompiled against poppler-21.05.0. kde/kile-2.9.93-x86_64-8.txz: Rebuilt. Recompiled against poppler-21.05.0. kde/kitinerary-21.04.0-x86_64-2.txz: Rebuilt. Recompiled against poppler-21.05.0. kde/krita-4.4.3-x86_64-4.txz: Rebuilt. Recompiled against poppler-21.05.0. kde/okular-21.04.0-x86_64-2.txz: Rebuilt. Recompiled against poppler-21.05.0. l/isl-0.24-x86_64-1.txz: Upgraded. l/poppler-21.05.0-x86_64-1.txz: Upgraded. Shared library .so-version bump. l/python-pygments-2.9.0-x86_64-1.txz: Upgraded. n/ethtool-5.12-x86_64-1.txz: Upgraded. n/httpd-2.4.47-x86_64-2.txz: Rebuilt. Recompiled against the mariadb-10.5.9 shared libraries. n/postfix-3.6.0-x86_64-2.txz: Rebuilt. Recompiled against the mariadb-10.5.9 shared libraries. xap/gparted-1.3.0-x86_64-1.txz: Upgraded. testing/packages/mariadb-10.6.0-x86_64-1.txz: Upgraded. Since this is still considered alpha and not production ready, we'll put it in /testing for now. Unless you're using an Atom (or other 32-bit processor affected by the illegal instruction issue) it's probably best to stick with mariadb-10.5.9. --- source/l/isl/isl.SlackBuild | 2 +- .../2ed4cd66401bc1d9683c94238e9024218d7be3ba.patch | 26 ------- .../d7aa275b0bca86ae174e7e504dd269df2a0234cf.patch | 81 ---------------------- source/l/poppler/poppler.SlackBuild | 6 +- 4 files changed, 2 insertions(+), 113 deletions(-) delete mode 100644 source/l/poppler/2ed4cd66401bc1d9683c94238e9024218d7be3ba.patch delete mode 100644 source/l/poppler/d7aa275b0bca86ae174e7e504dd269df2a0234cf.patch (limited to 'source/l') diff --git a/source/l/isl/isl.SlackBuild b/source/l/isl/isl.SlackBuild index 86ba47baa..27c2666f7 100755 --- a/source/l/isl/isl.SlackBuild +++ b/source/l/isl/isl.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=isl VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-3} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then diff --git a/source/l/poppler/2ed4cd66401bc1d9683c94238e9024218d7be3ba.patch b/source/l/poppler/2ed4cd66401bc1d9683c94238e9024218d7be3ba.patch deleted file mode 100644 index ed3169eab..000000000 --- a/source/l/poppler/2ed4cd66401bc1d9683c94238e9024218d7be3ba.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 2ed4cd66401bc1d9683c94238e9024218d7be3ba Mon Sep 17 00:00:00 2001 -From: Albert Astals Cid -Date: Wed, 7 Apr 2021 00:14:59 +0200 -Subject: [PATCH] TextOutputDev: Fix crash in malformed file - -oss-fuzz/32952 ---- - poppler/TextOutputDev.cc | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/poppler/TextOutputDev.cc b/poppler/TextOutputDev.cc -index ea12b4689..956c13289 100644 ---- a/poppler/TextOutputDev.cc -+++ b/poppler/TextOutputDev.cc -@@ -931,7 +931,7 @@ TextPool::~TextPool() - int TextPool::getBaseIdx(double base) const - { - const double baseIdxDouble = base / textPoolStep; -- if (baseIdxDouble < minBaseIdx) { -+ if (std::isnan(baseIdxDouble) || baseIdxDouble < minBaseIdx) { - return minBaseIdx; - } - if (baseIdxDouble > maxBaseIdx) { --- -GitLab - diff --git a/source/l/poppler/d7aa275b0bca86ae174e7e504dd269df2a0234cf.patch b/source/l/poppler/d7aa275b0bca86ae174e7e504dd269df2a0234cf.patch deleted file mode 100644 index 31cba1c01..000000000 --- a/source/l/poppler/d7aa275b0bca86ae174e7e504dd269df2a0234cf.patch +++ /dev/null @@ -1,81 +0,0 @@ -From d7aa275b0bca86ae174e7e504dd269df2a0234cf Mon Sep 17 00:00:00 2001 -From: Evangelos Foutras -Date: Tue, 6 Apr 2021 09:56:55 +0300 -Subject: [PATCH] Export SplashFont* symbols used by Scribus - -Scribus 1.5.6.1 compiled against poppler 21.04.0 was unable to load its -PDF importer plugin without these classes being exported by libpoppler: - -- SplashFontFileID -- SplashFontEngine -- SplashFontSrc ---- - splash/SplashFontEngine.h | 3 ++- - splash/SplashFontFile.h | 3 ++- - splash/SplashFontFileID.h | 4 +++- - 3 files changed, 7 insertions(+), 3 deletions(-) - -diff --git a/splash/SplashFontEngine.h b/splash/SplashFontEngine.h -index becc0d9ce..3e5458c09 100644 ---- a/splash/SplashFontEngine.h -+++ b/splash/SplashFontEngine.h -@@ -30,6 +30,7 @@ - #include - - #include "SplashTypes.h" -+#include "poppler_private_export.h" - - class SplashT1FontEngine; - class SplashFTFontEngine; -@@ -44,7 +45,7 @@ class SplashFontSrc; - // SplashFontEngine - //------------------------------------------------------------------------ - --class SplashFontEngine -+class POPPLER_PRIVATE_EXPORT SplashFontEngine - { - public: - // Create a font engine. -diff --git a/splash/SplashFontFile.h b/splash/SplashFontFile.h -index 598fd8325..539bd3075 100644 ---- a/splash/SplashFontFile.h -+++ b/splash/SplashFontFile.h -@@ -23,6 +23,7 @@ - #define SPLASHFONTFILE_H - - #include "SplashTypes.h" -+#include "poppler_private_export.h" - - class GooString; - class SplashFontEngine; -@@ -33,7 +34,7 @@ class SplashFontFileID; - // SplashFontFile - //------------------------------------------------------------------------ - --class SplashFontSrc -+class POPPLER_PRIVATE_EXPORT SplashFontSrc - { - public: - SplashFontSrc(); -diff --git a/splash/SplashFontFileID.h b/splash/SplashFontFileID.h -index 02b528aab..c127dd87f 100644 ---- a/splash/SplashFontFileID.h -+++ b/splash/SplashFontFileID.h -@@ -21,11 +21,13 @@ - #ifndef SPLASHFONTFILEID_H - #define SPLASHFONTFILEID_H - -+#include "poppler_private_export.h" -+ - //------------------------------------------------------------------------ - // SplashFontFileID - //------------------------------------------------------------------------ - --class SplashFontFileID -+class POPPLER_PRIVATE_EXPORT SplashFontFileID - { - public: - SplashFontFileID(); --- -GitLab - diff --git a/source/l/poppler/poppler.SlackBuild b/source/l/poppler/poppler.SlackBuild index ee09a238a..76768ad9b 100755 --- a/source/l/poppler/poppler.SlackBuild +++ b/source/l/poppler/poppler.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=poppler VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -77,10 +77,6 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \+ -# Apply upstream patches to fix regressions: -zcat $CWD/2ed4cd66401bc1d9683c94238e9024218d7be3ba.patch.gz | patch -p1 --verbose || exit 1 -zcat $CWD/d7aa275b0bca86ae174e7e504dd269df2a0234cf.patch.gz | patch -p1 --verbose || exit 1 - mkdir cmake-build cd cmake-build -- cgit v1.2.3