summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2016-06-28 21:58:58 +0100
committerJames Le Cuirot <chewi@gentoo.org>2016-06-29 22:04:23 +0100
commitc7e51c7f60e280aa708df08c86d849ba23507120 (patch)
treee2da5a4bd0d31518c581b65338fa16d1ce7beadd /eclass/java-vm-2.eclass
parentmedia-gfx/inkscape: Revision bump, port to EAPI=6, add patch to fix compilati... (diff)
downloadgentoo-c7e51c7f60e280aa708df08c86d849ba23507120.tar.gz
gentoo-c7e51c7f60e280aa708df08c86d849ba23507120.tar.bz2
gentoo-c7e51c7f60e280aa708df08c86d849ba23507120.zip
java-vm-2.eclass: Drop support for EAPI <5
Diffstat (limited to 'eclass/java-vm-2.eclass')
-rw-r--r--eclass/java-vm-2.eclass22
1 files changed, 6 insertions, 16 deletions
diff --git a/eclass/java-vm-2.eclass b/eclass/java-vm-2.eclass
index efdf52d93cc9..c544191ffcf5 100644
--- a/eclass/java-vm-2.eclass
+++ b/eclass/java-vm-2.eclass
@@ -10,7 +10,12 @@
# This eclass provides functionality which assists with installing
# virtual machines, and ensures that they are recognized by java-config.
-inherit eutils fdo-mime multilib pax-utils prefix
+case ${EAPI:-0} in
+ 5|6) ;;
+ *) die "EAPI=${EAPI} is not supported" ;;
+esac
+
+inherit fdo-mime multilib pax-utils prefix
EXPORT_FUNCTIONS pkg_setup pkg_postinst pkg_prerm pkg_postrm
@@ -18,7 +23,6 @@ RDEPEND="
>=dev-java/java-config-2.2.0-r3
>=app-eselect/eselect-java-0.2.0"
DEPEND="${RDEPEND}"
-has "${EAPI}" 0 1 && DEPEND="${DEPEND} >=sys-apps/portage-2.1"
export WANT_JAVA_CONFIG=2
@@ -70,7 +74,6 @@ java-vm-2_pkg_setup() {
# invalid. Also update mime database.
java-vm-2_pkg_postinst() {
- has ${EAPI:-0} 0 1 2 && ! use prefix && EROOT=${ROOT}
# Note that we cannot rely on java-config here, as it will silently recognize
# e.g. icedtea6-bin as valid system VM if icedtea6 is set but invalid (e.g. due
# to the migration to icedtea-6)
@@ -95,7 +98,6 @@ java-vm-2_pkg_postinst() {
# Warn user if removing system-vm.
java-vm-2_pkg_prerm() {
- # Although REPLACED_BY_VERSION is EAPI=4, we shouldn't need to check EAPI for this use case
if [[ "$(GENTOO_VM="" java-config -f 2>/dev/null)" == "${VMHANDLE}" && -z "${REPLACED_BY_VERSION}" ]]; then
ewarn "It appears you are removing your system-vm!"
ewarn "Please run java-config -L to list available VMs,"
@@ -149,11 +151,6 @@ get_system_arch() {
set_java_env() {
debug-print-function ${FUNCNAME} $*
- if has ${EAPI:-0} 0 1 2 && ! use prefix ; then
- ED="${D}"
- EPREFIX=""
- fi
-
local platform="$(get_system_arch)"
local env_file="${ED}${JAVA_VM_CONFIG_DIR}/${VMHANDLE}"
local old_env_file="${ED}/etc/env.d/java/20${P}"
@@ -255,11 +252,6 @@ java-vm_set-pax-markings() {
# @CODE
java-vm_revdep-mask() {
- if has ${EAPI:-0} 0 1 2 && ! use prefix; then
- ED="${D}"
- EPREFIX=
- fi
-
local VMROOT="${1-"${EPREFIX}"/opt/${P}}"
dodir /etc/revdep-rebuild/
@@ -281,8 +273,6 @@ java-vm_sandbox-predict() {
debug-print-function ${FUNCNAME} "$*"
[[ -z "${1}" ]] && die "${FUNCNAME} takes at least one argument"
- has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}"
-
local path path_arr=("$@")
# subshell this to prevent IFS bleeding out dependant on bash version.
# could use local, which *should* work, but that requires a lot of testing.