mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
testing/py-openweather: new aport
Python API wrapper for OpenWeatherMap.org http://github.com/marians/openweather
This commit is contained in:
parent
c21d6c8459
commit
76aa7bb7be
41
testing/py-openweather/APKBUILD
Normal file
41
testing/py-openweather/APKBUILD
Normal file
@ -0,0 +1,41 @@
|
||||
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
pkgname=py-openweather
|
||||
_pkgname=openweather
|
||||
pkgver=0.6
|
||||
pkgrel=0
|
||||
pkgdesc="Python API wrapper for OpenWeatherMap.org"
|
||||
url="http://github.com/marians/openweather"
|
||||
arch="noarch"
|
||||
license="MIT"
|
||||
depends="python py-daterangestr"
|
||||
depends_dev=""
|
||||
makedepends="python-dev py-setuptools"
|
||||
install=""
|
||||
subpackages=""
|
||||
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
||||
|
||||
_builddir="$srcdir"/$_pkgname-$pkgver
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
python setup.py build || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
||||
}
|
||||
|
||||
md5sums="d0db03a46c1f9337aaf572f61e6e1569 openweather-0.6.tar.gz"
|
||||
sha256sums="2a8e9da623bda913bc309a200678388641eb2da2108efccd63c9e3815ddfeef8 openweather-0.6.tar.gz"
|
||||
sha512sums="1f157c04a6d5b0f2175119c9791d93693e2026e78365a448234082902efb5217ff8bce79555355906b40a3a0a0a5c3a1a581455c99795e35099608f69e2a9ef8 openweather-0.6.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user