[arch-commits] Commit in python-scipy/repos (4 files)

Jelle van der Waa jelle at nymeria.archlinux.org
Mon Nov 18 16:13:24 UTC 2013


    Date: Monday, November 18, 2013 @ 17:13:24
  Author: jelle
Revision: 101158

archrelease: copy trunk to community-i686, community-x86_64

Added:
  python-scipy/repos/community-i686/PKGBUILD
    (from rev 101157, python-scipy/trunk/PKGBUILD)
  python-scipy/repos/community-x86_64/PKGBUILD
    (from rev 101157, python-scipy/trunk/PKGBUILD)
Deleted:
  python-scipy/repos/community-i686/PKGBUILD
  python-scipy/repos/community-x86_64/PKGBUILD

---------------------------+
 /PKGBUILD                 |  166 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD   |   83 ----------------------
 community-x86_64/PKGBUILD |   83 ----------------------
 3 files changed, 166 insertions(+), 166 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-11-18 16:12:25 UTC (rev 101157)
+++ community-i686/PKGBUILD	2013-11-18 16:13:24 UTC (rev 101158)
@@ -1,83 +0,0 @@
-# Maintainer: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
-# Contributor: Ray Rashif <schiv at archlinux.org>
-# Contributor: Douglas Soares de Andrade <dsa at aur.archlinux.org>
-# Contributor: Bodor Dávid Gábor <david.gabor.bodor at gmail.com>
-# Contributor: Andrzej Giniewicz <gginiu at gmail.com>
-
-pkgname=('python-scipy' 'python2-scipy')
-pkgver=0.13.0
-pkgrel=1
-pkgdesc="SciPy is open-source software for mathematics, science, and engineering."
-arch=('i686' 'x86_64')
-url="http://www.scipy.org/"
-license=('BSD')
-makedepends=('gcc-fortran' 'python-numpy' 'python2-numpy' 'python-setuptools' 'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose')
-source=("https://pypi.python.org/packages/source/s/scipy/scipy-${pkgver}.tar.gz")
-md5sums=('ffa1e9bfd2bbdf3f17f4cf8139084098')
-
-build() {
-  # Changing the arithmetic parameter (Thanks to Fabrizio Castellano)
-#  sed -i "s/\#define\ UNK\ 1/\#define\ IBMPC\ 1/" \
-#    scipy-${pkgver}/scipy/special/cephes/mconf.h
-  export LDFLAGS="-Wall -shared"
-
-  # 2 builds
-  cp -r scipy-${pkgver} scipy-${pkgver}-py2
-
-  # build for python3
-  cd scipy-${pkgver}
-  python3 setup.py config_fc --fcompiler=gnu95 build
-
-  # build for python2
-  cd ../scipy-${pkgver}-py2
-
-  for file in $(find . -name '*.py' -print); do
-       sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
-       sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
-  done
-
-  python2 setup.py config_fc --fcompiler=gnu95 build
-}
-
-check() {
-  cd scipy-${pkgver}
-# figure out how to run tests in the source tree easily
-#  python -c "from scipy import test; test('full')"
-#  python setup.py test
-
-  cd ../scipy-${pkgver}-py2
-# figure out how to run tests in the source tree easily
-#  python2 -c "from scipy import test; test('full')"
-}
-
-package_python-scipy() {
-  depends=('python-numpy')
-  provides=('python3-scipy' 'scipy')
-
-  cd scipy-${pkgver}
-  export LDFLAGS="-Wall -shared"
-
-  python3 setup.py config_fc --fcompiler=gnu95 install \
-    --prefix=/usr --root=${pkgdir} --optimize=1
-
-  install -Dm644 LICENSE.txt \
-    "${pkgdir}/usr/share/licenses/python-scipy/LICENSE"
-}
-
-package_python2-scipy() {
-  depends=('python2-numpy')
-  conflicts=('python-scipy<0.9.0')
-
-  cd scipy-${pkgver}-py2
-  export LDFLAGS="-Wall -shared"
-
-  python2 setup.py config_fc --fcompiler=gnu95 install \
-    --prefix=/usr --root=${pkgdir} --optimize=1
-
-  install -Dm644 LICENSE.txt \
-    "${pkgdir}/usr/share/licenses/python2-scipy/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-scipy/repos/community-i686/PKGBUILD (from rev 101157, python-scipy/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-11-18 16:13:24 UTC (rev 101158)
@@ -0,0 +1,83 @@
+# Maintainer: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
+# Contributor: Ray Rashif <schiv at archlinux.org>
+# Contributor: Douglas Soares de Andrade <dsa at aur.archlinux.org>
+# Contributor: Bodor Dávid Gábor <david.gabor.bodor at gmail.com>
+# Contributor: Andrzej Giniewicz <gginiu at gmail.com>
+
+pkgname=('python-scipy' 'python2-scipy')
+pkgver=0.13.1
+pkgrel=1
+pkgdesc="SciPy is open-source software for mathematics, science, and engineering."
+arch=('i686' 'x86_64')
+url="http://www.scipy.org/"
+license=('BSD')
+makedepends=('gcc-fortran' 'python-numpy' 'python2-numpy' 'python-setuptools' 'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose')
+source=("https://pypi.python.org/packages/source/s/scipy/scipy-${pkgver}.tar.gz")
+md5sums=('e082fe358a2b39cff235e5af4240f5a5')
+
+build() {
+  # Changing the arithmetic parameter (Thanks to Fabrizio Castellano)
+#  sed -i "s/\#define\ UNK\ 1/\#define\ IBMPC\ 1/" \
+#    scipy-${pkgver}/scipy/special/cephes/mconf.h
+  export LDFLAGS="-Wall -shared"
+
+  # 2 builds
+  cp -r scipy-${pkgver} scipy-${pkgver}-py2
+
+  # build for python3
+  cd scipy-${pkgver}
+  python3 setup.py config_fc --fcompiler=gnu95 build
+
+  # build for python2
+  cd ../scipy-${pkgver}-py2
+
+  for file in $(find . -name '*.py' -print); do
+       sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
+       sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
+  done
+
+  python2 setup.py config_fc --fcompiler=gnu95 build
+}
+
+check() {
+  cd scipy-${pkgver}
+# figure out how to run tests in the source tree easily
+#  python -c "from scipy import test; test('full')"
+#  python setup.py test
+
+  cd ../scipy-${pkgver}-py2
+# figure out how to run tests in the source tree easily
+#  python2 -c "from scipy import test; test('full')"
+}
+
+package_python-scipy() {
+  depends=('python-numpy')
+  provides=('python3-scipy' 'scipy')
+
+  cd scipy-${pkgver}
+  export LDFLAGS="-Wall -shared"
+
+  python3 setup.py config_fc --fcompiler=gnu95 install \
+    --prefix=/usr --root=${pkgdir} --optimize=1
+
+  install -Dm644 LICENSE.txt \
+    "${pkgdir}/usr/share/licenses/python-scipy/LICENSE"
+}
+
+package_python2-scipy() {
+  depends=('python2-numpy')
+  conflicts=('python-scipy<0.9.0')
+
+  cd scipy-${pkgver}-py2
+  export LDFLAGS="-Wall -shared"
+
+  python2 setup.py config_fc --fcompiler=gnu95 install \
+    --prefix=/usr --root=${pkgdir} --optimize=1
+
+  install -Dm644 LICENSE.txt \
+    "${pkgdir}/usr/share/licenses/python2-scipy/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-11-18 16:12:25 UTC (rev 101157)
+++ community-x86_64/PKGBUILD	2013-11-18 16:13:24 UTC (rev 101158)
@@ -1,83 +0,0 @@
-# Maintainer: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
-# Contributor: Ray Rashif <schiv at archlinux.org>
-# Contributor: Douglas Soares de Andrade <dsa at aur.archlinux.org>
-# Contributor: Bodor Dávid Gábor <david.gabor.bodor at gmail.com>
-# Contributor: Andrzej Giniewicz <gginiu at gmail.com>
-
-pkgname=('python-scipy' 'python2-scipy')
-pkgver=0.13.0
-pkgrel=1
-pkgdesc="SciPy is open-source software for mathematics, science, and engineering."
-arch=('i686' 'x86_64')
-url="http://www.scipy.org/"
-license=('BSD')
-makedepends=('gcc-fortran' 'python-numpy' 'python2-numpy' 'python-setuptools' 'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose')
-source=("https://pypi.python.org/packages/source/s/scipy/scipy-${pkgver}.tar.gz")
-md5sums=('ffa1e9bfd2bbdf3f17f4cf8139084098')
-
-build() {
-  # Changing the arithmetic parameter (Thanks to Fabrizio Castellano)
-#  sed -i "s/\#define\ UNK\ 1/\#define\ IBMPC\ 1/" \
-#    scipy-${pkgver}/scipy/special/cephes/mconf.h
-  export LDFLAGS="-Wall -shared"
-
-  # 2 builds
-  cp -r scipy-${pkgver} scipy-${pkgver}-py2
-
-  # build for python3
-  cd scipy-${pkgver}
-  python3 setup.py config_fc --fcompiler=gnu95 build
-
-  # build for python2
-  cd ../scipy-${pkgver}-py2
-
-  for file in $(find . -name '*.py' -print); do
-       sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
-       sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
-  done
-
-  python2 setup.py config_fc --fcompiler=gnu95 build
-}
-
-check() {
-  cd scipy-${pkgver}
-# figure out how to run tests in the source tree easily
-#  python -c "from scipy import test; test('full')"
-#  python setup.py test
-
-  cd ../scipy-${pkgver}-py2
-# figure out how to run tests in the source tree easily
-#  python2 -c "from scipy import test; test('full')"
-}
-
-package_python-scipy() {
-  depends=('python-numpy')
-  provides=('python3-scipy' 'scipy')
-
-  cd scipy-${pkgver}
-  export LDFLAGS="-Wall -shared"
-
-  python3 setup.py config_fc --fcompiler=gnu95 install \
-    --prefix=/usr --root=${pkgdir} --optimize=1
-
-  install -Dm644 LICENSE.txt \
-    "${pkgdir}/usr/share/licenses/python-scipy/LICENSE"
-}
-
-package_python2-scipy() {
-  depends=('python2-numpy')
-  conflicts=('python-scipy<0.9.0')
-
-  cd scipy-${pkgver}-py2
-  export LDFLAGS="-Wall -shared"
-
-  python2 setup.py config_fc --fcompiler=gnu95 install \
-    --prefix=/usr --root=${pkgdir} --optimize=1
-
-  install -Dm644 LICENSE.txt \
-    "${pkgdir}/usr/share/licenses/python2-scipy/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-scipy/repos/community-x86_64/PKGBUILD (from rev 101157, python-scipy/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-11-18 16:13:24 UTC (rev 101158)
@@ -0,0 +1,83 @@
+# Maintainer: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
+# Contributor: Ray Rashif <schiv at archlinux.org>
+# Contributor: Douglas Soares de Andrade <dsa at aur.archlinux.org>
+# Contributor: Bodor Dávid Gábor <david.gabor.bodor at gmail.com>
+# Contributor: Andrzej Giniewicz <gginiu at gmail.com>
+
+pkgname=('python-scipy' 'python2-scipy')
+pkgver=0.13.1
+pkgrel=1
+pkgdesc="SciPy is open-source software for mathematics, science, and engineering."
+arch=('i686' 'x86_64')
+url="http://www.scipy.org/"
+license=('BSD')
+makedepends=('gcc-fortran' 'python-numpy' 'python2-numpy' 'python-setuptools' 'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose')
+source=("https://pypi.python.org/packages/source/s/scipy/scipy-${pkgver}.tar.gz")
+md5sums=('e082fe358a2b39cff235e5af4240f5a5')
+
+build() {
+  # Changing the arithmetic parameter (Thanks to Fabrizio Castellano)
+#  sed -i "s/\#define\ UNK\ 1/\#define\ IBMPC\ 1/" \
+#    scipy-${pkgver}/scipy/special/cephes/mconf.h
+  export LDFLAGS="-Wall -shared"
+
+  # 2 builds
+  cp -r scipy-${pkgver} scipy-${pkgver}-py2
+
+  # build for python3
+  cd scipy-${pkgver}
+  python3 setup.py config_fc --fcompiler=gnu95 build
+
+  # build for python2
+  cd ../scipy-${pkgver}-py2
+
+  for file in $(find . -name '*.py' -print); do
+       sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
+       sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
+  done
+
+  python2 setup.py config_fc --fcompiler=gnu95 build
+}
+
+check() {
+  cd scipy-${pkgver}
+# figure out how to run tests in the source tree easily
+#  python -c "from scipy import test; test('full')"
+#  python setup.py test
+
+  cd ../scipy-${pkgver}-py2
+# figure out how to run tests in the source tree easily
+#  python2 -c "from scipy import test; test('full')"
+}
+
+package_python-scipy() {
+  depends=('python-numpy')
+  provides=('python3-scipy' 'scipy')
+
+  cd scipy-${pkgver}
+  export LDFLAGS="-Wall -shared"
+
+  python3 setup.py config_fc --fcompiler=gnu95 install \
+    --prefix=/usr --root=${pkgdir} --optimize=1
+
+  install -Dm644 LICENSE.txt \
+    "${pkgdir}/usr/share/licenses/python-scipy/LICENSE"
+}
+
+package_python2-scipy() {
+  depends=('python2-numpy')
+  conflicts=('python-scipy<0.9.0')
+
+  cd scipy-${pkgver}-py2
+  export LDFLAGS="-Wall -shared"
+
+  python2 setup.py config_fc --fcompiler=gnu95 install \
+    --prefix=/usr --root=${pkgdir} --optimize=1
+
+  install -Dm644 LICENSE.txt \
+    "${pkgdir}/usr/share/licenses/python2-scipy/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:




More information about the arch-commits mailing list