aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Höfling <oleg.hoefling@gmail.com>2019-03-28 18:09:17 +0100
committerHorea Christian <chr@chymera.eu>2019-05-22 18:17:44 +0200
commit7b1e850f4e0c6dd53ce6aae1083c6447ead13fbc (patch)
tree387d2361d698f71b8339ae34da0ba8736d334288 /eclass/intel-sdp-r1.eclass
parentsci-libs/gmsh: version bump to 4.3.0 (diff)
downloadsci-7b1e850f4e0c6dd53ce6aae1083c6447ead13fbc.tar.gz
sci-7b1e850f4e0c6dd53ce6aae1083c6447ead13fbc.tar.bz2
sci-7b1e850f4e0c6dd53ce6aae1083c6447ead13fbc.zip
dev-libs/intel-common: EAPI bump in intel-sdp-r1 eclass
* removed versionator inheritance and usages in intel-sdp-r1.eclass * using EAPI=7 in intel-sdp-r1.eclass and inheriting ebuilds * updated copyright to pass repoman checks Package-Manager: Portage-2.3.62, Repoman-2.3.11 Signed-off-by: Horea Christian <chr@chymera.eu>
Diffstat (limited to 'eclass/intel-sdp-r1.eclass')
-rw-r--r--eclass/intel-sdp-r1.eclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/intel-sdp-r1.eclass b/eclass/intel-sdp-r1.eclass
index 12d1f868d..0fd9ee9d8 100644
--- a/eclass/intel-sdp-r1.eclass
+++ b/eclass/intel-sdp-r1.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: intel-sdp-r1.eclass
@@ -10,14 +10,14 @@
MULTILIB_COMPAT=( abi_x86_{32,64} )
-inherit check-reqs eutils multilib-build versionator
+inherit check-reqs eutils multilib-build
EXPORT_FUNCTIONS src_unpack src_install pkg_postinst pkg_postrm pkg_pretend
if [[ ! ${_INTEL_SDP_R1_ECLASS_} ]]; then
case "${EAPI}" in
- 6) ;;
+ 7) ;;
*) die "EAPI=${EAPI} is not supported" ;;
esac
@@ -171,7 +171,7 @@ _isdp_get-sdp-year() {
# e.g. opt/intel/compilers_and_libraries_2016.1.150
# opt/intel/vtune_amplifier_2018.2.0.551022
isdp_get-sdp-dir() {
- local _intel_sdp_dir="opt/intel/${INTEL_SUBDIR}_$(_isdp_get-sdp-year).$(get_version_component_range 3-)"
+ local _intel_sdp_dir="opt/intel/${INTEL_SUBDIR}_$(_isdp_get-sdp-year).$(ver_cut 3-)"
echo "${_intel_sdp_dir}"
}