15
0
2011-03-24 18:49:15 +00:00
committed by Git OBS Bridge
parent 04c40b5968
commit adbf7a6804
4 changed files with 63 additions and 31 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-dnspython (Version 1.9.2)
# spec file for package python-dnspython
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -11,55 +11,66 @@
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
%define mod_name dnspython
Name: python-dnspython
Version: 1.9.2
Release: 1
License: Other License(s), see package, BSD
Summary: A DNS toolkit for Python
Name: python-%{mod_name}
Version: 1.9.3
Release: 0
Url: http://www.dnspython.org
Group: Productivity/Networking/DNS/Utilities
Source: http://www.dnspython.org/kits/stable/dnspython-%{version}.tar.bz2
BuildRequires: python-devel
Summary: A DNS toolkit for Python
License: http://www.dnspython.org/LICENSE
Group: Development/Languages/Python
Source: %{mod_name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{py_requires}
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
BuildRequires: python-devel
%if 0%{?suse_version}
%py_requires
%if 0%{?suse_version} > 1110
BuildArch: noarch
%endif
%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.
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.
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.
dnspython originated at Nominum where it was developed to facilitate the testing
of DNS software. Nominum has generously allowed it to be open sourced under a
BSD-style license.
%prep
%setup -n dnspython-%{version}
%setup -q -n %{mod_name}-%{version}
%build
find -name .\* -delete
export CFLAGS="%{optflags}"
%{__python} setup.py build
python setup.py build
%install
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES
%{__chmod} 644 {examples,tests}/*.py
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%clean
%{__rm} -rf %{buildroot}
rm -rf %{buildroot}
%files -f INSTALLED_FILES
%defattr(-,root,root)
%doc ChangeLog LICENSE PKG-INFO README TODO
%files
%defattr(-,root,root,-)
# You may have to add additional files here (documentation and binaries mostly)
%python_sitelib/dns*
%python_sitelib/*.egg-info
%doc README ChangeLog
%doc examples
%doc tests