47b79c9a70
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ipaddr?expand=0&rev=15
63 lines
1.8 KiB
RPMSpec
63 lines
1.8 KiB
RPMSpec
Name: python-ipaddr
|
|
Version: 2.1.9
|
|
Release: 1
|
|
Summary: Python IP address manipulation library
|
|
Group: Development/Libraries/Python
|
|
License: Apache License, Version 2.0
|
|
URL: http://code.google.com/p/ipaddr-py/
|
|
Source0: http://ipaddr-py.googlecode.com/files/ipaddr-%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-build
|
|
BuildRequires: python-setuptools
|
|
%if 0%{?suse_version} > 1010
|
|
BuildRequires: fdupes
|
|
%endif
|
|
%if 0%{?suse_version} > 0 && 0%{?suse_version} < 1130
|
|
# py_requires is no longer needed since 11.3
|
|
%py_requires
|
|
%else
|
|
%if 0%{?suse_version}
|
|
Requires: python-base = %{py_ver}
|
|
%else
|
|
Requires: python
|
|
%endif
|
|
%if 0%{?fedora}
|
|
# Fedora requires python-devel
|
|
BuildRequires: python-devel
|
|
%endif
|
|
%endif
|
|
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
|
|
BuildArchitectures: noarch
|
|
%endif
|
|
|
|
%description
|
|
An IPv4/IPv6 manipulation library in Python. This library is used to create/poke/manipulate IPv4 and IPv6 addresses and prefixes.
|
|
|
|
%prep
|
|
%setup -q -n ipaddr-%{version}
|
|
|
|
%build
|
|
%{__python} setup.py build
|
|
|
|
%install
|
|
%if 0%{?suse_version}
|
|
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --compile --optimize=2 --record-rpm=INSTALLED_FILES
|
|
%else
|
|
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --compile --optimize=2 --record=INSTALLED_FILES
|
|
%endif
|
|
%if 0%{?suse_version} > 1010
|
|
%fdupes %{buildroot}%{py_sitedir}
|
|
%endif
|
|
%if 0%{?mdkversion} >= 201001
|
|
# Mandriva 2010.1 has some issues with byte compiling
|
|
# It refuses to, but it still outputs the .py[co] to the INSTALLED_FILES list
|
|
grep -v '[.]py[co]$' INSTALLED_FILES > INSTALLED_FILES_MDK
|
|
mv -f INSTALLED_FILES_MDK INSTALLED_FILES
|
|
%endif
|
|
|
|
%files -f INSTALLED_FILES
|
|
%defattr(-,root,root)
|
|
%doc README
|
|
%doc COPYING
|
|
|
|
%changelog
|