[packages/python-dns] - updated to 1.15.0 - added python3- package (now built from the same source)

qboosh qboosh at pld-linux.org
Mon Apr 17 09:06:32 CEST 2017


commit 6b562645abf0072d4de7b2984e2f80d8a48c1b9a
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date:   Mon Apr 17 09:06:43 2017 +0200

    - updated to 1.15.0
    - added python3- package (now built from the same source)

 python-dns.spec | 85 +++++++++++++++++++++++++++++++++++++++++++++++++--------
 1 file changed, 74 insertions(+), 11 deletions(-)
---
diff --git a/python-dns.spec b/python-dns.spec
index d55071e..48cfbd6 100644
--- a/python-dns.spec
+++ b/python-dns.spec
@@ -1,21 +1,30 @@
-# NOTE: python3 version in separate package (python3-dns)
+#
+# Conditional build:
+%bcond_without	python2	# CPython 2.x module
+%bcond_without	python3	# CPython 2.x module
 
 %define		module	dns
-
-Summary:	dnspython - a DNS toolkit for Python
-Summary(pl.UTF-8):	dnspython - zestaw narzędzi do DNS dla Pythona
+Summary:	dnspython - a DNS toolkit for Python 2
+Summary(pl.UTF-8):	dnspython - zestaw narzędzi do DNS dla Pythona 2
 Name:		python-%{module}
-Version:	1.12.0
+Version:	1.15.0
 Release:	1
 License:	MIT
 Group:		Development/Languages/Python
 Source0:	http://www.dnspython.org/kits/%{version}/dnspython-%{version}.tar.gz
-# Source0-md5:	3f2601ef3c8b77fc6d21a9c77a81efeb
+# Source0-md5:	63a679089822fb86127867c315286dc5
 URL:		http://www.dnspython.org/
-BuildRequires:	python-devel >= 1:2.5
+%if %{with python2}
+BuildRequires:	python-devel >= 1:2.6
+BuildRequires:	python-setuptools
+%endif
+%if %{with python3}
+BuildRequires:	python3-devel >= 1:3.3
+BuildRequires:	python3-setuptools
+%endif
 BuildRequires:	rpm-pythonprov
-BuildRequires:	rpmbuild(macros) >= 1.710
-%pyrequires_eq	python-modules
+BuildRequires:	rpmbuild(macros) >= 1.714
+Requires:	python-modules >= 1:2.6
 BuildArch:	noarch
 BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -41,28 +50,82 @@ nazwy, rodzaju i klasy, a zwracają zbiór odpowiedzi. Klasy
 niskopoziomowe umożliwiają bezpośrednie manipulacje na strefach,
 komunikatach, nazwach i rekordach w DNS-ie.
 
+%package -n python3-%{module}
+Summary:	dnspython - a DNS toolkit for Python 3
+Summary(pl.UTF-8):	dnspython - zestaw narzędzi do DNS dla Pythona 3
+Group:		Development/Languages/Python
+Requires:	python3-modules >= 1:3.3
+
+%description -n python3-%{module}
+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 -n python3-%{module} -l pl.UTF-8
+dnspython to zestaw narzędzi do DNS dla Pythona. Obsługuje prawie
+wszystkie rodzaje rekordów. Może być używany do zapytań, transferów
+stref oraz dynamicznych uaktualnień. Obsługuje uwierzytelnione
+komunikaty TSIG oraz EDNS0.
+
+dnspython dostarcza zarówno wysoko- jak i niskopoziomowy dostęp do
+DNS-a. Klasy wysokopoziomowe wykonują zapytania o dane dla podanej
+nazwy, rodzaju i klasy, a zwracają zbiór odpowiedzi. Klasy
+niskopoziomowe umożliwiają bezpośrednie manipulacje na strefach,
+komunikatach, nazwach i rekordach w DNS-ie.
+
 %prep
 %setup -q -n dnspython-%{version}
 
 %build
+%if %{with python2}
 %py_build
+%endif
+
+%if %{with python3}
+%py3_build
+%endif
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
 
+%if %{with python2}
 %py_install
 
 %py_postclean
 
+install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
 cp -pr examples/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
+%endif
+
+%if %{with python3}
+%py3_install
+
+install -d $RPM_BUILD_ROOT%{_examplesdir}/python3-%{module}-%{version}
+cp -pr examples/* $RPM_BUILD_ROOT%{_examplesdir}/python3-%{module}-%{version}
+%endif
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%if %{with python2}
 %files
 %defattr(644,root,root,755)
-%doc ChangeLog LICENSE README
+%doc ChangeLog LICENSE
 %{py_sitescriptdir}/dns
 %{py_sitescriptdir}/dnspython-%{version}-py*.egg-info
 %{_examplesdir}/%{name}-%{version}
+%endif
+
+%if %{with python3}
+%files -n python3-%{module}
+%defattr(644,root,root,755)
+%doc ChangeLog LICENSE
+%{py3_sitescriptdir}/dns
+%{py3_sitescriptdir}/dnspython-%{version}-py*.egg-info
+%{_examplesdir}/python3-%{module}-%{version}
+%endif
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-dns.git/commitdiff/6b562645abf0072d4de7b2984e2f80d8a48c1b9a



More information about the pld-cvs-commit mailing list