202 lines
6.3 KiB
RPMSpec
202 lines
6.3 KiB
RPMSpec
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
|
|
Name: python-dns
|
|
Version: 1.8.0
|
|
Release: 3%{?dist}
|
|
Summary: DNS toolkit for Python
|
|
|
|
Group: Development/Languages
|
|
License: MIT
|
|
URL: http://www.dnspython.org/
|
|
Source0: http://www.dnspython.org/kits/%{version}/dnspython-%{version}.tar.gz
|
|
Source1: http://www.dnspython.org/kits/%{version}/dnspython-%{version}.tar.gz.asc
|
|
Patch0: 0001-The-TSIG-algorithm-was-being-passed-to-use_tsig-inco.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildArch: noarch
|
|
%if 0%{?fedora} >= 8
|
|
BuildRequires: python-setuptools-devel
|
|
%else
|
|
BuildRequires: python-setuptools
|
|
%endif
|
|
|
|
%description
|
|
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.
|
|
|
|
%prep
|
|
%setup0 -q -n dnspython-%{version}
|
|
%patch0 -p1
|
|
|
|
# strip executable permissions so that we don't pick up dependencies
|
|
# from documentation
|
|
find examples -type f | xargs chmod a-x
|
|
|
|
%build
|
|
CFLAGS="%{optflags}" %{__python} -c 'import setuptools; execfile("setup.py")' build
|
|
|
|
%install
|
|
rm -rf %{buildroot}
|
|
%{__python} -c 'import setuptools; execfile("setup.py")' install --skip-build --root %{buildroot}
|
|
|
|
%check
|
|
pushd tests
|
|
# skip one test because it queries the network
|
|
for py in *.py
|
|
do
|
|
if [ $py != resolver.py ]
|
|
then
|
|
PYTHONPATH=%{buildroot}%{python_sitelib} %{__python} $py
|
|
fi
|
|
done
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc ChangeLog LICENSE README TODO examples
|
|
|
|
%{python_sitelib}/*egg-info
|
|
%{python_sitelib}/dns
|
|
|
|
%changelog
|
|
* Fri Aug 13 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.8.0-3
|
|
- Add a patch from upstream to fix a Python 2.7 issue.
|
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.8.0-2.1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
* Wed Jan 27 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.8.0-1.1
|
|
- Fix error
|
|
|
|
* Wed Jan 27 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 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 <rel-eng@lists.fedoraproject.org> - 1.7.1-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
* Fri Jun 19 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 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 <jeff@ocjtech.us> - 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 <rel-eng@lists.fedoraproject.org> - 1.6.0-4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
* Sat Nov 29 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.6.0-3
|
|
- Rebuild for Python 2.6
|
|
|
|
* Fri Aug 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.6.0-2
|
|
- fix license tag
|
|
|
|
* Sat Dec 4 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.6.0-1
|
|
- Update to 1.6.0
|
|
|
|
* Tue Oct 9 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.5.0-2
|
|
- Follow new Python egg packaging specs
|
|
|
|
* Thu Jan 11 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.5.0-1
|
|
- Update to 1.5.0
|
|
|
|
* Fri Dec 8 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.4.0-3
|
|
- Bump release for rebuild with Python 2.5
|
|
|
|
* Mon Aug 14 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.4.0-2
|
|
- No longer ghost *.pyo files, thus further simplifying the files section.
|
|
|
|
* Sat Aug 5 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 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 <jeff@ocjtech.us> - 1.3.5-1
|
|
- First version for Fedora Extras
|
|
|