diff options
author | 2009-02-12 11:22:10 +0000 | |
---|---|---|
committer | 2009-02-12 11:22:10 +0000 | |
commit | b0b6da297f6def871b0109f0b23367ef7d432016 (patch) | |
tree | 44b8342ddc92cff87fefa36a4ab60b372433dd38 /dev-python/numpy | |
parent | added new release 3.13 which also fixes the security issue in bug #257075 (diff) | |
download | gentoo-2-b0b6da297f6def871b0109f0b23367ef7d432016.tar.gz gentoo-2-b0b6da297f6def871b0109f0b23367ef7d432016.tar.bz2 gentoo-2-b0b6da297f6def871b0109f0b23367ef7d432016.zip |
Fixed a syntax error. Re-added ppc and x86-fbsd now that nose is keyworded.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/numpy')
-rw-r--r-- | dev-python/numpy/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/numpy/numpy-1.2.1.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/dev-python/numpy/ChangeLog b/dev-python/numpy/ChangeLog index 88ae6d2927d8..2b71136df0f3 100644 --- a/dev-python/numpy/ChangeLog +++ b/dev-python/numpy/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/numpy # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/numpy/ChangeLog,v 1.70 2009/01/24 18:15:01 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/numpy/ChangeLog,v 1.71 2009/02/12 11:22:10 bicatali Exp $ + + 12 Feb 2009; Sébastien Fabbro <bicatali@gentoo.org> ChangeLog: + Fixed a syntax error. Re-added ppc and x86-fbsd now that nose is + keyworded. 24 Jan 2009; Brent Baude <ranger@gentoo.org> numpy-1.2.1.ebuild: Marking numpy-1.2.1 ~ppc64 for bug 23354 diff --git a/dev-python/numpy/numpy-1.2.1.ebuild b/dev-python/numpy/numpy-1.2.1.ebuild index f53fc9700bbb..1e5528d16cd3 100644 --- a/dev-python/numpy/numpy-1.2.1.ebuild +++ b/dev-python/numpy/numpy-1.2.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/numpy/numpy-1.2.1.ebuild,v 1.4 2009/01/24 18:15:01 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/numpy/numpy-1.2.1.ebuild,v 1.5 2009/02/12 11:22:10 bicatali Exp $ NEED_PYTHON=2.4 @@ -19,7 +19,7 @@ DEPEND="${RDEPEND} IUSE="lapack test" SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x86-fbsd" LICENSE="BSD" # whatever LDFLAGS set will break linking @@ -86,7 +86,7 @@ src_unpack() { cblas blas lapack | sed -e \ 's/^-L//' -e 's/ -L/:/g' -e 's/ //g'):/usr/$(get_libdir) atlas_libs = $(pkg-config --libs-only-l \ - cbas blas | sed -e 's/^-l//' -e 's/ -l/, /g' -e 's/,.pthread//g') + cblas blas | sed -e 's/^-l//' -e 's/ -l/, /g' -e 's/,.pthread//g') lapack_libs = $(pkg-config --libs-only-l \ lapack | sed -e 's/^-l//' -e 's/ -l/, /g' -e 's/,.pthread//g') [blas_opt] |