From 7bc9c63c9da678a7e6fceb095d56c634afd22c56 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 15 Dec 2019 18:09:03 +0000 Subject: gentoo resync : 15.12.2019 --- dev-python/scientificpython/Manifest | 5 -- .../files/scientificpython-2.9-mpi.patch | 40 ------------- .../files/scientificpython-2.9.3-mpi-netcdf.patch | 43 -------------- dev-python/scientificpython/metadata.xml | 22 ------- .../scientificpython/scientificpython-2.9.4.ebuild | 69 ---------------------- 5 files changed, 179 deletions(-) delete mode 100644 dev-python/scientificpython/Manifest delete mode 100644 dev-python/scientificpython/files/scientificpython-2.9-mpi.patch delete mode 100644 dev-python/scientificpython/files/scientificpython-2.9.3-mpi-netcdf.patch delete mode 100644 dev-python/scientificpython/metadata.xml delete mode 100644 dev-python/scientificpython/scientificpython-2.9.4.ebuild (limited to 'dev-python/scientificpython') diff --git a/dev-python/scientificpython/Manifest b/dev-python/scientificpython/Manifest deleted file mode 100644 index c52b64d9b1ea..000000000000 --- a/dev-python/scientificpython/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX scientificpython-2.9-mpi.patch 1176 BLAKE2B a7c3edae00b8094374e759a30b663cbdd8de17a8e47a0ad30242ad98fb3c5ef2cbc941ab13bb9cc4171779ccbda8cc895ceb701a8ab5a65a65679d0750abcd84 SHA512 1a71e79ae1ded669dc8a0796000e663fd19dd805c8756ec2731774a611d39d23a335cfd295b79922ddc6e66a423442147d075bf520a07017bb0735e655327455 -AUX scientificpython-2.9.3-mpi-netcdf.patch 1736 BLAKE2B d08faf0373501726478f9c2ddaba1fa63c799f4cdc876c74934dd83b0f9caaf4122174caee3642a39ba309fe9d7110e0ee8ecc80025c41886b1ec8d0988556b9 SHA512 3136066d0a6b8ea489206ed80b024884f85bf2c6920ed758e94425cea7e75631a6907669b7e35a5f6200359c35cf36ac23a57e426e7e52f64513386d876636c2 -DIST ScientificPython-2.9.4.tar.gz 688704 BLAKE2B 8f125f11aa466ca2dd3afe5642385ac06350ea299e377aa4c368b3090ad0606e9d20e86a0b0f0a8b80408d11f558eb08abc630b185973318fa9df7f02b9b959f SHA512 8bd3ce3ead090832582711c25f7d4c7a5a55642ef9a1e845fb68b4b3dba833ba86baf9c444fd9948ce761a5357dbf388a2c1a860a66ee13fdf1f26d1010cc8c8 -EBUILD scientificpython-2.9.4.ebuild 1523 BLAKE2B 924a5336e78165ce0419f565a7e122a2921315cf250331752959eb56adfffc9c0feee4ffd7b2bde75a3b967f14171aaf775232eb0bffdd75c1402a8f499127ff SHA512 00b30a0cb1bbbe302391d01f889007f36056f2b5313569d4ab21dcfd82376711a35d48916ab80a5ecd65ebe38a578f86d9ffba3b28636bde8fb1d536290f06e2 -MISC metadata.xml 926 BLAKE2B 014c0f45ad8f93505c9e98ae7bf837177e2eb0957b22cda9424a5feec4c6698f9049b5e16951c34903e58532610043b40a8f35e93dbf4b64978d61a081969947 SHA512 f721101cc77917496eb449d6c0bd2fbe39ce1d20342db75a40b8ef4f59cb9e065bdf0f12d6d0773ba46ec0f946e5c184155d2ee0ca01974aee5bd2c96078d572 diff --git a/dev-python/scientificpython/files/scientificpython-2.9-mpi.patch b/dev-python/scientificpython/files/scientificpython-2.9-mpi.patch deleted file mode 100644 index 3140779c74a9..000000000000 --- a/dev-python/scientificpython/files/scientificpython-2.9-mpi.patch +++ /dev/null @@ -1,40 +0,0 @@ ---- Src/MPI/compile.py -+++ Src/MPI/compile.py -@@ -4,7 +4,7 @@ - # Normally nothing needs to be changed below - import distutils - import distutils.sysconfig --import os, sys -+import os, subprocess, sys - from Scientific import N - - cfgDict = distutils.sysconfig.get_config_vars() -@@ -32,16 +32,16 @@ - items[i] = os.path.join(frameworkdir[0], items[i]) - linkforshared = ' '.join(items) - --cmd = '%s %s -o mpipython -I%s %s %s -L%s -lpython%s %s %s' % \ -- (mpicompiler, -- linkforshared, -- cfgDict['INCLUDEPY'], -- extra_compile_args, -- sources, -- cfgDict['LIBPL'], -- cfgDict['VERSION'], -- cfgDict['LIBS'], -- cfgDict['LIBM']) -+cmd = [mpicompiler] -+cmd.extend(linkforshared.split()) -+cmd.extend(os.environ.get("CFLAGS", "").split()) -+cmd.extend(os.environ.get("LDFLAGS", "").split()) -+cmd.extend(["-o", "mpipython"]) -+cmd.extend(["-I" + x for x in cfgDict['INCLUDEPY'].split()]) -+cmd.extend(["-I../../Include"]) -+cmd.extend(extra_compile_args.split()) -+cmd.extend(sources.split()) -+cmd.extend(["-lpython%s" % cfgDict['VERSION']]) - --print 'cmd = ', cmd --os.system(cmd) -+print 'cmd =', " ".join(cmd) -+sys.exit(subprocess.call(cmd)) diff --git a/dev-python/scientificpython/files/scientificpython-2.9.3-mpi-netcdf.patch b/dev-python/scientificpython/files/scientificpython-2.9.3-mpi-netcdf.patch deleted file mode 100644 index c9672948f2f8..000000000000 --- a/dev-python/scientificpython/files/scientificpython-2.9.3-mpi-netcdf.patch +++ /dev/null @@ -1,43 +0,0 @@ -From 71a5e881290c1cec2506a346e2740a1b821c36aa Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= -Date: Thu, 13 Mar 2014 15:29:33 +0100 -Subject: [PATCH] Include MPI cflags/ldflags for netcdf. - ---- - setup.py | 7 +++++-- - 1 file changed, 5 insertions(+), 2 deletions(-) - -diff --git a/setup.py b/setup.py -index 7f01656..71ac92a 100644 ---- a/setup.py -+++ b/setup.py -@@ -2,7 +2,7 @@ - - from distutils.core import setup, Extension - from distutils.command.install_headers import install_headers --import os, sys, platform -+import os, sys, platform, subprocess - from glob import glob - - class Dummy: -@@ -92,13 +92,16 @@ else: - netcdf_include = os.path.join(netcdf_prefix, 'include') - netcdf_h_file = os.path.join(netcdf_prefix, 'include', 'netcdf.h') - netcdf_lib = os.path.join(netcdf_prefix, 'lib') -+ mpi_cflags = subprocess.Popen(["mpicc", "-showme:compile"], stdout=subprocess.PIPE).communicate()[0].rstrip().split() -+ mpi_ldflags = subprocess.Popen(["mpicc", "-showme:link"], stdout=subprocess.PIPE).communicate()[0].rstrip().split() - ext_modules = [Extension('Scientific._netcdf', - ['Scientific/_netcdf.c'], - include_dirs=['Include', netcdf_include] - + numpy_include, - library_dirs=[netcdf_lib], - libraries = ['netcdf'], -- extra_compile_args=extra_compile_args)] -+ extra_compile_args=extra_compile_args + mpi_cflags, -+ extra_link_args=mpi_ldflags)] - - try: - # Add code for including documentation in Mac packages --- -1.9.0 - diff --git a/dev-python/scientificpython/metadata.xml b/dev-python/scientificpython/metadata.xml deleted file mode 100644 index ead81e593755..000000000000 --- a/dev-python/scientificpython/metadata.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - sci@gentoo.org - Gentoo Science Project - - - python@gentoo.org - Python - - - ScientificPython is a collection of Python modules that are useful for - scientific computing. In this collection you will find modules that - cover basic geometry (vectors, tensors, transformations, vector and - tensor fields), quaternions, automatic derivatives, linear - interpolation, polynomials, elementary statistics, nonlinear - least-squares fits, unit calculations, Fortran-compatible text - formatting, 3D visualization via VRML, and two Tk widgets for simple - line plots and 3D wireframe models. - - diff --git a/dev-python/scientificpython/scientificpython-2.9.4.ebuild b/dev-python/scientificpython/scientificpython-2.9.4.ebuild deleted file mode 100644 index a760b97ee758..000000000000 --- a/dev-python/scientificpython/scientificpython-2.9.4.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 - -MY_PN="ScientificPython" -MY_P="${MY_PN}-${PV}" -DOWNLOAD_NUMBER=4570 - -DESCRIPTION="Scientific Module for Python" -SRC_URI="http://sourcesup.cru.fr/frs/download.php/${DOWNLOAD_NUMBER}/${MY_P}.tar.gz" -HOMEPAGE="http://sourcesup.cru.fr/projects/scientific-py/" - -LICENSE="CeCILL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" -IUSE="doc mpi test" - -RDEPEND=" -