[Python-modules-commits] [dnspython] branch master updated (b9901f1 -> 669999b)

Scott Kitterman kitterman at moszumanska.debian.org
Mon Oct 24 12:09:00 UTC 2016


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

kitterman pushed a change to branch master
in repository dnspython.

      from  b9901f1   Disable tests unless manually enabled to avoid network access during build (Closes: #830170)
       new  4830523   record new upstream branch created by importing dnspython_1.15.0.orig.tar.gz
       new  131bfc4   Import dnspython_1.15.0.orig.tar.gz
       new  9c3bf99   change version to 1.15.0-1 (UNRELEASED) New upstream release
       new  0d1947c   Fix file write location in testToFileFilename.
       new  a340609   Fix file write location in testToFileFilename.
       new  4fbfbdd   UNRELEASED/unstable.
       new  669999b   Bump compat/debhelper version to 9 due to compat levels < 9 being deprecated

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ChangeLog                                          |  23 +
 LICENSE                                            |   2 +
 PKG-INFO                                           |   4 +-
 README.md                                          | 612 ---------------------
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  11 +
 debian/compat                                      |   2 +-
 debian/control                                     |   2 +-
 ...file-write-location-in-testToFileFilename.patch |  22 +
 ...sts-in-tests-test_resolver.py-that-requir.patch |  59 --
 debian/patches/series                              |   2 +-
 dns/_compat.py                                     |  38 +-
 dns/e164.py                                        |   9 +-
 dns/entropy.py                                     |  34 +-
 dns/exception.py                                   |  12 +-
 dns/grange.py                                      |   6 +-
 dns/hash.py                                        |   1 -
 dns/inet.py                                        |  10 +-
 dns/ipv6.py                                        |   4 +-
 dns/message.py                                     |   9 +-
 dns/name.py                                        | 223 ++++++--
 dns/opcode.py                                      |   4 +-
 dns/query.py                                       |  13 +-
 dns/rdata.py                                       |  18 +-
 dns/rdatatype.py                                   |   2 +
 dns/rdtypes/ANY/{SPF.py => AVC.py}                 |   8 +-
 dns/rdtypes/ANY/CAA.py                             |   1 -
 dns/rdtypes/ANY/CERT.py                            |   1 -
 dns/rdtypes/ANY/HINFO.py                           |   1 -
 dns/rdtypes/ANY/HIP.py                             |   2 +-
 dns/rdtypes/ANY/ISDN.py                            |   1 -
 dns/rdtypes/ANY/LOC.py                             |  10 +-
 dns/rdtypes/ANY/NSEC3.py                           |   1 -
 dns/rdtypes/ANY/NSEC3PARAM.py                      |   1 -
 dns/rdtypes/ANY/SSHFP.py                           |   1 -
 dns/rdtypes/ANY/TLSA.py                            |   1 -
 dns/rdtypes/ANY/URI.py                             |   1 -
 dns/rdtypes/ANY/X25.py                             |   1 -
 dns/rdtypes/IN/A.py                                |   1 -
 dns/rdtypes/IN/AAAA.py                             |   1 -
 dns/rdtypes/IN/APL.py                              |   3 +-
 dns/rdtypes/IN/DHCID.py                            |   1 -
 dns/rdtypes/IN/IPSECKEY.py                         |   1 -
 dns/rdtypes/IN/NSAP.py                             |   1 -
 dns/rdtypes/IN/WKS.py                              |   1 -
 dns/rdtypes/dsbase.py                              |   1 -
 dns/rdtypes/euibase.py                             |   4 +-
 dns/rdtypes/txtbase.py                             |   1 -
 dns/renderer.py                                    |   1 -
 dns/resolver.py                                    | 156 ++++--
 dns/reversename.py                                 |   2 +-
 dns/rrset.py                                       |   9 +-
 dns/set.py                                         |   6 -
 dns/tokenizer.py                                   |   4 +-
 dns/tsig.py                                        |   7 +-
 dns/tsigkeyring.py                                 |   8 +-
 dns/version.py                                     |   2 +-
 dns/wiredata.py                                    |  59 +-
 dns/zone.py                                        |  61 +-
 dnspython.egg-info/PKG-INFO                        |   4 +-
 dnspython.egg-info/SOURCES.txt                     |   3 +-
 examples/e164.py                                   |   6 +-
 examples/mx.py                                     |   4 +-
 examples/name.py                                   |  14 +-
 examples/reverse.py                                |   6 +-
 examples/reverse_name.py                           |   6 +-
 examples/xfr.py                                    |   4 +-
 examples/zonediff.py                               | 116 ++--
 setup.py                                           |   2 +-
 tests/example                                      |   1 +
 tests/example1.good                                |   1 +
 tests/example2.good                                |   1 +
 tests/example3.good                                |   1 +
 tests/test_bugs.py                                 |   4 +-
 tests/test_dnssec.py                               | 145 ++---
 tests/test_exceptions.py                           |   1 -
 tests/test_flags.py                                |   6 +-
 tests/test_generate.py                             |   7 +-
 tests/test_grange.py                               |   7 +-
 tests/test_message.py                              |   9 +-
 tests/test_name.py                                 | 162 ++++--
 tests/test_namedict.py                             |   8 +-
 tests/test_ntoaaton.py                             |  58 +-
 tests/test_rdtypeandclass.py                       |  24 +-
 tests/test_rdtypeanyeui.py                         |   2 +-
 tests/test_resolver.py                             | 215 +++++++-
 tests/test_rrset.py                                |   2 +-
 tests/test_set.py                                  |   2 +-
 tests/test_tokenizer.py                            |  15 +-
 tests/test_update.py                               |   8 +-
 tests/test_wiredata.py                             | 126 +++++
 tests/test_zone.py                                 |  92 +++-
 tests/utest.py                                     |   2 +-
 93 files changed, 1373 insertions(+), 1187 deletions(-)
 delete mode 100644 README.md
 create mode 100644 debian/patches/0001-Fix-file-write-location-in-testToFileFilename.patch
 delete mode 100644 debian/patches/0001-Only-run-tests-in-tests-test_resolver.py-that-requir.patch
 copy dns/rdtypes/ANY/{SPF.py => AVC.py} (80%)
 create mode 100644 tests/test_wiredata.py

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



More information about the Python-modules-commits mailing list