Add 'python2-pytvmaze/' from commit '1c2efcbba124e73424a0c68d343150c86206be3e'

git-subtree-dir: python2-pytvmaze
git-subtree-mainline: 84de3d09aa
git-subtree-split: 1c2efcbba1
This commit is contained in:
Cedric Girard 2019-02-14 15:30:14 +01:00
commit dd7e849115
2 changed files with 33 additions and 0 deletions

15
python2-pytvmaze/.SRCINFO Normal file
View File

@ -0,0 +1,15 @@
pkgbase = python2-pytvmaze
pkgdesc = Python interface to the TV Maze API
pkgver = 2.0.8
pkgrel = 1
url = http://pypi.python.org/pypi/pytvmaze
arch = any
license = MIT
makedepends = python2-distribute
depends = python2
depends = python2-requests
source = https://pypi.io/packages/source/p/pytvmaze/pytvmaze-2.0.8.tar.gz
md5sums = 562f807f97b1c626d9d9ab090195ba7b
pkgname = python2-pytvmaze

18
python2-pytvmaze/PKGBUILD Normal file
View File

@ -0,0 +1,18 @@
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
pkgname=python2-pytvmaze
_pkgname=pytvmaze
pkgver=2.0.8
pkgrel=1
pkgdesc="Python interface to the TV Maze API "
arch=(any)
url="http://pypi.python.org/pypi/pytvmaze"
license=(MIT)
depends=('python2' 'python2-requests')
makedepends=(python2-distribute)
source=("https://pypi.io/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz")
md5sums=('562f807f97b1c626d9d9ab090195ba7b')
package() {
cd "$srcdir/$_pkgname-$pkgver"
python2 setup.py install --root="$pkgdir/" --optimize=1
}