2018-05-28 19:12:29 +00:00
|
|
|
#!/bin/bash
|
2009-08-26 10:00:38 -05:00
|
|
|
|
2021-05-26 20:00:32 +00:00
|
|
|
# Copyright 2008, 2009, 2010, 2011, 2013, 2014, 2016, 2017, 2018, 2020, 2021 Patrick J. Volkerding, Sebeka, MN, USA
|
2009-08-26 10:00:38 -05:00
|
|
|
# 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.
|
|
|
|
|
2018-05-28 19:12:29 +00:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
2009-08-26 10:00:38 -05:00
|
|
|
|
2011-04-25 13:37:00 +00:00
|
|
|
PKGNAM=curl
|
2018-05-28 19:12:29 +00:00
|
|
|
VERSION=${VERSION:-$(echo curl-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
|
Wed Jul 20 18:59:12 UTC 2022
a/aaa_libraries-15.1-x86_64-6.txz: Rebuilt.
Upgraded: libcap.so.2.65, libglib-2.0.so.0.7200.3, libgmodule-2.0.so.0.7200.3,
libgobject-2.0.so.0.7200.3, libgthread-2.0.so.0.7200.3, libidn2.so.0.3.8.
Removed: libboost_*.so.1.78.0.
a/kernel-firmware-20220719_4421586-noarch-1.txz: Upgraded.
d/python-setuptools-63.2.0-x86_64-1.txz: Upgraded.
d/rust-1.62.1-x86_64-1.txz: Upgraded.
kde/kio-5.96.0-x86_64-2.txz: Rebuilt.
Recompiled against krb5-1.19.3.
l/libcap-2.65-x86_64-1.txz: Upgraded.
l/netpbm-10.99.01-x86_64-1.txz: Upgraded.
l/pipewire-0.3.56-x86_64-1.txz: Upgraded.
l/qt5-5.15.5_20220705_ea4efc06-x86_64-1.txz: Upgraded.
Compiled against krb5-1.19.3.
n/alpine-2.26-x86_64-2.txz: Rebuilt.
Recompiled against krb5-1.19.3.
n/bind-9.18.5-x86_64-1.txz: Upgraded.
Compiled against krb5-1.19.3.
n/curl-7.84.0-x86_64-2.txz: Rebuilt.
Recompiled against krb5-1.19.3.
n/fetchmail-6.4.31-x86_64-2.txz: Rebuilt.
Recompiled against krb5-1.19.3.
n/krb5-1.19.3-x86_64-2.txz: Rebuilt.
Since Samba still won't link against krb5-1.20, I think it's best to drop
back to this version until it does. Perhaps it would be better to just use
the internal Heimdal libraries instead, but I don't really know if that has
all the same functionality or not. Hints welcome if you'd like to drop them
in the "regression on -current with samba (new krb5)" thread.
Also, just to be 100% sure the krb5 revert doesn't cause any ABI issues,
we'll recompile everything that we've linked to krb5 while krb5-1.20 was
in -current.
Thanks to nobodino.
n/php-7.4.30-x86_64-2.txz: Rebuilt.
Recompiled against krb5-1.19.3.
n/samba-4.16.3-x86_64-1.txz: Upgraded.
Compiled against krb5-1.19.3.
xap/gnuplot-5.4.4-x86_64-1.txz: Upgraded.
xap/mozilla-thunderbird-102.0.3-x86_64-1.txz: Upgraded.
This is a bugfix release.
For more information, see:
https://www.mozilla.org/en-US/thunderbird/102.0.3/releasenotes/
extra/php80/php80-8.0.21-x86_64-2.txz: Rebuilt.
Recompiled against krb5-1.19.3.
extra/php81/php81-8.1.8-x86_64-2.txz: Rebuilt.
Recompiled against krb5-1.19.3.
2022-07-20 18:59:12 +00:00
|
|
|
BUILD=${BUILD:-2}
|
2009-08-26 10:00:38 -05:00
|
|
|
|
2010-05-19 08:58:23 +00:00
|
|
|
# Automatically determine the architecture we're building on:
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
2016-06-30 20:26:57 +00:00
|
|
|
i?86) export ARCH=i586 ;;
|
2010-05-19 08:58:23 +00:00
|
|
|
arm*) export ARCH=arm ;;
|
|
|
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
|
|
|
*) export ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2018-05-28 19:12:29 +00:00
|
|
|
# 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-$VERSION-$ARCH-$BUILD.txz"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2018-09-21 18:51:07 +00:00
|
|
|
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
|
2009-08-26 10:00:38 -05:00
|
|
|
|
|
|
|
TMP=${TMP:-/tmp}
|
|
|
|
PKG=$TMP/package-curl
|
|
|
|
|
2021-05-26 20:00:32 +00:00
|
|
|
# Set this variable to "--without-ssl" to build a no-SSL version:
|
|
|
|
SSLOPT=${SSLOPT:-"--with-openssl"}
|
2009-08-26 10:00:38 -05:00
|
|
|
|
2016-06-30 20:26:57 +00:00
|
|
|
if [ "$ARCH" = "i586" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
2009-08-26 10:00:38 -05:00
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "s390" ]; then
|
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
|
|
|
LIBDIRSUFFIX="64"
|
2010-05-19 08:58:23 +00:00
|
|
|
else
|
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
LIBDIRSUFFIX=""
|
2009-08-26 10:00:38 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $PKG
|
|
|
|
cd $TMP
|
|
|
|
rm -rf curl-$VERSION
|
2018-05-28 19:12:29 +00:00
|
|
|
tar xvf $CWD/curl-$VERSION.tar.xz || exit 1
|
|
|
|
cd curl-$VERSION || exit 1
|
2009-08-26 10:00:38 -05:00
|
|
|
|
|
|
|
chown -R root:root .
|
|
|
|
find . \
|
|
|
|
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
2019-09-30 21:08:32 +00:00
|
|
|
-exec chmod 755 {} \+ -o \
|
2009-08-26 10:00:38 -05:00
|
|
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
2019-09-30 21:08:32 +00:00
|
|
|
-exec chmod 644 {} \+
|
2009-08-26 10:00:38 -05:00
|
|
|
|
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
|
|
|
--mandir=/usr/man \
|
2018-05-28 19:12:29 +00:00
|
|
|
--with-libssh2 \
|
2020-02-07 22:32:38 +00:00
|
|
|
--with-gssapi \
|
2021-04-09 20:21:07 +00:00
|
|
|
--enable-ares \
|
2016-06-30 20:26:57 +00:00
|
|
|
--enable-static=no \
|
2020-03-24 05:08:25 +00:00
|
|
|
--without-ca-bundle \
|
|
|
|
--with-ca-path=/etc/ssl/certs \
|
2018-05-28 19:12:29 +00:00
|
|
|
$SSLOPT || exit 1
|
2009-08-26 10:00:38 -05:00
|
|
|
|
|
|
|
make $NUMJOBS || make || exit 1
|
|
|
|
make install DESTDIR=$PKG || exit 1
|
|
|
|
|
2018-05-28 19:12:29 +00:00
|
|
|
# Don't ship .la files:
|
|
|
|
rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la
|
|
|
|
|
|
|
|
# We have always installed the man3 documentation, so we'll keep doing it
|
|
|
|
# even though these are no longer installed by default. No || exit 1, if
|
|
|
|
# it works, it works, and if it doesn't, we tried.
|
|
|
|
( cd docs/libcurl
|
|
|
|
make install-man3 DESTDIR=$PKG
|
|
|
|
cd opts
|
|
|
|
make install-man3 DESTDIR=$PKG
|
|
|
|
)
|
|
|
|
|
2012-09-26 01:10:42 +00:00
|
|
|
# We don't ship the related perl script (yet):
|
|
|
|
rm -f $PKG/usr/man/man1/mk-ca-bundle.1
|
|
|
|
|
2009-08-26 10:00:38 -05:00
|
|
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
|
|
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
|
|
|
|
|
|
strip -g $PKG/usr/lib${LIBDIRSUFFIX}/libcurl.a
|
|
|
|
|
|
|
|
mkdir -p $PKG/usr/doc/curl-$VERSION
|
|
|
|
cp -a \
|
2011-04-25 13:37:00 +00:00
|
|
|
COPYING* README* UPGRADE \
|
2009-08-26 10:00:38 -05:00
|
|
|
$PKG/usr/doc/curl-$VERSION
|
|
|
|
( cd docs
|
|
|
|
cp -a \
|
2011-04-25 13:37:00 +00:00
|
|
|
BUGS CONTRIBUTE FAQ FEATURES INSTALL INTERNALS MANUAL README* RESOURCES THANKS TODO examples \
|
2009-08-26 10:00:38 -05:00
|
|
|
$PKG/usr/doc/curl-$VERSION )
|
2016-06-30 20:26:57 +00:00
|
|
|
# Get rid of .deps cruft:
|
|
|
|
rm -rf $PKG/usr/doc/curl-$VERSION/examples/.deps
|
2009-08-26 10:00:38 -05:00
|
|
|
|
2011-04-25 13:37:00 +00:00
|
|
|
# If there's a CHANGES file, installing at least part of the recent history
|
|
|
|
# is useful, but don't let it get totally out of control:
|
|
|
|
if [ -r CHANGES ]; then
|
|
|
|
DOCSDIR=$(echo $PKG/usr/doc/${PKGNAM}-$VERSION)
|
|
|
|
cat CHANGES | head -n 1000 > $DOCSDIR/ChangeLog
|
|
|
|
touch -r CHANGES $DOCSDIR/ChangeLog
|
|
|
|
fi
|
|
|
|
|
2009-08-26 10:00:38 -05:00
|
|
|
# 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
|
|
|
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
|
|
|
|
cd $PKG
|
|
|
|
/sbin/makepkg -l y -c n $TMP/curl-$VERSION-$ARCH-$BUILD.txz
|
|
|
|
|