[Python-modules-commits] [python-dnslib] 03/03: Initial release. (Closes: #856672)

Scott Kitterman kitterman at moszumanska.debian.org
Fri Mar 3 19:50:07 UTC 2017


This is an automated email from the git hooks/post-receive script.

kitterman pushed a commit to branch master
in repository python-dnslib.

commit 167bcbc1a68fce6d699721d6ebf00f42e3bf854e
Author: Scott Kitterman <scott at kitterman.com>
Date:   Fri Mar 3 14:46:31 2017 -0500

    Initial release. (Closes: #856672)
---
 debian/.git-dpm            |  3 +++
 debian/changelog           |  5 +++++
 debian/compat              |  1 +
 debian/control             | 52 ++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright           | 34 ++++++++++++++++++++++++++++++
 debian/python-dnslib.docs  |  1 +
 debian/python3-dnslib.docs |  1 +
 debian/rules               | 10 +++++++++
 debian/watch               |  3 +++
 9 files changed, 110 insertions(+)

diff --git a/debian/.git-dpm b/debian/.git-dpm
index c668d38..af287b2 100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@ -6,3 +6,6 @@
 python-dnslib_0.9.7+hg20170303.orig.tar.gz
 51f2ef5f7a291986ad14302848e8dee78039dee4
 56645
+debianTag="debian/%e%v"
+patchedTag="patched/%e%v"
+upstreamTag="upstream/%e%u"
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..96e754d
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-dnslib (0.9.7+hg20170303-1) unstable; urgency=medium
+
+  * Initial release. (Closes: #856672)
+
+ -- Scott Kitterman <scott at kitterman.com>  Fri, 03 Mar 2017 12:37:55 -0500
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..63e2c84
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,52 @@
+Source: python-dnslib
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Scott Kitterman <scott at kitterman.com>
+Build-Depends:
+ debhelper (>= 9~),
+ dh-python,
+ python-all,
+ python-setuptools,
+ python3-all,
+ python3-setuptools
+Standards-Version: 3.9.8
+Homepage: https://bitbucket.org/paulc/dnslib
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-dnslib.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-dnslib.git
+
+Package: python-dnslib
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python:Depends},
+Description: Module to encode/decode DNS wire-format packets (Python 2)
+ This DNS encode/decode Python module provides:
+ .
+  - Support for encoding/decoding DNS packets between wire format, Python
+    objects, and Zone/DiG textual representation (dnslib.dns)
+  - A server framework allowing the simple creation of custom DNS resolvers
+    (dnslib.server) and a number of example servers created using this
+    framework
+  - A number of utilities for testing (dnslib.client, dnslib.proxy,
+    dnslib.intercept)
+ .
+ This is the Python 2 version of the package.
+
+Package: python3-dnslib
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python3:Depends},
+Description: Module to encode/decode DNS wire-format packets (Python 3)
+ This DNS encode/decode Python 3 module provides:
+ .
+  - Support for encoding/decoding DNS packets between wire format, Python
+    objects, and Zone/DiG textual representation (dnslib.dns)
+  - A server framework allowing the simple creation of custom DNS resolvers
+    (dnslib.server) and a number of example servers created using this
+    framework
+  - A number of utilities for testing (dnslib.client, dnslib.proxy,
+    dnslib.intercept)
+ .
+ This is the Python 3 version of the package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..c402cae
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,34 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: dnslib
+Upstream-Contact:  Paul Chakravarti <paul.chakravarti at gmail.com>
+Source: https://bitbucket.org/paulc/dnslib
+
+Files: *
+Copyright: Copyright (c) 2010 - 2017 Paul Chakravarti.
+License: BSD-2-clause
+
+Files: debian/*
+Copyright: 2017 Scott Kitterman <scott at kitterman.com>
+License: BSD-2-clause
+
+License: BSD-2-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+ 1. Redistributions of source code must retain the above copyright notice,
+    this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright notice,
+    this list of conditions and the following disclaimer in the documentation
+    and/or other materials provided with the distribution.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
diff --git a/debian/python-dnslib.docs b/debian/python-dnslib.docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian/python-dnslib.docs
@@ -0,0 +1 @@
+README
diff --git a/debian/python3-dnslib.docs b/debian/python3-dnslib.docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian/python3-dnslib.docs
@@ -0,0 +1 @@
+README
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..3ac1792
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=dnslib
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_auto_test:
+	./run_tests.sh
+
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..d221438
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/dnslib/dnslib-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-dnslib.git



More information about the Python-modules-commits mailing list