2006-05-28 12:51:57 +00:00
|
|
|
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
|
|
|
|
|
|
Name: python-dns
|
2007-12-09 04:39:21 +00:00
|
|
|
Version: 1.6.0
|
|
|
|
Release: 1%{?dist}
|
2006-05-28 12:51:57 +00:00
|
|
|
Summary: DNS toolkit for Python
|
|
|
|
|
|
|
|
Group: Development/Languages
|
|
|
|
License: BSD-like
|
|
|
|
URL: http://www.dnspython.org/
|
|
|
|
Source0: http://www.dnspython.org/kits/%{version}/dnspython-%{version}.tar.gz
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
BuildArch: noarch
|
2007-10-09 16:26:23 +00:00
|
|
|
%if 0%{?fedora} >= 8
|
|
|
|
BuildRequires: python-setuptools-devel
|
|
|
|
%else
|
|
|
|
BuildRequires: python-setuptools
|
|
|
|
%endif
|
2006-05-28 12:51:57 +00:00
|
|
|
|
|
|
|
%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
|
|
|
|
%setup -q -n dnspython-%{version}
|
|
|
|
|
|
|
|
# strip executable permissions so that we don't pick up dependencies
|
|
|
|
# from documentation
|
|
|
|
find examples -type f | xargs chmod a-x
|
|
|
|
|
|
|
|
%build
|
2007-10-09 16:26:23 +00:00
|
|
|
CFLAGS="%{optflags}" %{__python} -c 'import setuptools; execfile("setup.py")' build
|
2006-05-28 12:51:57 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
2007-10-09 16:26:23 +00:00
|
|
|
%{__python} -c 'import setuptools; execfile("setup.py")' install --skip-build --root %{buildroot}
|
2006-05-28 12:51:57 +00:00
|
|
|
|
|
|
|
%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
|
|
|
|
|
2007-10-09 16:26:23 +00:00
|
|
|
%{python_sitelib}/*egg-info
|
2006-08-15 04:23:39 +00:00
|
|
|
%{python_sitelib}/dns
|
2006-05-28 12:51:57 +00:00
|
|
|
|
|
|
|
%changelog
|
2007-12-09 04:39:21 +00:00
|
|
|
* Sat Dec 4 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.6.0-1
|
|
|
|
- Update to 1.6.0
|
|
|
|
|
2007-10-09 16:26:23 +00:00
|
|
|
* Tue Oct 9 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.5.0-2
|
|
|
|
- Follow new Python egg packaging specs
|
|
|
|
|
2007-01-11 16:31:35 +00:00
|
|
|
* Thu Jan 11 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.5.0-1
|
|
|
|
- Update to 1.5.0
|
|
|
|
|
2006-12-08 17:07:27 +00:00
|
|
|
* Fri Dec 8 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.4.0-3
|
|
|
|
- Bump release for rebuild with Python 2.5
|
|
|
|
|
2006-08-15 04:23:39 +00:00
|
|
|
* 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.
|
|
|
|
|
2006-08-06 04:05:37 +00:00
|
|
|
* 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
|
|
|
|
|
2006-05-28 12:51:57 +00:00
|
|
|
* Fri May 26 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.3.5-1
|
|
|
|
- First version for Fedora Extras
|
|
|
|
|