summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorAlexey Shvetsov <alexxy@gentoo.org>2016-06-29 17:17:07 +0300
committerAlexey Shvetsov <alexxy@gentoo.org>2016-06-30 01:31:15 +0300
commit78687b7871a6d19ba23ac5da91c72d9732061bc1 (patch)
treebefa090ead56292b47a1607c1388583318fbbc3e /eclass
parentgames-emulation/dosbox: sync live ebuild and make it copyable (diff)
downloadgentoo-78687b7871a6d19ba23ac5da91c72d9732061bc1.tar.gz
gentoo-78687b7871a6d19ba23ac5da91c72d9732061bc1.tar.bz2
gentoo-78687b7871a6d19ba23ac5da91c72d9732061bc1.zip
eclass/openib.eclass: Clean up ancient versions
Also move to sys-fabric category
Diffstat (limited to 'eclass')
-rw-r--r--eclass/openib.eclass14
1 files changed, 3 insertions, 11 deletions
diff --git a/eclass/openib.eclass b/eclass/openib.eclass
index 1b2102ae0403..0001db89cb6f 100644
--- a/eclass/openib.eclass
+++ b/eclass/openib.eclass
@@ -42,7 +42,6 @@ SLOT="${OFED_VER}"
# Defines array of ofed version supported by eclass
OFED_VERSIONS=(
- "1.5.4.1"
"3.5"
"3.12"
)
@@ -52,10 +51,10 @@ OFED_VERSIONS=(
# function that creates blockers list for ofed
block_other_ofed_versions() {
local slot
- RDEPEND="${RDEPEND} !sys-infiniband/${PN}:0"
+ RDEPEND="${RDEPEND} !sys-fabric/${PN}:0"
for slot in ${OFED_VERSIONS[@]}; do
if [[ ${slot} != ${SLOT} ]]; then
- RDEPEND+=" !sys-infiniband/${PN}:${slot}"
+ RDEPEND+=" !sys-fabric/${PN}:${slot}"
fi
done
}
@@ -70,14 +69,7 @@ fi
case ${PN} in
ofed)
- case ${PV} in
- 1.5.*|1.5.*.*)
- MY_PN="ofa_kernel"
- ;;
- *)
- MY_PN="compat-rdma"
- ;;
- esac
+ MY_PN="compat-rdma"
;;
*)
MY_PN="${PN}"