[openwrt/openwrt] tools/fakeroot: update to 1.33
LEDE Commits
lede-commits at lists.infradead.org
Tue Jun 18 16:55:18 PDT 2024
ansuel pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/368441254e69e6381cab6781fd1c99ecbf2d03c2
commit 368441254e69e6381cab6781fd1c99ecbf2d03c2
Author: Christian Marangi <ansuelsmth at gmail.com>
AuthorDate: Tue Jun 18 17:02:54 2024 +0200
tools/fakeroot: update to 1.33
fakeroot (1.33-1) unstable; urgency=medium
* New upstream version.
- Patch from Samuel Thibault to add renameat2 support.
closes: #1061257.
-- Clint Adams <clint at debian.org> Sun, 21 Jan 2024 11:56:06 -0500
fakeroot (1.32.2-1) unstable; urgency=medium
* New upstream version.
- Romanian man page translation from Remus-Gabriel Chelu.
closes: #1055386.
- patch from Rudi Heitbaum to add missing wrapped.h dependency.
closes: #1041674.
-- Clint Adams <clint at debian.org> Mon, 06 Nov 2023 07:15:47 -0500
fakeroot (1.32.1-1) unstable; urgency=medium
* New upstream version.
* Updated German translation from Chris Leick. closes: #1032206.
* Patch from John Paul Adrian Glaubitz to add build profile to
allow bootstrapping. closes: #1040828.
-- Clint Adams <clint at debian.org> Wed, 12 Jul 2023 09:59:17 -0400
fakeroot (1.32-1) unstable; urgency=medium
* New upstream version.
-- Clint Adams <clint at debian.org> Mon, 10 Jul 2023 09:14:43 -0400
fakeroot (1.31-1) unstable; urgency=medium
* New upstream version.
- patch from Johannes Schauer Marin Rodrigues to not use
temporary file in chown test. closes: #1026132.
-- Clint Adams <clint at debian.org> Mon, 06 Feb 2023 10:12:11 -0500
fakeroot (1.30.1-1) unstable; urgency=medium
* New upstream version.
- fixes and extends time64 support to fstatat64.
closes: #1023286.
-- Clint Adams <clint at debian.org> Thu, 03 Nov 2022 15:04:55 -0400
fakeroot (1.30-1) unstable; urgency=medium
* New upstream version.
- tries to cope with time64 on 32-bit architectures.
closes: #1023286.
* Drop kludge for glibc 2.33.
-- Clint Adams <clint at debian.org> Wed, 02 Nov 2022 20:17:56 -0400
Link: https://github.com/openwrt/openwrt/pull/15746
Signed-off-by: Christian Marangi <ansuelsmth at gmail.com>
---
tools/fakeroot/Makefile | 4 ++--
tools/fakeroot/patches/200-disable-doc.patch | 2 +-
tools/fakeroot/patches/600-macOS.patch | 8 ++++----
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/tools/fakeroot/Makefile b/tools/fakeroot/Makefile
index efd9227d1a..699675bdc3 100644
--- a/tools/fakeroot/Makefile
+++ b/tools/fakeroot/Makefile
@@ -5,12 +5,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=fakeroot
-PKG_VERSION:=1.29
+PKG_VERSION:=1.33
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
PKG_SOURCE_URL:=@DEBIAN/pool/main/f/fakeroot
-PKG_HASH:=8fbbafb780c9173e3ace4a04afbc1d900f337f3216883939f5c7db3431be7c20
+PKG_HASH:=e157d8e5c64d3a755707791e9be93296c6d249d5c4478bf941b675d49c47757d
PKG_LICENSE:=GPL-3.0-or-later
PKG_LICENSE_FILES:=COPYING
PKG_FIXUP:=autoreconf
diff --git a/tools/fakeroot/patches/200-disable-doc.patch b/tools/fakeroot/patches/200-disable-doc.patch
index 29a3e39b2d..cceb6ccc26 100644
--- a/tools/fakeroot/patches/200-disable-doc.patch
+++ b/tools/fakeroot/patches/200-disable-doc.patch
@@ -6,5 +6,5 @@
-SUBDIRS=doc scripts test
+SUBDIRS=scripts test
- noinst_LTLIBRARIES = libcommunicate.la libmacosx.la
+ noinst_LTLIBRARIES = libcommunicate.la libmacosx.la libfakeroot_time64.la
libcommunicate_la_SOURCES = communicate.c
diff --git a/tools/fakeroot/patches/600-macOS.patch b/tools/fakeroot/patches/600-macOS.patch
index 730367f07c..df4eb2d6c1 100644
--- a/tools/fakeroot/patches/600-macOS.patch
+++ b/tools/fakeroot/patches/600-macOS.patch
@@ -24,10 +24,10 @@
#include <spawn.h>
--- a/wrapfunc.inp
+++ b/wrapfunc.inp
-@@ -48,9 +48,11 @@ getattrlist$UNIX2003;int;(const char *pa
- #endif
+@@ -51,9 +51,11 @@ getattrlist$UNIX2003;int;(const char *pa
#endif
#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
+ #include <spawn.h>
+#if !__DARWIN_ONLY_64_BIT_INO_T
lstat$INODE64;int;(const char *file_name, struct stat *buf);(file_name, buf)
stat$INODE64;int;(const char *file_name, struct stat *buf);(file_name, buf)
@@ -36,7 +36,7 @@
posix_spawn;int;(pid_t * __restrict pid, const char * __restrict path, const posix_spawn_file_actions_t *file_actions, const posix_spawnattr_t * __restrict attrp, char *const argv[ __restrict], char *const envp[ __restrict]);(pid, path, file_actions, attrp, argv, envp)
posix_spawnp;int;(pid_t * __restrict pid, const char * __restrict path, const posix_spawn_file_actions_t *file_actions, const posix_spawnattr_t * __restrict attrp, char *const argv[ __restrict], char *const envp[ __restrict]);(pid, path, file_actions, attrp, argv, envp)
#endif
-@@ -229,7 +231,7 @@ facl;int;(int fd, int cmd, int cnt, void
+@@ -235,7 +237,7 @@ facl;int;(int fd, int cmd, int cnt, void
#ifdef HAVE_FTS_READ
fts_read;FTSENT *;(FTS *ftsp);(ftsp)
#ifdef __APPLE__
@@ -45,7 +45,7 @@
fts_read$INODE64;FTSENT *;(FTS *ftsp);(ftsp)
#endif
#endif /* ifdef __APPLE__ */
-@@ -237,7 +239,7 @@ fts_read$INODE64;FTSENT *;(FTS *ftsp);(f
+@@ -243,7 +245,7 @@ fts_read$INODE64;FTSENT *;(FTS *ftsp);(f
#ifdef HAVE_FTS_CHILDREN
fts_children;FTSENT *;(FTS *ftsp, int options);(ftsp, options)
#ifdef __APPLE__
More information about the lede-commits
mailing list