summaryrefslogtreecommitdiffstats
path: root/source/n
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2021-03-03 20:26:20 +0000
committer Eric Hameleers <alien@slackware.com>2021-03-04 08:59:53 +0100
commite8e6e4d6db4d812e29be1138206db7d9d77f587c (patch)
tree4d303812227995549681fea364e590a01cfbe3d4 /source/n
parentb69d078b6b4604a31384691be8f8122d3131b95a (diff)
downloadcurrent-e8e6e4d6db4d812e29be1138206db7d9d77f587c.tar.gz
current-e8e6e4d6db4d812e29be1138206db7d9d77f587c.tar.xz
Wed Mar 3 20:26:20 UTC 202120210303202620
a/elogind-246.10-x86_64-1.txz: Upgraded. a/kernel-firmware-20210303_5ecd13f-noarch-1.txz: Upgraded. ap/nano-5.6.1-x86_64-1.txz: Upgraded. d/help2man-1.48.2-x86_64-1.txz: Upgraded. n/libqmi-1.28.2-x86_64-1.txz: Upgraded. n/openssh-8.5p1-x86_64-1.txz: Upgraded. n/php-7.4.16-x86_64-1.txz: Upgraded. extra/php8/php8-8.0.3-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/n')
-rw-r--r--source/n/openssh/openssh-glibc-2.33.patch36
-rwxr-xr-xsource/n/openssh/openssh.SlackBuild10
-rw-r--r--source/n/openssh/ssh-copy-id.diff19
-rwxr-xr-xsource/n/php/fetch-php.sh4
-rwxr-xr-xsource/n/php/php.SlackBuild2
5 files changed, 4 insertions, 67 deletions
diff --git a/source/n/openssh/openssh-glibc-2.33.patch b/source/n/openssh/openssh-glibc-2.33.patch
deleted file mode 100644
index 9a236ad0d..000000000
--- a/source/n/openssh/openssh-glibc-2.33.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 41f221b4962b835a4f24a430d1ce0d90b90305ac Mon Sep 17 00:00:00 2001
-From: Nick Alcock <nick.alcock@oracle.com>
-Date: Mon, 8 Feb 2021 15:10:00 +0000
-Subject: [PATCH] seccomp: allow futex_time64 and pselect6_time64 on Linux.
-
-Needed on many 32-bit Linux platforms using glibc 2.33.
----
- sandbox-seccomp-filter.c | 6 ++++++
- 1 file changed, 6 insertions(+)
-
-diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c
-index e0768c06..46752c0b 100644
---- a/sandbox-seccomp-filter.c
-+++ b/sandbox-seccomp-filter.c
-@@ -204,6 +204,9 @@ static const struct sock_filter preauth_insns[] = {
- #ifdef __NR_futex
- SC_ALLOW(__NR_futex),
- #endif
-+#ifdef __NR_futex
-+ SC_ALLOW(__NR_futex_time64),
-+#endif
- #ifdef __NR_geteuid
- SC_ALLOW(__NR_geteuid),
- #endif
-@@ -267,6 +270,9 @@ static const struct sock_filter preauth_insns[] = {
- #ifdef __NR_pselect6
- SC_ALLOW(__NR_pselect6),
- #endif
-+#ifdef __NR_pselect6_time64
-+ SC_ALLOW(__NR_pselect6_time64),
-+#endif
- #ifdef __NR_read
- SC_ALLOW(__NR_read),
- #endif
---
-2.30.0.252.gc27e85e57d
diff --git a/source/n/openssh/openssh.SlackBuild b/source/n/openssh/openssh.SlackBuild
index dfd50ed91..275d2558a 100755
--- a/source/n/openssh/openssh.SlackBuild
+++ b/source/n/openssh/openssh.SlackBuild
@@ -30,7 +30,7 @@ PKG=$TMP/package-openssh
PKGNAM=openssh
VERSION=${VERSION:-$(echo openssh-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-5}
+BUILD=${BUILD:-1}
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
@@ -86,14 +86,6 @@ chown -R root:root .
# Restore support for tcpwrappers:
zcat $CWD/openssh.tcp_wrappers.diff.gz | patch -p1 --verbose || exit 1
-# Fix ssh-copy-id EOF bug:
-zcat $CWD/ssh-copy-id.diff.gz | patch -p1 --verbose || exit 1
-
-# Fix sandbox with glibc-2.33 (needed on 32-bit platforms):
-if [ ! "$LIBDIRSUFFIX" = "64" ]; then
- zcat $CWD/openssh-glibc-2.33.patch.gz | patch -p1 --verbose || exit 1
-fi
-
# Choose correct options depending on whether PAM is installed:
if [ -L /lib${LIBDIRSUFFIX}/libpam.so.? ]; then
PAM_OPTIONS="--with-pam --with-kerberos5"
diff --git a/source/n/openssh/ssh-copy-id.diff b/source/n/openssh/ssh-copy-id.diff
deleted file mode 100644
index 269879bfa..000000000
--- a/source/n/openssh/ssh-copy-id.diff
+++ /dev/null
@@ -1,19 +0,0 @@
---- ./contrib/ssh-copy-id.orig 2020-09-27 02:25:01.000000000 -0500
-+++ ./contrib/ssh-copy-id 2020-11-12 19:01:42.049254763 -0600
-@@ -247,7 +247,7 @@
- # the -z `tail ...` checks for a trailing newline. The echo adds one if was missing
- # the cat adds the keys we're getting via STDIN
- # and if available restorecon is used to restore the SELinux context
-- INSTALLKEYS_SH=$(tr '\t\n' ' ' <<-EOF)
-+ INSTALLKEYS_SH=$(tr '\t\n' ' ' <<-EOF
- cd;
- umask 077;
- mkdir -p $(dirname "${AUTH_KEY_FILE}") &&
-@@ -258,6 +258,7 @@
- restorecon -F .ssh ${AUTH_KEY_FILE};
- fi
- EOF
-+ )
-
- # to defend against quirky remote shells: use 'exec sh -c' to get POSIX;
- printf "exec sh -c '%s'" "${INSTALLKEYS_SH}"
diff --git a/source/n/php/fetch-php.sh b/source/n/php/fetch-php.sh
index f9a216a96..5fa8692cc 100755
--- a/source/n/php/fetch-php.sh
+++ b/source/n/php/fetch-php.sh
@@ -1,2 +1,2 @@
-lftpget http://us.php.net/distributions/php-7.4.15.tar.xz.asc
-lftpget http://us.php.net/distributions/php-7.4.15.tar.xz
+lftpget http://us.php.net/distributions/php-7.4.16.tar.xz.asc
+lftpget http://us.php.net/distributions/php-7.4.16.tar.xz
diff --git a/source/n/php/php.SlackBuild b/source/n/php/php.SlackBuild
index d1d9ac183..74c8d4854 100755
--- a/source/n/php/php.SlackBuild
+++ b/source/n/php/php.SlackBuild
@@ -28,7 +28,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=php
VERSION=${VERSION:-$(echo php-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
ALPINE=2.24
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-1}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then