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

Felix Yan fyan at archlinux.org
Sat Mar 28 16:22:48 UTC 2015


    Date: Saturday, March 28, 2015 @ 17:22:46
  Author: fyan
Revision: 130145

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

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

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

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2015-03-28 16:22:20 UTC (rev 130144)
+++ community-i686/PKGBUILD	2015-03-28 16:22:46 UTC (rev 130145)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
-# Contributor: Stéphane Gaudreault <stephane at archlinux.org>
-
-pkgbase=python-pyproj
-pkgname=('python-pyproj' 'python2-pyproj')
-pkgver=1.9.3
-pkgrel=4
-pkgdesc="Python interfaces to PROJ.4 library"
-arch=('i686' 'x86_64')
-url="http://code.google.com/p/pyproj"
-license=('custom')
-makedepends=('python' 'python2')
-source=(http://pyproj.googlecode.com/files/pyproj-${pkgver}.tar.gz)
-sha1sums=('3f290241e113ea63d0487a48e7e054cc1c3e19f8')
-
-prepare() {
-  cd "${srcdir}"
-  cp -a pyproj-${pkgver}{,-python2}
-}
-
-build() {
-  cd "${srcdir}"
-
-# Build python 3 module
-  cd pyproj-${pkgver}
-  python3 setup.py build
-
-# Build python 2 module
-  cd ../pyproj-${pkgver}-python2
-  python2 setup.py build
-}
-
-package_python-pyproj() {
-  depends=('proj' 'python>=3.4')
-
-  cd "${srcdir}"/pyproj-${pkgver}
-  python3 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
-
-  install -dm755 "${pkgdir}"/usr/share/licenses/${pkgname}
-  install -m644 LICENSE_proj4 "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python2-pyproj() {
-  depends=('proj' 'python2>=2.7')
-  replaces=('pyproj')
-
-  cd "${srcdir}"/pyproj-${pkgver}-python2
-  python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
-
-  install -dm755 "${pkgdir}"/usr/share/licenses/${pkgname}
-  install -m644 LICENSE_proj4 "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-pyproj/repos/community-i686/PKGBUILD (from rev 130144, python-pyproj/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2015-03-28 16:22:46 UTC (rev 130145)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Stéphane Gaudreault <stephane at archlinux.org>
+
+pkgbase=python-pyproj
+pkgname=('python-pyproj' 'python2-pyproj')
+pkgver=1.9.3
+pkgrel=5
+pkgdesc="Python interfaces to PROJ.4 library"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/pyproj"
+license=('custom')
+makedepends=('python' 'python2')
+source=(http://pyproj.googlecode.com/files/pyproj-${pkgver}.tar.gz)
+sha1sums=('3f290241e113ea63d0487a48e7e054cc1c3e19f8')
+
+prepare() {
+  cd "${srcdir}"
+  cp -a pyproj-${pkgver}{,-python2}
+}
+
+build() {
+  cd "${srcdir}"
+
+# Build python 3 module
+  cd pyproj-${pkgver}
+  python3 setup.py build
+
+# Build python 2 module
+  cd ../pyproj-${pkgver}-python2
+  python2 setup.py build
+}
+
+package_python-pyproj() {
+  depends=('proj' 'python>=3.4')
+
+  cd "${srcdir}"/pyproj-${pkgver}
+  python3 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
+
+  install -dm755 "${pkgdir}"/usr/share/licenses/${pkgname}
+  install -m644 LICENSE_proj4 "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-pyproj() {
+  depends=('proj' 'python2>=2.7')
+  replaces=('pyproj')
+
+  cd "${srcdir}"/pyproj-${pkgver}-python2
+  python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
+
+  install -dm755 "${pkgdir}"/usr/share/licenses/${pkgname}
+  install -m644 LICENSE_proj4 "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2015-03-28 16:22:20 UTC (rev 130144)
+++ community-x86_64/PKGBUILD	2015-03-28 16:22:46 UTC (rev 130145)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
-# Contributor: Stéphane Gaudreault <stephane at archlinux.org>
-
-pkgbase=python-pyproj
-pkgname=('python-pyproj' 'python2-pyproj')
-pkgver=1.9.3
-pkgrel=4
-pkgdesc="Python interfaces to PROJ.4 library"
-arch=('i686' 'x86_64')
-url="http://code.google.com/p/pyproj"
-license=('custom')
-makedepends=('python' 'python2')
-source=(http://pyproj.googlecode.com/files/pyproj-${pkgver}.tar.gz)
-sha1sums=('3f290241e113ea63d0487a48e7e054cc1c3e19f8')
-
-prepare() {
-  cd "${srcdir}"
-  cp -a pyproj-${pkgver}{,-python2}
-}
-
-build() {
-  cd "${srcdir}"
-
-# Build python 3 module
-  cd pyproj-${pkgver}
-  python3 setup.py build
-
-# Build python 2 module
-  cd ../pyproj-${pkgver}-python2
-  python2 setup.py build
-}
-
-package_python-pyproj() {
-  depends=('proj' 'python>=3.4')
-
-  cd "${srcdir}"/pyproj-${pkgver}
-  python3 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
-
-  install -dm755 "${pkgdir}"/usr/share/licenses/${pkgname}
-  install -m644 LICENSE_proj4 "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python2-pyproj() {
-  depends=('proj' 'python2>=2.7')
-  replaces=('pyproj')
-
-  cd "${srcdir}"/pyproj-${pkgver}-python2
-  python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
-
-  install -dm755 "${pkgdir}"/usr/share/licenses/${pkgname}
-  install -m644 LICENSE_proj4 "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-pyproj/repos/community-x86_64/PKGBUILD (from rev 130144, python-pyproj/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2015-03-28 16:22:46 UTC (rev 130145)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Stéphane Gaudreault <stephane at archlinux.org>
+
+pkgbase=python-pyproj
+pkgname=('python-pyproj' 'python2-pyproj')
+pkgver=1.9.3
+pkgrel=5
+pkgdesc="Python interfaces to PROJ.4 library"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/pyproj"
+license=('custom')
+makedepends=('python' 'python2')
+source=(http://pyproj.googlecode.com/files/pyproj-${pkgver}.tar.gz)
+sha1sums=('3f290241e113ea63d0487a48e7e054cc1c3e19f8')
+
+prepare() {
+  cd "${srcdir}"
+  cp -a pyproj-${pkgver}{,-python2}
+}
+
+build() {
+  cd "${srcdir}"
+
+# Build python 3 module
+  cd pyproj-${pkgver}
+  python3 setup.py build
+
+# Build python 2 module
+  cd ../pyproj-${pkgver}-python2
+  python2 setup.py build
+}
+
+package_python-pyproj() {
+  depends=('proj' 'python>=3.4')
+
+  cd "${srcdir}"/pyproj-${pkgver}
+  python3 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
+
+  install -dm755 "${pkgdir}"/usr/share/licenses/${pkgname}
+  install -m644 LICENSE_proj4 "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-pyproj() {
+  depends=('proj' 'python2>=2.7')
+  replaces=('pyproj')
+
+  cd "${srcdir}"/pyproj-${pkgver}-python2
+  python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
+
+  install -dm755 "${pkgdir}"/usr/share/licenses/${pkgname}
+  install -m644 LICENSE_proj4 "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}



More information about the arch-commits mailing list