commit 305c8a1b5396554a67794f3fe6e4990a24a810f9 Author: Clint Adams <clint@debian.org> Date: Wed Jul 12 11:32:39 2023 -0400 correct tree discrepancy commit 73ce6142b653a3812349037d81b3b97cff616a20 Author: Clint Adams <clint@debian.org> Date: Wed Jul 12 10:00:16 2023 -0400 changelog for 1.32.1-1 commit 27b8262482243da9194ec9fbecc5adfe9445f138 Author: Clint Adams <clint@debian.org> Date: Wed Jul 12 09:58:58 2023 -0400 Use nodoc build profile instead of custom namespace commit 1e48b7f87f44c7d0942562a5e1c979073caec92a Author: Clint Adams <clint@debian.org> Date: Wed Jul 12 09:57:28 2023 -0400 Patch from John Paul Adrian Glaubitz to add build profile to allow bootstrapping. closes: #1040828. commit f424c63294cd4855a690b22021c9d7e69250d4f6 Merge: 4348c16 7c2595b Author: Clint Adams <clint@debian.org> Date: Wed Jul 12 09:56:38 2023 -0400 Merge branch 'upstream' commit 7c2595b99bb23b2a54ef81aebe4ce96bbe9c34c1 Author: Clint Adams <clint@debian.org> Date: Wed Jul 12 09:55:09 2023 -0400 bump version to 1.32.1 commit 1b5df1b8b1c04ccd196d725851bcb82f3b16bb53 Author: Clint Adams <clint@debian.org> Date: Wed Jul 12 09:50:47 2023 -0400 Updated German translation from Chris Leick. closes: #1032206. commit 8ab051146abdfe1565184cdfb6ea0c64ede8de1b Merge: 0fc9518 6a78f80 Author: Clint Adams <clint@debian.org> Date: Wed Jul 12 13:49:32 2023 +0000 Merge branch 'macos-spawn_h' into 'upstream' Fix build on macOS See merge request clint/fakeroot!27 commit 6a78f80150fbc22cb54062c49c7211193444b6da Author: Ruoyu Zhong <zhongruoyu@outlook.com> Date: Wed Jul 12 13:44:06 2023 +0800 Fix build on macOS This fixes the following error, observed on Intel macOS 13.4.1: In file included from libfakeroot_time64.c:19: ./wrapped.h:43:88: error: unknown type name 'posix_spawn_file_actions_t' extern int my_posix_spawn (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]) __attribute__((visibility("hidden"))); ^ ./wrapped.h:43:136: error: unknown type name 'posix_spawnattr_t' extern int my_posix_spawn (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]) __attribute__((visibility("hidden"))); ^ ./wrapped.h:44:89: error: unknown type name 'posix_spawn_file_actions_t' extern int my_posix_spawnp (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]) __attribute__((visibility("hidden"))); ^ ./wrapped.h:44:137: error: unknown type name 'posix_spawnattr_t' extern int my_posix_spawnp (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]) __attribute__((visibility("hidden"))); ^ 4 errors generated. Co-authored-by: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> commit 4348c16b146340e6b86bfe373d0340434426efae Author: Clint Adams <clint@debian.org> Date: Mon Jul 10 09:15:32 2023 -0400 changelog for 1.32-1 commit 486a3689649137950db64d7a0828fdd99aa67195 Merge: d64578b 0fc9518 Author: Clint Adams <clint@debian.org> Date: Mon Jul 10 09:14:26 2023 -0400 Merge branch 'upstream' commit 0fc9518627c809264836b3f6b1e6264634d55341 Author: Clint Adams <clint@debian.org> Date: Mon Jul 10 09:11:46 2023 -0400 bump to version 1.32 commit a396183dd69c33afad7eec4fc42c00b20f50351b Merge: 31ac323 40cb607 Author: Clint Adams <clint@debian.org> Date: Mon Jul 10 12:44:15 2023 +0000 Merge branch 'loongarch64support' into 'upstream' Support LoongArch (lp64d ABI) architecture See merge request clint/fakeroot!23 commit 40cb6079f583fa424505610e173460807726d474 Author: Alexey Sheplyakov <asheplyakov@basealt.ru> Date: Wed Mar 15 22:48:55 2023 +0400 Support LoongArch (lp64d ABI) architecture Before glibc 2.33 the stat family of functions (and mknod) used to be inline wrappers around calls to xstat, fxstat, lxstat, xmknod, which all take a leading version number argument designating the data structure and bits used. Thus with glibc < 2.33 libfakeroot needs to wrap only xstat, fxstat, xmknod only. In glibc 2.33 inline wrapper functions have been removed. Instead libc.so.6 exports stat, stat64, etc symbols. xstat, fxstat, xmknod still exist (for compatibility reasons). Thus with glibc 2.33 and newer libfakeroot must wrap both stat (fstat, statat, fstatat, etc) and internal xstat (fxstat, etc) functions. However some new architectures (such as LoongArch lp64d ABI) decided to be 64-bit only since the day 0 and don't use any wrappers. In this case libfakeroot should wrap only stat (statat, fstat, fstatat). A special care should be taken to avoid the double definition (via WRAP_STAT and another one under #if __GLIBC_PREREQ(2,33)). commit 31ac323e1ed992dcf016ce464d5db66b3e0a355f Merge: 7244522 c465f71 Author: Clint Adams <clint@debian.org> Date: Fri Mar 3 23:44:59 2023 +0000 Merge branch 'fix-time64' into 'upstream' Compile time64 wraps with -D_TIME_BITS=64 See merge request clint/fakeroot!22 commit c465f716856cd561dba3522a4f5c714ea8bedfbd Author: Shengjing Zhu <shengjing.zhu@canonical.com> Date: Wed Mar 1 15:40:13 2023 +0800 Compile time64 wraps with -D_TIME_BITS=64 This ensures using right stat struct on 32bit architectures. Closes: #1030638 commit d64578bb7f3f4c3bdbc6918c896e3a1249bdea8a Merge: bad7900 6d47fd4 Author: Clint Adams <clint@debian.org> Date: Tue Feb 7 18:17:14 2023 +0000 Merge branch 'jsmr' into 'master' debian/changelog: fix my last name See merge request clint/fakeroot!21 commit 6d47fd4cc3e44bf60f54cb4b99f8c163b27413eb Author: Johannes Schauer Marin Rodrigues <josch@mister-muffin.de> Date: Mon Feb 6 23:26:05 2023 +0100 debian/changelog: fix my last name commit 7244522909c2f4489699bab25e78b92669e2f3db Author: Clint Adams <clint@debian.org> Date: Mon Feb 6 12:32:43 2023 -0500 Revert "Wrap fchown32" This reverts commit c5df933af5dacdd797c4295ad14dad535f129dd1. commit 25d5fc69f8ab7ddc03a02e0c90c91a42ed07eab5 Author: Clint Adams <clint@debian.org> Date: Mon Feb 6 12:16:21 2023 -0500 man page translation updates commit 0f2a6f6406658088cd3413e3d4a1204e97536305 Merge: 63d89d0 2cca99c Author: Clint Adams <clint@debian.org> Date: Mon Feb 6 10:10:43 2023 -0500 Merge branch 'upstream' commit 2cca99c7735241766d4840d778abf09bd2f329e7 Author: Clint Adams <clint@debian.org> Date: Mon Feb 6 10:09:02 2023 -0500 bump to version 1.31 commit ef25d0a7e2ca3b499e8941bbaeb80ca71064665b Author: Johannes Schauer Marin Rodrigues <josch@mister-muffin.de> Date: Mon Feb 6 00:13:54 2023 +0100 test/cp-atest: check ownership commit 6a3541693d53411f790c52c2a207fdc968393190 Author: Johannes Schauer Marin Rodrigues <josch@mister-muffin.de> Date: Mon Feb 6 00:51:50 2023 +0100 test/t.chown: avoid writing to /tmp/foo Closes: #1026132 commit edb2e95b4dafecf3806b863b8187bd02c15beb5f Author: Clint Adams <clint@debian.org> Date: Mon Feb 6 10:01:27 2023 -0500 Wrap fchown32 commit 63d89d0596c212b631d562281b59e70208a0cfbc Author: Clint Adams <clint@debian.org> Date: Thu Nov 3 15:04:03 2022 -0400 Bump version to 1.30.1 commit 0ebac36022f27cf8027d7f310d54c2782d70264d Author: Clint Adams <clint@debian.org> Date: Thu Nov 3 15:02:32 2022 -0400 Incorporate ELFv2 prototype generation patch from Christoph Biedl commit 21756284739df1a2ebec1110a8276ff3a3ecb3ee Author: Clint Adams <clint@debian.org> Date: Thu Nov 3 14:18:05 2022 -0400 Wrap time64 functions commit ee5fe03e9f40607f5d2d6e80645e6d59321c0137 Author: Clint Adams <clint@debian.org> Date: Thu Nov 3 15:04:03 2022 -0400 Bump version to 1.30.1 commit 4f74a0c32d30cbc21e561e4b3896d6915b80ba86 Author: Clint Adams <clint@debian.org> Date: Thu Nov 3 15:02:32 2022 -0400 Incorporate ELFv2 prototype generation patch from Christoph Biedl commit 3bd03f01bcf13b45be189df7c497f2f8fcf02de4 Author: Clint Adams <clint@debian.org> Date: Thu Nov 3 14:18:05 2022 -0400 Wrap time64 functions commit d0ec3de5525f3f232ac3514b390f8235bb699d33 Merge: 0b86097 a0549f2 Author: Clint Adams <clint@debian.org> Date: Wed Nov 2 20:02:07 2022 -0400 Merge branch 'upstream' commit a0549f2c6710f4f9010cdac19eb1f617a078c9c9 Author: Clint Adams <clint@debian.org> Date: Wed Nov 2 20:01:43 2022 -0400 Bump to version 1.30 commit 3767a36235bf18f2d0f87c851c4d8bf2067b0110 Author: Clint Adams <clint@debian.org> Date: Wed Nov 2 20:00:46 2022 -0400 Detect time64 variants of stat, fstat, and lstat commit afe61f7a89001deae42a877991ecc5c9c431f324 Author: Johannes Schauer Marin Rodrigues <josch@debian.org> Date: Wed Nov 2 10:11:27 2022 +0100 test/t.chown: test for __stat64_time64 on 32bit arches commit 0b860977f5ce8e115a01d70c62467facda3ab3f9 Merge: ff346bb 808755a Author: Clint Adams <clint@debian.org> Date: Wed Nov 2 13:29:47 2022 +0000 Merge branch 'bug-1023286' into 'master' Add a reproducer for #1023286 as a test case See merge request clint/fakeroot!18 commit ff346bb6c0541f721d7612c40b6cc9a5ec3345e2 Merge: 43db48f a454b12 Author: Clint Adams <clint@debian.org> Date: Mon May 23 07:13:32 2022 -0400 Merge branch 'upstream' commit a454b12c85cafa98fcd1bb9394c66e0aef66dea5 Author: Ryan Schmidt <git@ryandesign.com> Date: Mon May 23 02:26:18 2022 -0500 Define CPP so the test to identify macOS works And update the name of macOS. commit 43db48f6bdea7f7cee17fc7045c4417f4a94aee6 Merge: 808755a 72a5e33 Author: Clint Adams <clint@debian.org> Date: Mon May 23 11:11:20 2022 +0000 Merge branch 'ryandesign-cpp' into 'master' Define CPP so the test to identify macOS works See merge request clint/fakeroot!16 commit 72a5e3388ebae1c63eedd9f486f688200edfc9c2 Author: Ryan Schmidt <git@ryandesign.com> Date: Mon May 23 02:26:18 2022 -0500 Define CPP so the test to identify macOS works And update the name of macOS. commit 808755a592c7438b6506294dfb3fe10074d21415 Merge: 2244289 6cb361d Author: Clint Adams <clint@debian.org> Date: Sun May 22 13:16:20 2022 -0400 Merge branch 'upstream' commit 6cb361d61b58b695f6daf2a47c46f2d3f94545d0 Author: Clint Adams <clint@debian.org> Date: Sun May 22 13:15:10 2022 -0400 Bump to version 1.29 commit c0a28d8938e09bd0417340df4241718d4a568183 Author: Clint Adams <clint@debian.org> Date: Sun May 22 13:13:10 2022 -0400 Patch from Matthias Ellert to fix _STAT_VER on ia64. closes: #1011234. commit 6db46d044460bdd0d22a3b03253dc587001ab263 Author: Clint Adams <clint@debian.org> Date: Sun May 1 12:53:12 2022 -0400 Patch from Dmitry V. Levin to unwrap openat. commit 22442894fbf1cfad4dddb35c476046a7462c25b3 Merge: 5a1b491 754f04a Author: Clint Adams <clint@debian.org> Date: Fri Mar 4 09:21:41 2022 -0500 Merge branch 'upstream' commit 754f04a0163e8f65b1d72030be2795e2ae88d667 Author: Clint Adams <clint@debian.org> Date: Fri Mar 4 09:10:01 2022 -0500 Patch from Samuel Thibault to handle _STAT_VER on GNU/Hurd. closes: #1006151. commit c58adae19c0583fb29c0318f72d431a404612e32 Author: Ryan Schmidt <debian@ryandesign.com> Date: Fri Mar 4 13:53:13 2022 +0000 Include <stdio.h> in readlink tests Fixes implicit declaration of function puts which caused a failure to identify the flavor of readlink when implicit declaration of functions is an error (-Werror=implicit-function-declaration), for example with Xcode 12 or later on macOS. commit 5a1b49104d4a21cb4559e0ba7dacb0bb733e0e6a Merge: 4d37ed9 541cd56 Author: Clint Adams <clint@debian.org> Date: Mon Jan 17 15:42:20 2022 -0500 Merge branch 'upstream' commit 541cd5661deecc3ec824ada6400101363023510d Author: Clint Adams <clint@debian.org> Date: Mon Jan 17 15:40:14 2022 -0500 Bump version to 1.27 commit 4536aa451169fc4735f02ee7d134950b727aa171 Author: Clint Adams <clint@debian.org> Date: Mon Jan 17 14:21:27 2022 -0500 Patch from lemonsqueeze to improve fakeroot-tcp performance by setting TCP_NODELAY. closes: #1003596. commit e90c96b7e5352ba3567c9a85537b39362fc2175d Author: Clint Adams <clint@debian.org> Date: Sat Dec 4 08:14:30 2021 -0800 Drop ancient "Solaris" shell check commit 72f7336028fde8e8ea446bde783294d79696774f Merge: 65dd0df 7f8a1aa Author: Clint Adams <clint@debian.org> Date: Sat Dec 4 16:03:14 2021 +0000 Merge branch 'macos-arm64-build' into 'upstream' fix build on MacOS arm64 (64 bit inodes only) See merge request clint/fakeroot!13 commit 7f8a1aae119edb7a5de2e310f0115dc9f9360e32 Author: Sergey V. Lobanov <sergey@lobanov.in> Date: Fri Dec 3 14:00:42 2021 +0300 fix build on MacOS arm64 (64 bit inodes only) Added compatibility for MacOS without 32 bit inodes support (__DARWIN_ONLY_64_BIT_INO_T is true) This patch based on discussion https://github.com/archmac/bootstrap/issues/4 Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in> commit 65dd0df9862f83be08d2b92d048615ec413e364a Author: Clint Adams <clint@debian.org> Date: Mon Sep 6 22:04:37 2021 -0400 Patch from Helmut Grohne to unbreak crossbuilding commit 4d37ed97ec0225cf3f01605fb587c58cc24105de Merge: 02f9256 2a53460 Author: Clint Adams <clint@debian.org> Date: Mon Sep 6 21:38:25 2021 -0400 Merge branch 'upstream' commit 2a53460ca358343c166038618be7e5fc2bf65593 Author: Clint Adams <clint@debian.org> Date: Mon Sep 6 21:36:34 2021 -0400 bump to version 1.26 commit 8333181558edd512e7b8c330206fb6a6878c664e Author: Clint Adams <clint@debian.org> Date: Mon Sep 6 21:35:33 2021 -0400 Update for autoconf 2.71 commit 050a649f6b3bba7fb9386017c40b33147a20b62f Author: Clint Adams <clint@debian.org> Date: Mon Sep 6 21:30:26 2021 -0400 Revert "Use fixed-width members in fake_msg" This reverts commit 2a53909e732b19ccbaf6d1534e932dff74fa757e. commit e843d27d5a945e487c4ce7873ebc62b001fcf9a1 Merge: c010645 9ff0d68 Author: Clint Adams <clint@debian.org> Date: Thu Feb 18 22:31:25 2021 +0000 Merge branch 'add-prs-arches' into 'upstream' Add prs arches See merge request clint/fakeroot!12 commit c0106459096dfee1960ec936f3ecbd91577a6554 Merge: 6a1525b 65bc824 Author: Clint Adams <clint@debian.org> Date: Thu Feb 18 22:30:56 2021 +0000 Merge branch 'upstream' into 'upstream' OS X regression fix See merge request clint/fakeroot!11 commit 9ff0d68d26b756a0969a158490a9f3dc46d8ab3a Author: Dimitri John Ledkov <xnox@ubuntu.com> Date: Wed Feb 17 14:41:43 2021 +0000 Add _STAT_VER defines for ppc64le, riscv64, s390x. Signed-off-by: Dimitri John Ledkov <xnox@ubuntu.com> commit 65bc8240ff70f5323ab126044202a2c09e0ac7c5 Author: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> Date: Mon Feb 15 11:07:56 2021 -0800 fix build regression on macOS Signed-off-by: Felix Fietkau <nbd@nbd.name> Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> commit 6a1525b0b057a191c12f59cdc74fee954cb7626a Merge: f0b1752 d1b6f16 Author: Clint Adams <clint@debian.org> Date: Sun Feb 14 18:04:25 2021 +0000 Merge branch 'upstream' into 'upstream' glibc 2.33 compatibility, os x fixes from openwrt See merge request clint/fakeroot!10 commit d1b6f16def102c5d826005b344fbcfd09657b1ac Author: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> Date: Sat Feb 13 20:05:17 2021 -0800 OS X portability OS X portability work from OpenWrt. Cc: Felix Fietkau <nbd@nbd.name> Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> commit 947124f352ef5a1982325313a5eca1b329d13c1a Author: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> Date: Sat Feb 13 19:35:31 2021 -0800 libfakeroot.c: fix fts_read and fts_children Apply Debian patch from [0], since glibc is usually built without LFS. __USE_LARGEFILE64 and FTSENT64 should be used anyway for proper support of this, if needed. See [1] for more details. [0]: https://sources.debian.org/patches/fakeroot/1.25.3-1.1/eglibc-fts-without-LFS/ [1]: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=676428 Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> commit 2b09ce39428cd8cf58af0345ef7337ce9de5e532 Author: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> Date: Sat Feb 13 19:32:08 2021 -0800 configure.ac: fix __xmknod{,at} pointer argument Switch default to assume * and not the absence of *. On glibc 2.33+, there is no definition for these functions in header files, so the compile test doesn't work. But, we can default to using the pointer (as is the case with newer glibc), and use the header file on older platforms to fail the test and use no pointer. Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> commit 7d8160f3403026392eea46a2cd1c19b1a4b8abc9 Author: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> Date: Thu Feb 11 21:00:20 2021 -0800 libfakeroot.c: fix compile error with DEBUG enabled Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> commit 989857f032ba77235da3b6658adf84c3c4177f35 Author: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> Date: Thu Feb 11 21:00:04 2021 -0800 libfakeroot.c: add wrappers for new glibc 2.33+ symbols Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> commit 47b696d203122d86753d201b5d6e22818efc869c Author: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> Date: Thu Feb 11 20:59:25 2021 -0800 libfakeroot.c: define _STAT_VER if not already defined Based on patch from Jan Pazdziora: https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/SMQ3RYXEYTVZH6PLQMKNB3NM4XLPMNZO/ Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> commit 02f9256ab5f84dc64b76cdc8b714f74294089e79 Merge: a2c7b75 f0b1752 Author: Clint Adams <clint@debian.org> Date: Thu Oct 8 13:13:40 2020 -0400 Merge branch 'upstream' into master commit f0b1752b1673d32c76ffaef7b62fe64760788c7b Author: Clint Adams <clint@debian.org> Date: Thu Oct 8 13:13:18 2020 -0400 bump to version 1.25.3 commit abec26d17912c31283d3dcedff90a14a73513d29 Author: Clint Adams <clint@debian.org> Date: Thu Oct 8 13:12:11 2020 -0400 Patch from Aurelien Jarno to fix statx wrapper on mipsel. closes: #971794. commit a2c7b75821ac09a0a0a00155adb54325564958f9 Merge: 1e9b1b3 acb3943 Author: Clint Adams <clint@debian.org> Date: Sat Oct 3 18:56:54 2020 -0400 Merge branch 'upstream' into master commit acb39431132896c489f7fc36f5aa1ee7adcd7a2c Author: Clint Adams <clint@debian.org> Date: Sat Oct 3 18:56:42 2020 -0400 bump to version 1.25.2 commit bb5c343307b0df169e684cfba7049f264ff649a0 Author: Clint Adams <clint@debian.org> Date: Sat Oct 3 18:55:20 2020 -0400 Patch from Johannes Schauer to fix missing rename from 9b26ceaaba9796bc9e18f375be91da16a4aae04d. closes: #971070. commit a3902d2b2a638ef912cb7a2bdbf97a236f260ba4 Merge: f7a80c9 9251df7 Author: Clint Adams <clint@debian.org> Date: Sat Oct 3 22:53:31 2020 +0000 Merge branch 'upstream' into 'upstream' Use fixed-width members in fake_msg See merge request clint/fakeroot!6 commit 9251df71835d980c9176172b0715a6fac2594706 Author: Vasyl Gello <vasek.gello@gmail.com> Date: Fri Oct 2 03:48:45 2020 +0000 Use fixed-width members in fake_msg * Also usevthe same padding on all architectures * Fixes cross-architecture SysV IPC connection failures (i.e using system-wide fakeroot in chroot-ed jails) commit 1e9b1b3026135157f8ae3f1feddc079598f77d94 Merge: cb0344b f7a80c9 Author: Clint Adams <clint@debian.org> Date: Tue Sep 22 17:52:48 2020 -0400 Merge branch 'upstream' into master commit cb0344bc131db6e4c46fde6b8d9092ea5fa554a4 Merge: 6e1fcf8 0f06427 Author: Clint Adams <clint@debian.org> Date: Tue Sep 22 16:57:58 2020 -0400 Merge branch 'upstream' into master commit 6e1fcf8f0c2b21021b58a53896c35a0786a6094b Merge: 294e421 03f3ebf Author: Clint Adams <clint@debian.org> Date: Mon Sep 21 20:50:23 2020 -0400 Merge branch 'upstream' into master commit 294e4212edc0c27ae8f8f9bc5d64900e603855ee Merge: 86a7515 7c29f89 Author: Clint Adams <clint@debian.org> Date: Sun Sep 20 16:31:10 2020 -0400 Merge branch 'upstream' into master commit 86a7515c4f67b63091f633da3568f169e71c01bc Merge: dbd3d24 a3876ea Author: Clint Adams <clint@debian.org> Date: Wed Aug 12 21:30:49 2020 +0000 Merge branch 'master' into 'master' Fix namespace collision that can occur if the outside environment already has... See merge request clint/fakeroot!5 commit a3876eabf0a14be34076c9e914d2b89ac60c5203 Author: Quanah Gibson-Mount <quanah@symas.com> Date: Wed Aug 12 20:28:27 2020 +0000 Fix namespace collision that can occur if the outside environment already has a variable named LIB defined commit dbd3d245de01c63938772a808ef63863bfbd5cad Merge: d6c3f9f e7301ff Author: Clint Adams <clint@debian.org> Date: Fri Jun 5 22:28:45 2020 +0000 Merge branch 'fix_fchownat' into 'master' Fix fchownat and fchmod with empty path See merge request clint/fakeroot!3 commit e7301ffe4963d2b77befa1933c58a5dc97b91119 Author: Norbert Lange <nolange79@gmail.com> Date: Fri Jun 5 23:59:34 2020 +0200 Fix fchownat and fchmod with empty path Forwards supported flags to fstatat commit d6c3f9ff010f033112c0f1c02f778bb370b99929 Merge: 266a5e8 f2d0a81 Author: Clint Adams <clint@debian.org> Date: Sat Sep 7 09:41:05 2019 -0400 Merge branch 'upstream' commit 266a5e8341df6174b968e0407875ab6590f23386 Author: Clint Adams <clint@debian.org> Date: Sun Jul 1 15:01:09 2018 -0400 convert doc/po4a/addendum.1.sv to utf-8 commit d8f96598d73bce85e4fc56389ded953919a6dba4 Author: Clint Adams <clint@debian.org> Date: Mon Jun 25 12:52:28 2018 -0400 bump to version 1.23 commit 8bd32d48c7457ce1e34fbb13f4eafee52d75d242 Author: Clint Adams <clint@debian.org> Date: Mon Jun 25 12:47:19 2018 -0400 Patch from Loïc Minier to use getopt -T to test for GNU. closes: #758728 commit d12f30c69724ebc4446d56f7467db13eca9fcb4f Author: Clint Adams <clint@debian.org> Date: Mon Jun 25 12:39:20 2018 -0400 Swedish man page translation from Sebastian Rasmussen (Debian bug #876053) commit bf92026c95a298b5362cd94c9f31284056f351f0 Merge: 8c3852f dbc38c7 Author: Clint Adams <clint@debian.org> Date: Wed Aug 16 22:26:48 2017 -0400 Merge branch 'upstream' commit 8c3852fe5f049c708bb80000472700a98ccc9540 Author: Clint Adams <clint@debian.org> Date: Sun Jun 26 23:27:52 2016 +0200 Drop upstream-i18n.patch commit df71432fd97bc01a0fc3c062bd2092199ee46891 Merge: 6242c15 7953d2d Author: Clint Adams <clint@debian.org> Date: Sun Jun 26 23:24:33 2016 +0200 Merge branch 'upstream' commit 6242c1562f5ad39a3cb8b3a47c043472f49a9276 Author: Andreas Beckmann <anbe@debian.org> Date: Mon May 30 12:03:24 2016 +0200 move upstream i18n changes to a quilt patch commit 11d66ebd2689563faa0758130c072cc02d58b8c3 Merge: 71e9f06 6bd3077 Author: Clint Adams <clint@debian.org> Date: Sun Oct 5 11:16:07 2014 -0400 Merge branch 'upstream' commit 71e9f0654cfa7625fe57492f129d9f61759dae67 Merge: 1686e8c 2d78fe7 Author: Clint Adams <clint@debian.org> Date: Sun Oct 5 11:09:42 2014 -0400 Merge branch 'upstream' commit 1686e8cc659a04c6f6bfafe968b423cfe0f11528 Merge: b2d6052 c85a22a Author: Clint Adams <clint@debian.org> Date: Sat Jul 12 14:33:38 2014 -0400 Merge branch 'upstream' commit b2d605297a686d66371179ab4bc2c876fd9698c0 Merge: 0f9c6f1 f7acff9 Author: Clint Adams <clint@debian.org> Date: Fri Sep 20 09:54:55 2013 -0400 Merge branch 'upstream' commit 0f9c6f12674ca166786e3a35b6b4dbb499a5f963 Merge: e95d84c 63fbf30 Author: Clint Adams <clint@debian.org> Date: Thu May 16 20:18:38 2013 -0400 Merge branch 'upstream' commit e95d84cd9e24bed13aca2a228da55b242193640c Merge: 83ac852 4f9c384 Author: Clint Adams <clint@debian.org> Date: Sat Jun 2 14:26:25 2012 -0400 Merge branch 'upstream'
Among the 1 debian patch available in version 1.32.1-1 of the package, we noticed the following issues: