summaryrefslogtreecommitdiffstats
path: root/source/n
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2024-09-11 17:47:14 +0000
committer Eric Hameleers <alien@slackware.com>2024-09-11 20:35:16 +0200
commitb6d2c7f5faef3d29b541cfa1a4cd504d3588696d (patch)
tree45fd459fdb6045e5937fcfe133622e813e45cfd9 /source/n
parented2397335fb9130d82674afeb77b7967e50818df (diff)
downloadcurrent-b6d2c7f5faef3d29b541cfa1a4cd504d3588696d.tar.gz
current-b6d2c7f5faef3d29b541cfa1a4cd504d3588696d.tar.xz
Wed Sep 11 17:47:14 UTC 202420240911174714
a/efibootmgr-18-x86_64-1.txz: Upgraded. a/grub-2.12-x86_64-16.txz: Rebuilt. Long ago, we began giving all the scripts in /etc/grub.d/ the .new treatment to prevent local customizations from being overwritten with a package upgrade. But, this no longer appears to be a good idea, especially if we're ever going to offer the possibility to automate grub-install and grub-update. So, we are no longer going to preserve the contents of these files when the grub package is upgraded. We *will* however preserve the existing permissions, so you'll be able to turn off scripts that you don't want running, and you'll be able to make new scripts, or make edited and renamed copies of the scripts shipped in this package, so there's no real loss of functionality here. It looks like 40_custom is intended to be locally edited, so we make an exception and do not overwrite that one. d/python-setuptools-74.1.2-x86_64-1.txz: Upgraded. kde/okteta-0.26.17-x86_64-1.txz: Upgraded. l/gobject-introspection-1.80.1-x86_64-2.txz: Rebuilt. Fix running against python-setuptools-74.1.2: [PATCH] giscanner: remove dependency on distutils.msvccompiler. l/python-importlib_metadata-8.5.0-x86_64-1.txz: Upgraded. n/curl-8.10.0-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/n')
-rwxr-xr-xsource/n/curl/curl.SlackBuild4
-rw-r--r--source/n/curl/fe9baa1619d13a1d3ac6bfa530abe229805cddff.patch31
2 files changed, 1 insertions, 34 deletions
diff --git a/source/n/curl/curl.SlackBuild b/source/n/curl/curl.SlackBuild
index 3d8799b61..42a4673d0 100755
--- a/source/n/curl/curl.SlackBuild
+++ b/source/n/curl/curl.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=curl
VERSION=${VERSION:-$(echo curl-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-1}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
@@ -77,8 +77,6 @@ find . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \+
-cat $CWD/fe9baa1619d13a1d3ac6bfa530abe229805cddff.patch | patch -p1 --verbose || exit 1
-
CFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
diff --git a/source/n/curl/fe9baa1619d13a1d3ac6bfa530abe229805cddff.patch b/source/n/curl/fe9baa1619d13a1d3ac6bfa530abe229805cddff.patch
deleted file mode 100644
index 34592f3c3..000000000
--- a/source/n/curl/fe9baa1619d13a1d3ac6bfa530abe229805cddff.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From fe9baa1619d13a1d3ac6bfa530abe229805cddff Mon Sep 17 00:00:00 2001
-From: Daniel Stenberg <daniel@haxx.se>
-Date: Mon, 5 Aug 2024 00:17:17 +0200
-Subject: [PATCH] sigpipe: init the struct so that first apply ignores
-
-Initializes 'no_signal' to TRUE, so that a call to sigpipe_apply() after
-init ignores the signal (unless CURLOPT_NOSIGNAL) is set.
-
-I have read the existing code multiple times now and I think it gets the
-initial state reversed this missing to ignore.
-
-Regression from 17e6f06ea37136c36d27
-
-Reported-by: Rasmus Thomsen
-Fixes #14344
----
- lib/sigpipe.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/lib/sigpipe.h b/lib/sigpipe.h
-index b91a2f51333956..d78afd905d3414 100644
---- a/lib/sigpipe.h
-+++ b/lib/sigpipe.h
-@@ -39,6 +39,7 @@ struct sigpipe_ignore {
- static void sigpipe_init(struct sigpipe_ignore *ig)
- {
- memset(ig, 0, sizeof(*ig));
-+ ig->no_signal = TRUE;
- }
-
- /*