diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2010-05-12 23:30:07 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 23:30:07 +0200 |
commit | 48cd1966b2ac061e87c0561ad7bf60d2d86e3a53 (patch) | |
tree | 509f72c4f5b121de16bdecd0983283c8381a71fb /libraries/dnspython | |
parent | 4f180c271a6bca58ae51d67a5d39c930b42a8dbb (diff) | |
download | slackbuilds-48cd1966b2ac061e87c0561ad7bf60d2d86e3a53.tar.gz |
libraries/dnspython: Added to 12.2 repository
Diffstat (limited to 'libraries/dnspython')
-rw-r--r-- | libraries/dnspython/README | 8 | ||||
-rw-r--r-- | libraries/dnspython/dnspython.SlackBuild | 48 | ||||
-rw-r--r-- | libraries/dnspython/dnspython.info | 8 | ||||
-rw-r--r-- | libraries/dnspython/slack-desc | 19 |
4 files changed, 83 insertions, 0 deletions
diff --git a/libraries/dnspython/README b/libraries/dnspython/README new file mode 100644 index 0000000000..301814f192 --- /dev/null +++ b/libraries/dnspython/README @@ -0,0 +1,8 @@ +dnspython is a DNS toolkit for Python. It supports almost all record +types. It can be used for queries, zone transfers, and dynamic updates. +It supports TSIG authenticated messages and EDNS0. + +dnspython provides both high and low level access to DNS. The high +level classes perform queries for data of a given name, type, and +class, and return an answer set. The low level classes allow direct +manipulation of DNS zones, messages, names, and records.
\ No newline at end of file diff --git a/libraries/dnspython/dnspython.SlackBuild b/libraries/dnspython/dnspython.SlackBuild new file mode 100644 index 0000000000..01ab8c8e0b --- /dev/null +++ b/libraries/dnspython/dnspython.SlackBuild @@ -0,0 +1,48 @@ +#!/bin/sh +# Slackware build script for dnspython +# Written by Larry Hajali <larryhaja[at]gmail[dot]com> + +PRGNAM=dnspython +VERSION=${VERSION:-1.6.0} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-2} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +python setup.py install --root=$PKG + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a ChangeLog LICENSE README TODO $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/libraries/dnspython/dnspython.info b/libraries/dnspython/dnspython.info new file mode 100644 index 0000000000..33f34f1027 --- /dev/null +++ b/libraries/dnspython/dnspython.info @@ -0,0 +1,8 @@ +PRGNAM="dnspython" +VERSION="1.6.0" +HOMEPAGE="http://www.dnspython.org/" +DOWNLOAD="http://www.dnspython.org/kits/1.6.0/dnspython-1.6.0.tar.gz" +MD5SUM="15b8eed42689bd719ec1878a584787ea" +MAINTAINER="Larry Hajali" +EMAIL="larryhaja[at]gmail[dot]com" +APPROVED="dsomero,rworkman" diff --git a/libraries/dnspython/slack-desc b/libraries/dnspython/slack-desc new file mode 100644 index 0000000000..f8f0a9aa01 --- /dev/null +++ b/libraries/dnspython/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' on +# the right side marks the last column you can put a character in. You must make +# exactly 11 lines for the formatting to be correct. It's also customary to +# leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +dnspython: dnspython (Python API for DNS) +dnspython: +dnspython: dnspython is a DNS toolkit for Python. It supports almost all record +dnspython: types. It can be used for queries, zone transfers, and dynamic +dnspython: updates. It supports TSIG authenticated messages and EDNS0. +dnspython: +dnspython: Homepage: http://www.dnspython.org/ +dnspython: +dnspython: +dnspython: +dnspython: |