mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-30 01:52:20 +02:00
A simple library to encode/decode DNS wire-format packets. This was originally written for a custom nameserver. The key classes are: - DNSRecord (contains a DNSHeader and one or more DNSQuestion/DNSRR records) - DNSHeader - DNSQuestion - RR (resource records) - RD (resource data - superclass for TXT,A,AAAA,MX,CNAME,PRT,SOA,NAPTR) - DNSLabel (envelope for a DNS label) Website: https://bitbucket.org/paulc/dnslib/
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-dnslib
|
|
_pkgname=dnslib
|
|
pkgver=0.8.2
|
|
pkgrel=0
|
|
pkgdesc="A simple library to encode/decode DNS wire-format packets"
|
|
url="https://bitbucket.org/paulc/dnslib/"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="python"
|
|
depends_dev=""
|
|
makedepends="python-dev"
|
|
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="a946382e38d382b92cf3a5f253827441 dnslib-0.8.2.tar.gz"
|
|
sha256sums="ae63e795b299286db12df7de443873fe91da6f4195a0cb164f2fc2f9b881f964 dnslib-0.8.2.tar.gz"
|
|
sha512sums="c1753ce95d59322243e857b1481a2b0a6f0a59299df80280c383159e5705a999a5578212a9ee30595e845821f1e8e8edf9883af992193e95debac706eb5e8e3a dnslib-0.8.2.tar.gz"
|