- Re-generated spec file with py2pack
- Run testsuite (using python-nose) - Fix non-executable script rpmlint warning OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ipaddr?expand=0&rev=17
This commit is contained in:
parent
14abdfc2b4
commit
f5741be026
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 22 08:32:18 UTC 2011 - saschpe@suse.de
|
||||||
|
|
||||||
|
- Re-generated spec file with py2pack
|
||||||
|
- Run testsuite (using python-nose)
|
||||||
|
- Fix non-executable script rpmlint warning
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 8 09:47:53 UTC 2011 - klaussfreire@users.sourceforge.net
|
Fri Jul 8 09:47:53 UTC 2011 - klaussfreire@users.sourceforge.net
|
||||||
|
|
||||||
|
@ -1,62 +1,61 @@
|
|||||||
|
#
|
||||||
|
# spec file for package python-ipaddr
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# 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/
|
||||||
|
#
|
||||||
|
|
||||||
Name: python-ipaddr
|
Name: python-ipaddr
|
||||||
Version: 2.1.9
|
Version: 2.1.9
|
||||||
Release: 1
|
Release: 0
|
||||||
Summary: Python IP address manipulation library
|
Url: http://code.google.com/p/ipaddr-py/
|
||||||
Group: Development/Libraries/Python
|
Summary: Google's IP address manipulation library
|
||||||
License: Apache-2.0
|
License: Apache License, Version 2.0
|
||||||
URL: http://code.google.com/p/ipaddr-py/
|
Group: Development/Languages/Python
|
||||||
Source0: http://ipaddr-py.googlecode.com/files/ipaddr-%{version}.tar.gz
|
Source: ipaddr-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-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
|
BuildRequires: python-devel
|
||||||
|
BuildRequires: python-distribute
|
||||||
|
BuildRequires: python-nose
|
||||||
|
%if 0%{?suse_version}
|
||||||
|
%py_requires
|
||||||
|
%if 0%{?suse_version} > 1110
|
||||||
|
BuildArch: noarch
|
||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||||
BuildArchitectures: noarch
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
An IPv4/IPv6 manipulation library in Python. This library is used to create/poke/manipulate IPv4 and IPv6 addresses and prefixes.
|
Google's IP address manipulation library. An IPv4/IPv6 manipulation library
|
||||||
|
in Python. This library is used to create/poke/manipulate IPv4 and IPv6
|
||||||
|
addresses and prefixes.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n ipaddr-%{version}
|
%setup -q -n ipaddr-%{version}
|
||||||
|
sed -i "1d" ipaddr.py # Fix non-executable script
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__python} setup.py build
|
python setup.py build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%if 0%{?suse_version}
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||||
%{__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
|
%check
|
||||||
%defattr(-,root,root)
|
nosetests
|
||||||
%doc README
|
|
||||||
%doc COPYING
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc COPYING README RELEASENOTES
|
||||||
|
%{python_sitelib}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user