diff options
author | 2017-02-03 22:36:13 +0100 | |
---|---|---|
committer | 2017-02-03 22:37:48 +0100 | |
commit | c5eccf7d69de2bab00b4d97776fac9de67dad674 (patch) | |
tree | bd4420f3530d3d2a613706702d9228b96f9bfb03 /sys-fs/e2fsprogs/files | |
parent | sys-fs/e2fsprogs: Bump to version 1.43.4 (diff) | |
download | gentoo-c5eccf7d69de2bab00b4d97776fac9de67dad674.tar.gz gentoo-c5eccf7d69de2bab00b4d97776fac9de67dad674.tar.bz2 gentoo-c5eccf7d69de2bab00b4d97776fac9de67dad674.zip |
sys-fs/e2fsprogs: Removed old.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'sys-fs/e2fsprogs/files')
-rw-r--r-- | sys-fs/e2fsprogs/files/e2fsprogs-1.42.13-subst-perms.patch | 31 | ||||
-rw-r--r-- | sys-fs/e2fsprogs/files/e2fsprogs-1.42.13-sysmacros.patch | 74 |
2 files changed, 0 insertions, 105 deletions
diff --git a/sys-fs/e2fsprogs/files/e2fsprogs-1.42.13-subst-perms.patch b/sys-fs/e2fsprogs/files/e2fsprogs-1.42.13-subst-perms.patch deleted file mode 100644 index 2162f0396870..000000000000 --- a/sys-fs/e2fsprogs/files/e2fsprogs-1.42.13-subst-perms.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 0930fcd65ec8f135c90f673eab2a7a196103537d Mon Sep 17 00:00:00 2001 -From: Mike Frysinger <vapier@gentoo.org> -Date: Thu, 17 Sep 2015 14:18:16 -0400 -Subject: [PATCH e2fsprogs] subst: use 0644 perms - -When running on NFS, opening files with 0444 perms for writing can -sometimes fail. Since there's no real reason for these files to be -read-only, give the owner write permission. - -URL: https://bugs.gentoo.org/550986 -Signed-off-by: Mike Frysinger <vapier@gentoo.org> ---- - util/subst.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/util/subst.c b/util/subst.c -index f36adb4..e4004c9 100644 ---- a/util/subst.c -+++ b/util/subst.c -@@ -370,7 +370,7 @@ int main(int argc, char **argv) - } - strcpy(newfn, outfn); - strcat(newfn, ".new"); -- fd = open(newfn, O_CREAT|O_TRUNC|O_RDWR, 0444); -+ fd = open(newfn, O_CREAT|O_TRUNC|O_RDWR, 0644); - if (fd < 0) { - perror(newfn); - exit(1); --- -2.5.1 - diff --git a/sys-fs/e2fsprogs/files/e2fsprogs-1.42.13-sysmacros.patch b/sys-fs/e2fsprogs/files/e2fsprogs-1.42.13-sysmacros.patch deleted file mode 100644 index 2e4c4e0564c2..000000000000 --- a/sys-fs/e2fsprogs/files/e2fsprogs-1.42.13-sysmacros.patch +++ /dev/null @@ -1,74 +0,0 @@ -From 13a12900148e6b778d8532ca76ff38edcec5a45f Mon Sep 17 00:00:00 2001 -From: Mike Frysinger <vapier@gentoo.org> -Date: Mon, 28 Mar 2016 20:31:33 -0400 -Subject: [PATCH e2fsprogs] include sys/sysmacros.h as needed - -The minor/major/makedev macros are not entirely standard. glibc has had -the definitions in sys/sysmacros.h since the start, and wants to move away -from always defining them implicitly via sys/types.h (as this pollutes the -namespace in violation of POSIX). Other C libraries have already dropped -them. Since the configure script already checks for this header, use that -to pull in the header in files that use these macros. - -Signed-off-by: Mike Frysinger <vapier@gentoo.org> - ---- a/lib/blkid/devname.c -+++ b/lib/blkid/devname.c -@@ -36,6 +36,9 @@ - #if HAVE_SYS_MKDEV_H - #include <sys/mkdev.h> - #endif -+#ifdef HAVE_SYS_SYSMACROS_H -+#include <sys/sysmacros.h> -+#endif - #include <time.h> - - #include "blkidP.h" ---- a/lib/blkid/devno.c -+++ b/lib/blkid/devno.c -@@ -31,6 +31,9 @@ - #if HAVE_SYS_MKDEV_H - #include <sys/mkdev.h> - #endif -+#ifdef HAVE_SYS_SYSMACROS_H -+#include <sys/sysmacros.h> -+#endif - - #include "blkidP.h" - ---- a/lib/ext2fs/finddev.c -+++ b/lib/ext2fs/finddev.c -@@ -31,6 +31,9 @@ - #if HAVE_SYS_MKDEV_H - #include <sys/mkdev.h> - #endif -+#ifdef HAVE_SYS_SYSMACROS_H -+#include <sys/sysmacros.h> -+#endif - - #include "ext2_fs.h" - #include "ext2fs.h" ---- a/lib/ext2fs/ismounted.c -+++ b/lib/ext2fs/ismounted.c -@@ -49,6 +49,9 @@ - #endif /* HAVE_GETMNTINFO */ - #include <string.h> - #include <sys/stat.h> -+#ifdef HAVE_SYS_SYSMACROS_H -+#include <sys/sysmacros.h> -+#endif - - #include "ext2_fs.h" - #include "ext2fs.h" ---- a/misc/mk_hugefiles.c -+++ b/misc/mk_hugefiles.c -@@ -35,6 +35,9 @@ extern int optind; - #include <sys/ioctl.h> - #include <sys/types.h> - #include <sys/stat.h> -+#ifdef HAVE_SYS_SYSMACROS_H -+#include <sys/sysmacros.h> -+#endif - #include <libgen.h> - #include <limits.h> - #include <blkid/blkid.h> |