diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2014-04-16 07:31:00 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2014-04-16 07:31:00 +0000 |
commit | 15c39da8d21312727f5254acd18aa5af09f287a2 (patch) | |
tree | 31c7fcc04fb936390966886454849954c4fb8126 /eclass/openib.eclass | |
parent | Stable for ppc64, wrt bug #461394 (diff) | |
download | gentoo-2-15c39da8d21312727f5254acd18aa5af09f287a2.tar.gz gentoo-2-15c39da8d21312727f5254acd18aa5af09f287a2.tar.bz2 gentoo-2-15c39da8d21312727f5254acd18aa5af09f287a2.zip |
Update openib eclass
Diffstat (limited to 'eclass/openib.eclass')
-rw-r--r-- | eclass/openib.eclass | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/eclass/openib.eclass b/eclass/openib.eclass index b84ad11ed582..7fe4c8740b11 100644 --- a/eclass/openib.eclass +++ b/eclass/openib.eclass @@ -1,13 +1,13 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/openib.eclass,v 1.9 2012/10/14 18:18:20 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/openib.eclass,v 1.10 2014/04/16 07:31:00 alexxy Exp $ # @ECLASS: openib.eclass # @AUTHOR: # Original Author: Alexey Shvetsov <alexxy@gentoo.org> # @BLURB: Simplify working with OFED packages -inherit base eutils rpm versionator +inherit eutils rpm versionator EXPORT_FUNCTIONS src_unpack @@ -42,14 +42,9 @@ SLOT="${OFED_VER}" # Defines array of ofed version supported by eclass OFED_VERSIONS=( - "1.5.1" - "1.5.2" - "1.5.3" - "1.5.3.1" - "1.5.3.2" - "1.5.4" "1.5.4.1" "3.5" + "3.12" ) # @FUNCTION: block_other_ofed_versions @@ -68,9 +63,9 @@ block_other_ofed_versions() { OFED_BASE_VER=$(get_version_component_range 1-3 ${OFED_VER}) if [ -z $OFED_RC ] ; then - SRC_URI="http://www.openfabrics.org/downloads/OFED/ofed-${OFED_BASE_VER}/OFED-${OFED_VER}.tgz" + SRC_URI="https://www.openfabrics.org/downloads/OFED/ofed-${OFED_BASE_VER}/OFED-${OFED_VER}.tgz" else - SRC_URI="http://www.openfabrics.org/downloads/OFED/ofed-${OFED_BASE_VER}/OFED-${OFED_VER}-rc${OFED_RC_VER}.tgz" + SRC_URI="https://www.openfabrics.org/downloads/OFED/ofed-${OFED_BASE_VER}/OFED-${OFED_VER}-rc${OFED_RC_VER}.tgz" fi case ${PN} in |