2018-05-28 21:12:29 +02:00
|
|
|
#!/bin/bash
|
2009-08-26 17:00:38 +02:00
|
|
|
|
2023-03-24 20:42:46 +01:00
|
|
|
# Copyright 2005-2023 Patrick J. Volkerding, Sebeka, MN, USA
|
2009-08-26 17:00:38 +02: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 21:12:29 +02:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
|
|
|
PKGNAM=tar
|
2022-07-26 21:27:53 +02:00
|
|
|
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
|
Tue Jul 18 19:58:10 UTC 2023
a/tar-1.35-x86_64-1.txz: Upgraded.
x/mesa-23.2.0_rc1-x86_64-1.txz: Upgraded.
OK, usually I won't use rc versions even in -current, but in this case I'm
going to. Some time ago my desktop machine with RS880 / Radeon HD 4290
graphics on the motherboard began acting up with the screen going black
for a few seconds before returning. This after an hour or so of uptime,
usually, then becoming more frequent with more uptime. Eventually I'd lose
mouse and/or keyboard too, and have to reboot. Here's a couple of errors
from dmesg:
[ 9942.677675] [drm:r600_ib_test [radeon]] *ERROR* radeon: fence wait
timed out.
[ 9942.677741] [drm:radeon_ib_ring_tests [radeon]] *ERROR* radeon: failed
testing IB on GFX ring (-110).
I also noticed that the backtrace started with ttm_bo_release, and seeing
this in recent kernel patches had been chalking this up to a kernel bug.
I *still* think it could be, and there are a bunch of kernel patches coming
soon to -stable from Alex Deucher that could address the underlying causes
(not for 6.1.39 though, unfortunately). Anyway, I'd recently figured out
that reverting Mesa sufficiently made the issue go away. And now it seems
this 23.2.0 release candidate also fixes the issue.
Yes, I could go search for the commits to cherry-pick, but we'll be moving
to mesa-23.2.0 when it's released, so we might as well start testing now.
2023-07-18 21:58:10 +02:00
|
|
|
BUILD=${BUILD:-1}
|
2009-08-26 17:00:38 +02:00
|
|
|
|
2018-09-21 20:51:07 +02:00
|
|
|
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
|
2009-08-26 17:00:38 +02:00
|
|
|
|
2010-05-19 10:58:23 +02:00
|
|
|
# Automatically determine architecture for build & packaging:
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
2016-06-30 22:26:57 +02:00
|
|
|
i?86) export ARCH=i586 ;;
|
2010-05-19 10:58:23 +02:00
|
|
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
|
|
|
*) export ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2018-05-28 21:12:29 +02: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
|
|
|
|
|
2009-08-26 17:00:38 +02:00
|
|
|
TMP=${TMP:-/tmp}
|
|
|
|
PKG=$TMP/package-tar
|
|
|
|
|
2018-09-07 01:22:45 +02:00
|
|
|
# Don't use icecream:
|
2018-09-18 21:22:30 +02:00
|
|
|
PATH=$(echo $PATH | sed "s|/usr/libexec/icecc/bin||g" | tr -s : | sed "s/^://g" | sed "s/:$//g")
|
2018-09-07 01:22:45 +02:00
|
|
|
|
2009-08-26 17:00:38 +02:00
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG
|
|
|
|
|
2016-06-30 22:26:57 +02:00
|
|
|
if [ "$ARCH" = "i586" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
2009-08-26 17:00:38 +02:00
|
|
|
elif [ "$ARCH" = "s390" ]; then
|
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
2010-05-19 10:58:23 +02:00
|
|
|
else
|
|
|
|
SLKCFLAGS="-O2"
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
cd $TMP
|
|
|
|
rm -rf tar-$VERSION
|
2010-05-19 10:58:23 +02:00
|
|
|
tar xvf $CWD/tar-$VERSION.tar.xz || exit 1
|
2009-08-26 17:00:38 +02:00
|
|
|
cd tar-$VERSION || exit 1
|
|
|
|
chown -R root:root .
|
|
|
|
find . \
|
|
|
|
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
2019-09-30 23:08:32 +02:00
|
|
|
-exec chmod 755 {} \+ -o \
|
2009-08-26 17:00:38 +02:00
|
|
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
2019-09-30 23:08:32 +02:00
|
|
|
-exec chmod 644 {} \+
|
2009-08-26 17:00:38 +02:00
|
|
|
|
|
|
|
# The "A lone zero block at %s" messages also cause problems:
|
|
|
|
zcat $CWD/tar.nolonezero.diff.gz | patch -p1 --verbose || exit 1
|
|
|
|
|
2011-04-25 15:37:00 +02:00
|
|
|
FORCE_UNSAFE_CONFIGURE=1 \
|
2009-08-26 17:00:38 +02:00
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--infodir=/usr/info \
|
2016-06-30 22:26:57 +02:00
|
|
|
--mandir=/usr/man \
|
2009-08-26 17:00:38 +02:00
|
|
|
--docdir=/usr/doc/tar-$VERSION \
|
|
|
|
--enable-backup-scripts \
|
2016-06-30 22:26:57 +02:00
|
|
|
--build=$ARCH-slackware-linux || exit 1
|
2009-08-26 17:00:38 +02:00
|
|
|
|
|
|
|
make $NUMJOBS || make || exit 1
|
|
|
|
make install DESTDIR=$PKG || exit 1
|
|
|
|
|
|
|
|
( cd $PKG
|
2010-05-19 10:58:23 +02:00
|
|
|
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
|
|
|
|
xargs strip --strip-unneeded 2> /dev/null
|
|
|
|
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
|
|
|
|
xargs strip --strip-unneeded 2> /dev/null
|
2009-08-26 17:00:38 +02:00
|
|
|
)
|
|
|
|
|
2022-07-26 21:27:53 +02:00
|
|
|
mkdir -p $PKG/bin
|
2009-08-26 17:00:38 +02:00
|
|
|
mv $PKG/usr/bin/tar $PKG/bin
|
|
|
|
( cd $PKG/usr/bin ; ln -sf /bin/tar . )
|
|
|
|
( cd $PKG/bin ; ln -sf tar tar-$VERSION )
|
|
|
|
|
|
|
|
# Support "historic" rmt locations:
|
|
|
|
mkdir -p $PKG/{etc,sbin}
|
|
|
|
( cd $PKG/etc
|
|
|
|
ln -sf /usr/libexec/rmt .
|
|
|
|
cd $PKG/sbin
|
|
|
|
ln -sf /usr/libexec/rmt .
|
|
|
|
)
|
|
|
|
|
2016-06-30 22:26:57 +02:00
|
|
|
# Compress manual pages:
|
2019-09-30 23:08:32 +02:00
|
|
|
find $PKG/usr/man -type f -exec gzip -9 {} \+
|
2016-06-30 22:26:57 +02:00
|
|
|
for i in $( find $PKG/usr/man -type l ) ; do
|
|
|
|
ln -s $( readlink $i ).gz $i.gz
|
|
|
|
rm $i
|
|
|
|
done
|
|
|
|
|
|
|
|
# Compress info files, if any:
|
|
|
|
if [ -d $PKG/usr/info ]; then
|
|
|
|
( cd $PKG/usr/info
|
|
|
|
rm -f dir
|
|
|
|
gzip -9 *
|
|
|
|
)
|
|
|
|
fi
|
2009-08-26 17:00:38 +02:00
|
|
|
|
|
|
|
mkdir -p $PKG/usr/doc/tar-$VERSION
|
|
|
|
cp -a \
|
2016-06-30 22:26:57 +02:00
|
|
|
AUTHORS COPYING* NEWS PORTS README* THANKS TODO \
|
2009-08-26 17:00:38 +02:00
|
|
|
$PKG/usr/doc/tar-$VERSION
|
|
|
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
|
|
|
|
cd $PKG
|
2016-06-30 22:26:57 +02:00
|
|
|
/sbin/makepkg -l y -c n $TMP/tar-$VERSION-$ARCH-$BUILD.txz
|