diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2018-04-28 09:43:35 +0200 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-05-04 21:22:00 -0400 |
commit | 7b91537e45d994472257b35250cc1f398c404722 (patch) | |
tree | bc286391ab3735c0e9ce523e10faf64caca6a676 /sys-apps/toybox | |
parent | net-irc/irker: remove unused patch (diff) | |
download | gentoo-7b91537e45d994472257b35250cc1f398c404722.tar.gz gentoo-7b91537e45d994472257b35250cc1f398c404722.tar.bz2 gentoo-7b91537e45d994472257b35250cc1f398c404722.zip |
sys-apps/toybox: remove unused patches
Closes: https://bugs.gentoo.org/650190
Diffstat (limited to 'sys-apps/toybox')
-rw-r--r-- | sys-apps/toybox/files/toybox-0.7.0-includes.patch | 24 | ||||
-rw-r--r-- | sys-apps/toybox/files/toybox-0.7.0-parallel-build.patch | 40 | ||||
-rw-r--r-- | sys-apps/toybox/files/toybox-0.7.0-sysmacros.patch | 28 |
3 files changed, 0 insertions, 92 deletions
diff --git a/sys-apps/toybox/files/toybox-0.7.0-includes.patch b/sys-apps/toybox/files/toybox-0.7.0-includes.patch deleted file mode 100644 index 9a10e96510b0..000000000000 --- a/sys-apps/toybox/files/toybox-0.7.0-includes.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 5e1c429eec977cd365f490137ca9dede0caef662 Mon Sep 17 00:00:00 2001 -From: Rob Landley <rob@landley.net> -Date: Fri, 5 Feb 2016 15:13:24 -0600 -Subject: [PATCH] Debian unstable is even more pedantic than previous debian. - ---- - scripts/mktags.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/scripts/mktags.c b/scripts/mktags.c -index 3604260..9c23cf1 100644 ---- a/scripts/mktags.c -+++ b/scripts/mktags.c -@@ -3,6 +3,7 @@ - #include <stdio.h> - #include <stdlib.h> - #include <string.h> -+#include <ctype.h> - - int main(int argc, char *argv[]) - { --- -2.6.2 - diff --git a/sys-apps/toybox/files/toybox-0.7.0-parallel-build.patch b/sys-apps/toybox/files/toybox-0.7.0-parallel-build.patch deleted file mode 100644 index ed0797cf86c8..000000000000 --- a/sys-apps/toybox/files/toybox-0.7.0-parallel-build.patch +++ /dev/null @@ -1,40 +0,0 @@ -fix from upstream for flaky parallel builds - -From e17fbf19c4b48d763041761052e98c2b4ee95487 Mon Sep 17 00:00:00 2001 -From: Rob Landley <rob@landley.net> -Date: Fri, 26 Feb 2016 00:22:15 -0600 -Subject: [PATCH] Switch to $! for make.sh process enumeration. - ---- - scripts/make.sh | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/scripts/make.sh b/scripts/make.sh -index 84dda34..c73a03d 100755 ---- a/scripts/make.sh -+++ b/scripts/make.sh -@@ -264,17 +264,17 @@ do - LFILES="$LFILES $OUT" - [ "$OUT" -nt "$i" ] && continue - do_loudly $BUILD -c $i -o $OUT & -+ PENDING="$PENDING $!" - - # ratelimit to $CPUS many parallel jobs, detecting errors - - while true - do -- PENDING="$(echo $PENDING $(jobs -rp) | tr ' ' '\n' | sort -u)" -- [ $(echo -n "$PENDING" | wc -l) -lt "$CPUS" ] && break; -+ [ $(echo "$PENDING" | wc -w) -lt "$CPUS" ] && break; - -- wait $(echo "$PENDING" | head -n 1) -+ wait $(echo "$PENDING" | awk '{print $1}') - DONE=$(($DONE+$?)) -- PENDING="$(echo "$PENDING" | tail -n +2)" -+ PENDING="$(echo "$PENDING" | sed 's/^ *[0-9]*//')" - done - [ $DONE -ne 0 ] && break - done --- -2.6.2 - diff --git a/sys-apps/toybox/files/toybox-0.7.0-sysmacros.patch b/sys-apps/toybox/files/toybox-0.7.0-sysmacros.patch deleted file mode 100644 index 245ad23f4f71..000000000000 --- a/sys-apps/toybox/files/toybox-0.7.0-sysmacros.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 99e5c17b5fe5a93066e81cc6fcc7ebf386cb6183 Mon Sep 17 00:00:00 2001 -From: Mike Frysinger <vapier@gentoo.org> -Date: Mon, 29 Feb 2016 13:35:05 -0500 -Subject: [PATCH] include sys/sysmacros.h - -The major/minor macros are defined in sys/sysmacros.h. This has -historically been pulled in implicitly by sys/types.h, but C libs -are moving away from that as they aren't in POSIX. Use the header -directly as defined by BSD systems. ---- - toys.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/toys.h b/toys.h -index 8a29730..5e640a1 100644 ---- a/toys.h -+++ b/toys.h -@@ -34,6 +34,7 @@ - #include <sys/resource.h> - #include <sys/stat.h> - #include <sys/statvfs.h> -+#include <sys/sysmacros.h> - #include <sys/time.h> - #include <sys/times.h> - #include <sys/utsname.h> --- -2.6.2 - |