[Python-modules-commits] [dnspython] branch master updated (0282240 -> 98a9d35)

Scott Kitterman kitterman at moszumanska.debian.org
Wed May 25 06:39:47 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  0282240   Fixed VCS URL (https)
       new  8d7a975   Import dnspython_1.13.0.orig.tar.gz
       new  c3b92df   record new upstream branch created by importing dnspython_1.13.0.orig.tar.gz and merge it
       new  cbd4241   change version to 1.13.0-1 New upstream release
       new  1e8e3fc   Bump standards version to 3.9.8 without further change
       new  78f62d4   Build python3-dnspython for dnspython source instead of from dedicated dnspython3 source
       new  cc7ee6f   Bump minimum python3 version to 3.3
       new  378b19c   Update debian/rules to use dh_python3 and pybuild
       new  c282f5b   Use binary specific docs and examples files for multi-binary package
       new  29f2a0f   Delete obsolete debian/source/options file
       new  198dd44   Add new docs/examples files to git
       new  ea7c518   Add python/python3-setuptools to build-depends
       new  ca73791   Temporarily disable non-working zone tests.
       new  89f8be4   Temporarily disable non-working zone tests.
       new  e078990   Delete obsolete debian/docs file
       new  0319a75   Update changelog a bit
       new  d716735   Set PYBUILD_NAME=dnspython in debian/rules
       new  98a9d35   Add bug number for new upstream (823456) and UNRELEASED/unstable

