diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2020-06-11 21:17:43 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2020-06-12 08:59:53 +0200 |
commit | a03ccd668a21fda9d78271e71bbbc519c4fc8410 (patch) | |
tree | 69f82abba3cb5bcf9a324aa0d610f5c21c6b551f /source | |
parent | 129db239a3b2dccf962f18fe360d07e7279a4146 (diff) | |
download | current-a03ccd668a21fda9d78271e71bbbc519c4fc8410.tar.gz |
Thu Jun 11 21:17:43 UTC 202020200611211743
a/haveged-1.9.10-x86_64-1.txz: Upgraded.
ap/alsa-utils-1.2.3-x86_64-2.txz: Rebuilt.
This version seems good, but we'll recompile it against alsa-lib-1.2.2 just
to be on the safe side.
d/patchelf-0.11-x86_64-1.txz: Upgraded.
l/alsa-lib-1.2.2-x86_64-1.txz: Upgraded.
Revert to this version of alsa-lib due to the pulseaudio daemon crashing in
some cases where multiple audio devices are present.
extra/pure-alsa-system/alsa-lib-1.2.2-x86_64-1_alsa.txz: Upgraded.
Revert to this version of alsa-lib due to the pulseaudio daemon crashing in
some cases where multiple audio devices are present.
Diffstat (limited to 'source')
-rwxr-xr-x | source/a/haveged/haveged.SlackBuild | 4 | ||||
-rwxr-xr-x | source/ap/alsa-utils/alsa-utils.SlackBuild | 2 | ||||
-rwxr-xr-x | source/d/patchelf/patchelf.SlackBuild | 9 | ||||
-rwxr-xr-x | source/k/kernel-generic.SlackBuild | 4 | ||||
-rwxr-xr-x | source/k/kernel-modules.SlackBuild | 4 | ||||
-rwxr-xr-x | source/k/kernel-source.SlackBuild | 4 |
6 files changed, 15 insertions, 12 deletions
diff --git a/source/a/haveged/haveged.SlackBuild b/source/a/haveged/haveged.SlackBuild index 95649c65..513c8f7d 100755 --- a/source/a/haveged/haveged.SlackBuild +++ b/source/a/haveged/haveged.SlackBuild @@ -1,7 +1,7 @@ #!/bin/sh # # Copyright 2014 Erik Falor, West Valley City, Utah, USA -# Copyright 2018 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2018, 2020 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -109,7 +109,7 @@ find $PKG/usr/man -type f -exec gzip -9 {} \+ for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION -cp -a AUTHORS COPYING* INSTALL README* \ +cp -a AUTHORS* COPYING* ChangeLog* NEWS* README* \ $PKG/usr/doc/$PKGNAM-$VERSION # If there's a ChangeLog, installing at least part of the recent history diff --git a/source/ap/alsa-utils/alsa-utils.SlackBuild b/source/ap/alsa-utils/alsa-utils.SlackBuild index ef42c6e9..f3c94b47 100755 --- a/source/ap/alsa-utils/alsa-utils.SlackBuild +++ b/source/ap/alsa-utils/alsa-utils.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=alsa-utils VERSION=${VERSION:-$(echo alsa-utils-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} diff --git a/source/d/patchelf/patchelf.SlackBuild b/source/d/patchelf/patchelf.SlackBuild index e4099e01..f5fcc570 100755 --- a/source/d/patchelf/patchelf.SlackBuild +++ b/source/d/patchelf/patchelf.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2017, 2018 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2017, 2018, 2020 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -88,6 +88,10 @@ find . \ # Use /usr/include/elf.h from glibc, which is a newer version: rm -f src/elf.h +if [ ! -r configure ]; then + ./bootstrap.sh +fi + # Configure: CFLAGS="$SLKCFLAGS" \ ./configure \ @@ -111,7 +115,7 @@ make install DESTDIR=$PKG || exit 1 # Add a documentation directory: mkdir -p $PKG/usr/doc/${PKGNAM}-$VERSION cp -a \ - AUTHORS COPYING* NEWS README* THANKS TODO \ + AUTHORS* BUGS* COPYING* NEWS* README* THANKS* TODO* \ $PKG/usr/doc/${PKGNAM}-$VERSION # Compress manual pages: @@ -141,4 +145,3 @@ cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG /sbin/makepkg -l y -c n $TMP/$PKGNAM-$VERSION-$ARCH-$BUILD.txz - diff --git a/source/k/kernel-generic.SlackBuild b/source/k/kernel-generic.SlackBuild index 31d2301d..1f2fb66f 100755 --- a/source/k/kernel-generic.SlackBuild +++ b/source/k/kernel-generic.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2018 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2018, 2020 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -84,7 +84,7 @@ if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then exit 0 fi -NUMJOBS=${NUMJOBS:-" -j7 "} +NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} TMP=${TMP:-/tmp} PKG=$TMP/package-kernel-${KERNEL_NAME} diff --git a/source/k/kernel-modules.SlackBuild b/source/k/kernel-modules.SlackBuild index 94c2877f..8d0d48c4 100755 --- a/source/k/kernel-modules.SlackBuild +++ b/source/k/kernel-modules.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2018 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2018, 2020 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -70,7 +70,7 @@ if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then exit 0 fi -NUMJOBS=${NUMJOBS:-" -j7 "} +NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} TMP=${TMP:-/tmp} PKG=$TMP/package-kernel${KERNEL_NAME}-modules diff --git a/source/k/kernel-source.SlackBuild b/source/k/kernel-source.SlackBuild index a715aff4..d52e1cb6 100755 --- a/source/k/kernel-source.SlackBuild +++ b/source/k/kernel-source.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2018 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2018, 2020 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=${PKGNAM:-kernel-source} BUILD=${BUILD:-1} -NUMJOBS=${NUMJOBS:-" -j7 "} +NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} TMP=${TMP:-/tmp} PKG=$TMP/package-$PKGNAM |