commit cb748d2c2430c8a6af30d1aab56894ef63da4e13 Author: MSVSphere Packaging Team Date: Fri Oct 25 18:39:33 2024 +0300 import python-dns-2.6.1-1.el10 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b8e3ced --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/dnspython-2.6.1.tar.gz diff --git a/.python-dns.metadata b/.python-dns.metadata new file mode 100644 index 0000000..beef332 --- /dev/null +++ b/.python-dns.metadata @@ -0,0 +1 @@ +a37abc80fd50ab72dc10623b0e67e7cef6a68014 SOURCES/dnspython-2.6.1.tar.gz diff --git a/SOURCES/1000-disable-tests-due-to-etc-resolv-conf.patch b/SOURCES/1000-disable-tests-due-to-etc-resolv-conf.patch new file mode 100644 index 0000000..df7f6e5 --- /dev/null +++ b/SOURCES/1000-disable-tests-due-to-etc-resolv-conf.patch @@ -0,0 +1,178 @@ +diff -Naur dnspython-2.6.1-orig/tests/test_async.py dnspython-2.6.1-mod/tests/test_async.py +--- dnspython-2.6.1-orig/tests/test_async.py 2024-08-12 11:30:25.845242476 -0300 ++++ dnspython-2.6.1-mod/tests/test_async.py 2024-08-12 17:57:20.266767286 -0300 +@@ -173,7 +173,7 @@ + self.assertEqual(t, ("::", 53)) + + +-@unittest.skipIf(not tests.util.is_internet_reachable(), "Internet not reachable") ++@unittest.skip(reason="Build is failing to open /etc/resolv.conf.") + class AsyncTests(unittest.TestCase): + def setUp(self): + self.backend = dns.asyncbackend.set_default_backend("asyncio") +@@ -597,7 +597,7 @@ + self.async_run(run) + + +-@unittest.skipIf(not tests.util.is_internet_reachable(), "Internet not reachable") ++@unittest.skip(reason="Build is failing to open /etc/resolv.conf") + class AsyncioOnlyTests(unittest.TestCase): + def setUp(self): + self.backend = dns.asyncbackend.set_default_backend("asyncio") +diff -Naur dnspython-2.6.1-orig/tests/test_resolver_override.py dnspython-2.6.1-mod/tests/test_resolver_override.py +--- dnspython-2.6.1-orig/tests/test_resolver_override.py 2024-08-12 11:30:25.846242494 -0300 ++++ dnspython-2.6.1-mod/tests/test_resolver_override.py 2024-08-12 17:46:49.849623485 -0300 +@@ -11,7 +11,7 @@ + import tests.util + + +-@unittest.skipIf(not tests.util.is_internet_reachable(), "Internet not reachable") ++@unittest.skip(reason="Build is failing to open /etc/resolv.conf") + class OverrideSystemResolverTestCase(unittest.TestCase): + def setUp(self): + self.res = dns.resolver.Resolver(configure=False) +@@ -211,6 +211,7 @@ + raise dns.exception.Timeout + + ++@unittest.skip(reason="Build is failing to open /etc/resolv.conf") + class OverrideSystemResolverUsingFakeResolverTestCase(unittest.TestCase): + def setUp(self): + self.res = FakeResolver() +@@ -240,7 +241,7 @@ + socket.gethostbyaddr("bogus") + + +-@unittest.skipIf(not tests.util.is_internet_reachable(), "Internet not reachable") ++@unittest.skip(reason="Build is failing to open /etc/resolv.conf") + class OverrideSystemResolverUsingDefaultResolverTestCase(unittest.TestCase): + def setUp(self): + self.res = FakeResolver() +diff -Naur dnspython-2.6.1-orig/tests/test_resolver.py dnspython-2.6.1-mod/tests/test_resolver.py +--- dnspython-2.6.1-orig/tests/test_resolver.py 2024-08-12 11:30:25.846242494 -0300 ++++ dnspython-2.6.1-mod/tests/test_resolver.py 2024-08-12 17:53:19.968646375 -0300 +@@ -222,6 +222,7 @@ + time.sleep(offset) + + ++@pytest.mark.skip(reason="Build is failing to open /etc/resolv.conf.") + class BaseResolverTests(unittest.TestCase): + def testRead(self): + f = StringIO(resolv_conf) +@@ -628,7 +629,7 @@ + keyname = dns.name.from_text("keyname") + + +-@unittest.skipIf(not tests.util.is_internet_reachable(), "Internet not reachable") ++@pytest.mark.skip(reason="Build is failing to open /etc/resolv.conf.") + class LiveResolverTests(unittest.TestCase): + def testZoneForName1(self): + name = dns.name.from_text("www.dnspython.org.") +@@ -830,6 +831,7 @@ + unittest.TestCase.tearDown(self) + + ++@pytest.mark.skip(reason="Build is failing to open /etc/resolv.conf") + class SelectResolverTestCase( + PollingMonkeyPatchMixin, LiveResolverTests, unittest.TestCase + ): +@@ -839,6 +841,7 @@ + + if hasattr(selectors, "PollSelector"): + ++ @pytest.mark.skip(reason="Build is failing to open /etc/resolv.conf") + class PollResolverTestCase( + PollingMonkeyPatchMixin, LiveResolverTests, unittest.TestCase + ): +@@ -846,6 +849,7 @@ + return selectors.PollSelector + + ++@pytest.mark.skip(reason="Build is failing to open /etc/resolv.conf") + class NXDOMAINExceptionTestCase(unittest.TestCase): + # pylint: disable=broad-except + +@@ -978,6 +982,7 @@ + self.assertEqual(e2.canonical_name, dns.name.from_text(cname2)) + + ++@pytest.mark.skip(reason="Build is failing to open /etc/resolv.conf.") + class ResolverMiscTestCase(unittest.TestCase): + if sys.platform != "win32": + +@@ -1007,6 +1012,7 @@ + self.assertEqual(n, dns.win32util._config_domain(".home")) + + ++@pytest.mark.skip(reason="Build is failing to open /etc/resolv.conf") + class ResolverNameserverValidTypeTestCase(unittest.TestCase): + def test_set_nameservers_to_list(self): + resolver = dns.resolver.Resolver(configure=False) +@@ -1033,6 +1039,7 @@ + resolver.nameservers = invalid_nameserver + + ++@unittest.skipIf(not tests.util.is_internet_reachable(), "Internet not reachable") + class NaptrNanoNameserver(Server): + def handle(self, request): + response = dns.message.make_response(request.message) +@@ -1058,10 +1065,7 @@ + return response + + +-@unittest.skipIf( +- not (tests.util.is_internet_reachable() and _nanonameserver_available), +- "Internet and NanoAuth required", +-) ++@pytest.mark.skip(reason="Build is failing to open /etc/resolv.conf") + class NanoTests(unittest.TestCase): + def testE164Query(self): + with NaptrNanoNameserver() as na: +@@ -1125,10 +1129,7 @@ + return response + + +-@unittest.skipIf( +- not (tests.util.is_internet_reachable() and _nanonameserver_available), +- "Internet and NanoAuth required", +-) ++@pytest.mark.skip(reason="Build is failing to open /etc/resolv.conf") + class ZoneForNameTests(unittest.TestCase): + def testNoRootSOA(self): + with AlwaysType3NXDOMAINNanoNameserver() as na: +@@ -1177,10 +1178,7 @@ + # (right now it's still fast enough we don't really need it) + + +-@pytest.mark.skipif( +- not (tests.util.is_internet_reachable() and _nanonameserver_available), +- reason="Internet and NanoAuth required", +-) ++@pytest.mark.skip(reason="Build is failing to open /etc/resolv.conf") + def testResolverTimeout(): + with DroppingNanoNameserver() as na: + res = dns.resolver.Resolver(configure=False) +@@ -1204,10 +1202,7 @@ + assert isinstance(error[3], dns.exception.Timeout) # exception + + +-@pytest.mark.skipif( +- not (tests.util.is_internet_reachable() and _nanonameserver_available), +- reason="Internet and NanoAuth required", +-) ++@pytest.mark.skip(reason="Build is failing to open /etc/resolv.conf") + def testResolverNoNameservers(): + with FormErrNanoNameserver() as na: + res = dns.resolver.Resolver(configure=False) +@@ -1235,10 +1230,7 @@ + return response + + +-@pytest.mark.skipif( +- not (tests.util.is_internet_reachable() and _nanonameserver_available), +- reason="Internet and NanoAuth required", +-) ++@pytest.mark.skip(reason="Build is failing to open /etc/resolv.conf") + def testZoneForNameLifetimeTimeout(): + with SlowAlwaysType3NXDOMAINNanoNameserver() as na: + res = dns.resolver.Resolver(configure=False) diff --git a/SPECS/python-dns.spec b/SPECS/python-dns.spec new file mode 100644 index 0000000..748b6c3 --- /dev/null +++ b/SPECS/python-dns.spec @@ -0,0 +1,601 @@ +%global pypi_name dnspython +%global rctag %{nil} + +%if 0%{?rhel} +%bcond_with trio +%bcond_with doh +%else +%bcond_without trio +%bcond_without doh +%endif + +Name: python-dns +Version: 2.6.1 +Release: 1%{?dist} +Summary: DNS toolkit for Python + +# The entire package is licensed with both licenses, see LICENSE file +License: ISC +URL: http://www.dnspython.org + +Source0: https://github.com/rthalley/%{pypi_name}/archive/v%{version}%{rctag}/%{pypi_name}-%{version}%{rctag}.tar.gz + +Patch1001: 1000-disable-tests-due-to-etc-resolv-conf.patch + +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: pyproject-rpm-macros +BuildRequires: python3-pytest + +%global _description %{expand: +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. +} + +%description %_description +%package -n python3-dns +Summary: %{summary} +%if ! 0%{?rhel} +Obsoletes: python3-dns+curio < 2.3.0-6 +%endif + +%description -n python3-dns %_description + +%generate_buildrequires +%pyproject_buildrequires -r -x dnssec -x idna %{?with_trio:-x trio} %{?with_doh:-x doh} + +%prep +%autosetup -p1 -n %{pypi_name}-%{version}%{rctag} +# strip exec permissions so that we don't pick up dependencies from docs +find examples -type f | xargs chmod a-x + +# Allow newer cryptography and requests-toolbelt +sed -i 's/cryptography = {version=">=2.6,<40.0"/cryptography = {version=">=2.6,<42.0"/' pyproject.toml +sed -i 's/requests-toolbelt = {version=">=0.9.1,<0.11.0"/requests-toolbelt = {version=">=0.9.1,<=1.0.0"/' pyproject.toml + +%build +%pyproject_wheel + +%install +%pyproject_install +%pyproject_save_files dns + +%check +export OPENSSL_ENABLE_SHA1_SIGNATURES=yes +%pytest + +%files -n python3-dns -f %{pyproject_files} +%license LICENSE +%doc README.md examples +%pycached %exclude %{python3_sitelib}/dns/_trio_backend.py + +%pyproject_extras_subpkg -n python3-dns dnssec idna + +%if %{with doh} +%pyproject_extras_subpkg -n python3-dns doh +%endif + +%if %{with trio} +%pyproject_extras_subpkg -n python3-dns trio +%pycached %{python3_sitelib}/dns/_trio_backend.py +%endif + +%changelog +* Mon Jul 08 2024 Rafael Jeffman - 2.6.1-1 +- Rebase to 2.6.1 + Resolves: RHEL-32661, RHEL-32667 + +* Mon Jun 24 2024 Troy Dawson - 2.5.0-3 +- Bump release for June 2024 mass rebuild + +* Fri Jan 26 2024 Fedora Release Engineering - 2.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sat Jan 20 2024 Lumír Balhar - 2.5.0-1 +- Update to 2.5.0 (rhbz#2257079) + +* Wed Nov 08 2023 Carl George - 2.4.2-2 +- Relax upper bound on trio dependency + +* Thu Aug 10 2023 Lumír Balhar - 2.4.2-1 +- Update to 2.4.2 (rhbz#2230509) + +* Mon Jul 31 2023 Lumír Balhar - 2.4.1-1 +- Update to 2.4.1 (rhbz#2219703) + +* Fri Jul 21 2023 Fedora Release Engineering - 2.3.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Mon Jul 03 2023 Python Maint - 2.3.0-6 +- Rebuilt for Python 3.12 + +* Thu Jun 15 2023 Python Maint - 2.3.0-5 +- Bootstrap for Python 3.12 + +* Wed Jun 14 2023 Tomáš Hrnčiar - 2.3.0-4 +- Fix FTBFS by allowing newer versions of cryptography and requests-toolbelt +- Fixes: rhbz#2214971 + +* Wed Mar 8 2023 Rafael Jeffman - 2.3.0-3 +- Migrated to SPDX license + +* Fri Jan 20 2023 Fedora Release Engineering - 2.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Tue Jan 03 2023 Lumír Balhar - 2.3.0-1 +- Update to 2.3.0 (rhbz#2156616) + +* Fri Jul 22 2022 Fedora Release Engineering - 2.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Tue Jun 14 2022 Python Maint - 2.2.1-3 +- Rebuilt for Python 3.11 + +* Tue May 10 2022 Lumír Balhar - 2.2.1-2 +- Fix FTI of dnssec extra subpackage +Resolves: rhbz#2082931 + +* Mon Mar 07 2022 Lumír Balhar - 2.2.1-1 +- Update to 2.2.1 +Resolves: rhbz#2061222 + +* Wed Jan 19 2022 Lumír Balhar - 2.2.0-1 +- Update to 2.2.0 +Resolves: rhbz#2034677 + +* Tue Jul 27 2021 Fedora Release Engineering - 2.1.0-5 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Fri Jun 04 2021 Python Maint - 2.1.0-4 +- Rebuilt for Python 3.10 + +* Tue Mar 09 2021 Christian Heimes - 2.1.0-3 +- Add bconds for extras require trio, curio, and doh +- Move trio and curio backend modules into extras subpackages +- Enable python3-dns+curio meta package +- Skip failing test testCanonicalNameDangling + +* Wed Jan 27 2021 Fedora Release Engineering - 2.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Fri Jan 08 2021 Lumír Balhar - 2.1.0-1 +- Update to 2.1.0 final (#1913860) + +* Fri Nov 27 2020 Lumír Balhar - 2.1.0-0.2.rc1 +- Fix upstream issue in resolve chaining + +* Wed Nov 18 2020 Lumír Balhar - 2.1.0-0.1.rc1 +- Update to 2.1.0-0.1.rc1 (#1893295) + +* Thu Jul 30 2020 Lumír Balhar - 2.0.0-1 +- Update to 2.0.0 (#1849341) +- python2-dns moved to its own SRPM + +* Wed Jul 29 2020 Fedora Release Engineering - 1.16.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sun May 24 2020 Miro Hrončok - 1.16.0-12 +- Rebuilt for Python 3.9 + +* Tue Apr 28 2020 Lumír Balhar - 1.16.0-11 +- Switch crypto backend to python-cryptography +Related to: rhbz#1819086 + +* Fri Apr 17 2020 Lumír Balhar - 1.16.0-10 +- Bring python2 subpackage back +- Fix weak dependencies + +* Wed Apr 15 2020 Paul Wouters - 1.16.0-9 +- Remove python2 and "other_python3" support +- Resolves: rhbz#1802998 Make pycryptodomex and ecdsa weak dependencies of python-dns +- Resolves: rhbz#1801247 python-certbot-dns-rfc2136 fails to build with Python 3.9: base64.decodestring() was removed + +* Mon Feb 03 2020 Miro Hrončok - 1.16.0-8 +- Drop build dependency on python2-typing + +* Thu Jan 30 2020 Fedora Release Engineering - 1.16.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Tue Jan 21 2020 Avram Lubkin - 1.16.0-6 +- Enable unicode patch (rhbz#1731100) +- Fix collections.abc import for Python 3.9 (rhbz#1792919) + +* Tue Nov 05 2019 Paul Howarth - 1.16.0-5 +- Use pycryptodomex instead of pycrypto +- Also use python-ecdsa (except with Python 2) + +* Thu Oct 03 2019 Miro Hrončok - 1.16.0-4 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Tue Aug 20 2019 Miro Hrončok - 1.16.0-3 +- Reintroduce dropped python2-dns, it is still needed + +* Mon Aug 19 2019 Miro Hrončok - 1.16.0-2 +- Rebuilt for Python 3.8 + +* Sat Jul 27 2019 Avram Lubkin - 1.16.0-1 +- Latest Release +- Cleanup spec +- Patch to fix unicode escapes +- Drop el6 from master (el6 requires patch for 1.16.0) + +* Fri Jul 26 2019 Fedora Release Engineering - 1.15.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Feb 02 2019 Fedora Release Engineering - 1.15.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jul 14 2018 Fedora Release Engineering - 1.15.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Thu Jul 12 2018 Paul Wouters - 1.15.0-8 +- Resolves: rhbz#1600418 - NVR of python-dns is lower in rawhide than in f28 + +* Tue Jun 19 2018 Miro Hrončok - 1.15.0-7 +- Rebuilt for Python 3.7 + +* Fri Feb 09 2018 Fedora Release Engineering - 1.15.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Sep 29 2017 Troy Dawson - 1.15.0-5 +- Cleanup spec file conditionals + +* Thu Jul 27 2017 Fedora Release Engineering - 1.15.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 1.15.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Tue Dec 13 2016 Miro Hrončok - 1.15.0-2 +- Rebuild for Python 3.6 + +* Tue Oct 04 2016 Avram Lubkin - 1.15.0-1 +- Latest Release + +* Wed Jun 15 2016 Avram Lubkin - 1.14.0-1 +- Latest Release + +* Sun Mar 27 2016 Avram Lubkin - 1.12.0GIT99fd864-1 +- Latest Snapshot +- Fixed SRPM naming for EPEL7+ + +* Fri Feb 12 2016 Avram Lubkin - 1.12.0GITa4774ee-1 +- Latest Snapshot +- Drop EPEL5 from master spec +- Patch to support EL6 +- Disable python2 package for EPEL7+ + +* Mon Feb 01 2016 Avram Lubkin - 1.12.0GIT465785f-4 +- Changed Python2 package name to python2-dns for Fedora 24+ + +* Fri Jan 22 2016 Avram Lubkin - 1.12.0GIT465785f-3 +- Using python3_pkgversion to support python34 package in el7 +- Build Python3 package for el7+ + +* Tue Nov 10 2015 Fedora Release Engineering - 1.12.0GIT465785f-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Fri Sep 11 2015 Petr Spacek - 1.12.0GIT465785f +- Rebase to GIT snapshots 465785f85f87508209117264c677080e901e957c (Python 2) + and 1b0c15086f0e5f6eacc06d77a119280c31731b3c (Python 3) + to pull in latest fixes + +* Thu Jun 18 2015 Fedora Release Engineering - 1.12.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 1.11.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Wed May 28 2014 Kalev Lember - 1.11.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + +* Tue Feb 18 2014 Paul Wouters - 1.11.1-2 +- Added LOC and ECDSA fixes from git (rhbz#1059594) + +* Thu Sep 5 2013 Jeffrey C. Ollie - 1.11.1-1 +- New since 1.11.0: +- +- Nothing +- +- Bugs fixed since 1.11.1: +- +- dns.resolver.Resolver erroneously referred to 'retry_servfail' +- instead of 'self.retry_servfail'. +- +- dns.tsigkeyring.to_text() would fail trying to convert the +- keyname to text. +- +- Multi-message TSIGs were broken for algorithms other than +- HMAC-MD5 because we weren't passing the right digest module to +- the HMAC code. +- +- dns.dnssec._find_candidate_keys() tried to extract the key +- from the wrong variable name. +- +- $GENERATE tests were not backward compatible with python 2.4. +- +- APL RR trailing zero suppression didn't work due to insufficient +- python 3 porting. [dnspython3 only] + +* Sun Aug 04 2013 Fedora Release Engineering - 1.11.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Sun Jul 7 2013 Jeffrey C. Ollie - 1.11.0-2 +- Integrate Python 2.6 packaging, EPEL5, EPEL6 support + +* Sun Jul 7 2013 Jeffrey C. Ollie - 1.11.0-1 +- New since 1.10.0: +- +- $GENERATE support +- +- TLSA RR support +- +- Added set_flags() method to dns.resolver.Resolver +- +- Bugs fixed since 1.10.0: +- +- Names with offsets >= 2^14 are no longer added to the +- compression table. +- +- The "::" syntax is not used to shorten a single 16-bit section +- of the text form an IPv6 address. +- +- Caches are now locked. +- +- YXDOMAIN is raised if seen by the resolver. +- +- Empty rdatasets are not printed. +- +- DNSKEY key tags are no longer assumed to be unique. + +* Sat Feb 16 2013 Jamie Nguyen - 1.10.0-3 +- add python3-dns subpackage (rhbz#911933) + +* Thu Feb 14 2013 Fedora Release Engineering - 1.10.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Mon Sep 17 2012 Paul Wouters - 1.10.0-1 +- Updated to 1.10.0 +- Patch to support TLSA RRtype + +* Sat Jul 21 2012 Fedora Release Engineering - 1.9.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sat Jan 14 2012 Fedora Release Engineering - 1.9.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Mon Mar 28 2011 Jeffrey C. Ollie - 1.9.4-1 +- +- dnspython 1.9.4 has been released and is available at +- http://www.dnspython.org/kits/1.9.4/ +- +- There is no new functionality in this release; just a few bug fixes +- in RRSIG and SIG code. +- +- I will be eliminating legacy code for earlier versions of DNSSEC in a +- future release of dnspython. + +* Fri Mar 25 2011 Jeffrey C. Ollie - 1.9.3-1 +- +- New since 1.9.2: +- +- A boolean parameter, 'raise_on_no_answer', has been added to +- the query() methods. In no-error, no-data situations, this +- parameter determines whether NoAnswer should be raised or not. +- If True, NoAnswer is raised. If False, then an Answer() +- object with a None rrset will be returned. +- +- Resolver Answer() objects now have a canonical_name field. +- +- Rdata now have a __hash__ method. +- +- Bugs fixed since 1.9.2: +- +- Dnspython was erroneously doing case-insensitive comparisons +- of the names in NSEC and RRSIG RRs. +- +- We now use "is" and not "==" when testing what section an RR +- is in. +- +- The resolver now disallows metaqueries. + +* Tue Feb 08 2011 Fedora Release Engineering - 1.9.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Thu Dec 2 2010 Jeffrey C. Ollie - 1.9.2-2 +- Build Python 2.6 subpackage for EPEL 5 + +* Tue Nov 23 2010 Jeffrey C. Ollie - 1.9.2-1 +- It's brown paper bag time :) The fix for the import problems was +- actually bad, but didn't show up in testing because the test suite's +- conditional importing code hid the problem. +- +- Any, 1.9.2 is out. +- +- Sorry for the churn! + +* Mon Nov 22 2010 Jeffrey C. Ollie - 1.9.1-1 +- New since 1.9.0: +- +- Nothing. +- +- Bugs fixed since 1.9.0 +- +- The dns.dnssec module didn't work with DSA due to namespace +- contamination from a "from"-style import. +- +- New since 1.8.0: +- +- dnspython now uses poll() instead of select() when available. +- +- Basic DNSSEC validation can be done using dns.dnsec.validate() +- and dns.dnssec.validate_rrsig() if you have PyCrypto 2.3 or +- later installed. Complete secure resolution is not yet +- available. +- +- Added key_id() to the DNSSEC module, which computes the DNSSEC +- key id of a DNSKEY rdata. +- +- Added make_ds() to the DNSSEC module, which returns the DS RR +- for a given DNSKEY rdata. +- +- dnspython now raises an exception if HMAC-SHA284 or +- HMAC-SHA512 are used with a Python older than 2.5.2. (Older +- Pythons do not compute the correct value.) +- +- Symbolic constants are now available for TSIG algorithm names. +- +- Bugs fixed since 1.8.0 +- +- dns.resolver.zone_for_name() didn't handle a query response +- with a CNAME or DNAME correctly in some cases. +- +- When specifying rdata types and classes as text, Unicode +- strings may now be used. +- +- Hashlib compatibility issues have been fixed. +- +- dns.message now imports dns.edns. +- +- The TSIG algorithm value was passed incorrectly to use_tsig() +- in some cases. + +* Fri Aug 13 2010 Jeffrey C. Ollie - 1.8.0-3 +- Add a patch from upstream to fix a Python 2.7 issue. + +* Thu Jul 22 2010 David Malcolm - 1.8.0-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Wed Jan 27 2010 Jeffrey C. Ollie - 1.8.0-1.1 +- Fix error + +* Wed Jan 27 2010 Jeffrey C. Ollie - 1.8.0-1 +- New since 1.7.1: +- +- Support for hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha384 and +- hmac-sha512 has been contributed by Kevin Chen. +- +- The tokenizer's tokens are now Token objects instead of (type, +- value) tuples. +- +- Bugs fixed since 1.7.1: +- +- Escapes in masterfiles now work correctly. Previously they were +- only working correctly when the text involved was part of a domain +- name. +- +- When constructing a DDNS update, if the present() method was used +- with a single rdata, a zero TTL was not added. +- +- The entropy pool needed locking to be thread safe. +- +- The entropy pool's reading of /dev/random could cause dnspython to +- block. +- +- The entropy pool did buffered reads, potentially consuming more +- randomness than we needed. +- +- The entropy pool did not seed with high quality randomness on +- Windows. +- +- SRV records were compared incorrectly. +- +- In the e164 query function, the resolver parameter was not used. + +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Fri Jun 19 2009 Jeffrey C. Ollie - 1.7.1-1 +- New since 1.7.0: +- +- Nothing +- +- Bugs fixed since 1.7.0: +- +- The 1.7.0 kitting process inadventently omitted the code for the +- DLV RR. +- +- Negative DDNS prerequisites are now handled correctly. + +* Fri Jun 19 2009 Jeffrey C. Ollie - 1.7.0-1 +- New since 1.6.0: +- +- Rdatas now have a to_digestable() method, which returns the +- DNSSEC canonical form of the rdata, suitable for use in +- signature computations. +- +- The NSEC3, NSEC3PARAM, DLV, and HIP RR types are now supported. +- +- An entropy module has been added and is used to randomize query ids. +- +- EDNS0 options are now supported. +- +- UDP IXFR is now supported. +- +- The wire format parser now has a 'one_rr_per_rrset' mode, which +- suppresses the usual coalescing of all RRs of a given type into a +- single RRset. +- +- Various helpful DNSSEC-related constants are now defined. +- +- The resolver's query() method now has an optional 'source' parameter, +- allowing the source IP address to be specified. +- +- Bugs fixed since 1.6.0: +- +- On Windows, the resolver set the domain incorrectly. +- +- DS RR parsing only allowed one Base64 chunk. +- +- TSIG validation didn't always use absolute names. +- +- NSEC.to_text() only printed the last window. +- +- We did not canonicalize IPv6 addresses before comparing them; we +- would thus treat equivalent but different textual forms, e.g. +- "1:00::1" and "1::1" as being non-equivalent. +- +- If the peer set a TSIG error, we didn't raise an exception. +- +- Some EDNS bugs in the message code have been fixed (see the ChangeLog +- for details). + +* Thu Feb 26 2009 Fedora Release Engineering - 1.6.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sat Nov 29 2008 Jeffrey C. Ollie - 1.6.0-3 +- Rebuild for Python 2.6 + +* Fri Aug 29 2008 Tom "spot" Callaway - 1.6.0-2 +- fix license tag + +* Tue Dec 4 2007 Jeffrey C. Ollie - 1.6.0-1 +- Update to 1.6.0 + +* Tue Oct 9 2007 Jeffrey C. Ollie - 1.5.0-2 +- Follow new Python egg packaging specs + +* Thu Jan 11 2007 Jeffrey C. Ollie - 1.5.0-1 +- Update to 1.5.0 + +* Fri Dec 8 2006 Jeffrey C. Ollie - 1.4.0-3 +- Bump release for rebuild with Python 2.5 + +* Mon Aug 14 2006 Jeffrey C. Ollie - 1.4.0-2 +- No longer ghost *.pyo files, thus further simplifying the files section. + +* Sat Aug 5 2006 Jeffrey C. Ollie - 1.4.0-1 +- Update to 1.4.0 +- Remove unneeded python-abi requires +- Remove unneeded python_sitearch macro + +* Fri May 26 2006 Jeffrey C. Ollie - 1.3.5-1 +- First version for Fedora Extras