pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/py-dns Updated py-dns to 1.14.0.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8a0be9e05294
branches:  trunk
changeset: 349147:8a0be9e05294
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Thu Jun 30 17:45:04 2016 +0000

description:
Updated py-dns to 1.14.0.

2016-05-27  Bob Halley  <halley%dnspython.org@localhost>

        * (Version 1.14.0 released)

        * Add CSYNC RR support

        * Fix bug in LOC which destroyed N/S and E/W distinctions within
          a degree of the equator or prime merdian respectively.

        * Misc. fixes to deal with fallout from the Python 2 & 3 merge.
          [issue #156], [issue #157], [issue #158], [issue #159],
          [issue #160].

        * Running with python optimization on caused issues when
          stripped docstrings were referenced. [issue #154]

        * dns.zone.from_text() erroneously required the zone to be provided.
          [issue #153]

2016-05-13  Bob Halley  <halley%dnspython.org@localhost>

        * dns/message.py (make_query): Setting any value which implies
          EDNS will turn on EDNS if 'use_edns' has not been specified.

2016-05-12  Bob Halley  <halley%dnspython.org@localhost>

        * TSIG signature algorithm setting was broken by the Python 2
          and Python 3 code line merge.  Fixed.

2016-05-10  Bob Halley  <halley%dnspython.org@localhost>

        * (Version 1.13.0 released)

2016-05-10  Bob Halley  <halley%dnspython.org@localhost>

        * Dropped support for Python 2.4 and 2.5.

        * Zone origin can be specified as a string.

        * Support string representation for all DNSExceptions.

        * Use setuptools not distutils

        * A number of Unicode name bug fixes.

        * Added support for CAA, CDS, CDNSKEY, EUI48, EUI64, and URI RR
          types.

        * Names now support the pickle protocol.

        * NameDicts now keep the max-depth value correct, and update
          properly.

        * resolv.conf processing rejects lines with too few tokens.

        * Ports can be specified per-nameserver in the stub resolver.

2016-05-03  Arthur Gautier

        * Single source support for python 2.6+ and 3.3+

2014-09-04  Bob Halley  <halley%dnspython.org@localhost>

        * Comparing two rdata is now always done by comparing the binary
          data of the DNSSEC digestable forms.  This corrects a number of
          errors where dnspython's rdata comparison order was not the
          DNSSEC order.

        * Add CAA implementation.  Thanks to Brian Wellington for the
          patch.

diffstat:

 net/py-dns/Makefile |  10 ++++------
 net/py-dns/PLIST    |  37 +++++++++++++++++++++++++++++++++++--
 net/py-dns/distinfo |  10 +++++-----
 3 files changed, 44 insertions(+), 13 deletions(-)

diffs (129 lines):

diff -r c1328fbec330 -r 8a0be9e05294 net/py-dns/Makefile
--- a/net/py-dns/Makefile       Thu Jun 30 17:44:48 2016 +0000
+++ b/net/py-dns/Makefile       Thu Jun 30 17:45:04 2016 +0000
@@ -1,18 +1,16 @@
-# $NetBSD: Makefile,v 1.27 2016/03/06 16:58:38 adam Exp $
+# $NetBSD: Makefile,v 1.28 2016/06/30 17:45:04 wiz Exp $
 
-DISTNAME=      dnspython-1.12.0
+DISTNAME=      dnspython-1.14.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/python-/-/}
 CATEGORIES=    net python
 MASTER_SITES=  http://www.dnspython.org/kits/${PKGVERSION}/
 
 MAINTAINER=    gson%NetBSD.org@localhost
 HOMEPAGE=      http://www.dnspython.org/
-COMMENT=       Python DNS toolkit (python-2.x version)
+COMMENT=       Python DNS toolkit
 LICENSE=       modified-bsd
 
 USE_LANGUAGES=         # none
 
-PYTHON_VERSIONS_INCOMPATIBLE=  33 34 35
-
-.include "../../lang/python/distutils.mk"
+.include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r c1328fbec330 -r 8a0be9e05294 net/py-dns/PLIST
--- a/net/py-dns/PLIST  Thu Jun 30 17:44:48 2016 +0000
+++ b/net/py-dns/PLIST  Thu Jun 30 17:45:04 2016 +0000
@@ -1,7 +1,14 @@
-@comment $NetBSD: PLIST,v 1.11 2014/01/17 22:48:53 wiz Exp $
+@comment $NetBSD: PLIST,v 1.12 2016/06/30 17:45:04 wiz Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
 ${PYSITELIB}/dns/__init__.py
 ${PYSITELIB}/dns/__init__.pyc
 ${PYSITELIB}/dns/__init__.pyo
+${PYSITELIB}/dns/_compat.py
+${PYSITELIB}/dns/_compat.pyc
+${PYSITELIB}/dns/_compat.pyo
 ${PYSITELIB}/dns/dnssec.py
 ${PYSITELIB}/dns/dnssec.pyc
 ${PYSITELIB}/dns/dnssec.pyo
@@ -71,12 +78,24 @@
 ${PYSITELIB}/dns/rdtypes/ANY/AFSDB.py
 ${PYSITELIB}/dns/rdtypes/ANY/AFSDB.pyc
 ${PYSITELIB}/dns/rdtypes/ANY/AFSDB.pyo
+${PYSITELIB}/dns/rdtypes/ANY/CAA.py
+${PYSITELIB}/dns/rdtypes/ANY/CAA.pyc
+${PYSITELIB}/dns/rdtypes/ANY/CAA.pyo
+${PYSITELIB}/dns/rdtypes/ANY/CDNSKEY.py
+${PYSITELIB}/dns/rdtypes/ANY/CDNSKEY.pyc
+${PYSITELIB}/dns/rdtypes/ANY/CDNSKEY.pyo
+${PYSITELIB}/dns/rdtypes/ANY/CDS.py
+${PYSITELIB}/dns/rdtypes/ANY/CDS.pyc
+${PYSITELIB}/dns/rdtypes/ANY/CDS.pyo
 ${PYSITELIB}/dns/rdtypes/ANY/CERT.py
 ${PYSITELIB}/dns/rdtypes/ANY/CERT.pyc
 ${PYSITELIB}/dns/rdtypes/ANY/CERT.pyo
 ${PYSITELIB}/dns/rdtypes/ANY/CNAME.py
 ${PYSITELIB}/dns/rdtypes/ANY/CNAME.pyc
 ${PYSITELIB}/dns/rdtypes/ANY/CNAME.pyo
+${PYSITELIB}/dns/rdtypes/ANY/CSYNC.py
+${PYSITELIB}/dns/rdtypes/ANY/CSYNC.pyc
+${PYSITELIB}/dns/rdtypes/ANY/CSYNC.pyo
 ${PYSITELIB}/dns/rdtypes/ANY/DLV.py
 ${PYSITELIB}/dns/rdtypes/ANY/DLV.pyc
 ${PYSITELIB}/dns/rdtypes/ANY/DLV.pyo
@@ -89,6 +108,12 @@
 ${PYSITELIB}/dns/rdtypes/ANY/DS.py
 ${PYSITELIB}/dns/rdtypes/ANY/DS.pyc
 ${PYSITELIB}/dns/rdtypes/ANY/DS.pyo
+${PYSITELIB}/dns/rdtypes/ANY/EUI48.py
+${PYSITELIB}/dns/rdtypes/ANY/EUI48.pyc
+${PYSITELIB}/dns/rdtypes/ANY/EUI48.pyo
+${PYSITELIB}/dns/rdtypes/ANY/EUI64.py
+${PYSITELIB}/dns/rdtypes/ANY/EUI64.pyc
+${PYSITELIB}/dns/rdtypes/ANY/EUI64.pyo
 ${PYSITELIB}/dns/rdtypes/ANY/GPOS.py
 ${PYSITELIB}/dns/rdtypes/ANY/GPOS.pyc
 ${PYSITELIB}/dns/rdtypes/ANY/GPOS.pyo
@@ -146,6 +171,9 @@
 ${PYSITELIB}/dns/rdtypes/ANY/TXT.py
 ${PYSITELIB}/dns/rdtypes/ANY/TXT.pyc
 ${PYSITELIB}/dns/rdtypes/ANY/TXT.pyo
+${PYSITELIB}/dns/rdtypes/ANY/URI.py
+${PYSITELIB}/dns/rdtypes/ANY/URI.pyc
+${PYSITELIB}/dns/rdtypes/ANY/URI.pyo
 ${PYSITELIB}/dns/rdtypes/ANY/X25.py
 ${PYSITELIB}/dns/rdtypes/ANY/X25.pyc
 ${PYSITELIB}/dns/rdtypes/ANY/X25.pyo
@@ -194,9 +222,15 @@
 ${PYSITELIB}/dns/rdtypes/__init__.py
 ${PYSITELIB}/dns/rdtypes/__init__.pyc
 ${PYSITELIB}/dns/rdtypes/__init__.pyo
+${PYSITELIB}/dns/rdtypes/dnskeybase.py
+${PYSITELIB}/dns/rdtypes/dnskeybase.pyc
+${PYSITELIB}/dns/rdtypes/dnskeybase.pyo
 ${PYSITELIB}/dns/rdtypes/dsbase.py
 ${PYSITELIB}/dns/rdtypes/dsbase.pyc
 ${PYSITELIB}/dns/rdtypes/dsbase.pyo
+${PYSITELIB}/dns/rdtypes/euibase.py
+${PYSITELIB}/dns/rdtypes/euibase.pyc
+${PYSITELIB}/dns/rdtypes/euibase.pyo
 ${PYSITELIB}/dns/rdtypes/mxbase.py
 ${PYSITELIB}/dns/rdtypes/mxbase.pyc
 ${PYSITELIB}/dns/rdtypes/mxbase.pyo
@@ -245,4 +279,3 @@
 ${PYSITELIB}/dns/zone.py
 ${PYSITELIB}/dns/zone.pyc
 ${PYSITELIB}/dns/zone.pyo
-${PYSITELIB}/${EGG_FILE}
diff -r c1328fbec330 -r 8a0be9e05294 net/py-dns/distinfo
--- a/net/py-dns/distinfo       Thu Jun 30 17:44:48 2016 +0000
+++ b/net/py-dns/distinfo       Thu Jun 30 17:45:04 2016 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.14 2016/03/06 16:58:38 adam Exp $
+$NetBSD: distinfo,v 1.15 2016/06/30 17:45:04 wiz Exp $
 
-SHA1 (dnspython-1.12.0.tar.gz) = 371c68b83fd2a06c6492b024acc1684fc150e1f3
-RMD160 (dnspython-1.12.0.tar.gz) = e17bd5b87b45e6ca3192110bed1997be2c43861c
-SHA512 (dnspython-1.12.0.tar.gz) = 583d069ed7ee9b20f16a964023fa0300f15032c27de6d084205f73394f19a2d5bb1641ef95b08a8ddf1f622eeb5fa8cbfa62b8a2ee478a49b0dff0995e4ae42e
-Size (dnspython-1.12.0.tar.gz) = 135164 bytes
+SHA1 (dnspython-1.14.0.tar.gz) = e58c4dcfba3391620038fa303268a34f4ac47832
+RMD160 (dnspython-1.14.0.tar.gz) = f762bb70ddf17c141909ef9ce9cdf5d78605ff05
+SHA512 (dnspython-1.14.0.tar.gz) = c2fa2148ea8c2c33c43dc7c2a08798bb687c6e8ad506119d31adb17792c667f973f415ac3582e2fb36ad25c95b611eee558ffc02d81da17626ecf1ee21ab5c0a
+Size (dnspython-1.14.0.tar.gz) = 144591 bytes



Home | Main Index | Thread Index | Old Index