summaryrefslogtreecommitdiff
path: root/sys-apps/baselayout/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@rogentos.ro>2016-03-06 21:23:20 +0000
committerV3n3RiX <venerix@rogentos.ro>2016-03-06 21:23:20 +0000
commit8b9901dfabad2faa7d9981b6112d6fda87f2fe67 (patch)
tree36cbd58ea1b22f0d510db55302e0f52e415f02f5 /sys-apps/baselayout/files
parent9d501d74c1b8a06242b92752e721e3a5b48bd3ac (diff)
drop old baselayout ebuilds
Diffstat (limited to 'sys-apps/baselayout/files')
-rw-r--r--sys-apps/baselayout/files/baselayout-1.12.14-iproute.patch18
-rw-r--r--sys-apps/baselayout/files/baselayout-2.0.1-proc_touch.patch16
-rw-r--r--sys-apps/baselayout/files/baselayout-2.0.3-slash-run-dir.patch12
3 files changed, 0 insertions, 46 deletions
diff --git a/sys-apps/baselayout/files/baselayout-1.12.14-iproute.patch b/sys-apps/baselayout/files/baselayout-1.12.14-iproute.patch
deleted file mode 100644
index 8d148862..00000000
--- a/sys-apps/baselayout/files/baselayout-1.12.14-iproute.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-r3179 | vapier | 2010-10-03 17:20:25 -0400 (Sun, 03 Oct 2010) | 1 line
-
-fix infinite recursion with ip invocation #339013 by Krzysztof Olędzki
-
-Index: net-scripts/net/iproute2.sh
-===================================================================
---- lib/rcscripts/net/iproute2.sh (revision 3178)
-+++ lib/rcscripts/net/iproute2.sh (revision 3179)
-@@ -5,7 +5,8 @@
- # Fix any potential localisation problems
- # Note that LC_ALL trumps LC_anything_else according to locale(7)
- ip() {
-- LC_ALL=C ip "$@"
-+ # use the full path so we don't recurse into ip()
-+ LC_ALL=C $(type -P ip) "$@"
- }
- iproute2_tunnel() {
- LC_ALL=C ip tunnel "$@"
diff --git a/sys-apps/baselayout/files/baselayout-2.0.1-proc_touch.patch b/sys-apps/baselayout/files/baselayout-2.0.1-proc_touch.patch
deleted file mode 100644
index 7b7df780..00000000
--- a/sys-apps/baselayout/files/baselayout-2.0.1-proc_touch.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-https://bugs.gentoo.org/232823
-http://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/Makefile?r1=3171&r2=3172
-
---- Makefile
-+++ Makefile
-@@ -49,8 +49,9 @@
- layout:
- # Create base filesytem layout
- for x in $(KEEP_DIRS) ; do \
-+ test -e $(DESTDIR)$$x/.keep && continue ; \
- $(INSTALL_DIR) $(DESTDIR)$$x || exit $$? ; \
-- touch $(DESTDIR)$$x/.keep || exit $$? ; \
-+ touch $(DESTDIR)$$x/.keep || echo "ignoring touch failure; mounted fs?" ; \
- done
- # Special dirs
- install -m 0700 -d $(DESTDIR)/root || exit $$?
diff --git a/sys-apps/baselayout/files/baselayout-2.0.3-slash-run-dir.patch b/sys-apps/baselayout/files/baselayout-2.0.3-slash-run-dir.patch
deleted file mode 100644
index f6b77567..00000000
--- a/sys-apps/baselayout/files/baselayout-2.0.3-slash-run-dir.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-Index: trunk/Makefile
-===================================================================
---- trunk/Makefile (revision 3193)
-+++ trunk/Makefile (working copy)
-@@ -27,6 +27,7 @@
-
- KEEP_DIRS-Linux += \
- /dev \
-+ /run \
- /sys \
- /usr/src
- KEEP_DIRS = $(KEEP_DIRS-$(OS)) \