diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2007-06-04 13:51:25 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2007-06-04 13:51:25 +0000 |
commit | 426be19f7863ca7809909dda1208444abd172ddd (patch) | |
tree | dae1bed6fc17fed6f5582add4d65e02a90f6937b /sci-libs | |
parent | add ~x86, bug 180500 (diff) | |
download | gentoo-2-426be19f7863ca7809909dda1208444abd172ddd.tar.gz gentoo-2-426be19f7863ca7809909dda1208444abd172ddd.tar.bz2 gentoo-2-426be19f7863ca7809909dda1208444abd172ddd.zip |
Removed old unused versions
(Portage version: 2.1.2.7)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/scipy/ChangeLog | 6 | ||||
-rw-r--r-- | sci-libs/scipy/files/digest-scipy-0.4.9 | 3 | ||||
-rw-r--r-- | sci-libs/scipy/files/digest-scipy-0.5.1 | 3 | ||||
-rw-r--r-- | sci-libs/scipy/files/system_info.diff | 67 | ||||
-rw-r--r-- | sci-libs/scipy/scipy-0.4.9.ebuild | 134 | ||||
-rw-r--r-- | sci-libs/scipy/scipy-0.5.1.ebuild | 98 |
6 files changed, 5 insertions, 306 deletions
diff --git a/sci-libs/scipy/ChangeLog b/sci-libs/scipy/ChangeLog index 8172541efed8..ab3a760c0d27 100644 --- a/sci-libs/scipy/ChangeLog +++ b/sci-libs/scipy/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-libs/scipy # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/ChangeLog,v 1.17 2007/02/19 11:35:41 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/ChangeLog,v 1.18 2007/06/04 13:51:25 bicatali Exp $ + + 04 Jun 2007; Sébastien Fabbro <bicatali@gentoo.org> + -files/system_info.diff, -scipy-0.4.9.ebuild, -scipy-0.5.1.ebuild: + Removed old unused versions 19 Feb 2007; Sébastien Fabbro <bicatali@gentoo.org> -scipy-0.3.2.ebuild, -scipy-0.4.8.ebuild, -scipy-0.4.8-r1.ebuild: diff --git a/sci-libs/scipy/files/digest-scipy-0.4.9 b/sci-libs/scipy/files/digest-scipy-0.4.9 deleted file mode 100644 index 146cff436541..000000000000 --- a/sci-libs/scipy/files/digest-scipy-0.4.9 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 bb1db6e0b60652ef26f92587c853a15f scipy-0.4.9.tar.gz 2599608 -RMD160 b1816980c23d306c54eb907e50c3d5b78c98fbd7 scipy-0.4.9.tar.gz 2599608 -SHA256 f2af35827624dd3d6eed4aa02376ba724a3d5f469aefa6d5c85fa5847a2eb3d2 scipy-0.4.9.tar.gz 2599608 diff --git a/sci-libs/scipy/files/digest-scipy-0.5.1 b/sci-libs/scipy/files/digest-scipy-0.5.1 deleted file mode 100644 index 08c9806763b2..000000000000 --- a/sci-libs/scipy/files/digest-scipy-0.5.1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 48442a427f0556ad2ad1721dd62e401c scipy-0.5.1.tar.gz 4141008 -RMD160 60a184b57f50e9bef78843cbe96542aee43ac386 scipy-0.5.1.tar.gz 4141008 -SHA256 312e7562aa04923c02c346866e06fd44e4fcf872c518f64c0f9dabece5ff860a scipy-0.5.1.tar.gz 4141008 diff --git a/sci-libs/scipy/files/system_info.diff b/sci-libs/scipy/files/system_info.diff deleted file mode 100644 index fb220305b082..000000000000 --- a/sci-libs/scipy/files/system_info.diff +++ /dev/null @@ -1,67 +0,0 @@ -*** SciPy_complete-0.3.2/scipy_core/scipy_distutils/system_info.py Tue Jun 1 10:27:47 2004 ---- SciPy_complete-0.3.2_new/scipy_core/scipy_distutils/system_info.py Mon Aug 22 15:06:44 2005 -*************** -*** 1,3 **** ---- 1,7 ---- -+ # Modified to avoid linking directly to the atlas libraries if present. -+ # This would break the dynamic switching between different lapack -+ # implementations at run time (pbienst@gentoo.org) -+ - #!/usr/bin/env python - """ - This file defines a set of system_info classes for getting -*************** -*** 553,558 **** ---- 557,563 ---- - atlas = None - lapack = None - atlas_1 = None -+ return - for d in lib_dirs: - atlas = self.check_libs(d,atlas_libs,[]) - lapack_atlas = self.check_libs(d,['lapack_atlas'],[]) -*************** -*** 635,640 **** ---- 640,646 ---- - self._lib_names + ['atlas']) - atlas = None - atlas_1 = None -+ return - for d in lib_dirs: - atlas = self.check_libs(d,atlas_libs,[]) - if atlas is not None: -*************** -*** 659,674 **** - return - - class atlas_threads_info(atlas_info): -! _lib_names = ['ptf77blas','ptcblas'] - - class atlas_blas_threads_info(atlas_blas_info): -! _lib_names = ['ptf77blas','ptcblas'] - - class lapack_atlas_info(atlas_info): -! _lib_names = ['lapack_atlas'] + atlas_info._lib_names - - class lapack_atlas_threads_info(atlas_threads_info): -! _lib_names = ['lapack_atlas'] + atlas_threads_info._lib_names - - class lapack_info(system_info): - section = 'lapack' ---- 665,680 ---- - return - - class atlas_threads_info(atlas_info): -! _lib_names = [] #['ptf77blas','ptcblas'] - - class atlas_blas_threads_info(atlas_blas_info): -! _lib_names = [] #['ptf77blas','ptcblas'] - - class lapack_atlas_info(atlas_info): -! _lib_names = [] #['lapack_atlas'] + atlas_info._lib_names - - class lapack_atlas_threads_info(atlas_threads_info): -! _lib_names = [] #['lapack_atlas'] + atlas_threads_info._lib_names - - class lapack_info(system_info): - section = 'lapack' diff --git a/sci-libs/scipy/scipy-0.4.9.ebuild b/sci-libs/scipy/scipy-0.4.9.ebuild deleted file mode 100644 index 112fa48a6330..000000000000 --- a/sci-libs/scipy/scipy-0.4.9.ebuild +++ /dev/null @@ -1,134 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.4.9.ebuild,v 1.4 2006/09/24 07:31:47 dberkholz Exp $ - -inherit distutils fortran - -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -DESCRIPTION="Open source scientific tools for Python" -HOMEPAGE="http://www.scipy.org/" -LICENSE="BSD" - -SLOT="0" -IUSE="fftw" -KEYWORDS="~amd64 ~ppc ~x86" - -# did not use virtual/blas and virtual/lapack -# because doc says scipy needs to compile all libraries with the same compiler -RDEPEND=">=dev-lang/python-2.3.3 - >=dev-python/numpy-0.9.8 - !>dev-python/numpy-0.9.9 - sci-libs/blas-atlas - sci-libs/blas-config - sci-libs/lapack-config - sci-libs/lapack-atlas - fftw? ( =sci-libs/fftw-2.1* )" - -DEPEND="${RDEPEND}" - -# install doc claims fftw-2 is faster for complex ffts. -# wxwindows seems to have disapeared : ? -# f2py seems to be in numpy. - -FORTRAN="g77 gfortran" - -pkg_setup() { - fortran_pkg_setup - - einfo "Checking active BLAS implementations for ATLAS." - blas-config -p - if ! blas-config -p | grep "F77 BLAS:" | grep -q -i atlas; then - eerror "Your F77 BLAS profile is not set to the ATLAS implementation," - eerror "which is required by ${PN} to compile and run properly." - eerror "Use: 'blas-config -f ATLAS' to activate ATLAS." - echo - bad_profile=1 - fi - if ! blas-config -p | grep "C BLAS:" | grep -q -i atlas; then - eerror "Your C BLAS profile is not set to the ATLAS implementation," - eerror "Which is required by ${PN} to compile and run properly." - eerror "Use: 'blas-config -c ATLAS' to activate ATLAS." - echo - bad_profile=1 - fi - einfo "Checking active LAPACK implementation for ATLAS." - lapack-config -p - if ! lapack-config -p | grep "F77 LAPACK:" | grep -q -i atlas; then - eerror "Your F77 LAPACK profile is not set to the ATLAS implementation," - eerror "which is required by ${PN} to compile and run properly." - eerror "Use: 'lapack-config ATLAS' to activate ATLAS." - bad_profile=1 - fi - if ! [ -z ${bad_profile} ]; then - die "Active BLAS/LAPACK implementations are not ATLAS." - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" - - echo "[atlas]" > site.cfg - echo "include_dirs = /usr/include/atlas" >> site.cfg - echo -n "library_dirs = /usr/$(get_libdir)/lapack:/usr/$(get_libdir):" \ - >> site.cfg - if [ -d "/usr/$(get_libdir)/blas/threaded-atlas" ]; then - echo "/usr/$(get_libdir)/blas/threaded-atlas" >> site.cfg - echo "atlas_libs = lapack, blas, cblas, atlas, pthread" >> site.cfg - else - echo "/usr/$(get_libdir)/blas/atlas" >> site.cfg - echo "atlas_libs = lapack, blas, cblas, atlas" >> site.cfg - fi - - export FFTW3=None - if use fftw; then - echo "[fftw] " >> site.cfg - echo "fftw_libs = rfftw, fftw" >> site.cfg - echo "fftw_opt_libs = rfftw_threads, fftw_threads" >> site.cfg - else - export FFTW=None - fi -} - -src_compile() { - # Map compilers to what scipy calls them - local SCIPY_FC - case "${FORTRANC}" in - gfortran) - SCIPY_FC="gnu95" - ;; - g77) - SCIPY_FC="gnu" - ;; - g95) - SCIPY_FC="g95" - ;; - ifc|ifort) - if use ia64; then - SCIPY_FC="intele" - else - SCIPY_FC="intel" - fi - ;; - *) - local msg="Invalid Fortran compiler \'${FORTRANC}\'" - eerror "${msg}" - die "${msg}" - ;; - esac - - # http://projects.scipy.org/scipy/numpy/ticket/182 - # Can't set LDFLAGS - unset LDFLAGS - - distutils_src_compile \ - config_fc \ - --fcompiler=${SCIPY_FC} \ - --opt="${CFLAGS}" \ - || die "compilation failed" -} - -src_install() { - distutils_src_install - dodoc *.txt -} diff --git a/sci-libs/scipy/scipy-0.5.1.ebuild b/sci-libs/scipy/scipy-0.5.1.ebuild deleted file mode 100644 index 79d471c2060a..000000000000 --- a/sci-libs/scipy/scipy-0.5.1.ebuild +++ /dev/null @@ -1,98 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.5.1.ebuild,v 1.2 2006/09/24 07:38:30 dberkholz Exp $ - -inherit distutils fortran - -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -DESCRIPTION="Open source scientific tools for Python" -HOMEPAGE="http://www.scipy.org/" -LICENSE="BSD" - -SLOT="0" -IUSE="fftw" -KEYWORDS="~amd64 ~ppc ~x86" - -# doc says scipy needs to compile all libraries with the same compiler -RDEPEND=">=dev-lang/python-2.3.3 - >=dev-python/numpy-1.0_beta1 - virtual/blas - virtual/lapack - fftw? ( =sci-libs/fftw-2.1* )" - -DEPEND="${RDEPEND}" - -# install doc claims fftw-2 is faster for complex ffts. -# wxwindows seems to have disapeared : ? -# f2py seems to be in numpy. - -FORTRAN="g77 gfortran" - -src_unpack() { - unpack ${A} - cd "${S}" - - echo "[atlas]" > site.cfg - echo "include_dirs = /usr/include/atlas" >> site.cfg - echo -n "library_dirs = /usr/$(get_libdir)/lapack:/usr/$(get_libdir):" \ - >> site.cfg - if [ -d "/usr/$(get_libdir)/blas/threaded-atlas" ]; then - echo "/usr/$(get_libdir)/blas/threaded-atlas" >> site.cfg - echo "atlas_libs = lapack, blas, cblas, atlas, pthread" >> site.cfg - else - echo "/usr/$(get_libdir)/blas/atlas" >> site.cfg - echo "atlas_libs = lapack, blas, cblas, atlas" >> site.cfg - fi - - export FFTW3=None - if use fftw; then - echo "[fftw] " >> site.cfg - echo "fftw_libs = rfftw, fftw" >> site.cfg - echo "fftw_opt_libs = rfftw_threads, fftw_threads" >> site.cfg - else - export FFTW=None - fi -} - -src_compile() { - # Map compilers to what scipy calls them - local SCIPY_FC - case "${FORTRANC}" in - gfortran) - SCIPY_FC="gnu95" - ;; - g77) - SCIPY_FC="gnu" - ;; - g95) - SCIPY_FC="g95" - ;; - ifc|ifort) - if use ia64; then - SCIPY_FC="intele" - else - SCIPY_FC="intel" - fi - ;; - *) - local msg="Invalid Fortran compiler \'${FORTRANC}\'" - eerror "${msg}" - die "${msg}" - ;; - esac - - # http://projects.scipy.org/scipy/numpy/ticket/182 - # Can't set LDFLAGS - unset LDFLAGS - - distutils_src_compile \ - config_fc \ - --fcompiler=${SCIPY_FC} \ - --opt="${CFLAGS}" \ - || die "compilation failed" -} - -src_install() { - distutils_src_install - dodoc *.txt -} |