From 1c67808a860dff59457d49effaf02fcf0d0448ef Mon Sep 17 00:00:00 2001 From: Omar Vega Ramos Date: Wed, 18 May 2016 12:29:23 -0500 Subject: python-owslib: add new package to [pcr] (required by qgis) --- pcr/python-owslib/PKGBUILD | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 pcr/python-owslib/PKGBUILD (limited to 'pcr/python-owslib/PKGBUILD') diff --git a/pcr/python-owslib/PKGBUILD b/pcr/python-owslib/PKGBUILD new file mode 100644 index 000000000..32efd8620 --- /dev/null +++ b/pcr/python-owslib/PKGBUILD @@ -0,0 +1,35 @@ +# Maintainer (Arch): Doug Newgard +# Maintainer: Omar Vega Ramos + +pkgbase=python-owslib +pkgname=('python-owslib' 'python2-owslib') +pkgver=0.11.2 +pkgrel=1 +arch=('any') +url='http://geopython.github.io/OWSLib' +license=('BSD') +makedepends=('python-setuptools' 'python2-setuptools') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/geopython/OWSLib/archive/$pkgver.tar.gz") +sha256sums=('df3a3a40b57b9b53c1dfbc8b27388453e2f92ed008fadda883a8376d67882a6a') + +package_python-owslib() { + pkgdesc='Python package for client programming with Open Geospatial Consortium (OGC) web service interface standards, and their related content models' + depends=('python-dateutil' 'python-pytz' 'python-requests' 'python-pyproj') + + cd OWSLib-$pkgver + + python setup.py install --root="$pkgdir" --optimize=1 + + install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt" +} + +package_python2-owslib() { + pkgdesc='Python2 package for client programming with Open Geospatial Consortium (OGC) web service interface standards, and their related content models' + depends=('python2-dateutil' 'python2-pytz' 'python2-requests' 'python2-pyproj') + + cd OWSLib-$pkgver + + python2 setup.py install --root="$pkgdir" --optimize=1 + + install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt" +} -- cgit v1.2.3-2-g168b