The 17 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                                          |  42 ++
 MANIFEST.in                                        |   3 +
 PKG-INFO                                           |  11 +-
 README                                             | 557 ---------------------
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  21 +-
 debian/control                                     |  22 +-
 debian/docs                                        |   1 -
 ...emporarily-disable-non-working-zone-tests.patch |  53 ++
 debian/patches/series                              |   1 +
 debian/{examples => python-dnspython.examples}     |   0
 debian/{examples => python3-dnspython.examples}    |   0
 debian/rules                                       |   4 +-
 debian/source/options                              |   1 -
 dns/_compat.py                                     |  21 +
 dns/dnssec.py                                      | 157 +++---
 dns/e164.py                                        |  13 +-
 dns/edns.py                                        |  30 +-
 dns/entropy.py                                     |  34 +-
 dns/exception.py                                   | 104 +++-
 dns/flags.py                                       |  30 +-
 dns/grange.py                                      |   2 +-
 dns/hash.py                                        |  53 +-
 dns/inet.py                                        |  11 +-
 dns/ipv4.py                                        |  11 +-
 dns/ipv6.py                                        |  54 +-
 dns/message.py                                     | 210 ++++----
 dns/name.py                                        | 269 ++++++----
 dns/namedict.py                                    |  59 ++-
 dns/node.py                                        |  15 +-
 dns/opcode.py                                      |  31 +-
 dns/query.py                                       |  93 +++-
 dns/rcode.py                                       |  36 +-
 dns/rdata.py                                       | 172 +++----
 dns/rdataclass.py                                  |  46 +-
 dns/rdataset.py                                    |  51 +-
 dns/rdatatype.py                                   | 171 ++++---
 dns/rdtypes/ANY/AFSDB.py                           |   2 +
 dns/rdtypes/ANY/CAA.py                             |  74 +++
 tests/Makefile => dns/rdtypes/ANY/CDNSKEY.py       |  14 +-
 dns/rdtypes/ANY/{DS.py => CDS.py}                  |   7 +-
 dns/rdtypes/ANY/CERT.py                            |  67 ++-
 dns/rdtypes/ANY/CNAME.py                           |   3 +-
 dns/rdtypes/ANY/DLV.py                             |   3 +-
 dns/rdtypes/ANY/DNAME.py                           |   5 +-
 dns/rdtypes/ANY/DNSKEY.py                          | 127 +----
 dns/rdtypes/ANY/DS.py                              |   3 +-
 tests/Makefile => dns/rdtypes/ANY/EUI48.py         |  20 +-
 tests/Makefile => dns/rdtypes/ANY/EUI64.py         |  20 +-
 dns/rdtypes/ANY/GPOS.py                            |  70 +--
 dns/rdtypes/ANY/HINFO.py                           |  46 +-
 dns/rdtypes/ANY/HIP.py                             |  71 +--
 dns/rdtypes/ANY/ISDN.py                            |  46 +-
 dns/rdtypes/ANY/LOC.py                             |  96 ++--
 dns/rdtypes/ANY/MX.py                              |   3 +-
 dns/rdtypes/ANY/NS.py                              |   3 +-
 dns/rdtypes/ANY/NSEC.py                            |  48 +-
 dns/rdtypes/ANY/NSEC3.py                           | 106 ++--
 dns/rdtypes/ANY/NSEC3PARAM.py                      |  44 +-
 dns/rdtypes/ANY/PTR.py                             |   3 +-
 dns/rdtypes/ANY/RP.py                              |  26 +-
 dns/rdtypes/ANY/RRSIG.py                           |  41 +-
 dns/rdtypes/ANY/RT.py                              |   3 +-
 dns/rdtypes/ANY/SOA.py                             |  39 +-
 dns/rdtypes/ANY/SPF.py                             |   3 +-
 dns/rdtypes/ANY/SSHFP.py                           |  32 +-
 dns/rdtypes/ANY/TLSA.py                            |  34 +-
 dns/rdtypes/ANY/TXT.py                             |   3 +-
 dns/rdtypes/ANY/URI.py                             |  81 +++
 dns/rdtypes/ANY/X25.py                             |  31 +-
 dns/rdtypes/ANY/__init__.py                        |   4 +
 dns/rdtypes/IN/A.py                                |  22 +-
 dns/rdtypes/IN/AAAA.py                             |  22 +-
 dns/rdtypes/IN/APL.py                              |  38 +-
 dns/rdtypes/IN/DHCID.py                            |  26 +-
 dns/rdtypes/IN/IPSECKEY.py                         |  50 +-
 dns/rdtypes/IN/KX.py                               |   3 +-
 dns/rdtypes/IN/NAPTR.py                            |  57 +--
 dns/rdtypes/IN/NSAP.py                             |  26 +-
 dns/rdtypes/IN/NSAP_PTR.py                         |   3 +-
 dns/rdtypes/IN/PX.py                               |  34 +-
 dns/rdtypes/IN/SRV.py                              |  28 +-
 dns/rdtypes/IN/WKS.py                              |  45 +-
 dns/rdtypes/__init__.py                            |   1 +
 dns/rdtypes/{ANY/DNSKEY.py => dnskeybase.py}       |  46 +-
 dns/rdtypes/dsbase.py                              |  34 +-
 dns/rdtypes/euibase.py                             |  71 +++
 dns/rdtypes/mxbase.py                              |  42 +-
 dns/rdtypes/nsbase.py                              |  31 +-
 dns/rdtypes/txtbase.py                             |  34 +-
 dns/renderer.py                                    |  19 +-
 dns/resolver.py                                    | 339 ++++++++-----
 dns/reversename.py                                 |  21 +-
 dns/rrset.py                                       |  18 +-
 dns/set.py                                         |  14 +-
 dns/tokenizer.py                                   |  65 ++-
 dns/tsig.py                                        |  82 ++-
 dns/tsigkeyring.py                                 |   6 +-
 dns/ttl.py                                         |  20 +-
 dns/update.py                                      |  78 +--
 dns/version.py                                     |   4 +-
 dns/wiredata.py                                    |  27 +-
 dns/zone.py                                        | 178 ++++---
 PKG-INFO => dnspython.egg-info/PKG-INFO            |  11 +-
 dnspython.egg-info/SOURCES.txt                     | 135 +++++
 dnspython.egg-info/dependency_links.txt            |   1 +
 dnspython.egg-info/top_level.txt                   |   1 +
 examples/ddns.py                                   |  14 +-
 examples/reverse.py                                |   6 +-
 setup.cfg                                          |   5 +
 setup.py                                           |  17 +-
 tests/__init__.py                                  |   0
 tests/example                                      |  14 +
 tests/example1.good                                |   9 +
 tests/example2.good                                |   9 +
 tests/example3.good                                |   9 +
 tests/test_bugs.py                                 |  26 +-
 tests/test_dnssec.py                               |   7 +-
 tests/test_exceptions.py                           |  65 +++
 tests/test_flags.py                                |   5 +-
 tests/test_generate.py                             | 155 +++---
 tests/test_grange.py                               |   6 +-
 tests/test_message.py                              |  28 +-
 tests/test_name.py                                 | 164 +++---
 tests/test_namedict.py                             |   5 +-
 tests/test_ntoaaton.py                             |  91 ++--
 dns/rdtypes/ANY/SPF.py => tests/test_rdata.py      |  24 +-
 tests/test_rdtypeandclass.py                       |   5 +-
 tests/test_rdtypeanydnskey.py                      |   5 +-
 tests/test_rdtypeanyeui.py                         | 224 +++++++++
 tests/test_rdtypeanyloc.py                         |   5 +-
 tests/test_resolver.py                             |  12 +-
 tests/test_rrset.py                                |   5 +-
 tests/test_set.py                                  |   5 +-
 tests/test_tokenizer.py                            |  14 +
 tests/test_update.py                               |   8 +-
 tests/test_zone.py                                 |  84 +++-
 tests/utest.py                                     |   8 +-
 138 files changed, 3467 insertions(+), 2780 deletions(-)
 create mode 100644 MANIFEST.in
 delete mode 100644 README
 delete mode 100644 debian/docs
 create mode 100644 debian/patches/0001-Temporarily-disable-non-working-zone-tests.patch
 create mode 100644 debian/patches/series
 copy debian/{examples => python-dnspython.examples} (100%)
 rename debian/{examples => python3-dnspython.examples} (100%)
 delete mode 100644 debian/source/options
 create mode 100644 dns/_compat.py
 create mode 100644 dns/rdtypes/ANY/CAA.py
 copy tests/Makefile => dns/rdtypes/ANY/CDNSKEY.py (72%)
 copy dns/rdtypes/ANY/{DS.py => CDS.py} (92%)
 copy tests/Makefile => dns/rdtypes/ANY/EUI48.py (60%)
 copy tests/Makefile => dns/rdtypes/ANY/EUI64.py (59%)
 create mode 100644 dns/rdtypes/ANY/URI.py
 copy dns/rdtypes/{ANY/DNSKEY.py => dnskeybase.py} (79%)
 create mode 100644 dns/rdtypes/euibase.py
 copy PKG-INFO => dnspython.egg-info/PKG-INFO (73%)
 create mode 100644 dnspython.egg-info/SOURCES.txt
 create mode 100644 dnspython.egg-info/dependency_links.txt
 create mode 100644 dnspython.egg-info/top_level.txt
 create mode 100644 setup.cfg
 create mode 100644 tests/__init__.py
 create mode 100644 tests/test_exceptions.py
 copy dns/rdtypes/ANY/SPF.py => tests/test_rdata.py (58%)
 create mode 100644 tests/test_rdtypeanyeui.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