- Build Python 2.6 subpackage for EPEL 5
This commit is contained in:
parent
dabb91e73d
commit
2cd4f437e5
@ -1,8 +1,18 @@
|
|||||||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
|
||||||
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?rhel} == 5
|
||||||
|
%global with_python26 1
|
||||||
|
%{!?py26dir: %global py26dir %{_builddir}/python26-%{name}-%{version}-%{release}}
|
||||||
|
%{!?__python26: %global __python26 /usr/bin/python26}
|
||||||
|
%{!?python26_sitelib: %global python26_sitelib %(%{__python26} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
Name: python-dns
|
Name: python-dns
|
||||||
Version: 1.9.2
|
Version: 1.9.2
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: DNS toolkit for Python
|
Summary: DNS toolkit for Python
|
||||||
|
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
@ -13,12 +23,17 @@ Source1: http://www.dnspython.org/kits/%{version}/dnspython-%{version}.ta
|
|||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%if 0%{?fedora} >= 8
|
BuildRequires: python-devel
|
||||||
|
%if 0%{?fedora} > 8
|
||||||
BuildRequires: python-setuptools-devel
|
BuildRequires: python-setuptools-devel
|
||||||
%else
|
%else
|
||||||
BuildRequires: python-setuptools
|
BuildRequires: python-setuptools
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?with_python26}
|
||||||
|
BuildRequires: python26-devel
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
dnspython is a DNS toolkit for Python. It supports almost all record
|
dnspython is a DNS toolkit for Python. It supports almost all record
|
||||||
types. It can be used for queries, zone transfers, and dynamic
|
types. It can be used for queries, zone transfers, and dynamic
|
||||||
@ -29,6 +44,22 @@ level classes perform queries for data of a given name, type, and
|
|||||||
class, and return an answer set. The low level classes allow direct
|
class, and return an answer set. The low level classes allow direct
|
||||||
manipulation of DNS zones, messages, names, and records.
|
manipulation of DNS zones, messages, names, and records.
|
||||||
|
|
||||||
|
%if 0%{?with_python26}
|
||||||
|
%package -n python26-dns
|
||||||
|
Summary: DNS toolkit for Python 2.6
|
||||||
|
Group: Development/Languages
|
||||||
|
|
||||||
|
%description -n python26-dns
|
||||||
|
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.
|
||||||
|
%endif
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup0 -q -n dnspython-%{version}
|
%setup0 -q -n dnspython-%{version}
|
||||||
|
|
||||||
@ -36,13 +67,31 @@ manipulation of DNS zones, messages, names, and records.
|
|||||||
# from documentation
|
# from documentation
|
||||||
find examples -type f | xargs chmod a-x
|
find examples -type f | xargs chmod a-x
|
||||||
|
|
||||||
|
%if 0%{?with_python26}
|
||||||
|
rm -rf %{py26dir}
|
||||||
|
cp -a . %{py26dir}
|
||||||
|
find %{py26dir} -name '*.py' | xargs sed -i '1s|^#!.*python|#!%{__python26}|'
|
||||||
|
%endif
|
||||||
|
|
||||||
%build
|
%build
|
||||||
CFLAGS="%{optflags}" %{__python} -c 'import setuptools; execfile("setup.py")' build
|
CFLAGS="%{optflags}" %{__python} -c 'import setuptools; execfile("setup.py")' build
|
||||||
|
|
||||||
|
%if 0%{?with_python26}
|
||||||
|
pushd %{py26dir}
|
||||||
|
CFLAGS="%{optflags}" %{__python26} setup.py build
|
||||||
|
popd
|
||||||
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf %{buildroot}
|
rm -rf %{buildroot}
|
||||||
%{__python} -c 'import setuptools; execfile("setup.py")' install --skip-build --root %{buildroot}
|
%{__python} -c 'import setuptools; execfile("setup.py")' install --skip-build --root %{buildroot}
|
||||||
|
|
||||||
|
%if 0%{?with_python26}
|
||||||
|
pushd %{py26dir}
|
||||||
|
CFLAGS="%{optflags}" %{__python26} setup.py install --skip-build --root %{buildroot}
|
||||||
|
popd
|
||||||
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
pushd tests
|
pushd tests
|
||||||
# skip one test because it queries the network
|
# skip one test because it queries the network
|
||||||
@ -54,6 +103,18 @@ do
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
%if 0%{?with_python26}
|
||||||
|
pushd %{py26dir}/tests
|
||||||
|
# skip one test because it queries the network
|
||||||
|
for py in *.py
|
||||||
|
do
|
||||||
|
if [ $py != resolver.py ]
|
||||||
|
then
|
||||||
|
PYTHONPATH=%{buildroot}%{python26_sitelib} %{__python26} $py
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
%endif
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf %{buildroot}
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
@ -64,7 +125,19 @@ rm -rf %{buildroot}
|
|||||||
%{python_sitelib}/*egg-info
|
%{python_sitelib}/*egg-info
|
||||||
%{python_sitelib}/dns
|
%{python_sitelib}/dns
|
||||||
|
|
||||||
|
%if 0%{?with_python26}
|
||||||
|
%files -n python26-dns
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc ChangeLog LICENSE README TODO examples
|
||||||
|
|
||||||
|
%{python26_sitelib}/*egg-info
|
||||||
|
%{python26_sitelib}/dns
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Dec 2 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.9.2-2
|
||||||
|
- Build Python 2.6 subpackage for EPEL 5
|
||||||
|
|
||||||
* Tue Nov 23 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.9.2-1
|
* Tue Nov 23 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.9.2-1
|
||||||
- It's brown paper bag time :) The fix for the import problems was
|
- 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
|
- actually bad, but didn't show up in testing because the test suite's
|
||||||
|
Loading…
Reference in New Issue
Block a user