Codebase list dnspython / 2f9a240
Imported Debian patch 1.3.5-3 Patrick Dreker 18 years ago
3 changed file(s) with 22 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
0 dnspython (1.3.5-3) unstable; urgency=low
1
2 * applied patch from Dan Pascu to avoid doing a backoff wait, even if
3 a query was successful. Patch was forwarded upstream and was already applied
4 to upstreams subversion repository.
5
6 -- Patrick Dreker <patrick@dreker.org> Sat, 18 Mar 2006 16:24:59 +0100
7
08 dnspython (1.3.5-2) unstable; urgency=low
19
210 * change "Architecture: any" to "Architecture: all" as package
311 only contains python code (Closes: #357052).
4 * remove Python 2.2 from debian/rules, packages for 2.2 were not
12 * remove Python 2.2 from debian/rules, packages for 2.2 were not
513 built anyways.
614
7 -- Patrick Dreker <patrick@dreker.org> Wed, 15 Mar 2006 17:09:39 +0100
15 -- Patrick Dreker <patrick@dreker.org> Wed, 15 Mar 2006 19:48:03 +0100
816
917 dnspython (1.3.5-1) unstable; urgency=low
1018
0 --- dns/resolver.py.orig 2006-03-14 19:01:58.471461560 +0100
1 +++ dns/resolver.py 2006-03-14 19:21:28.295621256 +0100
2 @@ -554,6 +554,8 @@
3 if rcode != dns.rcode.SERVFAIL:
4 nameservers.remove(nameserver)
5 response = None
6 + if response is not None:
7 + break
8 #
9 # All nameservers failed!
10 #
22 include /usr/share/cdbs/1/rules/debhelper.mk
33 include debian/cdbs/1/class/python-distutils.mk
44 include debian/cdbs/1/rules/buildinfo.mk
5 include /usr/share/cdbs/1/rules/simple-patchsys.mk
56
67 DEB_INSTALL_DOCS_ALL = TODO
78 UPSTREAM_EXAMPLES := examples/*.py