Blame SPECS/python-dns.spec

f4df0f
%global from_checkout 1
f4df0f
%global commit 465785f85f87508209117264c677080e901e957c
f4df0f
%global shortcommit %(c=%{commit}; echo ${c:0:7})
f4df0f
f4df0f
Name:           python-dns
f4df0f
Version:        1.12.0
f4df0f
Release:        4%{?from_checkout:.20150617git%{shortcommit}}%{?dist}
f4df0f
Summary:        DNS toolkit for Python
f4df0f
f4df0f
Group:          Development/Languages
f4df0f
License:        MIT
f4df0f
URL:            http://www.dnspython.org/
f4df0f
%if 0%{?from_checkout}
f4df0f
Source0:        https://github.com/rthalley/%{name}/archive/%{commit}.tar.gz
f4df0f
%else
f4df0f
Source0:        http://www.dnspython.org/kits/%{version}/dnspython-%{version}.tar.gz
f4df0f
%endif
f4df0f
Patch0:			incorrect-exception-to-udp-function.patch
f4df0f
# Reject lines with less than two tokens
f4df0f
# Fixed upstream: https://github.com/rthalley/dnspython/commit/13347e2450c7bfa928eb80b01850e52dfa095802
f4df0f
# Resolves:     https://bugzilla.redhat.com/show_bug.cgi?id=1400934
f4df0f
Patch1:         reject-lines-with-less-than-two-tokens.patch
f4df0f
# Fix typo in resolver.py
f4df0f
# Fixed upstream: https://github.com/rthalley/dnspython/commit/84d3c7dffec9c0a380aa5f696ca728879dbe38ac
f4df0f
# Resolves:     https://bugzilla.redhat.com/show_bug.cgi?id=1440037
f4df0f
Patch2:         fix-typo-in-resolver.patch
f4df0f
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
f4df0f
f4df0f
BuildArch:      noarch
f4df0f
BuildRequires:  python-setuptools
f4df0f
f4df0f
%description
f4df0f
dnspython is a DNS toolkit for Python. It supports almost all record
f4df0f
types. It can be used for queries, zone transfers, and dynamic
f4df0f
updates. It supports TSIG authenticated messages and EDNS0.
f4df0f
f4df0f
dnspython provides both high and low level access to DNS. The high
f4df0f
level classes perform queries for data of a given name, type, and
f4df0f
class, and return an answer set. The low level classes allow direct
f4df0f
manipulation of DNS zones, messages, names, and records.
f4df0f
f4df0f
%prep
f4df0f
%setup -q -n rthalley-dnspython-%{?from_checkout:%{shortcommit}}%{!?from_checkout:%{version}}
f4df0f
%patch0 -p1
f4df0f
%patch1 -p1
f4df0f
%patch2 -p1
f4df0f
f4df0f
# strip executable permissions so that we don't pick up dependencies
f4df0f
# from documentation
f4df0f
find examples -type f | xargs chmod a-x
f4df0f
f4df0f
f4df0f
%build
f4df0f
CFLAGS="%{optflags}" %{__python} -c 'import setuptools; execfile("setup.py")' build
f4df0f
f4df0f
f4df0f
%install
f4df0f
rm -rf %{buildroot}
f4df0f
%{__python} -c 'import setuptools; execfile("setup.py")' install --skip-build --root %{buildroot}
f4df0f
f4df0f
f4df0f
%check
f4df0f
pushd tests
f4df0f
# skip one test because it queries the network
f4df0f
mv test_resolver.py test_resolver.pynorun
f4df0f
%{__python} utest.py
f4df0f
f4df0f
f4df0f
%files
f4df0f
%doc ChangeLog LICENSE README examples
f4df0f
f4df0f
%{python_sitelib}/*egg-info
f4df0f
%{python_sitelib}/dns
f4df0f
f4df0f
f4df0f
%changelog
f4df0f
* Wed Apr 19 2017 Charalampos Stratakis <cstratak@redhat.com> - 1.12.0-4
f4df0f
- Fix typo in resolver.py
f4df0f
Resolves: rhbz#1440037
f4df0f
f4df0f
* Tue Feb 14 2017 Charalampos Stratakis <cstratak@redhat.com> - 1.12.0-3
f4df0f
- Reject lines with less than two tokens
f4df0f
Resolves: rhbz#1400934
f4df0f
f4df0f
* Tue Mar 08 2016 Charalampos Stratakis <cstratak@redhat.com> - 1.12.0-2
f4df0f
- Added patch to fix incorrect exception to udp function
f4df0f
Resolves: rhbz#1312770
f4df0f
f4df0f
* Wed Jun 17 2015 Matej Stuchlik <mstuchli@redhat.com> - 1.12.0-1.20150617git465785f
f4df0f
- Update to 1.12.0 (465785f)
f4df0f
Resolves: rhbz#1196971
f4df0f
f4df0f
* Mon Sep 01 2014 Slavek Kabrda <bkabrda@redhat.com> - 1.11.1-2.20140901git9329daf
f4df0f
- Rebase to latest upstream commit
f4df0f
- Remove unnecessary sources and patches
f4df0f
- Specfile cleanup
f4df0f
Resolves: rhbz#1112999
f4df0f
f4df0f
* Tue Aug 26 2014 Slavek Kabrda <bkabrda@redhat.com> - 1.11.1-1
f4df0f
- Rebase to version 1.11.1
f4df0f
- Remove downstream patch that was merged upstream
f4df0f
Resolves: rhbz#1112999
f4df0f
f4df0f
* Tue Jan 28 2014 Robert Kuska <rkuska@redhat.com> - 1.10.0-5
f4df0f
- Patch to fix LOC records parsing
f4df0f
Resolves: rhbz#1056747
f4df0f
f4df0f
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.10.0-4
f4df0f
- Mass rebuild 2013-12-27
f4df0f
f4df0f
* Sat Feb 16 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1.10.0-3
f4df0f
- add python3-dns subpackage (rhbz#911933)
f4df0f
f4df0f
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-2
f4df0f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
f4df0f
f4df0f
* Mon Sep 17 2012 Paul Wouters <pwouters@redhat.com> - 1.10.0-1
f4df0f
- Updated to 1.10.0
f4df0f
- Patch to support TLSA RRtype
f4df0f
f4df0f
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.4-3
f4df0f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
f4df0f
f4df0f
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.4-2
f4df0f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
f4df0f
f4df0f
* Mon Mar 28 2011 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.9.4-1
f4df0f
-
f4df0f
- dnspython 1.9.4 has been released and is available at
f4df0f
- http://www.dnspython.org/kits/1.9.4/
f4df0f
-
f4df0f
- There is no new functionality in this release; just a few bug fixes
f4df0f
- in RRSIG and SIG code.
f4df0f
-
f4df0f
- I will be eliminating legacy code for earlier versions of DNSSEC in a
f4df0f
- future release of dnspython.
f4df0f
f4df0f
* Fri Mar 25 2011 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.9.3-1
f4df0f
-
f4df0f
- New since 1.9.2:
f4df0f
-
f4df0f
-     A boolean parameter, 'raise_on_no_answer', has been added to
f4df0f
- the query() methods.  In no-error, no-data situations, this
f4df0f
- parameter determines whether NoAnswer should be raised or not.
f4df0f
- If True, NoAnswer is raised.  If False, then an Answer()
f4df0f
- object with a None rrset will be returned.
f4df0f
-
f4df0f
- Resolver Answer() objects now have a canonical_name field.
f4df0f
-
f4df0f
- Rdata now have a __hash__ method.
f4df0f
-
f4df0f
- Bugs fixed since 1.9.2:
f4df0f
-
f4df0f
-        Dnspython was erroneously doing case-insensitive comparisons
f4df0f
- of the names in NSEC and RRSIG RRs.
f4df0f
-
f4df0f
- We now use "is" and not "==" when testing what section an RR
f4df0f
- is in.
f4df0f
-
f4df0f
- The resolver now disallows metaqueries.
f4df0f
f4df0f
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.2-2
f4df0f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f4df0f
f4df0f
* Tue Nov 23 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.9.2-1
f4df0f
- It's brown paper bag time :) The fix for the import problems was
f4df0f
- actually bad, but didn't show up in testing because the test suite's
f4df0f
- conditional importing code hid the problem.
f4df0f
-
f4df0f
- Any, 1.9.2 is out.
f4df0f
-
f4df0f
- Sorry for the churn!
f4df0f
f4df0f
* Mon Nov 22 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.9.1-1
f4df0f
- New since 1.9.0:
f4df0f
-
f4df0f
-        Nothing.
f4df0f
-
f4df0f
- Bugs fixed since 1.9.0
f4df0f
-
f4df0f
-        The dns.dnssec module didn't work with DSA due to namespace
f4df0f
-        contamination from a "from"-style import.
f4df0f
-
f4df0f
- New since 1.8.0:
f4df0f
-
f4df0f
-        dnspython now uses poll() instead of select() when available.
f4df0f
-
f4df0f
-        Basic DNSSEC validation can be done using dns.dnsec.validate()
f4df0f
-        and dns.dnssec.validate_rrsig() if you have PyCrypto 2.3 or
f4df0f
-        later installed.  Complete secure resolution is not yet
f4df0f
-        available.
f4df0f
-
f4df0f
-        Added key_id() to the DNSSEC module, which computes the DNSSEC
f4df0f
-        key id of a DNSKEY rdata.
f4df0f
-
f4df0f
-        Added make_ds() to the DNSSEC module, which returns the DS RR
f4df0f
-        for a given DNSKEY rdata.
f4df0f
-
f4df0f
-        dnspython now raises an exception if HMAC-SHA284 or
f4df0f
-        HMAC-SHA512 are used with a Python older than 2.5.2.  (Older
f4df0f
-        Pythons do not compute the correct value.)
f4df0f
-
f4df0f
-        Symbolic constants are now available for TSIG algorithm names.
f4df0f
-
f4df0f
- Bugs fixed since 1.8.0
f4df0f
-
f4df0f
-        dns.resolver.zone_for_name() didn't handle a query response
f4df0f
-        with a CNAME or DNAME correctly in some cases.
f4df0f
-
f4df0f
-        When specifying rdata types and classes as text, Unicode
f4df0f
-        strings may now be used.
f4df0f
-
f4df0f
-        Hashlib compatibility issues have been fixed.
f4df0f
-
f4df0f
-        dns.message now imports dns.edns.
f4df0f
-
f4df0f
-        The TSIG algorithm value was passed incorrectly to use_tsig()
f4df0f
-        in some cases.
f4df0f
f4df0f
* Fri Aug 13 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.8.0-3
f4df0f
- Add a patch from upstream to fix a Python 2.7 issue.
f4df0f
f4df0f
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.8.0-2.1
f4df0f
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
f4df0f
f4df0f
* Wed Jan 27 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.8.0-1.1
f4df0f
- Fix error
f4df0f
f4df0f
* Wed Jan 27 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.8.0-1
f4df0f
- New since 1.7.1:
f4df0f
-
f4df0f
-  Support for hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha384 and
f4df0f
-  hmac-sha512 has been contributed by Kevin Chen.
f4df0f
-
f4df0f
-  The tokenizer's tokens are now Token objects instead of (type,
f4df0f
-  value) tuples.
f4df0f
-
f4df0f
- Bugs fixed since 1.7.1:
f4df0f
-
f4df0f
-  Escapes in masterfiles now work correctly.  Previously they were
f4df0f
-  only working correctly when the text involved was part of a domain
f4df0f
-  name.
f4df0f
-
f4df0f
-  When constructing a DDNS update, if the present() method was used
f4df0f
-  with a single rdata, a zero TTL was not added.
f4df0f
-
f4df0f
-  The entropy pool needed locking to be thread safe.
f4df0f
-
f4df0f
-  The entropy pool's reading of /dev/random could cause dnspython to
f4df0f
-  block.
f4df0f
-
f4df0f
-  The entropy pool did buffered reads, potentially consuming more
f4df0f
-  randomness than we needed.
f4df0f
-
f4df0f
-  The entropy pool did not seed with high quality randomness on
f4df0f
-  Windows.
f4df0f
-
f4df0f
-  SRV records were compared incorrectly.
f4df0f
-
f4df0f
-  In the e164 query function, the resolver parameter was not used.
f4df0f
f4df0f
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.1-2
f4df0f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f4df0f
f4df0f
* Fri Jun 19 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.1-1
f4df0f
- New since 1.7.0:
f4df0f
-
f4df0f
-        Nothing
f4df0f
-
f4df0f
- Bugs fixed since 1.7.0:
f4df0f
-
f4df0f
-        The 1.7.0 kitting process inadventently omitted the code for the
f4df0f
-        DLV RR.
f4df0f
-
f4df0f
-        Negative DDNS prerequisites are now handled correctly.
f4df0f
f4df0f
* Fri Jun 19 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.0-1
f4df0f
- New since 1.6.0:
f4df0f
-
f4df0f
-        Rdatas now have a to_digestable() method, which returns the
f4df0f
-        DNSSEC canonical form of the rdata, suitable for use in
f4df0f
-        signature computations.
f4df0f
-
f4df0f
-        The NSEC3, NSEC3PARAM, DLV, and HIP RR types are now supported.
f4df0f
-
f4df0f
-        An entropy module has been added and is used to randomize query ids.
f4df0f
-
f4df0f
-        EDNS0 options are now supported.
f4df0f
-
f4df0f
-        UDP IXFR is now supported.
f4df0f
-
f4df0f
-        The wire format parser now has a 'one_rr_per_rrset' mode, which
f4df0f
-        suppresses the usual coalescing of all RRs of a given type into a
f4df0f
-        single RRset.
f4df0f
-
f4df0f
-        Various helpful DNSSEC-related constants are now defined.
f4df0f
-
f4df0f
-        The resolver's query() method now has an optional 'source' parameter,
f4df0f
-        allowing the source IP address to be specified.
f4df0f
-
f4df0f
- Bugs fixed since 1.6.0:
f4df0f
-
f4df0f
-        On Windows, the resolver set the domain incorrectly.
f4df0f
-
f4df0f
-        DS RR parsing only allowed one Base64 chunk.
f4df0f
-
f4df0f
-        TSIG validation didn't always use absolute names.
f4df0f
-
f4df0f
-        NSEC.to_text() only printed the last window.
f4df0f
-
f4df0f
-        We did not canonicalize IPv6 addresses before comparing them; we
f4df0f
-        would thus treat equivalent but different textual forms, e.g.
f4df0f
-        "1:00::1" and "1::1" as being non-equivalent.
f4df0f
-
f4df0f
-        If the peer set a TSIG error, we didn't raise an exception.
f4df0f
-
f4df0f
-        Some EDNS bugs in the message code have been fixed (see the ChangeLog
f4df0f
-        for details).
f4df0f
f4df0f
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.0-4
f4df0f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
f4df0f
f4df0f
* Sat Nov 29 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.6.0-3
f4df0f
- Rebuild for Python 2.6
f4df0f
f4df0f
* Fri Aug 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.6.0-2
f4df0f
- fix license tag
f4df0f
f4df0f
* Sat Dec  4 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.6.0-1
f4df0f
- Update to 1.6.0
f4df0f
f4df0f
* Tue Oct  9 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.5.0-2
f4df0f
- Follow new Python egg packaging specs
f4df0f
f4df0f
* Thu Jan 11 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.5.0-1
f4df0f
- Update to 1.5.0
f4df0f
f4df0f
* Fri Dec  8 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.4.0-3
f4df0f
- Bump release for rebuild with Python 2.5
f4df0f
f4df0f
* Mon Aug 14 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.4.0-2
f4df0f
- No longer ghost *.pyo files, thus further simplifying the files section.
f4df0f
f4df0f
* Sat Aug  5 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.4.0-1
f4df0f
- Update to 1.4.0
f4df0f
- Remove unneeded python-abi requires
f4df0f
- Remove unneeded python_sitearch macro
f4df0f
f4df0f
* Fri May 26 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.3.5-1
f4df0f
- First version for Fedora Extras
f4df0f