Add 'python-pynzb/' from commit '762aaa2ec59bb7bcdf7f112bc1c729d2da423552'

git-subtree-dir: python-pynzb
git-subtree-mainline: e70f2e21ac
git-subtree-split: 762aaa2ec5
This commit is contained in:
Cedric Girard 2019-02-14 15:26:54 +01:00
commit 66dcd20d52
2 changed files with 44 additions and 0 deletions

17
python-pynzb/.SRCINFO Normal file
View File

@ -0,0 +1,17 @@
pkgbase = python-pynzb
pkgdesc = A unified API for parsing NZB files
pkgver = 0.1.0
pkgrel = 1
url = http://pypi.python.org/pypi/pynzb/
arch = any
license = BSD
makedepends = python-distribute
depends = python
depends = expat
optdepends = python-lxml: Use lxml instead of expat
conflicts = pynzb
source = https://files.pythonhosted.org/packages/source/p/pynzb/pynzb-0.1.0.tar.gz
md5sums = 63c74a36348ac28aa99732dcb8be8c59
pkgname = python-pynzb

27
python-pynzb/PKGBUILD Normal file
View File

@ -0,0 +1,27 @@
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
# Contributor: vorpalblade77@gmail.com
# Contributor: Daniel Neve <the.mephit@googlemail.com>
# Contributor: Eduardo Parra Mazuecos <eduparra90@gmail.com>
_name=pynzb
pkgname=python-$_name
pkgver=0.1.0
pkgrel=1
pkgdesc="A unified API for parsing NZB files"
arch=('any')
url="http://pypi.python.org/pypi/pynzb/"
license=('BSD')
depends=('python' 'expat')
makedepends=('python-distribute')
conflicts=('pynzb')
optdepends=('python-lxml: Use lxml instead of expat')
source=(https://files.pythonhosted.org/packages/source/${_name:0:1}/${_name}/${_name}-${pkgver}.tar.gz)
md5sums=('63c74a36348ac28aa99732dcb8be8c59')
build() {
cd "$srcdir/${_name}-$pkgver"
python setup.py build
}
package() {
cd "$srcdir/${_name}-$pkgver"
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}