mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
added community/python2-dnspython
This commit is contained in:
parent
d1362cd913
commit
64b85c5f0c
1 changed files with 42 additions and 0 deletions
42
community/python2-dnspython/PKGBUILD
Normal file
42
community/python2-dnspython/PKGBUILD
Normal file
|
@ -0,0 +1,42 @@
|
|||
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||||
# Contributor: Mathijs Kadijk <maccain13@gmail.com>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - add back python2 variant since it's still a dependency for packages
|
||||
|
||||
pkgname=python2-dnspython
|
||||
pkgver=1.16.0
|
||||
pkgrel=3.1
|
||||
pkgdesc="A DNS toolkit for Python"
|
||||
arch=('any')
|
||||
url="http://www.dnspython.org"
|
||||
license=('ISC')
|
||||
makedepends=('python2-setuptools')
|
||||
checkdepends=('python2-idna' 'python2-pycryptodome' 'python2-ecdsa' 'python2-typing')
|
||||
source=("http://www.dnspython.org/kits/${pkgver}/dnspython-${pkgver}.tar.gz"{,.asc})
|
||||
sha256sums=('4bf5c5c12a4478ee7860ab176659cf64c4899ee76752d826b082f8af723c5cf9'
|
||||
'SKIP')
|
||||
validpgpkeys=('A580DEE052FEC78D8ACF383DF24B3AFC8CA2F5C7') # Bob Halley <halley@dnspython.org>
|
||||
|
||||
build() {
|
||||
cd "${srcdir}"/dnspython-${pkgver}
|
||||
|
||||
python2 setup.py build
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "${srcdir}"/dnspython-${pkgver}
|
||||
|
||||
python2 setup.py test
|
||||
}
|
||||
|
||||
package() {
|
||||
depends=('python2')
|
||||
optdepends=('python2-ecdsa: DNSSEC support'
|
||||
'python2-pycryptodome: DNSSEC support'
|
||||
'python2-idna: support for updated IDNA 2008')
|
||||
cd "${srcdir}"/dnspython-${pkgver}
|
||||
|
||||
python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
|
||||
install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
|
||||
}
|
Loading…
Reference in a new issue