slackware-current/source/xap/seamonkey/seamonkey.SlackBuild

271 lines
9 KiB
Text
Raw Normal View History

#!/bin/bash
Tue Sep 3 21:07:09 UTC 2024 a/cryptsetup-2.7.5-x86_64-1.txz: Upgraded. a/kernel-firmware-20240903_7a7a88f-noarch-1.txz: Upgraded. a/openssl-solibs-3.3.2-x86_64-1.txz: Upgraded. ap/xfsdump-3.2.0-x86_64-1.txz: Upgraded. d/opencl-headers-2024.05.08-noarch-1.txz: Upgraded. d/ruby-3.3.5-x86_64-1.txz: Upgraded. l/mozjs115-115.15.0esr-x86_64-1.txz: Upgraded. n/openssl-3.3.2-x86_64-1.txz: Upgraded. This update fixes bugs and security issues: Fixed possible denial of service in X.509 name checks. Fixed possible buffer overread in SSL_select_next_proto(). For more information, see: https://openssl-library.org/news/secadv/20240903.txt https://openssl-library.org/news/secadv/20240627.txt https://www.cve.org/CVERecord?id=CVE-2024-6119 https://www.cve.org/CVERecord?id=CVE-2024-5535 (* Security fix *) n/samba-4.21.0-x86_64-1.txz: Upgraded. x/libevdev-1.13.3-x86_64-1.txz: Upgraded. x/xterm-394-x86_64-1.txz: Upgraded. xap/mozilla-firefox-128.2.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.2.0/releasenotes/ https://www.mozilla.org/security/advisories/mfsa2024-40/ https://www.cve.org/CVERecord?id=CVE-2024-8385 https://www.cve.org/CVERecord?id=CVE-2024-8381 https://www.cve.org/CVERecord?id=CVE-2024-8382 https://www.cve.org/CVERecord?id=CVE-2024-8383 https://www.cve.org/CVERecord?id=CVE-2024-8384 https://www.cve.org/CVERecord?id=CVE-2024-8386 https://www.cve.org/CVERecord?id=CVE-2024-8387 (* Security fix *) xap/seamonkey-2.53.19-x86_64-1.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.seamonkey-project.org/releases/seamonkey2.53.19 (* Security fix *)
2024-09-03 23:07:09 +02:00
# Copyright 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2021, 2022, 2023, 2024 Patrick J. Volkerding, Sebeka, MN, 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.
cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=seamonkey
TARBALLVER=${VERSION:-$(basename $(ls seamonkey-*.tar.* | cut -d - -f 2 | rev | cut -f 3- -d . | rev) .source)}
# Strip the end from beta versions:
VERSION=$(echo $TARBALLVER | cut -f 1 -d b)
BUILD=${BUILD:-1}
# 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
echo "$PKGNAM-$TARBALLVER-$ARCH-$BUILD.txz"
exit 0
fi
# Seamonkey 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
if [ "$ARCH" = "i686" ]; then
LIBDIRSUFFIX=""
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
OPTIMIZE_FLAG=${OPTIMIZE_FLAG:-"-O1 -g0"}
# The elf hack has been causing failures on 32-bit x86:
ELFHACK="--disable-elf-hack"
elif [ "$ARCH" = "x86_64" ]; then
LIBDIRSUFFIX="64"
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
OPTIMIZE_FLAG=${OPTIMIZE_FLAG:-"-O1 -g0"}
ELFHACK="--enable-elf-hack"
else
LIBDIRSUFFIX=""
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
OPTIMIZE_FLAG=${OPTIMIZE_FLAG:-"-O1 -g0"}
ELFHACK="--enable-elf-hack"
fi
# 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++}
# -Wformat is needed for -Werror=format-security
# -fno-delete-null-pointer-checks disables gcc6 optimization that leads to instability
export CFLAGS="-Wformat -fno-delete-null-pointer-checks"
export CXXFLAGS="-Wformat -fno-delete-null-pointer-checks -fpermissive"
# Keep memory usage as low as possible when linking:
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
SLKLDFLAGS=" -Wl,--as-needed -Wl,--no-keep-memory -Wl,--stats -Wl,--reduce-memory-overheads"
export LDFLAGS="$SLKLDFLAGS"
export MOZ_LINK_FLAGS="$SLKLDFLAGS"
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
# Don't use icecream with clang:
if [ "$CC" = "clang" ]; then
PATH=$(echo $PATH | sed "s|/usr/libexec/icecc/bin||g" | tr -s : | sed "s/^://g" | sed "s/:$//g")
fi
# Set linker to use:
LINKER=bfd
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) "}
TMP=${TMP:-/tmp}
PKG=$TMP/package-seamonkey
# 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
rm -rf $PKG
mkdir -p $TMP $PKG/usr
# We need to use the incredibly ancient autoconf-2.13 for this :/
( cd $CWD/autoconf ; ./autoconf.build )
PATH=$TMP/autoconf-tmp/usr/bin:$PATH
cd $TMP
rm -rf seamonkey-${TARBALLVER}
# Unpack this in a subdirectory to prevent changing permissions on /tmp:
rm -rf seamonkey-unpack
mkdir seamonkey-unpack
cd seamonkey-unpack
echo "Extracting $CWD/seamonkey-${TARBALLVER}.source.tar.?z..."
tar xf $CWD/seamonkey-${TARBALLVER}.source.tar.?z || exit 1
mv * ..
cd ..
rm -rf seamonkey-unpack
cd seamonkey-${TARBALLVER} || exit 1
# Retain GTK+ v2 scrolling behavior:
zcat $CWD/sm.ui.scrollToClick.diff.gz | patch -p2 --verbose || exit 1
# Make sure the perms/ownerships are sane:
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 {} \+
# 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
# Our building options, in a configure-like display ;)
OPTIONS="\
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--disable-crashreporter \
--disable-debug \
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
--disable-install-strip \
--disable-necko-wifi \
Tue Sep 3 21:07:09 UTC 2024 a/cryptsetup-2.7.5-x86_64-1.txz: Upgraded. a/kernel-firmware-20240903_7a7a88f-noarch-1.txz: Upgraded. a/openssl-solibs-3.3.2-x86_64-1.txz: Upgraded. ap/xfsdump-3.2.0-x86_64-1.txz: Upgraded. d/opencl-headers-2024.05.08-noarch-1.txz: Upgraded. d/ruby-3.3.5-x86_64-1.txz: Upgraded. l/mozjs115-115.15.0esr-x86_64-1.txz: Upgraded. n/openssl-3.3.2-x86_64-1.txz: Upgraded. This update fixes bugs and security issues: Fixed possible denial of service in X.509 name checks. Fixed possible buffer overread in SSL_select_next_proto(). For more information, see: https://openssl-library.org/news/secadv/20240903.txt https://openssl-library.org/news/secadv/20240627.txt https://www.cve.org/CVERecord?id=CVE-2024-6119 https://www.cve.org/CVERecord?id=CVE-2024-5535 (* Security fix *) n/samba-4.21.0-x86_64-1.txz: Upgraded. x/libevdev-1.13.3-x86_64-1.txz: Upgraded. x/xterm-394-x86_64-1.txz: Upgraded. xap/mozilla-firefox-128.2.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.2.0/releasenotes/ https://www.mozilla.org/security/advisories/mfsa2024-40/ https://www.cve.org/CVERecord?id=CVE-2024-8385 https://www.cve.org/CVERecord?id=CVE-2024-8381 https://www.cve.org/CVERecord?id=CVE-2024-8382 https://www.cve.org/CVERecord?id=CVE-2024-8383 https://www.cve.org/CVERecord?id=CVE-2024-8384 https://www.cve.org/CVERecord?id=CVE-2024-8386 https://www.cve.org/CVERecord?id=CVE-2024-8387 (* Security fix *) xap/seamonkey-2.53.19-x86_64-1.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.seamonkey-project.org/releases/seamonkey2.53.19 (* Security fix *)
2024-09-03 23:07:09 +02:00
--disable-rust-simd \
--disable-strip \
--disable-updater \
--enable-accessibility \
--enable-alsa \
--enable-application=comm/suite \
--enable-calendar \
--enable-default-toolkit=cairo-gtk3 \
$ELFHACK \
$GOOGLE_API_KEY \
--enable-js-shell \
--enable-linker=$LINKER \
--enable-release \
--enable-startup-notification \
--with-system-nspr \
--with-system-nss \
--with-system-zlib \
--with-unsigned-addon-scopes=app,system \
--host=$ARCH-slackware-linux \
--target=$ARCH-slackware-linux"
export BUILD_OFFICIAL=1
export MOZILLA_OFFICIAL=1
export MOZ_MAKE_FLAGS="$NUMJOBS"
Tue Sep 3 21:07:09 UTC 2024 a/cryptsetup-2.7.5-x86_64-1.txz: Upgraded. a/kernel-firmware-20240903_7a7a88f-noarch-1.txz: Upgraded. a/openssl-solibs-3.3.2-x86_64-1.txz: Upgraded. ap/xfsdump-3.2.0-x86_64-1.txz: Upgraded. d/opencl-headers-2024.05.08-noarch-1.txz: Upgraded. d/ruby-3.3.5-x86_64-1.txz: Upgraded. l/mozjs115-115.15.0esr-x86_64-1.txz: Upgraded. n/openssl-3.3.2-x86_64-1.txz: Upgraded. This update fixes bugs and security issues: Fixed possible denial of service in X.509 name checks. Fixed possible buffer overread in SSL_select_next_proto(). For more information, see: https://openssl-library.org/news/secadv/20240903.txt https://openssl-library.org/news/secadv/20240627.txt https://www.cve.org/CVERecord?id=CVE-2024-6119 https://www.cve.org/CVERecord?id=CVE-2024-5535 (* Security fix *) n/samba-4.21.0-x86_64-1.txz: Upgraded. x/libevdev-1.13.3-x86_64-1.txz: Upgraded. x/xterm-394-x86_64-1.txz: Upgraded. xap/mozilla-firefox-128.2.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.2.0/releasenotes/ https://www.mozilla.org/security/advisories/mfsa2024-40/ https://www.cve.org/CVERecord?id=CVE-2024-8385 https://www.cve.org/CVERecord?id=CVE-2024-8381 https://www.cve.org/CVERecord?id=CVE-2024-8382 https://www.cve.org/CVERecord?id=CVE-2024-8383 https://www.cve.org/CVERecord?id=CVE-2024-8384 https://www.cve.org/CVERecord?id=CVE-2024-8386 https://www.cve.org/CVERecord?id=CVE-2024-8387 (* Security fix *) xap/seamonkey-2.53.19-x86_64-1.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.seamonkey-project.org/releases/seamonkey2.53.19 (* Security fix *)
2024-09-03 23:07:09 +02:00
export MACH_USE_SYSTEM_PYTHON="1"
# 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 obj
# Set options for $OPTIMIZE_FLAG:
echo "ac_add_options --enable-optimize=\"${OPTIMIZE_FLAG}\"" >> .mozconfig
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
# Build and install:
./mach build || exit 1
DESTDIR=$PKG ./mach install || exit 1
# Compress and if needed symlink the man pages:
if [ -d $PKG/usr/man ]; then
( cd $PKG/usr/man
for manpagedir in $(find . -type d -name "man*") ; do
( cd $manpagedir
for eachpage in $( find . -type l -maxdepth 1) ; do
ln -s $( readlink $eachpage ).gz $eachpage.gz
rm $eachpage
done
gzip -9 *.?
)
done
)
fi
# Strip files:
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
# This remains the standard plugin directory for all browsers.
mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/mozilla/plugins
# This is traditional.
( cd $PKG/usr/lib${LIBDIRSUFFIX}
if [ ! -e seamonkey ]; then
ln -sf seamonkey-${VERSION} seamonkey
fi
)
mkdir -p $PKG/usr/share/applications
cp -a $CWD/*.desktop $PKG/usr/share/applications
chown -R root:root $PKG/usr/share/applications
chmod 644 $PKG/usr/share/applications/*
mkdir -p $PKG/usr/share/pixmaps
cp -a $CWD/*.png $PKG/usr/share/pixmaps
chown -R root:root $PKG/usr/share/pixmaps
chmod 644 $PKG/usr/share/pixmaps/*
mkdir -p $PKG/usr/doc/seamonkey-$VERSION
cp -a \
AUTHORS LEGAL LICENSE README.txt \
$PKG/usr/doc/seamonkey-$VERSION
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/seamonkey
if cmp seamonkey seamonkey-bin ; then
ln -sf seamonkey-bin seamonkey
fi
)
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
zcat $CWD/doinst.sh.gz | sed -e "s#usr/lib#usr/lib${LIBDIRSUFFIX}#g" \
> $PKG/install/doinst.sh
cd $TMP/package-seamonkey
/sbin/makepkg -l y -c n -p $TMP/seamonkey-$TARBALLVER-$ARCH-$BUILD.txz