[Python-modules-commits] r22065 - in packages/python3-dnspython/dnspython3/trunk (12 files)
grantma at users.alioth.debian.org
grantma at users.alioth.debian.org
Tue Jun 5 02:54:02 UTC 2012
Date: Tuesday, June 5, 2012 @ 02:54:01
Author: grantma
Revision: 22065
[svn-inject] Applying Debian modifications (1.10.0) to trunk
Added:
packages/python3-dnspython/dnspython3/trunk/debian/
packages/python3-dnspython/dnspython3/trunk/debian/changelog
packages/python3-dnspython/dnspython3/trunk/debian/compat
packages/python3-dnspython/dnspython3/trunk/debian/control
packages/python3-dnspython/dnspython3/trunk/debian/copyright
packages/python3-dnspython/dnspython3/trunk/debian/docs
packages/python3-dnspython/dnspython3/trunk/debian/examples
packages/python3-dnspython/dnspython3/trunk/debian/rules
packages/python3-dnspython/dnspython3/trunk/debian/source/
packages/python3-dnspython/dnspython3/trunk/debian/source/format
packages/python3-dnspython/dnspython3/trunk/debian/source/options
packages/python3-dnspython/dnspython3/trunk/debian/watch
Property changes on: packages/python3-dnspython/dnspython3/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/python3-dnspython/dnspython3/trunk/debian/changelog
===================================================================
--- packages/python3-dnspython/dnspython3/trunk/debian/changelog (rev 0)
+++ packages/python3-dnspython/dnspython3/trunk/debian/changelog 2012-06-05 02:54:01 UTC (rev 22065)
@@ -0,0 +1,5 @@
+dnspython3 (1.10.0) unstable; urgency=low
+
+ * New upstream release with Python3 support.
+
+ -- Matthew Grant <matthewgrant5 at gmain.com> Tue, 05 Jun 2012 14:02:20 +1200
Added: packages/python3-dnspython/dnspython3/trunk/debian/compat
===================================================================
--- packages/python3-dnspython/dnspython3/trunk/debian/compat (rev 0)
+++ packages/python3-dnspython/dnspython3/trunk/debian/compat 2012-06-05 02:54:01 UTC (rev 22065)
@@ -0,0 +1 @@
+9
Added: packages/python3-dnspython/dnspython3/trunk/debian/control
===================================================================
--- packages/python3-dnspython/dnspython3/trunk/debian/control (rev 0)
+++ packages/python3-dnspython/dnspython3/trunk/debian/control 2012-06-05 02:54:01 UTC (rev 22065)
@@ -0,0 +1,24 @@
+Source: dnspython3
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Matthew Grant <matthewgrant5 at gmail.com>
+Build-Depends: debhelper (>= 9.20120528), python3-all-dev (>= 3.2)
+Standards-Version: 3.9.3
+X-Python3-Version: >= 3.2
+
+Package: python3-dnspython
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: DNS toolkit for Python (Python 3)
+ 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.
+ .
+ This is the Python 3 version, which is a seperate source tree to the Python 2
+ version.
Added: packages/python3-dnspython/dnspython3/trunk/debian/copyright
===================================================================
--- packages/python3-dnspython/dnspython3/trunk/debian/copyright (rev 0)
+++ packages/python3-dnspython/dnspython3/trunk/debian/copyright 2012-06-05 02:54:01 UTC (rev 22065)
@@ -0,0 +1,27 @@
+This package was debianized by Matthew Grant <mattthewgrant5 at debian.org> on
+Tue, 05 Jun 2012 12:10:46 +1200
+
+Based on packaging for python-dnspython:
+
+Florian Ragwitz <rafl at debianforum.de> on Sat, 22 Oct 2005 20:53:19 +0200.
+
+It was downloaded from http://dnspython.org/
+
+Upstream Author: Bob Halley <halley at dnspython.org>
+
+License:
+
+Copyright (C) 2001-2005 Nominum, Inc.
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose with or without fee is hereby granted,
+provided that the above copyright notice and this permission notice
+appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Added: packages/python3-dnspython/dnspython3/trunk/debian/docs
===================================================================
--- packages/python3-dnspython/dnspython3/trunk/debian/docs (rev 0)
+++ packages/python3-dnspython/dnspython3/trunk/debian/docs 2012-06-05 02:54:01 UTC (rev 22065)
@@ -0,0 +1 @@
+README
Added: packages/python3-dnspython/dnspython3/trunk/debian/examples
===================================================================
--- packages/python3-dnspython/dnspython3/trunk/debian/examples (rev 0)
+++ packages/python3-dnspython/dnspython3/trunk/debian/examples 2012-06-05 02:54:01 UTC (rev 22065)
@@ -0,0 +1 @@
+examples/*
Added: packages/python3-dnspython/dnspython3/trunk/debian/rules
===================================================================
--- packages/python3-dnspython/dnspython3/trunk/debian/rules (rev 0)
+++ packages/python3-dnspython/dnspython3/trunk/debian/rules 2012-06-05 02:54:01 UTC (rev 22065)
@@ -0,0 +1,22 @@
+#!/usr/bin/make -f
+#export DH_VERBOSE=1
+
+PYTHON3:=$(shell py3versions -vr)
+
+%:
+ dh $@ --with python3
+
+build-python%:
+ python$* setup.py build
+
+override_dh_auto_build: $(PYTHON3:%=build-python%)
+
+install-python%:
+ python$* setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb
+
+override_dh_auto_install: $(PYTHON3:%=install-python%)
+
+override_dh_auto_clean:
+ dh_auto_clean
+ rm -rf build
+ rm -rf *.egg-info
Property changes on: packages/python3-dnspython/dnspython3/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/python3-dnspython/dnspython3/trunk/debian/source/format
===================================================================
--- packages/python3-dnspython/dnspython3/trunk/debian/source/format (rev 0)
+++ packages/python3-dnspython/dnspython3/trunk/debian/source/format 2012-06-05 02:54:01 UTC (rev 22065)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/python3-dnspython/dnspython3/trunk/debian/source/options
===================================================================
--- packages/python3-dnspython/dnspython3/trunk/debian/source/options (rev 0)
+++ packages/python3-dnspython/dnspython3/trunk/debian/source/options 2012-06-05 02:54:01 UTC (rev 22065)
@@ -0,0 +1 @@
+single-debian-patch
Added: packages/python3-dnspython/dnspython3/trunk/debian/watch
===================================================================
--- packages/python3-dnspython/dnspython3/trunk/debian/watch (rev 0)
+++ packages/python3-dnspython/dnspython3/trunk/debian/watch 2012-06-05 02:54:01 UTC (rev 22065)
@@ -0,0 +1,2 @@
+version=3
+http://www.dnspython.org/kits/([0-9.]+)/dnspython3-([0-9.]+)\.tar\.gz
More information about the Python-modules-commits
mailing list