slackware-current/source/xap/mozilla-thunderbird/mozilla-thunderbird.SlackBuild

366 lines
13 KiB
Text
Raw Normal View History

#!/bin/bash
# Copyright 2008, 2009, 2010, 2011, 2012, 2014, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Patrick J. Volkerding, Sebeka, Minnesota, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# Modified 2012 by Eric Hameleers <alien at slackware.com> for ARM port.
# Thanks to the folks at the Mozilla Foundation for permission to
# distribute this, and for all the great work! :-)
cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=mozilla-thunderbird
VERSION=$(basename $(ls thunderbird-*.tar.?z | cut -d - -f 2 | rev | cut -f 3- -d . | rev) .source)
RELEASEVER=$(echo $VERSION | cut -f 1 -d e | cut -f 1 -d b)
BUILD=${BUILD:-1}
# Specify this variable for a localized build.
# For example, to build a version of Thunderbird with Italian support, run
# the build script like this:
#
Thu Sep 12 03:58:53 UTC 2019 a/glibc-zoneinfo-2019c-noarch-1.txz: Upgraded. This package provides the latest timezone updates. a/openssl-solibs-1.1.1d-x86_64-1.txz: Upgraded. a/openssl10-solibs-1.0.2t-x86_64-1.txz: Upgraded. ap/mariadb-10.4.8-x86_64-1.txz: Upgraded. l/netpbm-10.87.02-x86_64-1.txz: Upgraded. n/curl-7.66.0-x86_64-1.txz: Upgraded. This update fixes security issues: FTP-KRB double-free TFTP small blocksize heap buffer overflow For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5481 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5482 (* Security fix *) n/openssl-1.1.1d-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a fork protection issue Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1549 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/openssl10-1.0.2t-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/p11-kit-0.23.17-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-68.1.0-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/68.1.0/releasenotes/ https://www.mozilla.org/security/known-vulnerabilities/thunderbird.html (* Security fix *) extra/google-chrome/google-chrome.SlackBuild: Upgraded. Patched the packaging script to account for the internal change of control.tar.gz to control.tar.xz. Thanks to _RDS_ and Tim Thomas who both provided the same patch.
2019-09-12 05:58:53 +02:00
# MOZLOCALIZE=it ./mozilla-thunderbird.SlackBuild
#
MOZLOCALIZE=${MOZLOCALIZE:-}
# Without LANG=C, building the Python environment may fail with:
# "UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 36: ordinal not in range(128)"
LANG=C
# Add a shell script to start the thunderbird binary with MOZ_ALLOW_DOWNGRADE=1
# to avoid backing up (and disabling) the user profile if a browser downgrade
# is detected. If you want to build with the stock default behavior, set
# this to something other than "YES":
MOZ_ALLOW_DOWNGRADE=${MOZ_ALLOW_DOWNGRADE:-YES}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) export ARCH=i686 ;;
arm*) export ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) export ARCH=$( uname -m ) ;;
esac
fi
# 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
# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
if [ -z $MOZLOCALIZE ]; then
echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
else
echo "$PKGNAM-$VERSION-$ARCH-${BUILD}_$MOZLOCALIZE.txz"
fi
exit 0
fi
# Thunderbird has been requiring more and more memory, especially while linking
# libxul. If it fails to build natively on x86 32-bit, it can be useful to
# attempt the build using an x86_64 kernel and a 32-bit userspace. Detect this
# situation and set the ARCH to i686. Later in the script we'll add some
# options to the .mozconfig so that the compile will do the right thing.
if [ "$(uname -m)" = "x86_64" -a "$(file -L /usr/bin/gcc | grep 80386 | grep 32-bit)" != "" ]; then
COMPILE_X86_UNDER_X86_64=true
ARCH=i686
fi
Wed Aug 7 04:03:09 UTC 2024 a/bash-5.2.032-x86_64-2.txz: Rebuilt. Patched a C compatibility error with GCC 14 in the configure.ac script that was causing the printf builtin to malfunction. Thanks to elMoco for the bug report. l/qt6-6.7.2_20240610_3f005f1e-x86_64-4.txz: Rebuilt. Recompiled against abseil-cpp-20240722.0. n/curl-8.9.1-x86_64-2.txz: Rebuilt. This is a bugfix release. [PATCH] sigpipe: init the struct so that first apply ignores. Thanks to ponce. n/samba-4.20.4-x86_64-1.txz: Upgraded. xap/mozilla-firefox-128.1.0esr-x86_64-1.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/firefox/128.1.0/releasenotes/ https://www.mozilla.org/security/advisories/mfsa2024-35/ https://www.cve.org/CVERecord?id=CVE-2024-7518 https://www.cve.org/CVERecord?id=CVE-2024-7519 https://www.cve.org/CVERecord?id=CVE-2024-7520 https://www.cve.org/CVERecord?id=CVE-2024-7521 https://www.cve.org/CVERecord?id=CVE-2024-7522 https://www.cve.org/CVERecord?id=CVE-2024-7524 https://www.cve.org/CVERecord?id=CVE-2024-7525 https://www.cve.org/CVERecord?id=CVE-2024-7526 https://www.cve.org/CVERecord?id=CVE-2024-7527 https://www.cve.org/CVERecord?id=CVE-2024-7528 https://www.cve.org/CVERecord?id=CVE-2024-7529 https://www.cve.org/CVERecord?id=CVE-2024-7531 (* Security fix *) xap/mozilla-thunderbird-128.1.0esr-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.mozilla.org/en-US/thunderbird/128.1.0esr/releasenotes/
2024-08-07 06:03:09 +02:00
if [ "$ARCH" = "i686" ]; then
Tue Jul 23 18:54:25 UTC 2024 Hey folks, we got a new glibc and are beginning the process of baking the new default compile flags into the toolchain, the graphics stack, and whatever else happens along. Enjoy! :-) a/aaa_glibc-solibs-2.40-x86_64-1.txz: Upgraded. a/libblockdev-3.1.1_1-x86_64-2.txz: Rebuilt. Fix build against recent ext2fs.h. Thanks to shipujin. a/xfsprogs-6.9.0-x86_64-1.txz: Upgraded. ap/rpm-4.19.1.1-x86_64-3.txz: Rebuilt. ap/slackpkg-15.0.10-noarch-4.txz: Rebuilt. Prefer gpg1 again. Going with the modern gpg with more dependencies was a mistake in this case. (now we know why gnupg-1 is still around :-) Thanks to Petri Kaukasoina. d/binutils-2.42-x86_64-3.txz: Rebuilt. d/cargo-vendor-filterer-0.5.14-x86_64-2.txz: Rebuilt. d/cbindgen-0.26.0-x86_64-2.txz: Rebuilt. d/ccache-4.10.2-x86_64-1.txz: Upgraded. d/cmake-3.30.1-x86_64-2.txz: Rebuilt. d/gcc-14.1.0-x86_64-2.txz: Rebuilt. d/gcc-g++-14.1.0-x86_64-2.txz: Rebuilt. d/gcc-gdc-14.1.0-x86_64-2.txz: Rebuilt. d/gcc-gfortran-14.1.0-x86_64-2.txz: Rebuilt. d/gcc-gm2-14.1.0-x86_64-2.txz: Rebuilt. d/gcc-gnat-14.1.0-x86_64-2.txz: Rebuilt. d/gcc-go-14.1.0-x86_64-2.txz: Rebuilt. d/gcc-objc-14.1.0-x86_64-2.txz: Rebuilt. d/libgccjit-14.1.0-x86_64-2.txz: Rebuilt. d/libtool-2.4.7-x86_64-8.txz: Rebuilt. d/parallel-20240722-noarch-1.txz: Upgraded. d/pkg-config-0.29.2-x86_64-5.txz: Rebuilt. d/python-setuptools-71.1.0-x86_64-1.txz: Upgraded. d/ruby-3.3.4-x86_64-2.txz: Rebuilt. d/rust-bindgen-0.69.4-x86_64-2.txz: Rebuilt. d/strace-6.10-x86_64-1.txz: Upgraded. d/subversion-1.14.3-x86_64-3.txz: Rebuilt. e/emacs-29.4-x86_64-2.txz: Rebuilt. l/PyQt-builder-1.16.4-x86_64-2.txz: Rebuilt. l/PyQt5-5.15.11-x86_64-1.txz: Upgraded. l/PyQt5_sip-12.15.0-x86_64-2.txz: Rebuilt. l/argon2-20190702-x86_64-6.txz: Rebuilt. l/ffmpeg-6.1.1-x86_64-5.txz: Rebuilt. l/glibc-2.40-x86_64-1.txz: Upgraded. This update fixes security issues: nscd: Stack-based buffer overflow in netgroup cache. nscd: Null pointer crash after notfound response. nscd: netgroup cache may terminate daemon on memory allocation failure. nscd: netgroup cache assumes NSS callback uses in-buffer strings. These vulnerabilities were only present in the nscd binary. For more information, see: https://www.cve.org/CVERecord?id=CVE-2024-33599 https://www.cve.org/CVERecord?id=CVE-2024-33600 https://www.cve.org/CVERecord?id=CVE-2024-33601 https://www.cve.org/CVERecord?id=CVE-2024-33602 (* Security fix *) l/glibc-i18n-2.40-x86_64-1.txz: Upgraded. l/glibc-profile-2.40-x86_64-1.txz: Upgraded. l/gst-plugins-good-1.24.5-x86_64-2.txz: Rebuilt. l/libcdio-paranoia-10.2+2.0.2-x86_64-1.txz: Upgraded. l/libclc-18.1.8-x86_64-3.txz: Rebuilt. l/libproxy-0.5.8-x86_64-1.txz: Upgraded. l/lz4-1.10.0-x86_64-1.txz: Upgraded. l/poppler-24.07.0-x86_64-2.txz: Rebuilt. l/python-importlib_metadata-8.1.0-x86_64-1.txz: Upgraded. l/python-sphinx-7.4.7-x86_64-1.txz: Upgraded. l/qt5-5.15.14_20240716_ae0c8451-x86_64-1.txz: Upgraded. l/qt5-webkit-5.212.0_alpha4-x86_64-13.txz: Rebuilt. l/qt6-6.7.2_20240610_3f005f1e-x86_64-3.txz: Rebuilt. l/sip-6.8.6-x86_64-2.txz: Rebuilt. l/spirv-llvm-translator-18.1.2-x86_64-2.txz: Rebuilt. l/v4l-utils-1.28.0-x86_64-1.txz: Upgraded. n/bind-9.18.28-x86_64-1.txz: Upgraded. This update fixes security issues: Remove SIG(0) support from named as a countermeasure for CVE-2024-1975. qctx-zversion was not being cleared when it should have been leading to an assertion failure if it needed to be reused. An excessively large number of rrtypes per owner can slow down database query processing, so a limit has been placed on the number of rrtypes that can be stored per owner (node) in a cache or zone database. This is configured with the new "max-rrtypes-per-name" option, and defaults to 100. Excessively large rdatasets can slow down database query processing, so a limit has been placed on the number of records that can be stored per rdataset in a cache or zone database. This is configured with the new "max-records-per-type" option, and defaults to 100. Malicious DNS client that sends many queries over TCP but never reads responses can cause server to respond slowly or not respond at all for other clients. For more information, see: https://www.cve.org/CVERecord?id=CVE-2024-1975 https://www.cve.org/CVERecord?id=CVE-2024-4076 https://www.cve.org/CVERecord?id=CVE-2024-1737 https://www.cve.org/CVERecord?id=CVE-2024-0760 (* Security fix *) n/fetchmail-6.4.39-x86_64-1.txz: Upgraded. n/obexftp-0.24.2-x86_64-13.txz: Rebuilt. n/pinentry-1.3.1-x86_64-2.txz: Rebuilt. n/wpa_supplicant-2.11-x86_64-1.txz: Upgraded. x/fcitx5-qt-5.1.6-x86_64-3.txz: Rebuilt. x/ibus-m17n-1.4.30-x86_64-1.txz: Upgraded. x/libdrm-2.4.122-x86_64-2.txz: Rebuilt. x/marisa-0.2.6-x86_64-10.txz: Rebuilt. x/mesa-24.1.4-x86_64-2.txz: Rebuilt. x/vulkan-sdk-1.3.275.0-x86_64-3.txz: Rebuilt. xap/audacious-4.4-x86_64-2.txz: Rebuilt. xap/audacious-plugins-4.4-x86_64-2.txz: Rebuilt. xap/mozilla-thunderbird-128.0.1esr-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.mozilla.org/en-US/thunderbird/128.0.1esr/releasenotes/ xap/xaos-4.3.2-x86_64-2.txz: Rebuilt. extra/emacs-regular-build/emacs-29.4-x86_64-2_regular.txz: Rebuilt.
2024-07-23 20:54:25 +02:00
SLKCFLAGS="-g0 -march=pentium4 -mtune=generic"
Thu Mar 25 01:29:36 UTC 2021 a/dialog-1.3_20210319-x86_64-2.txz: Rebuilt. Install /etc/dialogrc as /etc/dialogrc.new. This won't protect the file with this update, but it will moving forward. Thanks to Tonus. l/libsigc++3-3.0.6-x86_64-1.txz: Added. x/libinput-1.17.1-x86_64-1.txz: Upgraded. xap/mozilla-firefox-87.0-x86_64-2.txz: Rebuilt. Pass --enable-optimize to let the build handle optimizations (apparently which optimizations work best differs throughout the tree). Don't pass optimization options in CFLAGS/CXXFLAGS. Build with --enable-rust-simd since upstream's binary releases do. xap/mozilla-thunderbird-78.9.0-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/78.9.0/releasenotes/ https://www.mozilla.org/en-US/security/advisories/mfsa2021-12/ https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23981 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23982 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23984 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23987 (* Security fix *) testing/packages/linux-5.11.x/kernel-generic-5.11.9-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-headers-5.11.9-x86-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-huge-5.11.9-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-modules-5.11.9-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-source-5.11.9-noarch-1.txz: Upgraded. -ADI_AXI_ADC m AD9467 m -> n FONT_TER16x32 n -> y
2021-03-25 02:29:36 +01:00
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
Tue Jul 23 18:54:25 UTC 2024 Hey folks, we got a new glibc and are beginning the process of baking the new default compile flags into the toolchain, the graphics stack, and whatever else happens along. Enjoy! :-) a/aaa_glibc-solibs-2.40-x86_64-1.txz: Upgraded. a/libblockdev-3.1.1_1-x86_64-2.txz: Rebuilt. Fix build against recent ext2fs.h. Thanks to shipujin. a/xfsprogs-6.9.0-x86_64-1.txz: Upgraded. ap/rpm-4.19.1.1-x86_64-3.txz: Rebuilt. ap/slackpkg-15.0.10-noarch-4.txz: Rebuilt. Prefer gpg1 again. Going with the modern gpg with more dependencies was a mistake in this case. (now we know why gnupg-1 is still around :-) Thanks to Petri Kaukasoina. d/binutils-2.42-x86_64-3.txz: Rebuilt. d/cargo-vendor-filterer-0.5.14-x86_64-2.txz: Rebuilt. d/cbindgen-0.26.0-x86_64-2.txz: Rebuilt. d/ccache-4.10.2-x86_64-1.txz: Upgraded. d/cmake-3.30.1-x86_64-2.txz: Rebuilt. d/gcc-14.1.0-x86_64-2.txz: Rebuilt. d/gcc-g++-14.1.0-x86_64-2.txz: Rebuilt. d/gcc-gdc-14.1.0-x86_64-2.txz: Rebuilt. d/gcc-gfortran-14.1.0-x86_64-2.txz: Rebuilt. d/gcc-gm2-14.1.0-x86_64-2.txz: Rebuilt. d/gcc-gnat-14.1.0-x86_64-2.txz: Rebuilt. d/gcc-go-14.1.0-x86_64-2.txz: Rebuilt. d/gcc-objc-14.1.0-x86_64-2.txz: Rebuilt. d/libgccjit-14.1.0-x86_64-2.txz: Rebuilt. d/libtool-2.4.7-x86_64-8.txz: Rebuilt. d/parallel-20240722-noarch-1.txz: Upgraded. d/pkg-config-0.29.2-x86_64-5.txz: Rebuilt. d/python-setuptools-71.1.0-x86_64-1.txz: Upgraded. d/ruby-3.3.4-x86_64-2.txz: Rebuilt. d/rust-bindgen-0.69.4-x86_64-2.txz: Rebuilt. d/strace-6.10-x86_64-1.txz: Upgraded. d/subversion-1.14.3-x86_64-3.txz: Rebuilt. e/emacs-29.4-x86_64-2.txz: Rebuilt. l/PyQt-builder-1.16.4-x86_64-2.txz: Rebuilt. l/PyQt5-5.15.11-x86_64-1.txz: Upgraded. l/PyQt5_sip-12.15.0-x86_64-2.txz: Rebuilt. l/argon2-20190702-x86_64-6.txz: Rebuilt. l/ffmpeg-6.1.1-x86_64-5.txz: Rebuilt. l/glibc-2.40-x86_64-1.txz: Upgraded. This update fixes security issues: nscd: Stack-based buffer overflow in netgroup cache. nscd: Null pointer crash after notfound response. nscd: netgroup cache may terminate daemon on memory allocation failure. nscd: netgroup cache assumes NSS callback uses in-buffer strings. These vulnerabilities were only present in the nscd binary. For more information, see: https://www.cve.org/CVERecord?id=CVE-2024-33599 https://www.cve.org/CVERecord?id=CVE-2024-33600 https://www.cve.org/CVERecord?id=CVE-2024-33601 https://www.cve.org/CVERecord?id=CVE-2024-33602 (* Security fix *) l/glibc-i18n-2.40-x86_64-1.txz: Upgraded. l/glibc-profile-2.40-x86_64-1.txz: Upgraded. l/gst-plugins-good-1.24.5-x86_64-2.txz: Rebuilt. l/libcdio-paranoia-10.2+2.0.2-x86_64-1.txz: Upgraded. l/libclc-18.1.8-x86_64-3.txz: Rebuilt. l/libproxy-0.5.8-x86_64-1.txz: Upgraded. l/lz4-1.10.0-x86_64-1.txz: Upgraded. l/poppler-24.07.0-x86_64-2.txz: Rebuilt. l/python-importlib_metadata-8.1.0-x86_64-1.txz: Upgraded. l/python-sphinx-7.4.7-x86_64-1.txz: Upgraded. l/qt5-5.15.14_20240716_ae0c8451-x86_64-1.txz: Upgraded. l/qt5-webkit-5.212.0_alpha4-x86_64-13.txz: Rebuilt. l/qt6-6.7.2_20240610_3f005f1e-x86_64-3.txz: Rebuilt. l/sip-6.8.6-x86_64-2.txz: Rebuilt. l/spirv-llvm-translator-18.1.2-x86_64-2.txz: Rebuilt. l/v4l-utils-1.28.0-x86_64-1.txz: Upgraded. n/bind-9.18.28-x86_64-1.txz: Upgraded. This update fixes security issues: Remove SIG(0) support from named as a countermeasure for CVE-2024-1975. qctx-zversion was not being cleared when it should have been leading to an assertion failure if it needed to be reused. An excessively large number of rrtypes per owner can slow down database query processing, so a limit has been placed on the number of rrtypes that can be stored per owner (node) in a cache or zone database. This is configured with the new "max-rrtypes-per-name" option, and defaults to 100. Excessively large rdatasets can slow down database query processing, so a limit has been placed on the number of records that can be stored per rdataset in a cache or zone database. This is configured with the new "max-records-per-type" option, and defaults to 100. Malicious DNS client that sends many queries over TCP but never reads responses can cause server to respond slowly or not respond at all for other clients. For more information, see: https://www.cve.org/CVERecord?id=CVE-2024-1975 https://www.cve.org/CVERecord?id=CVE-2024-4076 https://www.cve.org/CVERecord?id=CVE-2024-1737 https://www.cve.org/CVERecord?id=CVE-2024-0760 (* Security fix *) n/fetchmail-6.4.39-x86_64-1.txz: Upgraded. n/obexftp-0.24.2-x86_64-13.txz: Rebuilt. n/pinentry-1.3.1-x86_64-2.txz: Rebuilt. n/wpa_supplicant-2.11-x86_64-1.txz: Upgraded. x/fcitx5-qt-5.1.6-x86_64-3.txz: Rebuilt. x/ibus-m17n-1.4.30-x86_64-1.txz: Upgraded. x/libdrm-2.4.122-x86_64-2.txz: Rebuilt. x/marisa-0.2.6-x86_64-10.txz: Rebuilt. x/mesa-24.1.4-x86_64-2.txz: Rebuilt. x/vulkan-sdk-1.3.275.0-x86_64-3.txz: Rebuilt. xap/audacious-4.4-x86_64-2.txz: Rebuilt. xap/audacious-plugins-4.4-x86_64-2.txz: Rebuilt. xap/mozilla-thunderbird-128.0.1esr-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.mozilla.org/en-US/thunderbird/128.0.1esr/releasenotes/ xap/xaos-4.3.2-x86_64-2.txz: Rebuilt. extra/emacs-regular-build/emacs-29.4-x86_64-2_regular.txz: Rebuilt.
2024-07-23 20:54:25 +02:00
SLKCFLAGS="-g0 -march=x86-64 -mtune=generic -fPIC"
LIBDIRSUFFIX="64"
elif [ "$ARCH" = "arm" ]; then
Thu Mar 25 01:29:36 UTC 2021 a/dialog-1.3_20210319-x86_64-2.txz: Rebuilt. Install /etc/dialogrc as /etc/dialogrc.new. This won't protect the file with this update, but it will moving forward. Thanks to Tonus. l/libsigc++3-3.0.6-x86_64-1.txz: Added. x/libinput-1.17.1-x86_64-1.txz: Upgraded. xap/mozilla-firefox-87.0-x86_64-2.txz: Rebuilt. Pass --enable-optimize to let the build handle optimizations (apparently which optimizations work best differs throughout the tree). Don't pass optimization options in CFLAGS/CXXFLAGS. Build with --enable-rust-simd since upstream's binary releases do. xap/mozilla-thunderbird-78.9.0-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/78.9.0/releasenotes/ https://www.mozilla.org/en-US/security/advisories/mfsa2021-12/ https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23981 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23982 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23984 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23987 (* Security fix *) testing/packages/linux-5.11.x/kernel-generic-5.11.9-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-headers-5.11.9-x86-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-huge-5.11.9-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-modules-5.11.9-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-source-5.11.9-noarch-1.txz: Upgraded. -ADI_AXI_ADC m AD9467 m -> n FONT_TER16x32 n -> y
2021-03-25 02:29:36 +01:00
SLKCFLAGS="-g0 -march=armv4 -mtune=xscale"
LIBDIRSUFFIX=""
else
Thu Mar 25 01:29:36 UTC 2021 a/dialog-1.3_20210319-x86_64-2.txz: Rebuilt. Install /etc/dialogrc as /etc/dialogrc.new. This won't protect the file with this update, but it will moving forward. Thanks to Tonus. l/libsigc++3-3.0.6-x86_64-1.txz: Added. x/libinput-1.17.1-x86_64-1.txz: Upgraded. xap/mozilla-firefox-87.0-x86_64-2.txz: Rebuilt. Pass --enable-optimize to let the build handle optimizations (apparently which optimizations work best differs throughout the tree). Don't pass optimization options in CFLAGS/CXXFLAGS. Build with --enable-rust-simd since upstream's binary releases do. xap/mozilla-thunderbird-78.9.0-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/78.9.0/releasenotes/ https://www.mozilla.org/en-US/security/advisories/mfsa2021-12/ https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23981 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23982 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23984 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23987 (* Security fix *) testing/packages/linux-5.11.x/kernel-generic-5.11.9-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-headers-5.11.9-x86-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-huge-5.11.9-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-modules-5.11.9-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-source-5.11.9-noarch-1.txz: Upgraded. -ADI_AXI_ADC m AD9467 m -> n FONT_TER16x32 n -> y
2021-03-25 02:29:36 +01:00
SLKCFLAGS="-g0"
LIBDIRSUFFIX=""
fi
Thu Sep 12 03:58:53 UTC 2019 a/glibc-zoneinfo-2019c-noarch-1.txz: Upgraded. This package provides the latest timezone updates. a/openssl-solibs-1.1.1d-x86_64-1.txz: Upgraded. a/openssl10-solibs-1.0.2t-x86_64-1.txz: Upgraded. ap/mariadb-10.4.8-x86_64-1.txz: Upgraded. l/netpbm-10.87.02-x86_64-1.txz: Upgraded. n/curl-7.66.0-x86_64-1.txz: Upgraded. This update fixes security issues: FTP-KRB double-free TFTP small blocksize heap buffer overflow For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5481 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5482 (* Security fix *) n/openssl-1.1.1d-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a fork protection issue Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1549 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/openssl10-1.0.2t-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/p11-kit-0.23.17-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-68.1.0-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/68.1.0/releasenotes/ https://www.mozilla.org/security/known-vulnerabilities/thunderbird.html (* Security fix *) extra/google-chrome/google-chrome.SlackBuild: Upgraded. Patched the packaging script to account for the internal change of control.tar.gz to control.tar.xz. Thanks to _RDS_ and Tim Thomas who both provided the same patch.
2019-09-12 05:58:53 +02:00
# Choose a compiler (gcc/g++ or clang/clang++):
Tue Jul 5 20:33:18 UTC 2022 a/hwdata-0.361-noarch-1.txz: Upgraded. a/kernel-firmware-20220705_f5f02da-noarch-1.txz: Upgraded. a/kmod-30-x86_64-1.txz: Upgraded. a/mcelog-184-x86_64-1.txz: Upgraded. a/openssl-solibs-1.1.1q-x86_64-1.txz: Upgraded. ap/vim-9.0.0041-x86_64-1.txz: Upgraded. d/llvm-14.0.6-x86_64-2.txz: Rebuilt. Shared library .so-version bump. We gave the DYLIB options a try and the resulting compilers are unable to compile Firefox or Thunderbird, so we're back to using BUILD_SHARED_LIBS (which works fine). I'm in no real hurry to revisit this, but I'll look at any hints you might have for me if you post them on LQ. d/meson-0.63.0-x86_64-1.txz: Upgraded. d/rust-1.62.0-x86_64-1.txz: Upgraded. l/imagemagick-7.1.0_40-x86_64-1.txz: Upgraded. l/isl-0.25-x86_64-1.txz: Upgraded. l/libdmtx-0.7.7-x86_64-1.txz: Upgraded. l/libgphoto2-2.5.30-x86_64-1.txz: Upgraded. l/libmtp-1.1.20-x86_64-1.txz: Upgraded. l/libvpx-1.12.0-x86_64-1.txz: Upgraded. l/pipewire-0.3.53-x86_64-1.txz: Upgraded. l/poppler-22.07.0-x86_64-1.txz: Upgraded. l/spirv-llvm-translator-14.0.0-x86_64-2.txz: Rebuilt. Recompiled against llvm-14.0.6-2. n/openssl-1.1.1q-x86_64-1.txz: Upgraded. This update fixes security issues: Heap memory corruption with RSA private key operation. AES OCB fails to encrypt some bytes. For more information, see: https://www.openssl.org/news/secadv/20220705.txt https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2274 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097 (* Security fix *) n/wget2-2.0.1-x86_64-1.txz: Upgraded. x/libva-2.15.0-x86_64-1.txz: Upgraded. x/libva-utils-2.15.0-x86_64-1.txz: Upgraded. x/mesa-21.3.8-x86_64-3.txz: Rebuilt. Recompiled against llvm-14.0.6-2. xap/mozilla-firefox-102.0.1-x86_64-1.txz: Upgraded. This update contains security fixes (possibly) and improvements. At this time, the link below only says "We're still preparing the notes for this release, and will post them here when they are ready. Please check back later." For more information, see: https://www.mozilla.org/en-US/firefox/102.0.1/releasenotes/ (* Security fix *) xap/vim-gvim-9.0.0041-x86_64-1.txz: Upgraded. extra/rust-for-mozilla/rust-1.60.0-x86_64-1.txz: Upgraded.
2022-07-05 22:33:18 +02:00
export CC=${CC:-clang}
export CXX=${CXX:-clang++}
Thu Sep 12 03:58:53 UTC 2019 a/glibc-zoneinfo-2019c-noarch-1.txz: Upgraded. This package provides the latest timezone updates. a/openssl-solibs-1.1.1d-x86_64-1.txz: Upgraded. a/openssl10-solibs-1.0.2t-x86_64-1.txz: Upgraded. ap/mariadb-10.4.8-x86_64-1.txz: Upgraded. l/netpbm-10.87.02-x86_64-1.txz: Upgraded. n/curl-7.66.0-x86_64-1.txz: Upgraded. This update fixes security issues: FTP-KRB double-free TFTP small blocksize heap buffer overflow For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5481 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5482 (* Security fix *) n/openssl-1.1.1d-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a fork protection issue Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1549 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/openssl10-1.0.2t-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/p11-kit-0.23.17-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-68.1.0-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/68.1.0/releasenotes/ https://www.mozilla.org/security/known-vulnerabilities/thunderbird.html (* Security fix *) extra/google-chrome/google-chrome.SlackBuild: Upgraded. Patched the packaging script to account for the internal change of control.tar.gz to control.tar.xz. Thanks to _RDS_ and Tim Thomas who both provided the same patch.
2019-09-12 05:58:53 +02:00
Sun Nov 15 00:02:28 UTC 2020 a/inotify-tools-3.20.11.0-x86_64-1.txz: Upgraded. d/bison-3.7.4-x86_64-1.txz: Upgraded. l/gmp-6.2.1-x86_64-1.txz: Upgraded. l/mozilla-nss-3.59-x86_64-1.txz: Upgraded. xap/seamonkey-2.53.5-x86_64-1.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.seamonkey-project.org/releases/seamonkey2.53.5 (* Security fix *) testing/packages/vtown/kde/attica-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/baloo-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/bluez-qt-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/breeze-icons-5.76.0-noarch-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/digikam-7.1.0-x86_64-1_vtown_2.txz: Rebuilt. Moved to the correct directory. :-) testing/packages/vtown/kde/extra-cmake-modules-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/frameworkintegration-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kactivities-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kactivities-stats-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kapidox-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/karchive-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kauth-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kbookmarks-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcalendarcore-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcmutils-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcodecs-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcompletion-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kconfig-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kconfigwidgets-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcontacts-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcoreaddons-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcrash-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdav-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdbusaddons-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdeclarative-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kded-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdelibs4support-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdesignerplugin-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdesu-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdewebkit-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdnssd-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdoctools-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kemoticons-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kfilemetadata-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kglobalaccel-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kguiaddons-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kholidays-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/khtml-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/ki18n-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kiconthemes-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kidletime-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kimageformats-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kinit-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kio-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kirigami2-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kitemmodels-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kitemviews-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kjobwidgets-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kjs-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kjsembed-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kmediaplayer-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/knewstuff-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/knotifications-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/knotifyconfig-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kpackage-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kparts-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kpeople-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kplotting-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kpty-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kquickcharts-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kross-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/krunner-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kservice-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/ktexteditor-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/ktextwidgets-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kunitconversion-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwallet-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwayland-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwidgetsaddons-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwindowsystem-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kxmlgui-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kxmlrpcclient-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/modemmanager-qt-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/networkmanager-qt-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/oxygen-icons5-5.76.0-noarch-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/plasma-framework-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/prison-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/purpose-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/qqc2-desktop-style-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/solid-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/sonnet-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/syndication-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/syntax-highlighting-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/threadweaver-5.76.0-x86_64-1_vtown_1.txz: Upgraded.
2020-11-15 01:02:28 +01:00
# Set linker to use:
Fri May 14 02:38:35 UTC 2021 ap/vim-8.2.2850-x86_64-1.txz: Upgraded. d/llvm-12.0.0-x86_64-1.txz: Upgraded. Shared library .so-version bump. d/rust-1.52.1-x86_64-1.txz: Upgraded. kde/akonadi-21.04.1-x86_64-1.txz: Upgraded. kde/akonadi-calendar-21.04.1-x86_64-1.txz: Upgraded. kde/akonadi-calendar-tools-21.04.1-x86_64-1.txz: Upgraded. kde/akonadi-contacts-21.04.1-x86_64-1.txz: Upgraded. kde/akonadi-import-wizard-21.04.1-x86_64-1.txz: Upgraded. kde/akonadi-mime-21.04.1-x86_64-1.txz: Upgraded. kde/akonadi-notes-21.04.1-x86_64-1.txz: Upgraded. kde/akonadi-search-21.04.1-x86_64-1.txz: Upgraded. kde/akonadiconsole-21.04.1-x86_64-1.txz: Upgraded. kde/akregator-21.04.1-x86_64-1.txz: Upgraded. kde/analitza-21.04.1-x86_64-1.txz: Upgraded. kde/ark-21.04.1-x86_64-1.txz: Upgraded. kde/artikulate-21.04.1-x86_64-1.txz: Upgraded. kde/audiocd-kio-21.04.1-x86_64-1.txz: Upgraded. kde/baloo-widgets-21.04.1-x86_64-1.txz: Upgraded. kde/blinken-21.04.1-x86_64-1.txz: Upgraded. kde/bomber-21.04.1-x86_64-1.txz: Upgraded. kde/bovo-21.04.1-x86_64-1.txz: Upgraded. kde/calendarsupport-21.04.1-x86_64-1.txz: Upgraded. kde/cantor-21.04.1-x86_64-1.txz: Upgraded. kde/cervisia-21.04.1-x86_64-1.txz: Upgraded. kde/dolphin-21.04.1-x86_64-1.txz: Upgraded. kde/dolphin-plugins-21.04.1-x86_64-1.txz: Upgraded. kde/dragon-21.04.1-x86_64-1.txz: Upgraded. kde/elisa-21.04.1-x86_64-1.txz: Upgraded. kde/eventviews-21.04.1-x86_64-1.txz: Upgraded. kde/ffmpegthumbs-21.04.1-x86_64-1.txz: Upgraded. kde/filelight-21.04.1-x86_64-1.txz: Upgraded. kde/granatier-21.04.1-x86_64-1.txz: Upgraded. kde/grantlee-editor-21.04.1-x86_64-1.txz: Upgraded. kde/grantleetheme-21.04.1-x86_64-1.txz: Upgraded. kde/gwenview-21.04.1-x86_64-1.txz: Upgraded. kde/incidenceeditor-21.04.1-x86_64-1.txz: Upgraded. kde/itinerary-21.04.1-x86_64-1.txz: Upgraded. kde/juk-21.04.1-x86_64-1.txz: Upgraded. kde/k3b-21.04.1-x86_64-1.txz: Upgraded. kde/kaddressbook-21.04.1-x86_64-1.txz: Upgraded. kde/kalarm-21.04.1-x86_64-1.txz: Upgraded. kde/kalarmcal-21.04.1-x86_64-1.txz: Upgraded. kde/kalgebra-21.04.1-x86_64-1.txz: Upgraded. kde/kalzium-21.04.1-x86_64-1.txz: Upgraded. kde/kamera-21.04.1-x86_64-1.txz: Upgraded. kde/kamoso-21.04.1-x86_64-1.txz: Upgraded. kde/kanagram-21.04.1-x86_64-1.txz: Upgraded. kde/kapman-21.04.1-x86_64-1.txz: Upgraded. kde/kapptemplate-21.04.1-x86_64-1.txz: Upgraded. kde/kate-21.04.1-x86_64-1.txz: Upgraded. kde/katomic-21.04.1-x86_64-1.txz: Upgraded. kde/kbackup-21.04.1-x86_64-1.txz: Upgraded. kde/kblackbox-21.04.1-x86_64-1.txz: Upgraded. kde/kblocks-21.04.1-x86_64-1.txz: Upgraded. kde/kbounce-21.04.1-x86_64-1.txz: Upgraded. kde/kbreakout-21.04.1-x86_64-1.txz: Upgraded. kde/kbruch-21.04.1-x86_64-1.txz: Upgraded. kde/kcachegrind-21.04.1-x86_64-1.txz: Upgraded. kde/kcalc-21.04.1-x86_64-1.txz: Upgraded. kde/kcalutils-21.04.1-x86_64-1.txz: Upgraded. kde/kcharselect-21.04.1-x86_64-1.txz: Upgraded. kde/kcolorchooser-21.04.1-x86_64-1.txz: Upgraded. kde/kcron-21.04.1-x86_64-1.txz: Upgraded. kde/kde-dev-scripts-21.04.1-x86_64-1.txz: Upgraded. kde/kde-dev-utils-21.04.1-x86_64-1.txz: Upgraded. kde/kdebugsettings-21.04.1-x86_64-1.txz: Upgraded. kde/kdeconnect-kde-21.04.1-x86_64-1.txz: Upgraded. kde/kdeedu-data-21.04.1-x86_64-1.txz: Upgraded. kde/kdegraphics-mobipocket-21.04.1-x86_64-1.txz: Upgraded. kde/kdegraphics-thumbnailers-21.04.1-x86_64-1.txz: Upgraded. kde/kdenetwork-filesharing-21.04.1-x86_64-1.txz: Upgraded. kde/kdenlive-21.04.1-x86_64-1.txz: Upgraded. kde/kdepim-addons-21.04.1-x86_64-1.txz: Upgraded. kde/kdepim-runtime-21.04.1-x86_64-1.txz: Upgraded. kde/kdesdk-kioslaves-21.04.1-x86_64-1.txz: Upgraded. kde/kdesdk-thumbnailers-21.04.1-x86_64-1.txz: Upgraded. kde/kdevelop-5.6.2-x86_64-4.txz: Rebuilt. Recompiled against llvm-12.0.0. kde/kdf-21.04.1-x86_64-1.txz: Upgraded. kde/kdialog-21.04.1-x86_64-1.txz: Upgraded. kde/kdiamond-21.04.1-x86_64-1.txz: Upgraded. kde/keditbookmarks-21.04.1-x86_64-1.txz: Upgraded. kde/kfind-21.04.1-x86_64-1.txz: Upgraded. kde/kfloppy-21.04.1-x86_64-1.txz: Upgraded. kde/kfourinline-21.04.1-x86_64-1.txz: Upgraded. kde/kgeography-21.04.1-x86_64-1.txz: Upgraded. kde/kget-21.04.1-x86_64-1.txz: Upgraded. kde/kgoldrunner-21.04.1-x86_64-1.txz: Upgraded. kde/kgpg-21.04.1-x86_64-1.txz: Upgraded. kde/khangman-21.04.1-x86_64-1.txz: Upgraded. kde/khelpcenter-21.04.1-x86_64-1.txz: Upgraded. kde/kidentitymanagement-21.04.1-x86_64-1.txz: Upgraded. kde/kig-21.04.1-x86_64-1.txz: Upgraded. kde/kigo-21.04.1-x86_64-1.txz: Upgraded. kde/killbots-21.04.1-x86_64-1.txz: Upgraded. kde/kimagemapeditor-21.04.1-x86_64-1.txz: Upgraded. kde/kimap-21.04.1-x86_64-1.txz: Upgraded. kde/kio-extras-21.04.1-x86_64-1.txz: Upgraded. kde/kio-gdrive-21.04.1-x86_64-1.txz: Upgraded. kde/kipi-plugins-21.04.1-x86_64-1.txz: Upgraded. kde/kirigami-gallery-21.04.1-x86_64-1.txz: Upgraded. kde/kiriki-21.04.1-x86_64-1.txz: Upgraded. kde/kiten-21.04.1-x86_64-1.txz: Upgraded. kde/kitinerary-21.04.1-x86_64-1.txz: Upgraded. kde/kjumpingcube-21.04.1-x86_64-1.txz: Upgraded. kde/kldap-21.04.1-x86_64-1.txz: Upgraded. kde/kleopatra-21.04.1-x86_64-1.txz: Upgraded. kde/klickety-21.04.1-x86_64-1.txz: Upgraded. kde/klines-21.04.1-x86_64-1.txz: Upgraded. kde/kmag-21.04.1-x86_64-1.txz: Upgraded. kde/kmahjongg-21.04.1-x86_64-1.txz: Upgraded. kde/kmail-21.04.1-x86_64-1.txz: Upgraded. kde/kmail-account-wizard-21.04.1-x86_64-1.txz: Upgraded. kde/kmailtransport-21.04.1-x86_64-1.txz: Upgraded. kde/kmbox-21.04.1-x86_64-1.txz: Upgraded. kde/kmime-21.04.1-x86_64-1.txz: Upgraded. kde/kmines-21.04.1-x86_64-1.txz: Upgraded. kde/kmix-21.04.1-x86_64-1.txz: Upgraded. kde/kmousetool-21.04.1-x86_64-1.txz: Upgraded. kde/kmouth-21.04.1-x86_64-1.txz: Upgraded. kde/kmplot-21.04.1-x86_64-1.txz: Upgraded. kde/knavalbattle-21.04.1-x86_64-1.txz: Upgraded. kde/knetwalk-21.04.1-x86_64-1.txz: Upgraded. kde/knights-21.04.1-x86_64-1.txz: Upgraded. kde/knotes-21.04.1-x86_64-1.txz: Upgraded. kde/kolf-21.04.1-x86_64-1.txz: Upgraded. kde/kollision-21.04.1-x86_64-1.txz: Upgraded. kde/kolourpaint-21.04.1-x86_64-1.txz: Upgraded. kde/kompare-21.04.1-x86_64-1.txz: Upgraded. kde/konqueror-21.04.1-x86_64-1.txz: Upgraded. kde/konquest-21.04.1-x86_64-1.txz: Upgraded. kde/konsole-21.04.1-x86_64-1.txz: Upgraded. kde/kontact-21.04.1-x86_64-1.txz: Upgraded. kde/kontactinterface-21.04.1-x86_64-1.txz: Upgraded. kde/kontrast-21.04.1-x86_64-1.txz: Upgraded. kde/konversation-21.04.1-x86_64-1.txz: Upgraded. kde/kopeninghours-21.04.1-x86_64-1.txz: Upgraded. kde/kopete-21.04.1-x86_64-1.txz: Upgraded. kde/korganizer-21.04.1-x86_64-1.txz: Upgraded. kde/kosmindoormap-21.04.1-x86_64-1.txz: Upgraded. kde/kpat-21.04.1-x86_64-1.txz: Upgraded. kde/kpimtextedit-21.04.1-x86_64-1.txz: Upgraded. kde/kpkpass-21.04.1-x86_64-1.txz: Upgraded. kde/kpmcore-21.04.1-x86_64-1.txz: Upgraded. kde/kpublictransport-21.04.1-x86_64-1.txz: Upgraded. kde/kqtquickcharts-21.04.1-x86_64-1.txz: Upgraded. kde/krdc-21.04.1-x86_64-1.txz: Upgraded. kde/kreversi-21.04.1-x86_64-1.txz: Upgraded. kde/krfb-21.04.1-x86_64-1.txz: Upgraded. kde/kross-interpreters-21.04.1-x86_64-1.txz: Upgraded. kde/kruler-21.04.1-x86_64-1.txz: Upgraded. kde/kshisen-21.04.1-x86_64-1.txz: Upgraded. kde/ksirk-21.04.1-x86_64-1.txz: Upgraded. kde/ksmtp-21.04.1-x86_64-1.txz: Upgraded. kde/ksnakeduel-21.04.1-x86_64-1.txz: Upgraded. kde/kspaceduel-21.04.1-x86_64-1.txz: Upgraded. kde/ksquares-21.04.1-x86_64-1.txz: Upgraded. kde/ksudoku-21.04.1-x86_64-1.txz: Upgraded. kde/ksystemlog-21.04.1-x86_64-1.txz: Upgraded. kde/kteatime-21.04.1-x86_64-1.txz: Upgraded. kde/ktimer-21.04.1-x86_64-1.txz: Upgraded. kde/ktnef-21.04.1-x86_64-1.txz: Upgraded. kde/ktorrent-21.04.1-x86_64-1.txz: Upgraded. kde/ktouch-21.04.1-x86_64-1.txz: Upgraded. kde/kturtle-21.04.1-x86_64-1.txz: Upgraded. kde/kubrick-21.04.1-x86_64-1.txz: Upgraded. kde/kwalletmanager-21.04.1-x86_64-1.txz: Upgraded. kde/kwave-21.04.1-x86_64-1.txz: Upgraded. kde/kwordquiz-21.04.1-x86_64-1.txz: Upgraded. kde/libgravatar-21.04.1-x86_64-1.txz: Upgraded. kde/libkcddb-21.04.1-x86_64-1.txz: Upgraded. kde/libkcompactdisc-21.04.1-x86_64-1.txz: Upgraded. kde/libkdcraw-21.04.1-x86_64-1.txz: Upgraded. kde/libkdegames-21.04.1-x86_64-1.txz: Upgraded. kde/libkdepim-21.04.1-x86_64-1.txz: Upgraded. kde/libkeduvocdocument-21.04.1-x86_64-1.txz: Upgraded. kde/libkexiv2-21.04.1-x86_64-1.txz: Upgraded. kde/libkgapi-21.04.1-x86_64-1.txz: Upgraded. kde/libkipi-21.04.1-x86_64-1.txz: Upgraded. kde/libkleo-21.04.1-x86_64-1.txz: Upgraded. kde/libkmahjongg-21.04.1-x86_64-1.txz: Upgraded. kde/libkomparediff2-21.04.1-x86_64-1.txz: Upgraded. kde/libksane-21.04.1-x86_64-1.txz: Upgraded. kde/libksieve-21.04.1-x86_64-1.txz: Upgraded. kde/libktorrent-21.04.1-x86_64-1.txz: Upgraded. kde/lokalize-21.04.1-x86_64-1.txz: Upgraded. kde/lskat-21.04.1-x86_64-1.txz: Upgraded. kde/mailcommon-21.04.1-x86_64-1.txz: Upgraded. kde/mailimporter-21.04.1-x86_64-1.txz: Upgraded. kde/marble-21.04.1-x86_64-1.txz: Upgraded. kde/markdownpart-21.04.1-x86_64-1.txz: Upgraded. kde/mbox-importer-21.04.1-x86_64-1.txz: Upgraded. kde/messagelib-21.04.1-x86_64-1.txz: Upgraded. kde/minuet-21.04.1-x86_64-1.txz: Upgraded. kde/okular-21.04.1-x86_64-1.txz: Upgraded. kde/palapeli-21.04.1-x86_64-1.txz: Upgraded. kde/parley-21.04.1-x86_64-1.txz: Upgraded. kde/partitionmanager-21.04.1-x86_64-1.txz: Upgraded. kde/picmi-21.04.1-x86_64-1.txz: Upgraded. kde/pim-data-exporter-21.04.1-x86_64-1.txz: Upgraded. kde/pim-sieve-editor-21.04.1-x86_64-1.txz: Upgraded. kde/pimcommon-21.04.1-x86_64-1.txz: Upgraded. kde/poxml-21.04.1-x86_64-1.txz: Upgraded. kde/print-manager-21.04.1-x86_64-1.txz: Upgraded. kde/rocs-21.04.1-x86_64-1.txz: Upgraded. kde/spectacle-21.04.1-x86_64-1.txz: Upgraded. kde/step-21.04.1-x86_64-1.txz: Upgraded. kde/svgpart-21.04.1-x86_64-1.txz: Upgraded. kde/sweeper-21.04.1-x86_64-1.txz: Upgraded. kde/umbrello-21.04.1-x86_64-1.txz: Upgraded. kde/yakuake-21.04.1-x86_64-1.txz: Upgraded. kde/zeroconf-ioslave-21.04.1-x86_64-1.txz: Upgraded. l/libidn2-2.3.1-x86_64-1.txz: Upgraded. l/libtasn1-4.17.0-x86_64-1.txz: Upgraded. l/qt5-5.15.2-x86_64-9.txz: Rebuilt. Recompiled against llvm-12.0.0. x/egl-wayland-1.1.7-x86_64-1.txz: Upgraded. x/mesa-21.1.0-x86_64-2.txz: Rebuilt. Recompiled against llvm-12.0.0. xap/vim-gvim-8.2.2850-x86_64-1.txz: Upgraded.
2021-05-14 04:38:35 +02:00
if [ "$CC" = "clang" -a "$(which lld 2> /dev/null)" = "/usr/bin/lld" ]; then
# Upstream default:
LINKER=lld
else
LINKER=bfd
fi
# Keep memory usage as low as possible when linking:
if [ ! "$LINKER" = "lld" ]; then
SLKLDFLAGS=" -Wl,--as-needed -Wl,--no-keep-memory -Wl,--stats -Wl,--reduce-memory-overheads"
export LDFLAGS="$SLKLDFLAGS"
export MOZ_LINK_FLAGS="$SLKLDFLAGS"
fi
Thu Sep 12 03:58:53 UTC 2019 a/glibc-zoneinfo-2019c-noarch-1.txz: Upgraded. This package provides the latest timezone updates. a/openssl-solibs-1.1.1d-x86_64-1.txz: Upgraded. a/openssl10-solibs-1.0.2t-x86_64-1.txz: Upgraded. ap/mariadb-10.4.8-x86_64-1.txz: Upgraded. l/netpbm-10.87.02-x86_64-1.txz: Upgraded. n/curl-7.66.0-x86_64-1.txz: Upgraded. This update fixes security issues: FTP-KRB double-free TFTP small blocksize heap buffer overflow For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5481 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5482 (* Security fix *) n/openssl-1.1.1d-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a fork protection issue Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1549 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/openssl10-1.0.2t-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/p11-kit-0.23.17-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-68.1.0-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/68.1.0/releasenotes/ https://www.mozilla.org/security/known-vulnerabilities/thunderbird.html (* Security fix *) extra/google-chrome/google-chrome.SlackBuild: Upgraded. Patched the packaging script to account for the internal change of control.tar.gz to control.tar.xz. Thanks to _RDS_ and Tim Thomas who both provided the same patch.
2019-09-12 05:58:53 +02:00
# Put Rust objects on a diet to keep the linker from running into memory
# issues (especially on 32-bit):
Sun Nov 15 00:02:28 UTC 2020 a/inotify-tools-3.20.11.0-x86_64-1.txz: Upgraded. d/bison-3.7.4-x86_64-1.txz: Upgraded. l/gmp-6.2.1-x86_64-1.txz: Upgraded. l/mozilla-nss-3.59-x86_64-1.txz: Upgraded. xap/seamonkey-2.53.5-x86_64-1.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.seamonkey-project.org/releases/seamonkey2.53.5 (* Security fix *) testing/packages/vtown/kde/attica-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/baloo-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/bluez-qt-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/breeze-icons-5.76.0-noarch-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/digikam-7.1.0-x86_64-1_vtown_2.txz: Rebuilt. Moved to the correct directory. :-) testing/packages/vtown/kde/extra-cmake-modules-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/frameworkintegration-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kactivities-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kactivities-stats-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kapidox-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/karchive-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kauth-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kbookmarks-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcalendarcore-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcmutils-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcodecs-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcompletion-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kconfig-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kconfigwidgets-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcontacts-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcoreaddons-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcrash-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdav-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdbusaddons-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdeclarative-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kded-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdelibs4support-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdesignerplugin-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdesu-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdewebkit-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdnssd-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdoctools-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kemoticons-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kfilemetadata-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kglobalaccel-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kguiaddons-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kholidays-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/khtml-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/ki18n-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kiconthemes-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kidletime-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kimageformats-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kinit-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kio-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kirigami2-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kitemmodels-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kitemviews-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kjobwidgets-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kjs-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kjsembed-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kmediaplayer-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/knewstuff-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/knotifications-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/knotifyconfig-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kpackage-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kparts-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kpeople-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kplotting-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kpty-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kquickcharts-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kross-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/krunner-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kservice-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/ktexteditor-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/ktextwidgets-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kunitconversion-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwallet-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwayland-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwidgetsaddons-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwindowsystem-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kxmlgui-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kxmlrpcclient-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/modemmanager-qt-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/networkmanager-qt-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/oxygen-icons5-5.76.0-noarch-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/plasma-framework-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/prison-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/purpose-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/qqc2-desktop-style-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/solid-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/sonnet-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/syndication-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/syntax-highlighting-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/threadweaver-5.76.0-x86_64-1_vtown_1.txz: Upgraded.
2020-11-15 01:02:28 +01:00
export RUSTFLAGS="-Cdebuginfo=0"
TMP=${TMP:-/tmp}
PKG=$TMP/package-mozilla-thunderbird
# If there is a private Google API key available at compile time, use
# it to enable support for Google Safe Browsing. For Slackware builds,
# we use a private key issued for the Slackware project. If you are
# rebuilding and need this support, or you are producing your own
# distribution, you may obtain your own Google API key at no charge by
# following these instructions:
# https://bugzilla.mozilla.org/show_bug.cgi?id=1377987#c0
if [ -r /root/google-api-key ]; then
GOOGLE_API_KEY="--with-google-safebrowsing-api-keyfile=/root/google-api-key"
fi
Fri Sep 21 18:51:07 UTC 2018 a/eudev-3.2.6-x86_64-1.txz: Upgraded. a/glibc-solibs-2.28-x86_64-2.txz: Upgraded. a/grub-2.02-x86_64-3.txz: Rebuilt. Patched to fix compatibility with recent xfsprogs. Thanks to Markus Wiesner. a/kernel-generic-4.14.71-x86_64-1.txz: Upgraded. a/kernel-huge-4.14.71-x86_64-1.txz: Upgraded. a/kernel-modules-4.14.71-x86_64-1.txz: Upgraded. ap/opus-tools-0.2-x86_64-1.txz: Upgraded. ap/sqlite-3.25.1-x86_64-1.txz: Upgraded. d/icecream-20180905_cdc6ff8-x86_64-1.txz: Upgraded. d/kernel-headers-4.14.71-x86-1.txz: Upgraded. d/llvm-7.0.0-x86_64-1.txz: Upgraded. Shared library .so-version bump. k/kernel-source-4.14.71-noarch-1.txz: Upgraded. l/ffmpeg-3.4.4-x86_64-2.txz: Rebuilt. Don't try to link with Samba since the latest version is not compatible. l/glibc-2.28-x86_64-2.txz: Upgraded. All packages have been patched where needed for glibc-2.28 and compile tested here. Thanks to nobodino for the help. l/glibc-i18n-2.28-x86_64-2.txz: Upgraded. l/glibc-profile-2.28-x86_64-2.txz: Upgraded. l/gst-plugins-base-1.14.3-x86_64-1.txz: Upgraded. l/gst-plugins-good-1.14.3-x86_64-1.txz: Upgraded. l/gst-plugins-libav-1.14.3-x86_64-1.txz: Upgraded. l/gstreamer-1.14.3-x86_64-1.txz: Upgraded. l/imagemagick-6.9.10_11-x86_64-1.txz: Upgraded. l/libopusenc-0.2-x86_64-1.txz: Added. l/librsvg-2.44.3-x86_64-1.txz: Upgraded. l/opus-1.3_rc2-x86_64-1.txz: Upgraded. l/opusfile-0.11-x86_64-1.txz: Upgraded. l/soprano-2.9.4-x86_64-3.txz: Rebuilt. Recompiled to drop virtuoso dependency. l/virtuoso-ose-6.1.8-x86_64-9.txz: Removed. Even KDE4 has migrated away from actually using this for anything. The last thing in Slackware that was dependent on it was Soprano, which has been recompiled to no longer use it. n/postfix-3.3.1-x86_64-2.txz: Rebuilt. Recompiled so that it quits whining about OpenSSL. Thanks to shastah. x/mesa-18.2.1-x86_64-1.txz: Upgraded. Compiled against llvm-7.0.0. x/xf86-video-vmware-13.3.0-x86_64-2.txz: Rebuilt. Recompiled against llvm-7.0.0. x/xterm-336-x86_64-1.txz: Upgraded. extra/pure-alsa-system/ffmpeg-3.4.4-x86_64-2_alsa.txz: Rebuilt. Don't try to link with Samba since the latest version is not compatible. extra/pure-alsa-system/gst-plugins-good-1.14.3-x86_64-1_alsa.txz: Upgraded. isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
2018-09-21 20:51:07 +02:00
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
rm -rf $PKG
mkdir -p $TMP $PKG/usr/lib${LIBDIRSUFFIX}
Thu Sep 12 03:58:53 UTC 2019 a/glibc-zoneinfo-2019c-noarch-1.txz: Upgraded. This package provides the latest timezone updates. a/openssl-solibs-1.1.1d-x86_64-1.txz: Upgraded. a/openssl10-solibs-1.0.2t-x86_64-1.txz: Upgraded. ap/mariadb-10.4.8-x86_64-1.txz: Upgraded. l/netpbm-10.87.02-x86_64-1.txz: Upgraded. n/curl-7.66.0-x86_64-1.txz: Upgraded. This update fixes security issues: FTP-KRB double-free TFTP small blocksize heap buffer overflow For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5481 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5482 (* Security fix *) n/openssl-1.1.1d-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a fork protection issue Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1549 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/openssl10-1.0.2t-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/p11-kit-0.23.17-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-68.1.0-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/68.1.0/releasenotes/ https://www.mozilla.org/security/known-vulnerabilities/thunderbird.html (* Security fix *) extra/google-chrome/google-chrome.SlackBuild: Upgraded. Patched the packaging script to account for the internal change of control.tar.gz to control.tar.xz. Thanks to _RDS_ and Tim Thomas who both provided the same patch.
2019-09-12 05:58:53 +02:00
# Build or unpack build-time dependencies:
. ./build-deps.sh
cd $TMP
rm -rf thunderbird-$RELEASEVER
# Unpack this in a subdirectory to prevent changing permissions on /tmp:
rm -rf thunderbird-unpack
mkdir thunderbird-unpack
cd thunderbird-unpack
Fri Aug 4 20:17:36 UTC 2023 a/hwdata-0.373-noarch-1.txz: Upgraded. a/kernel-firmware-20230731_253cc17-noarch-1.txz: Upgraded. a/kernel-generic-6.1.43-x86_64-1.txz: Upgraded. a/kernel-huge-6.1.43-x86_64-1.txz: Upgraded. a/kernel-modules-6.1.43-x86_64-1.txz: Upgraded. a/sysklogd-2.5.1-x86_64-1.txz: Upgraded. a/xz-5.4.4-x86_64-1.txz: Upgraded. ap/man-pages-6.05.01-noarch-1.txz: Upgraded. d/kernel-headers-6.1.43-x86-1.txz: Upgraded. k/kernel-source-6.1.43-noarch-1.txz: Upgraded. kde/ktextaddons-1.4.0-x86_64-1.txz: Upgraded. l/SDL2-2.28.2-x86_64-1.txz: Upgraded. l/harfbuzz-8.1.1-x86_64-1.txz: Upgraded. l/mozjs102-102.14.0esr-x86_64-1.txz: Upgraded. l/netpbm-11.03.01-x86_64-1.txz: Upgraded. l/openexr-3.1.10-x86_64-1.txz: Upgraded. l/pipewire-0.3.77-x86_64-1.txz: Upgraded. l/poppler-23.08.0-x86_64-1.txz: Upgraded. xap/mozilla-firefox-115.1.0esr-x86_64-1.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/firefox/115.1.0esr/releasenotes/ https://www.mozilla.org/en-US/security/advisories/mfsa2023-31/ https://www.cve.org/CVERecord?id=CVE-2023-4045 https://www.cve.org/CVERecord?id=CVE-2023-4046 https://www.cve.org/CVERecord?id=CVE-2023-4047 https://www.cve.org/CVERecord?id=CVE-2023-4048 https://www.cve.org/CVERecord?id=CVE-2023-4049 https://www.cve.org/CVERecord?id=CVE-2023-4050 https://www.cve.org/CVERecord?id=CVE-2023-4052 https://www.cve.org/CVERecord?id=CVE-2023-4054 https://www.cve.org/CVERecord?id=CVE-2023-4055 https://www.cve.org/CVERecord?id=CVE-2023-4056 https://www.cve.org/CVERecord?id=CVE-2023-4057 (* Security fix *) xap/mozilla-thunderbird-115.1.0-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.mozilla.org/en-US/thunderbird/115.1.0/releasenotes/ isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. testing/packages/rust-1.71.1-x86_64-1.txz: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
2023-08-04 22:17:36 +02:00
echo "Extracting $CWD/thunderbird-$VERSION.source.tar.?z..."
tar xf $CWD/thunderbird-$VERSION.source.tar.?z || exit 1
mv * ..
cd ..
rm -rf thunderbird-unpack
cd thunderbird-$RELEASEVER || exit 1
Thu Sep 12 03:58:53 UTC 2019 a/glibc-zoneinfo-2019c-noarch-1.txz: Upgraded. This package provides the latest timezone updates. a/openssl-solibs-1.1.1d-x86_64-1.txz: Upgraded. a/openssl10-solibs-1.0.2t-x86_64-1.txz: Upgraded. ap/mariadb-10.4.8-x86_64-1.txz: Upgraded. l/netpbm-10.87.02-x86_64-1.txz: Upgraded. n/curl-7.66.0-x86_64-1.txz: Upgraded. This update fixes security issues: FTP-KRB double-free TFTP small blocksize heap buffer overflow For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5481 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5482 (* Security fix *) n/openssl-1.1.1d-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a fork protection issue Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1549 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/openssl10-1.0.2t-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/p11-kit-0.23.17-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-68.1.0-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/68.1.0/releasenotes/ https://www.mozilla.org/security/known-vulnerabilities/thunderbird.html (* Security fix *) extra/google-chrome/google-chrome.SlackBuild: Upgraded. Patched the packaging script to account for the internal change of control.tar.gz to control.tar.xz. Thanks to _RDS_ and Tim Thomas who both provided the same patch.
2019-09-12 05:58:53 +02:00
# Delete object directory if it was mistakenly included in the tarball:
rm -rf obj-x86_64-pc-linux-gnu
# Retain GTK+ v2 scrolling behavior:
Thu Sep 12 03:58:53 UTC 2019 a/glibc-zoneinfo-2019c-noarch-1.txz: Upgraded. This package provides the latest timezone updates. a/openssl-solibs-1.1.1d-x86_64-1.txz: Upgraded. a/openssl10-solibs-1.0.2t-x86_64-1.txz: Upgraded. ap/mariadb-10.4.8-x86_64-1.txz: Upgraded. l/netpbm-10.87.02-x86_64-1.txz: Upgraded. n/curl-7.66.0-x86_64-1.txz: Upgraded. This update fixes security issues: FTP-KRB double-free TFTP small blocksize heap buffer overflow For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5481 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5482 (* Security fix *) n/openssl-1.1.1d-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a fork protection issue Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1549 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/openssl10-1.0.2t-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/p11-kit-0.23.17-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-68.1.0-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/68.1.0/releasenotes/ https://www.mozilla.org/security/known-vulnerabilities/thunderbird.html (* Security fix *) extra/google-chrome/google-chrome.SlackBuild: Upgraded. Patched the packaging script to account for the internal change of control.tar.gz to control.tar.xz. Thanks to _RDS_ and Tim Thomas who both provided the same patch.
2019-09-12 05:58:53 +02:00
zcat $CWD/tb.ui.scrollToClick.diff.gz | patch -p1 --verbose || exit 1
Tue Jul 5 20:33:18 UTC 2022 a/hwdata-0.361-noarch-1.txz: Upgraded. a/kernel-firmware-20220705_f5f02da-noarch-1.txz: Upgraded. a/kmod-30-x86_64-1.txz: Upgraded. a/mcelog-184-x86_64-1.txz: Upgraded. a/openssl-solibs-1.1.1q-x86_64-1.txz: Upgraded. ap/vim-9.0.0041-x86_64-1.txz: Upgraded. d/llvm-14.0.6-x86_64-2.txz: Rebuilt. Shared library .so-version bump. We gave the DYLIB options a try and the resulting compilers are unable to compile Firefox or Thunderbird, so we're back to using BUILD_SHARED_LIBS (which works fine). I'm in no real hurry to revisit this, but I'll look at any hints you might have for me if you post them on LQ. d/meson-0.63.0-x86_64-1.txz: Upgraded. d/rust-1.62.0-x86_64-1.txz: Upgraded. l/imagemagick-7.1.0_40-x86_64-1.txz: Upgraded. l/isl-0.25-x86_64-1.txz: Upgraded. l/libdmtx-0.7.7-x86_64-1.txz: Upgraded. l/libgphoto2-2.5.30-x86_64-1.txz: Upgraded. l/libmtp-1.1.20-x86_64-1.txz: Upgraded. l/libvpx-1.12.0-x86_64-1.txz: Upgraded. l/pipewire-0.3.53-x86_64-1.txz: Upgraded. l/poppler-22.07.0-x86_64-1.txz: Upgraded. l/spirv-llvm-translator-14.0.0-x86_64-2.txz: Rebuilt. Recompiled against llvm-14.0.6-2. n/openssl-1.1.1q-x86_64-1.txz: Upgraded. This update fixes security issues: Heap memory corruption with RSA private key operation. AES OCB fails to encrypt some bytes. For more information, see: https://www.openssl.org/news/secadv/20220705.txt https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2274 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097 (* Security fix *) n/wget2-2.0.1-x86_64-1.txz: Upgraded. x/libva-2.15.0-x86_64-1.txz: Upgraded. x/libva-utils-2.15.0-x86_64-1.txz: Upgraded. x/mesa-21.3.8-x86_64-3.txz: Rebuilt. Recompiled against llvm-14.0.6-2. xap/mozilla-firefox-102.0.1-x86_64-1.txz: Upgraded. This update contains security fixes (possibly) and improvements. At this time, the link below only says "We're still preparing the notes for this release, and will post them here when they are ready. Please check back later." For more information, see: https://www.mozilla.org/en-US/firefox/102.0.1/releasenotes/ (* Security fix *) xap/vim-gvim-9.0.0041-x86_64-1.txz: Upgraded. extra/rust-for-mozilla/rust-1.60.0-x86_64-1.txz: Upgraded.
2022-07-05 22:33:18 +02:00
# Fix header mismatch on x86 with GCC:
if [ "$ARCH" = "i686" -a "$CC" = "gcc" ]; then
zcat $CWD/double_t.x86.diff.gz | patch -p1 --verbose || exit 1
fi
Sat Aug 6 23:57:27 UTC 2022 a/aaa_libraries-15.1-x86_64-7.txz: Rebuilt. Upgraded: libnsl-2.36.so. Added: libffi.so.8.1.0. Removed: libffi.so.6.0.4, libicudata.so.70.1, libicui18n.so.70.1, libicuio.so.70.1, libicutest.so.70.1, libicutu.so.70.1, libicuuc.so.70.1. d/guile-3.0.8-x86_64-2.txz: Rebuilt. Recompiled against libffi-3.4.2. d/llvm-14.0.6-x86_64-3.txz: Rebuilt. Recompiled against libffi-3.4.2. d/python2-2.7.18-x86_64-5.txz: Rebuilt. Recompiled against libffi-3.4.2. d/python3-3.9.13-x86_64-2.txz: Rebuilt. Recompiled against libffi-3.4.2. d/ruby-3.1.2-x86_64-2.txz: Rebuilt. Recompiled against libffi-3.4.2. kde/kid3-3.9.2-x86_64-1.txz: Upgraded. l/gjs-1.70.2-x86_64-2.txz: Rebuilt. Recompiled against libffi-3.4.2. l/glib-networking-2.72.2-x86_64-1.txz: Upgraded. l/glib2-2.72.3-x86_64-2.txz: Rebuilt. Recompiled against libffi-3.4.2. l/gobject-introspection-1.72.0-x86_64-2.txz: Rebuilt. Recompiled against libffi-3.4.2. l/gtkmm3-3.24.6-x86_64-1.txz: Upgraded. l/libffi-3.4.2-x86_64-1.txz: Upgraded. Shared library .so-version bump. l/libwebp-1.2.4-x86_64-1.txz: Upgraded. l/pygobject-2.28.7-x86_64-9.txz: Rebuilt. Recompiled against libffi-3.4.2. l/pygobject3-3.42.1-x86_64-2.txz: Rebuilt. Recompiled against libffi-3.4.2. l/python-cffi-1.15.0-x86_64-3.txz: Rebuilt. Recompiled against libffi-3.4.2. n/p11-kit-0.24.1-x86_64-2.txz: Rebuilt. Recompiled against libffi-3.4.2. x/ibus-m17n-1.4.10-x86_64-1.txz: Upgraded. x/wayland-1.21.0-x86_64-2.txz: Rebuilt. Recompiled against libffi-3.4.2. xap/mozilla-thunderbird-102.1.1-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.mozilla.org/en-US/thunderbird/102.1.1/releasenotes/
2022-08-07 01:57:27 +02:00
# Don't define a function that's included starting in glibc-2.36:
zcat $CWD/arc4random_buf.glibc-2.36.diff.gz | patch -p1 --verbose || exit 1
# Accept sha1 signatures for a while longer:
sed -i 's|pref("mail.smime.accept_insecure_sha1_message_signatures", false);|pref("mail.smime.accept_insecure_sha1_message_signatures", true);|g' comm/mail/extensions/am-e2e/prefs/e2e-prefs.js
# Fetch localization, if requested:
if [ ! -z $MOZLOCALIZE ]; then
LOC_TAG="THUNDERBIRD_$( echo $VERSION | tr \. _ )_RELEASE"
rm -f $LOC_TAG.tar.bz2
wget https://hg.mozilla.org/releases/l10n/mozilla-release/$MOZLOCALIZE/archive/$LOC_TAG.tar.bz2
tar xvf $LOC_TAG.tar.bz2
mv $MOZLOCALIZE-$LOC_TAG $MOZLOCALIZE
fi
# Arch-dependent patches:
case "$ARCH" in
armv7hl) ARCH_CONFIG="--with-arch=armv7-a --with-float-abi=hard --with-fpu=vfpv3-d16 --disable-elf-hack"
;;
*) ARCH_CONFIG=" "
;;
esac
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \+ -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \+
# Our building options, in a configure-like display ;)
OPTIONS="\
--enable-official-branding \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--with-system-zlib \
--with-system-nss \
--with-system-nspr \
--enable-alsa \
--with-unsigned-addon-scopes=app,system \
--without-wasm-sandboxed-libraries \
--allow-addon-sideload \
--enable-application=comm/mail \
--enable-default-toolkit=cairo-gtk3-wayland \
Sun Nov 15 00:02:28 UTC 2020 a/inotify-tools-3.20.11.0-x86_64-1.txz: Upgraded. d/bison-3.7.4-x86_64-1.txz: Upgraded. l/gmp-6.2.1-x86_64-1.txz: Upgraded. l/mozilla-nss-3.59-x86_64-1.txz: Upgraded. xap/seamonkey-2.53.5-x86_64-1.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.seamonkey-project.org/releases/seamonkey2.53.5 (* Security fix *) testing/packages/vtown/kde/attica-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/baloo-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/bluez-qt-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/breeze-icons-5.76.0-noarch-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/digikam-7.1.0-x86_64-1_vtown_2.txz: Rebuilt. Moved to the correct directory. :-) testing/packages/vtown/kde/extra-cmake-modules-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/frameworkintegration-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kactivities-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kactivities-stats-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kapidox-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/karchive-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kauth-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kbookmarks-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcalendarcore-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcmutils-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcodecs-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcompletion-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kconfig-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kconfigwidgets-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcontacts-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcoreaddons-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kcrash-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdav-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdbusaddons-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdeclarative-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kded-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdelibs4support-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdesignerplugin-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdesu-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdewebkit-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdnssd-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdoctools-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kemoticons-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kfilemetadata-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kglobalaccel-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kguiaddons-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kholidays-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/khtml-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/ki18n-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kiconthemes-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kidletime-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kimageformats-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kinit-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kio-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kirigami2-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kitemmodels-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kitemviews-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kjobwidgets-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kjs-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kjsembed-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kmediaplayer-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/knewstuff-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/knotifications-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/knotifyconfig-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kpackage-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kparts-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kpeople-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kplotting-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kpty-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kquickcharts-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kross-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/krunner-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kservice-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/ktexteditor-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/ktextwidgets-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kunitconversion-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwallet-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwayland-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwidgetsaddons-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwindowsystem-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kxmlgui-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kxmlrpcclient-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/modemmanager-qt-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/networkmanager-qt-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/oxygen-icons5-5.76.0-noarch-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/plasma-framework-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/prison-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/purpose-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/qqc2-desktop-style-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/solid-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/sonnet-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/syndication-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/syntax-highlighting-5.76.0-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/threadweaver-5.76.0-x86_64-1_vtown_1.txz: Upgraded.
2020-11-15 01:02:28 +01:00
--enable-linker=$LINKER \
--disable-strip \
--disable-install-strip \
--enable-cpp-rtti \
--enable-accessibility \
Thu Mar 25 01:29:36 UTC 2021 a/dialog-1.3_20210319-x86_64-2.txz: Rebuilt. Install /etc/dialogrc as /etc/dialogrc.new. This won't protect the file with this update, but it will moving forward. Thanks to Tonus. l/libsigc++3-3.0.6-x86_64-1.txz: Added. x/libinput-1.17.1-x86_64-1.txz: Upgraded. xap/mozilla-firefox-87.0-x86_64-2.txz: Rebuilt. Pass --enable-optimize to let the build handle optimizations (apparently which optimizations work best differs throughout the tree). Don't pass optimization options in CFLAGS/CXXFLAGS. Build with --enable-rust-simd since upstream's binary releases do. xap/mozilla-thunderbird-78.9.0-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/78.9.0/releasenotes/ https://www.mozilla.org/en-US/security/advisories/mfsa2021-12/ https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23981 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23982 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23984 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23987 (* Security fix *) testing/packages/linux-5.11.x/kernel-generic-5.11.9-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-headers-5.11.9-x86-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-huge-5.11.9-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-modules-5.11.9-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-source-5.11.9-noarch-1.txz: Upgraded. -ADI_AXI_ADC m AD9467 m -> n FONT_TER16x32 n -> y
2021-03-25 02:29:36 +01:00
--enable-optimize \
$GOOGLE_API_KEY \
--disable-crashreporter \
--disable-debug-symbols \
--disable-debug \
--disable-elf-hack \
--disable-tests \
--disable-updater \
--host=$ARCH-slackware-linux \
--target=$ARCH-slackware-linux"
# Complains about missing APNG support in Slackware's libpng:
#--with-system-png \
# Broken with 12.0:
#--enable-system-cairo \
if [ ! -z $MOZLOCALIZE ]; then
OPTIONS=$OPTIONS" \
--enable-ui-locale=$MOZLOCALIZE
--with-l10n-base=.."
# There are no dictionaries in localized builds
sed -i \
-e "/@BINPATH@\/dictionaries\/\*/d" \
-e "/@RESPATH@\/dictionaries\/\*/d" \
mail/installer/package-manifest.in || exit 1
fi
Wed Mar 20 21:10:30 UTC 2024 a/libblockdev-2.28-x86_64-2.txz: Rebuilt. Drop python2 support. a/sysvinit-scripts-15.1-noarch-15.txz: Rebuilt. rc.M: start rc.iceccd and rc.icecc-scheduler earlier. a/util-linux-2.39.3-x86_64-2.txz: Rebuilt. Drop python2 support. a/volume_key-0.3.12-x86_64-6.txz: Rebuilt. Drop python2 support. ap/man-pages-6.7-noarch-1.txz: Upgraded. d/cmake-3.28.4-x86_64-1.txz: Upgraded. d/llvm-18.1.2-x86_64-1.txz: Upgraded. d/python2-2.7.18-x86_64-7.txz: Rebuilt. Bundle the final python2 versions of pip and setuptools. Drop the /usr/bin/python symlink. d/python3-3.9.19-x86_64-1.txz: Upgraded. Point the /usr/bin/python symlink at python3.9. PEP 394 says we can do this, and in a world of ambigious shebangs, this is probably the best of the available options. This update also fixes security issues: bundled libexpat was updated to 2.6.0. zipfile is now protected from the "quoted-overlap" zipbomb. tempfile.TemporaryDirectory cleanup no longer dereferences symlinks when working around file system permission errors. For more information, see: https://pythoninsider.blogspot.com/2024/03/python-31014-3919-and-3819-is-now.html https://www.cve.org/CVERecord?id=CVE-2023-52425 https://www.cve.org/CVERecord?id=CVE-2024-0450 https://www.cve.org/CVERecord?id=CVE-2023-6597 (* Security fix *) d/strace-6.8-x86_64-1.txz: Upgraded. kde/kross-interpreters-23.08.5-x86_64-2.txz: Rebuilt. Drop python2 support. l/libxml2-2.12.6-x86_64-2.txz: Rebuilt. Drop python2 support. l/mozjs115-115.9.0esr-x86_64-2.txz: Rebuilt. Fixed installed library name. Thanks to reddog83. Fixed slack-desc. Thanks to r1w1s1. l/phonon-4.12.0-x86_64-1.txz: Upgraded. l/pilot-link-0.12.5-x86_64-17.txz: Rebuilt. Drop python2 support. l/python2-module-collection-2.7.18-x86_64-6.txz: Removed. Good bye! l/python2-pycairo-1.18.2-x86_64-1.txz: Added. We'll need this (along with pygtk and pygobject) until we get gimp3. Well, we could build gimp without python support, but I really don't think that's the route we want to take. n/bind-9.18.25-x86_64-1.txz: Upgraded. n/crda-4.15-x86_64-1.txz: Removed. The kernel is able to load from wireless-regdb directly. Obsolete. n/getmail-6.18.14-x86_64-1.txz: Upgraded. n/gpgme-1.23.2-x86_64-2.txz: Rebuilt. Drop python2 support. n/obexftp-0.24.2-x86_64-11.txz: Rebuilt. Drop python2 support. n/wireless-regdb-2024.01.23-x86_64-1.txz: Added. Wireless regulatory database, previously bundled with crda. x/ibus-1.5.29-x86_64-2.txz: Rebuilt. Drop python2 support. x/libkkc-0.3.5-x86_64-4.txz: Rebuilt. Still forcing python2 with this one, but perhaps a python3 marisa module could work around this. x/libkkc-data-0.2.7-x86_64-4.txz: Rebuilt. Still forcing python2 with this one, but perhaps a python3 marisa module could work around this. x/xcb-proto-1.16.0-x86_64-2.txz: Rebuilt. Drop python2 support. x/xpyb-1.3.1-x86_64-7.txz: Removed. Nothing uses it, and it was never updated for python3. Removed as obsolete.
2024-03-20 22:10:30 +01:00
# They say to use the second line, not the first.
Fri Apr 19 19:36:17 UTC 2024 a/elogind-252.23-x86_64-3.txz: Rebuilt. All right, it's time to stop the bleeding (edge). This has been verified as the last working version of elogind, so we'll revert for now while moving the newer sources into /testing. We didn't actually *need* the 255 branch for libgudev (I was mistakenly under that impression), so this will be fine for now. We'll keep an eye on upstream and move forward when things settle down. d/vala-0.56.17-x86_64-1.txz: Upgraded. l/gdk-pixbuf2-2.42.11-x86_64-1.txz: Upgraded. l/gtk4-4.14.3-x86_64-1.txz: Upgraded. l/polkit-124-x86_64-2.txz: Rebuilt. Recompiled against elogind-252.23. l/python-sphinx-7.3.7-x86_64-1.txz: Upgraded. n/NetworkManager-1.46.0-x86_64-2.txz: Rebuilt. Build with meson instead of autotools, since setting session_tracking to elogind is ignored with autotools, and is set to consolekit instead. While this didn't seem to make a difference in practice, better to get this right now and rule it out as part of the issue. Thanks to marav and LuckyCyborg for the options hints. x/xdg-desktop-portal-1.18.4-x86_64-1.txz: Upgraded. xap/freerdp-2.11.6-x86_64-1.txz: Upgraded. This release is a security release and addresses multiple issues: [Low] OutOfBound Read in zgfx_decompress_segment. [Moderate] Integer overflow & OutOfBound Write in clear_decompress_residual_data. [Low] integer underflow in nsc_rle_decode. [Low] OutOfBound Read in planar_skip_plane_rle. [Low] OutOfBound Read in ncrush_decompress. [Low] OutOfBound Read in interleaved_decompress. For more information, see: https://www.cve.org/CVERecord?id=CVE-2024-32041 https://www.cve.org/CVERecord?id=CVE-2024-32039 https://www.cve.org/CVERecord?id=CVE-2024-32040 https://www.cve.org/CVERecord?id=CVE-2024-32458 https://www.cve.org/CVERecord?id=CVE-2024-32459 https://www.cve.org/CVERecord?id=CVE-2024-32460 (* Security fix *)
2024-04-19 21:36:17 +02:00
# But they're not the boss of me.
Sun Mar 14 03:24:31 UTC 2021 a/efivar-20201015_cff88dd-x86_64-1.txz: Upgraded. Updated to fix issues with eMMC based systems. Thanks to Andypoo. a/gptfdisk-1.0.7-x86_64-1.txz: Upgraded. a/xfsprogs-5.11.0-x86_64-1.txz: Upgraded. ap/qpdf-10.3.1-x86_64-1.txz: Upgraded. ap/sqlite-3.35.0-x86_64-1.txz: Upgraded. ap/sudo-1.9.5p2-x86_64-3.txz: Rebuilt. Fix build time detection of PAM. Thanks to pghvlaans. kde/attica-5.80.0-x86_64-1.txz: Upgraded. kde/baloo-5.80.0-x86_64-1.txz: Upgraded. kde/bluez-qt-5.80.0-x86_64-1.txz: Upgraded. kde/breeze-icons-5.80.0-noarch-1.txz: Upgraded. kde/extra-cmake-modules-5.80.0-x86_64-1.txz: Upgraded. kde/frameworkintegration-5.80.0-x86_64-1.txz: Upgraded. kde/kactivities-5.80.0-x86_64-1.txz: Upgraded. kde/kactivities-stats-5.80.0-x86_64-1.txz: Upgraded. kde/kapidox-5.80.0-x86_64-1.txz: Upgraded. kde/karchive-5.80.0-x86_64-1.txz: Upgraded. kde/kauth-5.80.0-x86_64-1.txz: Upgraded. kde/kbookmarks-5.80.0-x86_64-1.txz: Upgraded. kde/kcalendarcore-5.80.0-x86_64-1.txz: Upgraded. kde/kcmutils-5.80.0-x86_64-1.txz: Upgraded. kde/kcodecs-5.80.0-x86_64-1.txz: Upgraded. kde/kcompletion-5.80.0-x86_64-1.txz: Upgraded. kde/kconfig-5.80.0-x86_64-1.txz: Upgraded. kde/kconfigwidgets-5.80.0-x86_64-1.txz: Upgraded. kde/kcontacts-5.80.0-x86_64-1.txz: Upgraded. kde/kcoreaddons-5.80.0-x86_64-1.txz: Upgraded. kde/kcrash-5.80.0-x86_64-1.txz: Upgraded. kde/kdav-5.80.0-x86_64-1.txz: Upgraded. kde/kdbusaddons-5.80.0-x86_64-1.txz: Upgraded. kde/kdeclarative-5.80.0-x86_64-1.txz: Upgraded. kde/kded-5.80.0-x86_64-1.txz: Upgraded. kde/kdelibs4support-5.80.0-x86_64-1.txz: Upgraded. kde/kdesignerplugin-5.80.0-x86_64-1.txz: Upgraded. kde/kdesu-5.80.0-x86_64-1.txz: Upgraded. kde/kdewebkit-5.80.0-x86_64-1.txz: Upgraded. kde/kdnssd-5.80.0-x86_64-1.txz: Upgraded. kde/kdoctools-5.80.0-x86_64-1.txz: Upgraded. kde/kemoticons-5.80.0-x86_64-1.txz: Upgraded. kde/kfilemetadata-5.80.0-x86_64-1.txz: Upgraded. kde/kglobalaccel-5.80.0-x86_64-1.txz: Upgraded. kde/kguiaddons-5.80.0-x86_64-1.txz: Upgraded. kde/kholidays-5.80.0-x86_64-1.txz: Upgraded. kde/khtml-5.80.0-x86_64-1.txz: Upgraded. kde/ki18n-5.80.0-x86_64-1.txz: Upgraded. kde/kiconthemes-5.80.0-x86_64-1.txz: Upgraded. kde/kidletime-5.80.0-x86_64-1.txz: Upgraded. kde/kimageformats-5.80.0-x86_64-1.txz: Upgraded. kde/kinit-5.80.0-x86_64-1.txz: Upgraded. kde/kio-5.80.0-x86_64-1.txz: Upgraded. kde/kirigami2-5.80.0-x86_64-1.txz: Upgraded. kde/kitemmodels-5.80.0-x86_64-1.txz: Upgraded. kde/kitemviews-5.80.0-x86_64-1.txz: Upgraded. kde/kjobwidgets-5.80.0-x86_64-1.txz: Upgraded. kde/kjs-5.80.0-x86_64-1.txz: Upgraded. kde/kjsembed-5.80.0-x86_64-1.txz: Upgraded. kde/kmediaplayer-5.80.0-x86_64-1.txz: Upgraded. kde/knewstuff-5.80.0-x86_64-1.txz: Upgraded. kde/knotifications-5.80.0-x86_64-1.txz: Upgraded. kde/knotifyconfig-5.80.0-x86_64-1.txz: Upgraded. kde/kpackage-5.80.0-x86_64-1.txz: Upgraded. kde/kparts-5.80.0-x86_64-1.txz: Upgraded. kde/kpeople-5.80.0-x86_64-1.txz: Upgraded. kde/kplotting-5.80.0-x86_64-1.txz: Upgraded. kde/kpty-5.80.0-x86_64-1.txz: Upgraded. kde/kquickcharts-5.80.0-x86_64-1.txz: Upgraded. kde/kross-5.80.0-x86_64-1.txz: Upgraded. kde/krunner-5.80.0-x86_64-1.txz: Upgraded. kde/kservice-5.80.0-x86_64-1.txz: Upgraded. kde/ktexteditor-5.80.0-x86_64-1.txz: Upgraded. kde/ktextwidgets-5.80.0-x86_64-1.txz: Upgraded. kde/kunitconversion-5.80.0-x86_64-1.txz: Upgraded. kde/kwallet-5.80.0-x86_64-1.txz: Upgraded. kde/kwayland-5.80.0-x86_64-1.txz: Upgraded. kde/kwidgetsaddons-5.80.0-x86_64-1.txz: Upgraded. kde/kwindowsystem-5.80.0-x86_64-1.txz: Upgraded. kde/kxmlgui-5.80.0-x86_64-1.txz: Upgraded. kde/kxmlrpcclient-5.80.0-x86_64-1.txz: Upgraded. kde/modemmanager-qt-5.80.0-x86_64-1.txz: Upgraded. kde/networkmanager-qt-5.80.0-x86_64-1.txz: Upgraded. kde/oxygen-icons5-5.80.0-noarch-1.txz: Upgraded. kde/plasma-framework-5.80.0-x86_64-1.txz: Upgraded. kde/prison-5.80.0-x86_64-1.txz: Upgraded. kde/purpose-5.80.0-x86_64-1.txz: Upgraded. kde/qqc2-desktop-style-5.80.0-x86_64-1.txz: Upgraded. kde/solid-5.80.0-x86_64-1.txz: Upgraded. kde/sonnet-5.80.0-x86_64-1.txz: Upgraded. kde/syndication-5.80.0-x86_64-1.txz: Upgraded. kde/syntax-highlighting-5.80.0-x86_64-1.txz: Upgraded. kde/threadweaver-5.80.0-x86_64-1.txz: Upgraded. l/gnu-efi-3.0.13-x86_64-1.txz: Upgraded. l/imagemagick-7.0.11_3-x86_64-1.txz: Upgraded. l/netpbm-10.93.02-x86_64-1.txz: Upgraded. l/pango-1.48.3-x86_64-1.txz: Upgraded. xap/mozilla-firefox-78.8.0esr-x86_64-4.txz: Rebuilt. Strip binaries and symlink duplicate binaries. Thanks to franzen. Add export MACH_USE_SYSTEM_PYTHON="1", upgrade build-deps/nodejs/, and compile with clang/clang++, fixing the use of this script to build more recent Firefox versions. Thanks to ponce. xap/mozilla-thunderbird-78.8.1-x86_64-3.txz: Rebuilt. Strip binaries and symlink duplicate binaries. Thanks to franzen. Add export MACH_USE_SYSTEM_PYTHON="1", upgrade build-deps/nodejs/, and compile with clang/clang++, fixing the use of this script to build more recent Thunderbird versions. Thanks to ponce.
2021-03-14 04:24:31 +01:00
export MACH_USE_SYSTEM_PYTHON="1"
Wed Mar 20 21:10:30 UTC 2024 a/libblockdev-2.28-x86_64-2.txz: Rebuilt. Drop python2 support. a/sysvinit-scripts-15.1-noarch-15.txz: Rebuilt. rc.M: start rc.iceccd and rc.icecc-scheduler earlier. a/util-linux-2.39.3-x86_64-2.txz: Rebuilt. Drop python2 support. a/volume_key-0.3.12-x86_64-6.txz: Rebuilt. Drop python2 support. ap/man-pages-6.7-noarch-1.txz: Upgraded. d/cmake-3.28.4-x86_64-1.txz: Upgraded. d/llvm-18.1.2-x86_64-1.txz: Upgraded. d/python2-2.7.18-x86_64-7.txz: Rebuilt. Bundle the final python2 versions of pip and setuptools. Drop the /usr/bin/python symlink. d/python3-3.9.19-x86_64-1.txz: Upgraded. Point the /usr/bin/python symlink at python3.9. PEP 394 says we can do this, and in a world of ambigious shebangs, this is probably the best of the available options. This update also fixes security issues: bundled libexpat was updated to 2.6.0. zipfile is now protected from the "quoted-overlap" zipbomb. tempfile.TemporaryDirectory cleanup no longer dereferences symlinks when working around file system permission errors. For more information, see: https://pythoninsider.blogspot.com/2024/03/python-31014-3919-and-3819-is-now.html https://www.cve.org/CVERecord?id=CVE-2023-52425 https://www.cve.org/CVERecord?id=CVE-2024-0450 https://www.cve.org/CVERecord?id=CVE-2023-6597 (* Security fix *) d/strace-6.8-x86_64-1.txz: Upgraded. kde/kross-interpreters-23.08.5-x86_64-2.txz: Rebuilt. Drop python2 support. l/libxml2-2.12.6-x86_64-2.txz: Rebuilt. Drop python2 support. l/mozjs115-115.9.0esr-x86_64-2.txz: Rebuilt. Fixed installed library name. Thanks to reddog83. Fixed slack-desc. Thanks to r1w1s1. l/phonon-4.12.0-x86_64-1.txz: Upgraded. l/pilot-link-0.12.5-x86_64-17.txz: Rebuilt. Drop python2 support. l/python2-module-collection-2.7.18-x86_64-6.txz: Removed. Good bye! l/python2-pycairo-1.18.2-x86_64-1.txz: Added. We'll need this (along with pygtk and pygobject) until we get gimp3. Well, we could build gimp without python support, but I really don't think that's the route we want to take. n/bind-9.18.25-x86_64-1.txz: Upgraded. n/crda-4.15-x86_64-1.txz: Removed. The kernel is able to load from wireless-regdb directly. Obsolete. n/getmail-6.18.14-x86_64-1.txz: Upgraded. n/gpgme-1.23.2-x86_64-2.txz: Rebuilt. Drop python2 support. n/obexftp-0.24.2-x86_64-11.txz: Rebuilt. Drop python2 support. n/wireless-regdb-2024.01.23-x86_64-1.txz: Added. Wireless regulatory database, previously bundled with crda. x/ibus-1.5.29-x86_64-2.txz: Rebuilt. Drop python2 support. x/libkkc-0.3.5-x86_64-4.txz: Rebuilt. Still forcing python2 with this one, but perhaps a python3 marisa module could work around this. x/libkkc-data-0.2.7-x86_64-4.txz: Rebuilt. Still forcing python2 with this one, but perhaps a python3 marisa module could work around this. x/xcb-proto-1.16.0-x86_64-2.txz: Rebuilt. Drop python2 support. x/xpyb-1.3.1-x86_64-7.txz: Removed. Nothing uses it, and it was never updated for python3. Removed as obsolete.
2024-03-20 22:10:30 +01:00
#export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE=system
export BUILD_OFFICIAL=1
export MOZILLA_OFFICIAL=1
export MOZ_PHOENIX=1
export CFLAGS="$SLKCFLAGS"
export CXXFLAGS="$SLKCFLAGS"
export MOZ_MAKE_FLAGS="$NUMJOBS"
# Set the following variable to empty. =0 does not work.
export MOZ_REQUIRE_SIGNING=
export MOZBUILD_STATE_PATH="$TMP/thunderbird-$RELEASEVER/.mozbuild"
# Clear some variables that could break the build
unset DBUS_SESSION_BUS_ADDRESS ORBIT_SOCKETDIR SESSION_MANAGER \
XDG_SESSION_COOKIE XAUTHORITY MAKEFLAGS
# Assemble our .mozconfig:
echo > .mozconfig
# Tell .mozconfig about the selected compiler:
echo "export CC=\"${CC}\"" >> .mozconfig
echo "export CXX=\"${CXX}\"" >> .mozconfig
# Mozilla devs enforce using an objdir for building
# https://developer.mozilla.org/en/Configuring_Build_Options#Building_with_an_objdir
mkdir obj
echo "mk_add_options MOZ_OBJDIR=$(pwd)/obj" >> .mozconfig
# This directory is also needed or the build will fail:
mkdir -p mozilla/obj
if [ "$COMPILE_X86_UNDER_X86_64" = "true" ]; then
# Compile for i686 under an x86_64 kernel:
echo "ac_add_options --host=i686-pc-linux-gnu" >> .mozconfig
echo "ac_add_options --target=i686-pc-linux-gnu" >> .mozconfig
fi
# Add the $OPTIONS above to .mozconfig:
for option in $OPTIONS; do echo "ac_add_options $option" >> .mozconfig; done
# Do a standard build:
./mach build || exit 1
./mach buildsymbols || exit 1
DESTDIR=$PKG ./mach install || exit 1
Sun Mar 14 03:24:31 UTC 2021 a/efivar-20201015_cff88dd-x86_64-1.txz: Upgraded. Updated to fix issues with eMMC based systems. Thanks to Andypoo. a/gptfdisk-1.0.7-x86_64-1.txz: Upgraded. a/xfsprogs-5.11.0-x86_64-1.txz: Upgraded. ap/qpdf-10.3.1-x86_64-1.txz: Upgraded. ap/sqlite-3.35.0-x86_64-1.txz: Upgraded. ap/sudo-1.9.5p2-x86_64-3.txz: Rebuilt. Fix build time detection of PAM. Thanks to pghvlaans. kde/attica-5.80.0-x86_64-1.txz: Upgraded. kde/baloo-5.80.0-x86_64-1.txz: Upgraded. kde/bluez-qt-5.80.0-x86_64-1.txz: Upgraded. kde/breeze-icons-5.80.0-noarch-1.txz: Upgraded. kde/extra-cmake-modules-5.80.0-x86_64-1.txz: Upgraded. kde/frameworkintegration-5.80.0-x86_64-1.txz: Upgraded. kde/kactivities-5.80.0-x86_64-1.txz: Upgraded. kde/kactivities-stats-5.80.0-x86_64-1.txz: Upgraded. kde/kapidox-5.80.0-x86_64-1.txz: Upgraded. kde/karchive-5.80.0-x86_64-1.txz: Upgraded. kde/kauth-5.80.0-x86_64-1.txz: Upgraded. kde/kbookmarks-5.80.0-x86_64-1.txz: Upgraded. kde/kcalendarcore-5.80.0-x86_64-1.txz: Upgraded. kde/kcmutils-5.80.0-x86_64-1.txz: Upgraded. kde/kcodecs-5.80.0-x86_64-1.txz: Upgraded. kde/kcompletion-5.80.0-x86_64-1.txz: Upgraded. kde/kconfig-5.80.0-x86_64-1.txz: Upgraded. kde/kconfigwidgets-5.80.0-x86_64-1.txz: Upgraded. kde/kcontacts-5.80.0-x86_64-1.txz: Upgraded. kde/kcoreaddons-5.80.0-x86_64-1.txz: Upgraded. kde/kcrash-5.80.0-x86_64-1.txz: Upgraded. kde/kdav-5.80.0-x86_64-1.txz: Upgraded. kde/kdbusaddons-5.80.0-x86_64-1.txz: Upgraded. kde/kdeclarative-5.80.0-x86_64-1.txz: Upgraded. kde/kded-5.80.0-x86_64-1.txz: Upgraded. kde/kdelibs4support-5.80.0-x86_64-1.txz: Upgraded. kde/kdesignerplugin-5.80.0-x86_64-1.txz: Upgraded. kde/kdesu-5.80.0-x86_64-1.txz: Upgraded. kde/kdewebkit-5.80.0-x86_64-1.txz: Upgraded. kde/kdnssd-5.80.0-x86_64-1.txz: Upgraded. kde/kdoctools-5.80.0-x86_64-1.txz: Upgraded. kde/kemoticons-5.80.0-x86_64-1.txz: Upgraded. kde/kfilemetadata-5.80.0-x86_64-1.txz: Upgraded. kde/kglobalaccel-5.80.0-x86_64-1.txz: Upgraded. kde/kguiaddons-5.80.0-x86_64-1.txz: Upgraded. kde/kholidays-5.80.0-x86_64-1.txz: Upgraded. kde/khtml-5.80.0-x86_64-1.txz: Upgraded. kde/ki18n-5.80.0-x86_64-1.txz: Upgraded. kde/kiconthemes-5.80.0-x86_64-1.txz: Upgraded. kde/kidletime-5.80.0-x86_64-1.txz: Upgraded. kde/kimageformats-5.80.0-x86_64-1.txz: Upgraded. kde/kinit-5.80.0-x86_64-1.txz: Upgraded. kde/kio-5.80.0-x86_64-1.txz: Upgraded. kde/kirigami2-5.80.0-x86_64-1.txz: Upgraded. kde/kitemmodels-5.80.0-x86_64-1.txz: Upgraded. kde/kitemviews-5.80.0-x86_64-1.txz: Upgraded. kde/kjobwidgets-5.80.0-x86_64-1.txz: Upgraded. kde/kjs-5.80.0-x86_64-1.txz: Upgraded. kde/kjsembed-5.80.0-x86_64-1.txz: Upgraded. kde/kmediaplayer-5.80.0-x86_64-1.txz: Upgraded. kde/knewstuff-5.80.0-x86_64-1.txz: Upgraded. kde/knotifications-5.80.0-x86_64-1.txz: Upgraded. kde/knotifyconfig-5.80.0-x86_64-1.txz: Upgraded. kde/kpackage-5.80.0-x86_64-1.txz: Upgraded. kde/kparts-5.80.0-x86_64-1.txz: Upgraded. kde/kpeople-5.80.0-x86_64-1.txz: Upgraded. kde/kplotting-5.80.0-x86_64-1.txz: Upgraded. kde/kpty-5.80.0-x86_64-1.txz: Upgraded. kde/kquickcharts-5.80.0-x86_64-1.txz: Upgraded. kde/kross-5.80.0-x86_64-1.txz: Upgraded. kde/krunner-5.80.0-x86_64-1.txz: Upgraded. kde/kservice-5.80.0-x86_64-1.txz: Upgraded. kde/ktexteditor-5.80.0-x86_64-1.txz: Upgraded. kde/ktextwidgets-5.80.0-x86_64-1.txz: Upgraded. kde/kunitconversion-5.80.0-x86_64-1.txz: Upgraded. kde/kwallet-5.80.0-x86_64-1.txz: Upgraded. kde/kwayland-5.80.0-x86_64-1.txz: Upgraded. kde/kwidgetsaddons-5.80.0-x86_64-1.txz: Upgraded. kde/kwindowsystem-5.80.0-x86_64-1.txz: Upgraded. kde/kxmlgui-5.80.0-x86_64-1.txz: Upgraded. kde/kxmlrpcclient-5.80.0-x86_64-1.txz: Upgraded. kde/modemmanager-qt-5.80.0-x86_64-1.txz: Upgraded. kde/networkmanager-qt-5.80.0-x86_64-1.txz: Upgraded. kde/oxygen-icons5-5.80.0-noarch-1.txz: Upgraded. kde/plasma-framework-5.80.0-x86_64-1.txz: Upgraded. kde/prison-5.80.0-x86_64-1.txz: Upgraded. kde/purpose-5.80.0-x86_64-1.txz: Upgraded. kde/qqc2-desktop-style-5.80.0-x86_64-1.txz: Upgraded. kde/solid-5.80.0-x86_64-1.txz: Upgraded. kde/sonnet-5.80.0-x86_64-1.txz: Upgraded. kde/syndication-5.80.0-x86_64-1.txz: Upgraded. kde/syntax-highlighting-5.80.0-x86_64-1.txz: Upgraded. kde/threadweaver-5.80.0-x86_64-1.txz: Upgraded. l/gnu-efi-3.0.13-x86_64-1.txz: Upgraded. l/imagemagick-7.0.11_3-x86_64-1.txz: Upgraded. l/netpbm-10.93.02-x86_64-1.txz: Upgraded. l/pango-1.48.3-x86_64-1.txz: Upgraded. xap/mozilla-firefox-78.8.0esr-x86_64-4.txz: Rebuilt. Strip binaries and symlink duplicate binaries. Thanks to franzen. Add export MACH_USE_SYSTEM_PYTHON="1", upgrade build-deps/nodejs/, and compile with clang/clang++, fixing the use of this script to build more recent Firefox versions. Thanks to ponce. xap/mozilla-thunderbird-78.8.1-x86_64-3.txz: Rebuilt. Strip binaries and symlink duplicate binaries. Thanks to franzen. Add export MACH_USE_SYSTEM_PYTHON="1", upgrade build-deps/nodejs/, and compile with clang/clang++, fixing the use of this script to build more recent Thunderbird versions. Thanks to ponce.
2021-03-14 04:24:31 +01:00
# Strip binaries:
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
Mon Aug 16 05:28:16 UTC 2021 Hey everyone, long time no see! No, I wasn't out fishing. Sadly, I haven't had a fishing rod in my hand (or even a fishing license in my wallet) for this entire season, but there may yet be a chance for that this year. Along with the usual suspects, I've been trying to clear out the list of things that needed to get done in order to reach the standard of excellence demanded from a Slackware release, and I think we've gotten it pretty close. GCC was bumped to version 11.2.0 (because we just can't send this out 2 versions behind), and everything was verified to build properly or fixed up so that it did. I don't see any benefit to another public mass rebuild, so we're not going to do one. Anyway, without further ado, here is Slackware 15.0 release candidate one. Consider most things frozen and the focus now to be any remaining blocker bugs. We'll more than likely take that next Plasma bugfix release, but it's soon time to get off this treadmill. Enjoy! :-) a/aaa_libraries-15.0-x86_64-8.txz: Rebuilt. Upgraded: libcap.so.2.52, libpcre.so.1.2.13, libboost_atomic.so.1.76.0, libboost_chrono.so.1.76.0, libboost_container.so.1.76.0, libboost_context.so.1.76.0, libboost_contract.so.1.76.0, libboost_coroutine.so.1.76.0, libboost_date_time.so.1.76.0, libboost_fiber.so.1.76.0, libboost_filesystem.so.1.76.0, libboost_graph.so.1.76.0, libboost_iostreams.so.1.76.0, libboost_json.so.1.76.0, libboost_locale.so.1.76.0, libboost_log.so.1.76.0, libboost_log_setup.so.1.76.0, libboost_math_c99.so.1.76.0, libboost_math_c99f.so.1.76.0, libboost_math_c99l.so.1.76.0, libboost_math_tr1.so.1.76.0, libboost_math_tr1f.so.1.76.0, libboost_math_tr1l.so.1.76.0, libboost_nowide.so.1.76.0, libboost_prg_exec_monitor.so.1.76.0, libboost_program_options.so.1.76.0, libboost_python27.so.1.76.0, libboost_python39.so.1.76.0, libboost_random.so.1.76.0, libboost_regex.so.1.76.0, libboost_serialization.so.1.76.0, libboost_stacktrace_addr2line.so.1.76.0, libboost_stacktrace_basic.so.1.76.0, libboost_stacktrace_noop.so.1.76.0, libboost_system.so.1.76.0, libboost_thread.so.1.76.0, libboost_timer.so.1.76.0, libboost_type_erasure.so.1.76.0, libboost_unit_test_framework.so.1.76.0, libboost_wave.so.1.76.0, libboost_wserialization.so.1.76.0, libcares.so.2.4.3, libglib-2.0.so.0.6800.3, libgmodule-2.0.so.0.6800.3, libgobject-2.0.so.0.6800.3, libgthread-2.0.so.0.6800.3, libidn.so.12.6.3, liblber-2.4.so.2.11.7, libldap-2.4.so.2.11.7, libstdc++.so.6.0.29, libtdb.so.1.4.5. a/grep-3.7-x86_64-1.txz: Upgraded. a/kernel-firmware-20210812_24c4a85-noarch-1.txz: Upgraded. a/kernel-generic-5.13.11-x86_64-1.txz: Upgraded. a/kernel-huge-5.13.11-x86_64-1.txz: Upgraded. a/kernel-modules-5.13.11-x86_64-1.txz: Upgraded. a/libgudev-237-x86_64-1.txz: Upgraded. a/lvm2-2.03.13-x86_64-1.txz: Upgraded. ap/linuxdoc-tools-0.9.82-x86_64-1.txz: Upgraded. Thanks to Stuart Winter. ap/mariadb-10.5.12-x86_64-1.txz: Upgraded. Looks like we're still hitting a few regressions in the 10.6 branch. The most obvious one where the version reported by MariaDB is the library version rather than the server version (as previously reported) could be reverted, but this could lead to future problems as fixes for this change land in other projects. It seems that the safest approach at this time is to switch back to the most recent release from the 10.5 branch and keep an eye on the situation. Thanks to richarson and Heinz Wiesinger. ap/mc-4.8.27-x86_64-1.txz: Upgraded. ap/pamixer-1.4-x86_64-11.txz: Rebuilt. Recompiled against boost-1.77.0. ap/slackpkg-15.0.7-noarch-1.txz: Upgraded. Remove ftp://spout.ussg.indiana.edu from mirrorlist. Allow "slackpkg help" to work after slackpkg is upgraded (JK Wood). Thanks to Robby Workman. ap/squashfs-tools-4.5-x86_64-1.txz: Upgraded. ap/vim-8.2.3352-x86_64-1.txz: Upgraded. d/gcc-11.2.0-x86_64-1.txz: Upgraded. d/gcc-brig-11.2.0-x86_64-1.txz: Upgraded. d/gcc-g++-11.2.0-x86_64-1.txz: Upgraded. d/gcc-gdc-11.2.0-x86_64-1.txz: Upgraded. d/gcc-gfortran-11.2.0-x86_64-1.txz: Upgraded. d/gcc-gnat-11.2.0-x86_64-1.txz: Upgraded. d/gcc-go-11.2.0-x86_64-1.txz: Upgraded. d/gcc-objc-11.2.0-x86_64-1.txz: Upgraded. d/help2man-1.48.4-x86_64-1.txz: Upgraded. d/kernel-headers-5.13.11-x86-1.txz: Upgraded. d/libtool-2.4.6-x86_64-18.txz: Rebuilt. Recompiled to update embedded GCC version number. d/meson-0.58.2-x86_64-1.txz: Upgraded. d/parallel-20210722-noarch-1.txz: Upgraded. d/python-pip-21.2.4-x86_64-1.txz: Upgraded. d/slacktrack-2.21-x86_64-1.txz: Upgraded. Thanks to Stuart Winter. k/kernel-source-5.13.11-noarch-1.txz: Upgraded. CC_VERSION_TEXT "gcc (GCC) 10.3.0" -> "gcc (GCC) 11.2.0" GCC_VERSION 100300 -> 110200 +CC_HAS_ASM_GOTO_OUTPUT y +HAVE_KCSAN_COMPILER y +KCSAN n +SND_SOC_INTEL_HDA_DSP_COMMON m +SND_SOC_INTEL_SOF_MAXIM_COMMON m kde/akonadi-21.08.0-x86_64-1.txz: Upgraded. kde/akonadi-calendar-21.08.0-x86_64-1.txz: Upgraded. kde/akonadi-calendar-tools-21.08.0-x86_64-1.txz: Upgraded. kde/akonadi-contacts-21.08.0-x86_64-1.txz: Upgraded. kde/akonadi-import-wizard-21.08.0-x86_64-1.txz: Upgraded. kde/akonadi-mime-21.08.0-x86_64-1.txz: Upgraded. kde/akonadi-notes-21.08.0-x86_64-1.txz: Upgraded. kde/akonadi-search-21.08.0-x86_64-1.txz: Upgraded. kde/akonadiconsole-21.08.0-x86_64-1.txz: Upgraded. kde/akregator-21.08.0-x86_64-1.txz: Upgraded. kde/analitza-21.08.0-x86_64-1.txz: Upgraded. kde/ark-21.08.0-x86_64-1.txz: Upgraded. kde/artikulate-21.08.0-x86_64-1.txz: Upgraded. kde/attica-5.85.0-x86_64-1.txz: Upgraded. kde/audiocd-kio-21.08.0-x86_64-1.txz: Upgraded. kde/baloo-5.85.0-x86_64-1.txz: Upgraded. kde/baloo-widgets-21.08.0-x86_64-1.txz: Upgraded. kde/blinken-21.08.0-x86_64-1.txz: Upgraded. kde/bluez-qt-5.85.0-x86_64-1.txz: Upgraded. kde/bomber-21.08.0-x86_64-1.txz: Upgraded. kde/bovo-21.08.0-x86_64-1.txz: Upgraded. kde/breeze-icons-5.85.0-noarch-1.txz: Upgraded. kde/calendarsupport-21.08.0-x86_64-1.txz: Upgraded. kde/cantor-21.08.0-x86_64-1.txz: Upgraded. kde/cervisia-21.08.0-x86_64-1.txz: Upgraded. kde/dolphin-21.08.0-x86_64-1.txz: Upgraded. kde/dolphin-plugins-21.08.0-x86_64-1.txz: Upgraded. kde/dragon-21.08.0-x86_64-1.txz: Upgraded. kde/elisa-21.08.0-x86_64-1.txz: Upgraded. kde/eventviews-21.08.0-x86_64-1.txz: Upgraded. kde/extra-cmake-modules-5.85.0-x86_64-1.txz: Upgraded. kde/ffmpegthumbs-21.08.0-x86_64-1.txz: Upgraded. kde/filelight-21.08.0-x86_64-1.txz: Upgraded. kde/frameworkintegration-5.85.0-x86_64-1.txz: Upgraded. kde/granatier-21.08.0-x86_64-1.txz: Upgraded. kde/grantlee-editor-21.08.0-x86_64-1.txz: Upgraded. kde/grantleetheme-21.08.0-x86_64-1.txz: Upgraded. kde/gwenview-21.08.0-x86_64-1.txz: Upgraded. kde/incidenceeditor-21.08.0-x86_64-1.txz: Upgraded. kde/itinerary-21.08.0-x86_64-1.txz: Upgraded. kde/juk-21.08.0-x86_64-1.txz: Upgraded. kde/k3b-21.08.0-x86_64-1.txz: Upgraded. kde/kactivities-5.85.0-x86_64-1.txz: Upgraded. kde/kactivities-stats-5.85.0-x86_64-1.txz: Upgraded. kde/kaddressbook-21.08.0-x86_64-1.txz: Upgraded. kde/kalarm-21.08.0-x86_64-1.txz: Upgraded. kde/kalarmcal-21.08.0-x86_64-1.txz: Upgraded. kde/kalgebra-21.08.0-x86_64-1.txz: Upgraded. kde/kalzium-21.08.0-x86_64-1.txz: Upgraded. kde/kamera-21.08.0-x86_64-1.txz: Upgraded. kde/kamoso-21.08.0-x86_64-1.txz: Upgraded. kde/kanagram-21.08.0-x86_64-1.txz: Upgraded. kde/kapidox-5.85.0-x86_64-1.txz: Upgraded. kde/kapman-21.08.0-x86_64-1.txz: Upgraded. kde/kapptemplate-21.08.0-x86_64-1.txz: Upgraded. kde/karchive-5.85.0-x86_64-1.txz: Upgraded. kde/kate-21.08.0-x86_64-1.txz: Upgraded. kde/katomic-21.08.0-x86_64-1.txz: Upgraded. kde/kauth-5.85.0-x86_64-1.txz: Upgraded. kde/kbackup-21.08.0-x86_64-1.txz: Upgraded. kde/kblackbox-21.08.0-x86_64-1.txz: Upgraded. kde/kblocks-21.08.0-x86_64-1.txz: Upgraded. kde/kbookmarks-5.85.0-x86_64-1.txz: Upgraded. kde/kbounce-21.08.0-x86_64-1.txz: Upgraded. kde/kbreakout-21.08.0-x86_64-1.txz: Upgraded. kde/kbruch-21.08.0-x86_64-1.txz: Upgraded. kde/kcachegrind-21.08.0-x86_64-1.txz: Upgraded. kde/kcalc-21.08.0-x86_64-1.txz: Upgraded. kde/kcalendarcore-5.85.0-x86_64-1.txz: Upgraded. kde/kcalutils-21.08.0-x86_64-1.txz: Upgraded. kde/kcharselect-21.08.0-x86_64-1.txz: Upgraded. kde/kcmutils-5.85.0-x86_64-1.txz: Upgraded. kde/kcodecs-5.85.0-x86_64-1.txz: Upgraded. kde/kcolorchooser-21.08.0-x86_64-1.txz: Upgraded. kde/kcompletion-5.85.0-x86_64-1.txz: Upgraded. kde/kconfig-5.85.0-x86_64-1.txz: Upgraded. kde/kconfigwidgets-5.85.0-x86_64-1.txz: Upgraded. kde/kcontacts-5.85.0-x86_64-1.txz: Upgraded. kde/kcoreaddons-5.85.0-x86_64-1.txz: Upgraded. kde/kcrash-5.85.0-x86_64-1.txz: Upgraded. kde/kcron-21.08.0-x86_64-1.txz: Upgraded. kde/kdav-5.85.0-x86_64-1.txz: Upgraded. kde/kdbusaddons-5.85.0-x86_64-1.txz: Upgraded. kde/kde-dev-scripts-21.08.0-x86_64-1.txz: Upgraded. kde/kde-dev-utils-21.08.0-x86_64-1.txz: Upgraded. kde/kdebugsettings-21.08.0-x86_64-1.txz: Upgraded. kde/kdeclarative-5.85.0-x86_64-1.txz: Upgraded. kde/kdeconnect-kde-21.08.0-x86_64-1.txz: Upgraded. kde/kded-5.85.0-x86_64-1.txz: Upgraded. kde/kdeedu-data-21.08.0-x86_64-1.txz: Upgraded. kde/kdegraphics-mobipocket-21.08.0-x86_64-1.txz: Upgraded. kde/kdegraphics-thumbnailers-21.08.0-x86_64-1.txz: Upgraded. kde/kdelibs4support-5.85.0-x86_64-1.txz: Upgraded. kde/kdenetwork-filesharing-21.08.0-x86_64-1.txz: Upgraded. kde/kdenlive-21.08.0-x86_64-1.txz: Upgraded. kde/kdepim-addons-21.08.0-x86_64-1.txz: Upgraded. kde/kdepim-runtime-21.08.0-x86_64-1.txz: Upgraded. kde/kdesdk-kioslaves-21.08.0-x86_64-1.txz: Upgraded. kde/kdesdk-thumbnailers-21.08.0-x86_64-1.txz: Upgraded. kde/kdesignerplugin-5.85.0-x86_64-1.txz: Upgraded. kde/kdesu-5.85.0-x86_64-1.txz: Upgraded. kde/kdewebkit-5.85.0-x86_64-1.txz: Upgraded. kde/kdf-21.08.0-x86_64-1.txz: Upgraded. kde/kdialog-21.08.0-x86_64-1.txz: Upgraded. kde/kdiamond-21.08.0-x86_64-1.txz: Upgraded. kde/kdnssd-5.85.0-x86_64-1.txz: Upgraded. kde/kdoctools-5.85.0-x86_64-1.txz: Upgraded. kde/keditbookmarks-21.08.0-x86_64-1.txz: Upgraded. kde/kemoticons-5.85.0-x86_64-1.txz: Upgraded. kde/kfilemetadata-5.85.0-x86_64-1.txz: Upgraded. kde/kfind-21.08.0-x86_64-1.txz: Upgraded. kde/kfloppy-21.08.0-x86_64-1.txz: Upgraded. kde/kfourinline-21.08.0-x86_64-1.txz: Upgraded. kde/kgeography-21.08.0-x86_64-1.txz: Upgraded. kde/kget-21.08.0-x86_64-1.txz: Upgraded. kde/kglobalaccel-5.85.0-x86_64-1.txz: Upgraded. kde/kgoldrunner-21.08.0-x86_64-1.txz: Upgraded. kde/kgpg-21.08.0-x86_64-1.txz: Upgraded. kde/kguiaddons-5.85.0-x86_64-1.txz: Upgraded. kde/khangman-21.08.0-x86_64-1.txz: Upgraded. kde/khelpcenter-21.08.0-x86_64-1.txz: Upgraded. kde/kholidays-5.85.0-x86_64-1.txz: Upgraded. kde/khtml-5.85.0-x86_64-1.txz: Upgraded. kde/ki18n-5.85.0-x86_64-1.txz: Upgraded. kde/kiconthemes-5.85.0-x86_64-1.txz: Upgraded. kde/kidentitymanagement-21.08.0-x86_64-1.txz: Upgraded. kde/kidletime-5.85.0-x86_64-1.txz: Upgraded. kde/kig-21.08.0-x86_64-1.txz: Upgraded. kde/kigo-21.08.0-x86_64-1.txz: Upgraded. kde/killbots-21.08.0-x86_64-1.txz: Upgraded. kde/kimageformats-5.85.0-x86_64-1.txz: Upgraded. kde/kimagemapeditor-21.08.0-x86_64-1.txz: Upgraded. kde/kimap-21.08.0-x86_64-1.txz: Upgraded. kde/kinit-5.85.0-x86_64-1.txz: Upgraded. kde/kio-5.85.0-x86_64-1.txz: Upgraded. kde/kio-extras-21.08.0-x86_64-1.txz: Upgraded. kde/kio-gdrive-21.08.0-x86_64-1.txz: Upgraded. kde/kipi-plugins-21.08.0-x86_64-1.txz: Upgraded. kde/kirigami-gallery-21.08.0-x86_64-1.txz: Upgraded. kde/kirigami2-5.85.0-x86_64-1.txz: Upgraded. kde/kiriki-21.08.0-x86_64-1.txz: Upgraded. kde/kitemmodels-5.85.0-x86_64-1.txz: Upgraded. kde/kitemviews-5.85.0-x86_64-1.txz: Upgraded. kde/kiten-21.08.0-x86_64-1.txz: Upgraded. kde/kitinerary-21.08.0-x86_64-1.txz: Upgraded. kde/kjobwidgets-5.85.0-x86_64-1.txz: Upgraded. kde/kjs-5.85.0-x86_64-1.txz: Upgraded. kde/kjsembed-5.85.0-x86_64-1.txz: Upgraded. kde/kjumpingcube-21.08.0-x86_64-1.txz: Upgraded. kde/kldap-21.08.0-x86_64-1.txz: Upgraded. kde/kleopatra-21.08.0-x86_64-1.txz: Upgraded. kde/klickety-21.08.0-x86_64-1.txz: Upgraded. kde/klines-21.08.0-x86_64-1.txz: Upgraded. kde/kmag-21.08.0-x86_64-1.txz: Upgraded. kde/kmahjongg-21.08.0-x86_64-1.txz: Upgraded. kde/kmail-21.08.0-x86_64-1.txz: Upgraded. kde/kmail-account-wizard-21.08.0-x86_64-1.txz: Upgraded. kde/kmailtransport-21.08.0-x86_64-1.txz: Upgraded. kde/kmbox-21.08.0-x86_64-1.txz: Upgraded. kde/kmediaplayer-5.85.0-x86_64-1.txz: Upgraded. kde/kmime-21.08.0-x86_64-1.txz: Upgraded. kde/kmines-21.08.0-x86_64-1.txz: Upgraded. kde/kmix-21.08.0-x86_64-1.txz: Upgraded. kde/kmousetool-21.08.0-x86_64-1.txz: Upgraded. kde/kmouth-21.08.0-x86_64-1.txz: Upgraded. kde/kmplot-21.08.0-x86_64-1.txz: Upgraded. kde/knavalbattle-21.08.0-x86_64-1.txz: Upgraded. kde/knetwalk-21.08.0-x86_64-1.txz: Upgraded. kde/knewstuff-5.85.0-x86_64-1.txz: Upgraded. kde/knights-21.08.0-x86_64-1.txz: Upgraded. kde/knotes-21.08.0-x86_64-1.txz: Upgraded. kde/knotifications-5.85.0-x86_64-1.txz: Upgraded. kde/knotifyconfig-5.85.0-x86_64-1.txz: Upgraded. kde/kolf-21.08.0-x86_64-1.txz: Upgraded. kde/kollision-21.08.0-x86_64-1.txz: Upgraded. kde/kolourpaint-21.08.0-x86_64-1.txz: Upgraded. kde/kompare-21.08.0-x86_64-1.txz: Upgraded. kde/konqueror-21.08.0-x86_64-1.txz: Upgraded. kde/konquest-21.08.0-x86_64-1.txz: Upgraded. kde/konsole-21.08.0-x86_64-1.txz: Upgraded. kde/kontact-21.08.0-x86_64-1.txz: Upgraded. kde/kontactinterface-21.08.0-x86_64-1.txz: Upgraded. kde/kontrast-21.08.0-x86_64-1.txz: Upgraded. kde/konversation-21.08.0-x86_64-1.txz: Upgraded. kde/kopeninghours-21.08.0-x86_64-1.txz: Upgraded. kde/kopete-21.08.0-x86_64-1.txz: Upgraded. kde/korganizer-21.08.0-x86_64-1.txz: Upgraded. kde/kosmindoormap-21.08.0-x86_64-1.txz: Upgraded. kde/kpackage-5.85.0-x86_64-1.txz: Upgraded. kde/kparts-5.85.0-x86_64-1.txz: Upgraded. kde/kpat-21.08.0-x86_64-1.txz: Upgraded. kde/kpeople-5.85.0-x86_64-1.txz: Upgraded. kde/kpimtextedit-21.08.0-x86_64-1.txz: Upgraded. kde/kpkpass-21.08.0-x86_64-1.txz: Upgraded. kde/kplotting-5.85.0-x86_64-1.txz: Upgraded. kde/kpmcore-21.08.0-x86_64-1.txz: Upgraded. kde/kpty-5.85.0-x86_64-1.txz: Upgraded. kde/kpublictransport-21.08.0-x86_64-1.txz: Upgraded. kde/kqtquickcharts-21.08.0-x86_64-1.txz: Upgraded. kde/kquickcharts-5.85.0-x86_64-1.txz: Upgraded. kde/krdc-21.08.0-x86_64-1.txz: Upgraded. kde/kreversi-21.08.0-x86_64-1.txz: Upgraded. kde/krfb-21.08.0-x86_64-1.txz: Upgraded. kde/krita-4.4.7-x86_64-2.txz: Rebuilt. Recompiled against boost-1.77.0. kde/kross-5.85.0-x86_64-1.txz: Upgraded. kde/kross-interpreters-21.08.0-x86_64-1.txz: Upgraded. kde/kruler-21.08.0-x86_64-1.txz: Upgraded. kde/krunner-5.85.0-x86_64-1.txz: Upgraded. kde/kservice-5.85.0-x86_64-1.txz: Upgraded. kde/kshisen-21.08.0-x86_64-1.txz: Upgraded. kde/ksirk-21.08.0-x86_64-1.txz: Upgraded. kde/ksmtp-21.08.0-x86_64-1.txz: Upgraded. kde/ksnakeduel-21.08.0-x86_64-1.txz: Upgraded. kde/kspaceduel-21.08.0-x86_64-1.txz: Upgraded. kde/ksquares-21.08.0-x86_64-1.txz: Upgraded. kde/ksudoku-21.08.0-x86_64-1.txz: Upgraded. kde/ksystemlog-21.08.0-x86_64-1.txz: Upgraded. kde/kteatime-21.08.0-x86_64-1.txz: Upgraded. kde/ktexteditor-5.85.0-x86_64-1.txz: Upgraded. kde/ktextwidgets-5.85.0-x86_64-1.txz: Upgraded. kde/ktimer-21.08.0-x86_64-1.txz: Upgraded. kde/ktnef-21.08.0-x86_64-1.txz: Upgraded. kde/ktorrent-21.08.0-x86_64-1.txz: Upgraded. kde/ktouch-21.08.0-x86_64-1.txz: Upgraded. kde/kturtle-21.08.0-x86_64-1.txz: Upgraded. kde/kubrick-21.08.0-x86_64-1.txz: Upgraded. kde/kunitconversion-5.85.0-x86_64-1.txz: Upgraded. kde/kwallet-5.85.0-x86_64-1.txz: Upgraded. kde/kwalletmanager-21.08.0-x86_64-1.txz: Upgraded. kde/kwave-21.08.0-x86_64-1.txz: Upgraded. kde/kwayland-5.85.0-x86_64-1.txz: Upgraded. kde/kwidgetsaddons-5.85.0-x86_64-1.txz: Upgraded. kde/kwindowsystem-5.85.0-x86_64-1.txz: Upgraded. kde/kwordquiz-21.08.0-x86_64-1.txz: Upgraded. kde/kxmlgui-5.85.0-x86_64-1.txz: Upgraded. kde/kxmlrpcclient-5.85.0-x86_64-1.txz: Upgraded. kde/latte-dock-0.10.0-x86_64-1.txz: Upgraded. kde/libgravatar-21.08.0-x86_64-1.txz: Upgraded. kde/libkcddb-21.08.0-x86_64-1.txz: Upgraded. kde/libkcompactdisc-21.08.0-x86_64-1.txz: Upgraded. kde/libkdcraw-21.08.0-x86_64-1.txz: Upgraded. kde/libkdegames-21.08.0-x86_64-1.txz: Upgraded. kde/libkdepim-21.08.0-x86_64-1.txz: Upgraded. kde/libkeduvocdocument-21.08.0-x86_64-1.txz: Upgraded. kde/libkexiv2-21.08.0-x86_64-1.txz: Upgraded. kde/libkgapi-21.08.0-x86_64-1.txz: Upgraded. kde/libkipi-21.08.0-x86_64-1.txz: Upgraded. kde/libkleo-21.08.0-x86_64-1.txz: Upgraded. kde/libkmahjongg-21.08.0-x86_64-1.txz: Upgraded. kde/libkomparediff2-21.08.0-x86_64-1.txz: Upgraded. kde/libksane-21.08.0-x86_64-1.txz: Upgraded. kde/libksieve-21.08.0-x86_64-1.txz: Upgraded. kde/libktorrent-21.08.0-x86_64-1.txz: Upgraded. kde/lokalize-21.08.0-x86_64-1.txz: Upgraded. kde/lskat-21.08.0-x86_64-1.txz: Upgraded. kde/mailcommon-21.08.0-x86_64-1.txz: Upgraded. kde/mailimporter-21.08.0-x86_64-1.txz: Upgraded. kde/marble-21.08.0-x86_64-1.txz: Upgraded. kde/markdownpart-21.08.0-x86_64-1.txz: Upgraded. kde/mbox-importer-21.08.0-x86_64-1.txz: Upgraded. kde/messagelib-21.08.0-x86_64-1.txz: Upgraded. kde/minuet-21.08.0-x86_64-1.txz: Upgraded. kde/modemmanager-qt-5.85.0-x86_64-1.txz: Upgraded. kde/networkmanager-qt-5.85.0-x86_64-1.txz: Upgraded. kde/okular-21.08.0-x86_64-1.txz: Upgraded. kde/oxygen-icons5-5.85.0-noarch-1.txz: Upgraded. kde/palapeli-21.08.0-x86_64-1.txz: Upgraded. kde/parley-21.08.0-x86_64-1.txz: Upgraded. kde/partitionmanager-21.08.0-x86_64-1.txz: Upgraded. kde/picmi-21.08.0-x86_64-1.txz: Upgraded. kde/pim-data-exporter-21.08.0-x86_64-1.txz: Upgraded. kde/pim-sieve-editor-21.08.0-x86_64-1.txz: Upgraded. kde/pimcommon-21.08.0-x86_64-1.txz: Upgraded. kde/plasma-framework-5.85.0-x86_64-1.txz: Upgraded. kde/plasma-workspace-5.22.4-x86_64-2.txz: Rebuilt. Recompiled against libqalculate-3.20.1. kde/poxml-21.08.0-x86_64-1.txz: Upgraded. kde/print-manager-21.08.0-x86_64-1.txz: Upgraded. kde/prison-5.85.0-x86_64-1.txz: Upgraded. kde/purpose-5.85.0-x86_64-1.txz: Upgraded. kde/qqc2-desktop-style-5.85.0-x86_64-1.txz: Upgraded. kde/rocs-21.08.0-x86_64-1.txz: Upgraded. kde/skanlite-21.08.0-x86_64-3.txz: Rebuilt. kde/solid-5.85.0-x86_64-1.txz: Upgraded. kde/sonnet-5.85.0-x86_64-1.txz: Upgraded. kde/spectacle-21.08.0-x86_64-1.txz: Upgraded. kde/step-21.08.0-x86_64-1.txz: Upgraded. kde/svgpart-21.08.0-x86_64-1.txz: Upgraded. kde/sweeper-21.08.0-x86_64-1.txz: Upgraded. kde/syndication-5.85.0-x86_64-1.txz: Upgraded. kde/syntax-highlighting-5.85.0-x86_64-1.txz: Upgraded. kde/threadweaver-5.85.0-x86_64-1.txz: Upgraded. kde/umbrello-21.08.0-x86_64-1.txz: Upgraded. kde/yakuake-21.08.0-x86_64-1.txz: Upgraded. kde/zeroconf-ioslave-21.08.0-x86_64-1.txz: Upgraded. l/SDL2-2.0.16-x86_64-1.txz: Upgraded. l/atkmm-2.28.2-x86_64-1.txz: Upgraded. l/boost-1.77.0-x86_64-1.txz: Upgraded. Shared library .so-version bump. l/cryfs-0.10.3-x86_64-3.txz: Rebuilt. Patched for gcc11 and recompiled against boost-1.77.0. l/enchant-2.3.1-x86_64-1.txz: Upgraded. l/gjs-1.68.3-x86_64-1.txz: Upgraded. l/gtk4-4.2.1-x86_64-1.txz: Added. l/gtkmm3-3.24.5-x86_64-1.txz: Upgraded. l/libjpeg-turbo-2.1.1-x86_64-1.txz: Upgraded. l/libqalculate-3.20.1-x86_64-1.txz: Upgraded. Shared library .so-version bump. l/libwebp-1.2.1-x86_64-1.txz: Upgraded. l/mlt-7.0.1-x86_64-1.txz: Upgraded. Shared library .so-version bump. l/mozilla-nss-3.69-x86_64-1.txz: Upgraded. l/mozjs78-78.13.0esr-x86_64-1.txz: Upgraded. l/netpbm-10.95.01-x86_64-1.txz: Upgraded. l/ocl-icd-2.3.0-x86_64-2.txz: Rebuilt. Patched to support the latest Khronos headers. l/openexr-2.5.7-x86_64-2.txz: Rebuilt. Recompiled against boost-1.77.0. l/pango-1.48.8-x86_64-1.txz: Upgraded. l/pulseaudio-15.0-x86_64-2.txz: Rebuilt. Ensure that start-pulseaudio-x11 is generated properly when pulseaudio is built using meson. Thanks to davjohn. l/python-pygments-2.10.0-x86_64-1.txz: Upgraded. l/qt5-5.15.2-x86_64-11.txz: Rebuilt. Patched to compile with gcc11 (such as adding #include <limits> to some of the header files shipped in the package). l/tidy-html5-5.8.0-x86_64-1.txz: Upgraded. Shared library .so-version bump. n/ModemManager-1.16.8-x86_64-1.txz: Upgraded. n/NetworkManager-1.32.6-x86_64-1.txz: Upgraded. n/c-ares-1.17.2-x86_64-1.txz: Upgraded. This update fixes a security issue: Missing input validation on hostnames returned by DNS servers. For more information, see: https://c-ares.haxx.se/adv_20210810.html https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3672 (* Security fix *) n/dhcpcd-9.4.0-x86_64-1.txz: Upgraded. n/fetchmail-6.4.21-x86_64-1.txz: Upgraded. n/nmap-7.92-x86_64-1.txz: Upgraded. n/openresolv-3.12.0-noarch-1.txz: Added. This is needed for wg-quick in the wireguard-tools package. Thanks to synbq Bucharest, Jeremy Hansen, and Daniel Wilkins. n/php-7.4.22-x86_64-2.txz: Rebuilt. Recompiled against tidy-html5-5.8.0. x/ibus-m17n-1.4.7-x86_64-1.txz: Upgraded. x/libepoxy-1.5.9-x86_64-1.txz: Upgraded. x/mesa-21.1.7-x86_64-1.txz: Upgraded. x/vulkan-sdk-1.2.176.1-x86_64-2.txz: Rebuilt. x/xrdb-1.2.1-x86_64-1.txz: Upgraded. xap/mozilla-firefox-91.0-x86_64-1.txz: Upgraded. New ESR release :-) This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/firefox/91.0/releasenotes/ https://www.mozilla.org/security/advisories/mfsa2021-33/ https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29986 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29981 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29988 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29983 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29984 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29980 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29987 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29985 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29982 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29989 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29990 (* Security fix *) xap/mozilla-thunderbird-91.0-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/91.0/releasenotes/ https://www.mozilla.org/en-US/security/advisories/mfsa2021-36/ https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29986 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29981 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29988 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29984 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29980 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29987 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29985 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29982 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29989 (* Security fix *) xap/network-manager-applet-1.22.0-x86_64-1.txz: Upgraded. xap/vim-gvim-8.2.3352-x86_64-1.txz: Upgraded. extra/php8/php8-8.0.9-x86_64-2.txz: Rebuilt. Recompiled against tidy-html5-5.8.0. isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
2021-08-16 07:28:16 +02:00
## Clean up the build time dependencies:
#rm -rf $TMP/mozilla-thunderbird-build-deps
Thu Sep 12 03:58:53 UTC 2019 a/glibc-zoneinfo-2019c-noarch-1.txz: Upgraded. This package provides the latest timezone updates. a/openssl-solibs-1.1.1d-x86_64-1.txz: Upgraded. a/openssl10-solibs-1.0.2t-x86_64-1.txz: Upgraded. ap/mariadb-10.4.8-x86_64-1.txz: Upgraded. l/netpbm-10.87.02-x86_64-1.txz: Upgraded. n/curl-7.66.0-x86_64-1.txz: Upgraded. This update fixes security issues: FTP-KRB double-free TFTP small blocksize heap buffer overflow For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5481 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5482 (* Security fix *) n/openssl-1.1.1d-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a fork protection issue Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1549 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/openssl10-1.0.2t-x86_64-1.txz: Upgraded. This update fixes low severity security issues: Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey Compute ECC cofactors if not provided during EC_GROUP construction For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1563 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1547 (* Security fix *) n/p11-kit-0.23.17-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-68.1.0-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/68.1.0/releasenotes/ https://www.mozilla.org/security/known-vulnerabilities/thunderbird.html (* Security fix *) extra/google-chrome/google-chrome.SlackBuild: Upgraded. Patched the packaging script to account for the internal change of control.tar.gz to control.tar.xz. Thanks to _RDS_ and Tim Thomas who both provided the same patch.
2019-09-12 05:58:53 +02:00
# We don't need these (just symlinks anyway):
rm -rf $PKG/usr/lib${LIBDIRSUFFIX}/thunderbird-devel-$RELEASEVER
# Nor these:
rm -rf $PKG/usr/include
# Thunderbird 3.x cruft?
# If we still need something like this (and you know what we need :), let me know.
#( cd $PKG/usr/lib${LIBDIRSUFFIX}/thunderbird-$VERSION
# cp -a defaults/profile/mimeTypes.rdf defaults/profile/mimeTypes.rdf.orig
# zcat $CWD/mimeTypes.rdf > defaults/profile/mimeTypes.rdf || exit 1
#) || exit 1
mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/mozilla/plugins
mkdir -p $PKG/usr/share/applications
cat $CWD/thunderbird.desktop > $PKG/usr/share/applications/thunderbird.desktop
mkdir -p $PKG/usr/share/pixmaps
# Symlinked below.
#cat $CWD/thunderbird.png > $PKG/usr/share/pixmaps/thunderbird.png
# Need some default icons in the right place:
for i in 16 22 24 32 48 256; do
install -m 0644 -D comm/mail/branding/thunderbird/default${i}.png \
$PKG/usr/share/icons/hicolor/${i}x${i}/apps/thunderbird.png
done
mkdir -p $PKG/usr/share/pixmaps
( cd $PKG/usr/share/pixmaps ; ln -sf /usr/share/icons/hicolor/256x256/apps/thunderbird.png . )
mkdir -p $PKG/usr/lib$LIBDIRSUFFIX/thunderbird-$RELEASEVER/chrome/icons/default
install -m 644 other-licenses/branding/thunderbird/mailicon16.png \
$PKG/usr/lib$LIBDIRSUFFIX/thunderbird-$RELEASEVER/icons/
install -m 644 other-licenses/branding/thunderbird/mailicon16.png \
$PKG/usr/lib$LIBDIRSUFFIX/thunderbird-$RELEASEVER/chrome/icons/default/
# Copy over the LICENSE
install -p -c -m 644 LICENSE $PKG/usr/lib${LIBDIRSUFFIX}/thunderbird-$RELEASEVER/
# If MOZ_ALLOW_DOWNGRADE=YES, replace the /usr/bin/thunderbird symlink with a
# shell script that sets the MOZ_ALLOW_DOWNGRADE=1 environment variable so
# that a detected downgrade does not reset the user profile:
if [ "$MOZ_ALLOW_DOWNGRADE" = "YES" ]; then
rm -f $PKG/usr/bin/thunderbird
cat << EOF > $PKG/usr/bin/thunderbird
#!/bin/sh
#
# Shell script to start Mozilla Thunderbird.
#
# Don't reset the user profile on a detected downgrade:
export MOZ_ALLOW_DOWNGRADE=1
# Start Thunderbird:
exec /usr/lib${LIBDIRSUFFIX}/thunderbird/thunderbird "\$@"
EOF
chown root:root $PKG/usr/bin/thunderbird
chmod 755 $PKG/usr/bin/thunderbird
fi
Sun Mar 14 03:24:31 UTC 2021 a/efivar-20201015_cff88dd-x86_64-1.txz: Upgraded. Updated to fix issues with eMMC based systems. Thanks to Andypoo. a/gptfdisk-1.0.7-x86_64-1.txz: Upgraded. a/xfsprogs-5.11.0-x86_64-1.txz: Upgraded. ap/qpdf-10.3.1-x86_64-1.txz: Upgraded. ap/sqlite-3.35.0-x86_64-1.txz: Upgraded. ap/sudo-1.9.5p2-x86_64-3.txz: Rebuilt. Fix build time detection of PAM. Thanks to pghvlaans. kde/attica-5.80.0-x86_64-1.txz: Upgraded. kde/baloo-5.80.0-x86_64-1.txz: Upgraded. kde/bluez-qt-5.80.0-x86_64-1.txz: Upgraded. kde/breeze-icons-5.80.0-noarch-1.txz: Upgraded. kde/extra-cmake-modules-5.80.0-x86_64-1.txz: Upgraded. kde/frameworkintegration-5.80.0-x86_64-1.txz: Upgraded. kde/kactivities-5.80.0-x86_64-1.txz: Upgraded. kde/kactivities-stats-5.80.0-x86_64-1.txz: Upgraded. kde/kapidox-5.80.0-x86_64-1.txz: Upgraded. kde/karchive-5.80.0-x86_64-1.txz: Upgraded. kde/kauth-5.80.0-x86_64-1.txz: Upgraded. kde/kbookmarks-5.80.0-x86_64-1.txz: Upgraded. kde/kcalendarcore-5.80.0-x86_64-1.txz: Upgraded. kde/kcmutils-5.80.0-x86_64-1.txz: Upgraded. kde/kcodecs-5.80.0-x86_64-1.txz: Upgraded. kde/kcompletion-5.80.0-x86_64-1.txz: Upgraded. kde/kconfig-5.80.0-x86_64-1.txz: Upgraded. kde/kconfigwidgets-5.80.0-x86_64-1.txz: Upgraded. kde/kcontacts-5.80.0-x86_64-1.txz: Upgraded. kde/kcoreaddons-5.80.0-x86_64-1.txz: Upgraded. kde/kcrash-5.80.0-x86_64-1.txz: Upgraded. kde/kdav-5.80.0-x86_64-1.txz: Upgraded. kde/kdbusaddons-5.80.0-x86_64-1.txz: Upgraded. kde/kdeclarative-5.80.0-x86_64-1.txz: Upgraded. kde/kded-5.80.0-x86_64-1.txz: Upgraded. kde/kdelibs4support-5.80.0-x86_64-1.txz: Upgraded. kde/kdesignerplugin-5.80.0-x86_64-1.txz: Upgraded. kde/kdesu-5.80.0-x86_64-1.txz: Upgraded. kde/kdewebkit-5.80.0-x86_64-1.txz: Upgraded. kde/kdnssd-5.80.0-x86_64-1.txz: Upgraded. kde/kdoctools-5.80.0-x86_64-1.txz: Upgraded. kde/kemoticons-5.80.0-x86_64-1.txz: Upgraded. kde/kfilemetadata-5.80.0-x86_64-1.txz: Upgraded. kde/kglobalaccel-5.80.0-x86_64-1.txz: Upgraded. kde/kguiaddons-5.80.0-x86_64-1.txz: Upgraded. kde/kholidays-5.80.0-x86_64-1.txz: Upgraded. kde/khtml-5.80.0-x86_64-1.txz: Upgraded. kde/ki18n-5.80.0-x86_64-1.txz: Upgraded. kde/kiconthemes-5.80.0-x86_64-1.txz: Upgraded. kde/kidletime-5.80.0-x86_64-1.txz: Upgraded. kde/kimageformats-5.80.0-x86_64-1.txz: Upgraded. kde/kinit-5.80.0-x86_64-1.txz: Upgraded. kde/kio-5.80.0-x86_64-1.txz: Upgraded. kde/kirigami2-5.80.0-x86_64-1.txz: Upgraded. kde/kitemmodels-5.80.0-x86_64-1.txz: Upgraded. kde/kitemviews-5.80.0-x86_64-1.txz: Upgraded. kde/kjobwidgets-5.80.0-x86_64-1.txz: Upgraded. kde/kjs-5.80.0-x86_64-1.txz: Upgraded. kde/kjsembed-5.80.0-x86_64-1.txz: Upgraded. kde/kmediaplayer-5.80.0-x86_64-1.txz: Upgraded. kde/knewstuff-5.80.0-x86_64-1.txz: Upgraded. kde/knotifications-5.80.0-x86_64-1.txz: Upgraded. kde/knotifyconfig-5.80.0-x86_64-1.txz: Upgraded. kde/kpackage-5.80.0-x86_64-1.txz: Upgraded. kde/kparts-5.80.0-x86_64-1.txz: Upgraded. kde/kpeople-5.80.0-x86_64-1.txz: Upgraded. kde/kplotting-5.80.0-x86_64-1.txz: Upgraded. kde/kpty-5.80.0-x86_64-1.txz: Upgraded. kde/kquickcharts-5.80.0-x86_64-1.txz: Upgraded. kde/kross-5.80.0-x86_64-1.txz: Upgraded. kde/krunner-5.80.0-x86_64-1.txz: Upgraded. kde/kservice-5.80.0-x86_64-1.txz: Upgraded. kde/ktexteditor-5.80.0-x86_64-1.txz: Upgraded. kde/ktextwidgets-5.80.0-x86_64-1.txz: Upgraded. kde/kunitconversion-5.80.0-x86_64-1.txz: Upgraded. kde/kwallet-5.80.0-x86_64-1.txz: Upgraded. kde/kwayland-5.80.0-x86_64-1.txz: Upgraded. kde/kwidgetsaddons-5.80.0-x86_64-1.txz: Upgraded. kde/kwindowsystem-5.80.0-x86_64-1.txz: Upgraded. kde/kxmlgui-5.80.0-x86_64-1.txz: Upgraded. kde/kxmlrpcclient-5.80.0-x86_64-1.txz: Upgraded. kde/modemmanager-qt-5.80.0-x86_64-1.txz: Upgraded. kde/networkmanager-qt-5.80.0-x86_64-1.txz: Upgraded. kde/oxygen-icons5-5.80.0-noarch-1.txz: Upgraded. kde/plasma-framework-5.80.0-x86_64-1.txz: Upgraded. kde/prison-5.80.0-x86_64-1.txz: Upgraded. kde/purpose-5.80.0-x86_64-1.txz: Upgraded. kde/qqc2-desktop-style-5.80.0-x86_64-1.txz: Upgraded. kde/solid-5.80.0-x86_64-1.txz: Upgraded. kde/sonnet-5.80.0-x86_64-1.txz: Upgraded. kde/syndication-5.80.0-x86_64-1.txz: Upgraded. kde/syntax-highlighting-5.80.0-x86_64-1.txz: Upgraded. kde/threadweaver-5.80.0-x86_64-1.txz: Upgraded. l/gnu-efi-3.0.13-x86_64-1.txz: Upgraded. l/imagemagick-7.0.11_3-x86_64-1.txz: Upgraded. l/netpbm-10.93.02-x86_64-1.txz: Upgraded. l/pango-1.48.3-x86_64-1.txz: Upgraded. xap/mozilla-firefox-78.8.0esr-x86_64-4.txz: Rebuilt. Strip binaries and symlink duplicate binaries. Thanks to franzen. Add export MACH_USE_SYSTEM_PYTHON="1", upgrade build-deps/nodejs/, and compile with clang/clang++, fixing the use of this script to build more recent Firefox versions. Thanks to ponce. xap/mozilla-thunderbird-78.8.1-x86_64-3.txz: Rebuilt. Strip binaries and symlink duplicate binaries. Thanks to franzen. Add export MACH_USE_SYSTEM_PYTHON="1", upgrade build-deps/nodejs/, and compile with clang/clang++, fixing the use of this script to build more recent Thunderbird versions. Thanks to ponce.
2021-03-14 04:24:31 +01:00
# Fix duplicate binary, https://bugzilla.mozilla.org/show_bug.cgi?id=658850
( cd $PKG/usr/lib$LIBDIRSUFFIX/thunderbird
if cmp thunderbird thunderbird-bin ; then
ln -sf thunderbird-bin thunderbird
fi
)
mkdir $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
if [ -z $MOZLOCALIZE ]; then
/sbin/makepkg -l y -c n $TMP/mozilla-thunderbird-$VERSION-$ARCH-$BUILD.txz
else
/sbin/makepkg -l y -c n $TMP/mozilla-thunderbird-$VERSION-$ARCH-${BUILD}_$MOZLOCALIZE.txz
fi