summaryrefslogtreecommitdiffstats
path: root/bin/ebuild-helpers
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2012-08-15 22:50:29 +0200
committerUlrich Müller <ulm@gentoo.org>2012-08-15 22:50:29 +0200
commit196192de5664df4cdd4b3d5221b4b34a00e392e3 (patch)
treefc51dcdada318c099bf789c55b74d29a5ce02f5e /bin/ebuild-helpers
parente672b5ccbbbe38eda5c733fc799a20d92a8bdf75 (diff)
downloadportage-196192de5664df4cdd4b3d5221b4b34a00e392e3.tar.gz
portage-196192de5664df4cdd4b3d5221b4b34a00e392e3.tar.bz2
portage-196192de5664df4cdd4b3d5221b4b34a00e392e3.zip
Remove tests for deprecated 3_pre2 EAPI.
Diffstat (limited to 'bin/ebuild-helpers')
-rwxr-xr-xbin/ebuild-helpers/doins4
-rwxr-xr-xbin/ebuild-helpers/newins4
2 files changed, 4 insertions, 4 deletions
diff --git a/bin/ebuild-helpers/doins b/bin/ebuild-helpers/doins
index 443bfdb21..fd7793404 100755
--- a/bin/ebuild-helpers/doins
+++ b/bin/ebuild-helpers/doins
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
@@ -40,7 +40,7 @@ if [[ ${INSDESTTREE#${ED}} != "${INSDESTTREE}" ]]; then
fi
case "$EAPI" in
- 0|1|2|3|3_pre2)
+ 0|1|2|3)
PRESERVE_SYMLINKS=n
;;
*)
diff --git a/bin/ebuild-helpers/newins b/bin/ebuild-helpers/newins
index adf2d809e..b5b3ff6f4 100755
--- a/bin/ebuild-helpers/newins
+++ b/bin/ebuild-helpers/newins
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
@@ -19,7 +19,7 @@ fi
rm -rf "${T}/${2}" || exit $?
case "$EAPI" in
- 0|1|2|3|3_pre2)
+ 0|1|2|3)
cp "$1" "$T/$2" || exit $?
;;
*)