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 | 4c466f9cd9009ed542560523c0b1c205c81ba4fa (patch) | |
tree | 8c37fc24a47cb2738779d31b87101cf2e039eba2 /eclass | |
parent | Stable for ppc64, wrt bug #461394 (diff) | |
download | historical-4c466f9cd9009ed542560523c0b1c205c81ba4fa.tar.gz historical-4c466f9cd9009ed542560523c0b1c205c81ba4fa.tar.bz2 historical-4c466f9cd9009ed542560523c0b1c205c81ba4fa.zip |
Update openib eclass
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/openib.eclass | 17 |
2 files changed, 10 insertions, 12 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 001dfb05ff83..20fe1ae54d2a 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1207 2014/04/15 15:54:12 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1208 2014/04/16 07:31:00 alexxy Exp $ + + 16 Apr 2014; Alexey Shvetsov <alexxy@gentoo.org> openib.eclass: + Update openib eclass 15 Apr 2014; Michał Górny <mgorny@gentoo.org> multibuild.eclass: multibuild_merge_root: re-introduce userland_BSD tar fallback, bug #507626. 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 |