summaryrefslogtreecommitdiffhomepage
path: root/patches
diff options
context:
space:
mode:
authorØrjan Malde <red@foxi.me>2024-04-09 00:15:56 +0200
committerØrjan Malde <red@foxi.me>2024-04-09 00:15:56 +0200
commita0460b912637347f4c0c9dc9eba9658d9a33a6b5 (patch)
tree4754e8c528175fb89c834436fc45b68463f7389b /patches
parented757c6c80b99571715ebd8ce49c6f5f934cbf59 (diff)
downloadmidipix_build-a0460b912637347f4c0c9dc9eba9658d9a33a6b5.tar.bz2
midipix_build-a0460b912637347f4c0c9dc9eba9658d9a33a6b5.tar.xz
groups.d/251.native_packages_lib.group: libarchive: bump to v3.7.3
Signed-off-by: Ørjan Malde <red@foxi.me>
Diffstat (limited to 'patches')
-rw-r--r--patches/libarchive-3.7.3_pre.local.patch (renamed from patches/libarchive-3.7.2_pre.local.patch)3
-rw-r--r--patches/libarchive/fix-shell-escape.patch27
2 files changed, 1 insertions, 29 deletions
diff --git a/patches/libarchive-3.7.2_pre.local.patch b/patches/libarchive-3.7.3_pre.local.patch
index 1d2a86c8..90588568 100644
--- a/patches/libarchive-3.7.2_pre.local.patch
+++ b/patches/libarchive-3.7.3_pre.local.patch
@@ -1,7 +1,7 @@
diff -ru libarchive-3.7.2.orig/configure libarchive-3.7.2/configure
--- libarchive-3.7.2.orig/configure 2023-09-12 00:05:34.000000000 +0200
+++ libarchive-3.7.2/configure 2024-02-26 13:44:22.491965148 +0100
-@@ -12906,6 +12906,16 @@
+@@ -12906,6 +12906,15 @@
dynamic_linker='NetBSD ld.elf_so'
;;
@@ -11,7 +11,6 @@ diff -ru libarchive-3.7.2.orig/configure libarchive-3.7.2/configure
+ need_version=no
+ library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
+ soname_spec='$libname$release$shared_ext$major'
-+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
+ shlibpath_var=LD_LIBRARY_PATH
+ ;;
+
diff --git a/patches/libarchive/fix-shell-escape.patch b/patches/libarchive/fix-shell-escape.patch
deleted file mode 100644
index 6a351ba3..00000000
--- a/patches/libarchive/fix-shell-escape.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 6110e9c82d8ba830c3440f36b990483ceaaea52c Mon Sep 17 00:00:00 2001
-From: Ed Maste <emaste@freebsd.org>
-Date: Fri, 29 Mar 2024 18:02:06 -0400
-Subject: [PATCH] tar: make error reporting more robust and use correct errno
- (#2101)
-
-As discussed in #1609.
----
- tar/read.c | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/tar/read.c b/tar/read.c
-index af3d3f423..a7f14a07b 100644
---- a/tar/read.c
-+++ b/tar/read.c
-@@ -371,8 +371,9 @@ read_archive(struct bsdtar *bsdtar, char mode, struct archive *writer)
- if (r != ARCHIVE_OK) {
- if (!bsdtar->verbose)
- safe_fprintf(stderr, "%s", archive_entry_pathname(entry));
-- fprintf(stderr, ": %s: ", archive_error_string(a));
-- fprintf(stderr, "%s", strerror(errno));
-+ safe_fprintf(stderr, ": %s: %s",
-+ archive_error_string(a),
-+ strerror(archive_errno(a)));
- if (!bsdtar->verbose)
- fprintf(stderr, "\n");
- bsdtar->return_value = 1;