python-numpy: rebuild for Python 3.5
Switch to python3-* pkgs. Convert python3.4-* pkg into dummy pkg.
This commit is contained in:
parent
0c61efba27
commit
d9830419c5
3 changed files with 39 additions and 23 deletions
11
srcpkgs/python-numpy/patches/numpy_f2py_setup.patch
Normal file
11
srcpkgs/python-numpy/patches/numpy_f2py_setup.patch
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
--- numpy/f2py/setup.py.orig
|
||||||
|
+++ numpy/f2py/setup.py
|
||||||
|
@@ -55,7 +55,7 @@ def configuration(parent_package='', top
|
||||||
|
config.make_svn_version_py()
|
||||||
|
|
||||||
|
def generate_f2py_py(build_dir):
|
||||||
|
- f2py_exe = 'f2py' + os.path.basename(sys.executable)[6:]
|
||||||
|
+ f2py_exe = 'f2py'
|
||||||
|
if f2py_exe[-4:] == '.exe':
|
||||||
|
f2py_exe = f2py_exe[:-4] + '.py'
|
||||||
|
if 'bdist_wininst' in sys.argv and f2py_exe[-3:] != '.py':
|
|
@ -1,12 +1,11 @@
|
||||||
# Template file for 'python-numpy'
|
# Template file for 'python-numpy'
|
||||||
pkgname=python-numpy
|
pkgname=python-numpy
|
||||||
version=1.11.2
|
version=1.11.2
|
||||||
revision=1
|
revision=2
|
||||||
wrksrc="numpy-${version}"
|
wrksrc="numpy-${version}"
|
||||||
build_style=python-module
|
build_style=python-module
|
||||||
python_versions="2.7 3.4"
|
hostmakedepends="python-setuptools python3-setuptools gcc-fortran"
|
||||||
hostmakedepends="python-setuptools python3.4-setuptools gcc-fortran"
|
makedepends="python-devel python3-devel lapack-devel cblas-devel"
|
||||||
makedepends="python-devel python3.4-devel lapack-devel cblas-devel"
|
|
||||||
pycompile_module="numpy"
|
pycompile_module="numpy"
|
||||||
short_desc="Fast and sophisticated array facility to Python2"
|
short_desc="Fast and sophisticated array facility to Python2"
|
||||||
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
||||||
|
@ -16,40 +15,45 @@ distfiles="${PYPI_SITE}/n/numpy/numpy-${version}.tar.gz"
|
||||||
checksum=04db2fbd64e2e7c68e740b14402b25af51418fc43a59d9e54172b38b906b0f69
|
checksum=04db2fbd64e2e7c68e740b14402b25af51418fc43a59d9e54172b38b906b0f69
|
||||||
|
|
||||||
alternatives="
|
alternatives="
|
||||||
numpy:f2py:/usr/bin/f2py2.7
|
numpy:f2py:/usr/bin/f2py2
|
||||||
numpy:f2py.1:/usr/share/man/man1/f2py2.7.1"
|
numpy:f2py.1:/usr/share/man/man1/f2py2.1"
|
||||||
|
|
||||||
export ATLAS=None
|
export ATLAS=None
|
||||||
LDFLAGS="-shared"
|
LDFLAGS="-shared"
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
# create compat symlinks for .h files
|
# create compat symlinks for .h files
|
||||||
vmkdir usr/include/python2.7
|
vmkdir ${py2_inc}
|
||||||
ln -sfr ${DESTDIR}/usr/lib/python2.7/site-packages/numpy/core/include/numpy \
|
ln -sfr ${DESTDIR}/${py2_sitelib}/numpy/core/include/numpy \
|
||||||
${DESTDIR}/usr/include/python2.7
|
${DESTDIR}/${py2_inc}
|
||||||
vmkdir usr/include/python3.4m
|
vmkdir ${py3_inc}
|
||||||
ln -sfr ${DESTDIR}/usr/lib/python3.4/site-packages/numpy/core/include/numpy \
|
ln -sfr ${DESTDIR}/${py3_sitelib}/numpy/core/include/numpy \
|
||||||
${DESTDIR}/usr/include/python3.4m
|
${DESTDIR}/${py3_inc}
|
||||||
|
|
||||||
# create versioned man pages
|
# create versioned man pages
|
||||||
vman doc/f2py/f2py.1 f2py2.7.1
|
vman doc/f2py/f2py.1 f2py2.1
|
||||||
vman doc/f2py/f2py.1 f2py3.4.1
|
vman doc/f2py/f2py.1 f2py3.1
|
||||||
|
|
||||||
vlicense LICENSE.txt LICENSE
|
vlicense LICENSE.txt LICENSE
|
||||||
}
|
}
|
||||||
|
|
||||||
python3.4-numpy_package() {
|
python3-numpy_package() {
|
||||||
alternatives="
|
alternatives="
|
||||||
numpy:f2py:/usr/bin/f2py3.4
|
numpy:f2py:/usr/bin/f2py3
|
||||||
numpy:f2py.1:/usr/share/man/man1/f2py3.4.1"
|
numpy:f2py.1:/usr/share/man/man1/f2py3.1"
|
||||||
pycompile_version="3.4"
|
|
||||||
pycompile_module="numpy"
|
pycompile_module="numpy"
|
||||||
short_desc="${short_desc/Python2/Python3.4}"
|
replaces="python3.4-numpy>=0"
|
||||||
|
short_desc="${short_desc/Python2/Python3}"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/bin/f2py3.4
|
vmove usr/bin/f2py3
|
||||||
vmove usr/lib/python3.4
|
vmove ${py3_sitelib}
|
||||||
vmove usr/include/python3.4m
|
vmove ${py3_inc}
|
||||||
vmove usr/share/man/man1/f2py3.4.1
|
vmove usr/share/man/man1/f2py3.1
|
||||||
vlicense LICENSE.txt LICENSE
|
vlicense LICENSE.txt LICENSE
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
python3.4-numpy_package() {
|
||||||
|
build_style=meta
|
||||||
|
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
|
||||||
|
depends="python3-numpy>=${version}_${revision}"
|
||||||
|
}
|
||||||
|
|
1
srcpkgs/python3-numpy
Symbolic link
1
srcpkgs/python3-numpy
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
python-numpy
|
Loading…
Reference in a new issue