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

Jaroslav Lichtblau jlichtblau at archlinux.org
Mon Mar 7 18:14:37 UTC 2016


    Date: Monday, March 7, 2016 @ 19:14:36
  Author: jlichtblau
Revision: 165533

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

Added:
  python-scikit-image/repos/community-i686/PKGBUILD
    (from rev 165532, python-scikit-image/trunk/PKGBUILD)
  python-scikit-image/repos/community-x86_64/PKGBUILD
    (from rev 165532, python-scikit-image/trunk/PKGBUILD)
Deleted:
  python-scikit-image/repos/community-i686/PKGBUILD
  python-scikit-image/repos/community-x86_64/PKGBUILD

---------------------------+
 /PKGBUILD                 |  130 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD   |   66 ----------------------
 community-x86_64/PKGBUILD |   66 ----------------------
 3 files changed, 130 insertions(+), 132 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-03-07 18:14:12 UTC (rev 165532)
+++ community-i686/PKGBUILD	2016-03-07 18:14:36 UTC (rev 165533)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz <gginiu at gmail.com>
-
-#TODO (AUR optdepends): PyAMG, Astropy, SimpleITK, imread
-
-pkgbase=python-scikit-image
-pkgname=('python2-scikit-image' 'python-scikit-image')
-pkgver=0.11.3
-pkgrel=2
-pkgdesc="Image processing routines for SciPy"
-arch=('i686' 'x86_64')
-url="http://scikit-image.org/"
-license=('BSD')
-makedepends=('cython2' 'cython' 'python2-six' 'python-six'
-             'python2-scipy' 'python-scipy' 'python2-matplotlib' 'python-matplotlib'
-             'python2-networkx' 'python-networkx' 'python2-pillow' 'python-pillow')
-options=(!emptydirs)
-
-source=("https://pypi.python.org/packages/source/s/scikit-image/scikit-image-${pkgver}.tar.gz")
-md5sums=('5cd60fe78adbe30254a87081f12500f9')
-
-prepare() {
-  cd "$srcdir"
-  cp -a scikit-image-$pkgver scikit-image-py2-$pkgver
-  cd scikit-image-py2-$pkgver
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-      -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-      -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-      -i $(find . -name '*.py')
-}
-
-build() {
-  msg "Building Python2"
-  cd "$srcdir"/scikit-image-py2-$pkgver
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/scikit-image-$pkgver
-  python setup.py build
-}
-
-package_python2-scikit-image() {
-  depends=('python2-scipy' 'python2-matplotlib' 'python2-networkx' 'python2-pillow')
-  optdepends=('python2-pyqt4: for imshow(x, fancy=True) and skivi'
-              'freeimage: for reading various types of image file formats')
-  cd "$srcdir"/scikit-image-py2-$pkgver
-
-  python2 setup.py install --root="$pkgdir"/ --optimize=1
-
-  mv "$pkgdir"/usr/bin/skivi "$pkgdir"/usr/bin/skivi2
-
-  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-scikit-image() {
-  depends=('python-scipy' 'python-matplotlib' 'python-networkx' 'python-pillow')
-  optdepends=('python-pyqt4: for imshow(x, fancy=True) and skivi'
-              'freeimage: for reading various types of image file formats')
-  cd "$srcdir"/scikit-image-$pkgver
-
-  python setup.py install --root="$pkgdir"/ --optimize=1
-
-  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-scikit-image/repos/community-i686/PKGBUILD (from rev 165532, python-scikit-image/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-03-07 18:14:36 UTC (rev 165533)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Andrzej Giniewicz <gginiu at gmail.com>
+
+#TODO (AUR optdepends): PyAMG, Astropy, SimpleITK, imread
+
+pkgbase=python-scikit-image
+pkgname=('python2-scikit-image' 'python-scikit-image')
+pkgver=0.12.1
+pkgrel=1
+pkgdesc="Image processing routines for SciPy"
+arch=('i686' 'x86_64')
+url="http://scikit-image.org/"
+license=('BSD')
+makedepends=('cython2' 'cython' 'python2-six' 'python-six' 'python2-scipy' 'python-scipy' 'python2-matplotlib'
+             'python-matplotlib' 'python2-networkx' 'python-networkx' 'python2-pillow' 'python-pillow')
+options=(!emptydirs)
+source=(https://pypi.python.org/packages/source/s/scikit-image/scikit-image-${pkgver}.tar.gz)
+sha256sums=('ae1ecc557c74b62d1f7a23d1204a46c760ea9f652db1302449b6a63630520056')
+
+prepare() {
+  cd "$srcdir"
+  cp -a scikit-image-$pkgver scikit-image-py2-$pkgver
+  cd scikit-image-py2-$pkgver
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+      -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+      -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+      -i $(find . -name '*.py')
+}
+
+build() {
+  msg "Building Python2"
+  cd "$srcdir"/scikit-image-py2-$pkgver
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/scikit-image-$pkgver
+  python setup.py build
+}
+
+package_python2-scikit-image() {
+  depends=('python2-scipy' 'python2-matplotlib' 'python2-networkx' 'python2-pillow')
+  optdepends=('python2-pyqt4: for imshow(x, fancy=True) and skivi'
+              'freeimage: for reading various types of image file formats')
+  cd "$srcdir"/scikit-image-py2-$pkgver
+
+  python2 setup.py install --root="$pkgdir"/ --optimize=1
+
+  mv "$pkgdir"/usr/bin/skivi "$pkgdir"/usr/bin/skivi2
+
+  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-scikit-image() {
+  depends=('python-scipy' 'python-matplotlib' 'python-networkx' 'python-pillow')
+  optdepends=('python-pyqt4: for imshow(x, fancy=True) and skivi'
+              'freeimage: for reading various types of image file formats')
+  cd "$srcdir"/scikit-image-$pkgver
+
+  python setup.py install --root="$pkgdir"/ --optimize=1
+
+  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2016-03-07 18:14:12 UTC (rev 165532)
+++ community-x86_64/PKGBUILD	2016-03-07 18:14:36 UTC (rev 165533)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz <gginiu at gmail.com>
-
-#TODO (AUR optdepends): PyAMG, Astropy, SimpleITK, imread
-
-pkgbase=python-scikit-image
-pkgname=('python2-scikit-image' 'python-scikit-image')
-pkgver=0.11.3
-pkgrel=2
-pkgdesc="Image processing routines for SciPy"
-arch=('i686' 'x86_64')
-url="http://scikit-image.org/"
-license=('BSD')
-makedepends=('cython2' 'cython' 'python2-six' 'python-six'
-             'python2-scipy' 'python-scipy' 'python2-matplotlib' 'python-matplotlib'
-             'python2-networkx' 'python-networkx' 'python2-pillow' 'python-pillow')
-options=(!emptydirs)
-
-source=("https://pypi.python.org/packages/source/s/scikit-image/scikit-image-${pkgver}.tar.gz")
-md5sums=('5cd60fe78adbe30254a87081f12500f9')
-
-prepare() {
-  cd "$srcdir"
-  cp -a scikit-image-$pkgver scikit-image-py2-$pkgver
-  cd scikit-image-py2-$pkgver
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-      -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-      -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-      -i $(find . -name '*.py')
-}
-
-build() {
-  msg "Building Python2"
-  cd "$srcdir"/scikit-image-py2-$pkgver
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/scikit-image-$pkgver
-  python setup.py build
-}
-
-package_python2-scikit-image() {
-  depends=('python2-scipy' 'python2-matplotlib' 'python2-networkx' 'python2-pillow')
-  optdepends=('python2-pyqt4: for imshow(x, fancy=True) and skivi'
-              'freeimage: for reading various types of image file formats')
-  cd "$srcdir"/scikit-image-py2-$pkgver
-
-  python2 setup.py install --root="$pkgdir"/ --optimize=1
-
-  mv "$pkgdir"/usr/bin/skivi "$pkgdir"/usr/bin/skivi2
-
-  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-scikit-image() {
-  depends=('python-scipy' 'python-matplotlib' 'python-networkx' 'python-pillow')
-  optdepends=('python-pyqt4: for imshow(x, fancy=True) and skivi'
-              'freeimage: for reading various types of image file formats')
-  cd "$srcdir"/scikit-image-$pkgver
-
-  python setup.py install --root="$pkgdir"/ --optimize=1
-
-  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-scikit-image/repos/community-x86_64/PKGBUILD (from rev 165532, python-scikit-image/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-03-07 18:14:36 UTC (rev 165533)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Andrzej Giniewicz <gginiu at gmail.com>
+
+#TODO (AUR optdepends): PyAMG, Astropy, SimpleITK, imread
+
+pkgbase=python-scikit-image
+pkgname=('python2-scikit-image' 'python-scikit-image')
+pkgver=0.12.1
+pkgrel=1
+pkgdesc="Image processing routines for SciPy"
+arch=('i686' 'x86_64')
+url="http://scikit-image.org/"
+license=('BSD')
+makedepends=('cython2' 'cython' 'python2-six' 'python-six' 'python2-scipy' 'python-scipy' 'python2-matplotlib'
+             'python-matplotlib' 'python2-networkx' 'python-networkx' 'python2-pillow' 'python-pillow')
+options=(!emptydirs)
+source=(https://pypi.python.org/packages/source/s/scikit-image/scikit-image-${pkgver}.tar.gz)
+sha256sums=('ae1ecc557c74b62d1f7a23d1204a46c760ea9f652db1302449b6a63630520056')
+
+prepare() {
+  cd "$srcdir"
+  cp -a scikit-image-$pkgver scikit-image-py2-$pkgver
+  cd scikit-image-py2-$pkgver
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+      -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+      -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+      -i $(find . -name '*.py')
+}
+
+build() {
+  msg "Building Python2"
+  cd "$srcdir"/scikit-image-py2-$pkgver
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/scikit-image-$pkgver
+  python setup.py build
+}
+
+package_python2-scikit-image() {
+  depends=('python2-scipy' 'python2-matplotlib' 'python2-networkx' 'python2-pillow')
+  optdepends=('python2-pyqt4: for imshow(x, fancy=True) and skivi'
+              'freeimage: for reading various types of image file formats')
+  cd "$srcdir"/scikit-image-py2-$pkgver
+
+  python2 setup.py install --root="$pkgdir"/ --optimize=1
+
+  mv "$pkgdir"/usr/bin/skivi "$pkgdir"/usr/bin/skivi2
+
+  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-scikit-image() {
+  depends=('python-scipy' 'python-matplotlib' 'python-networkx' 'python-pillow')
+  optdepends=('python-pyqt4: for imshow(x, fancy=True) and skivi'
+              'freeimage: for reading various types of image file formats')
+  cd "$srcdir"/scikit-image-$pkgver
+
+  python setup.py install --root="$pkgdir"/ --optimize=1
+
+  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+



More information about the arch-commits mailing list