15
0
forked from pool/python-ipy
Files
python-ipy/python-ipy.spec
Alexandre Rogoski 5e855642f8 Accepting request 36484 from home:aledr:branches
Copy from home:aledr:branches/python-ipy via accept of submit request 36484 revision 2.
Request was accepted with message:
Reviewed ok, no objections since sr.

OBS-URL: https://build.opensuse.org/request/show/36484
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ipy?expand=0&rev=3
2010-04-01 12:43:23 +00:00

65 lines
2.0 KiB
RPMSpec

#
# spec file for package
#
# Copyright (c) 2010 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/
#
%define modname IPy
Name: python-ipy
Version: 0.70
Release: 1
License: BSD
Summary: Class and Tools for Handling of IPv4 and IPv6 Addresses and Networks
Url: http://software.inl.fr/trac/wiki/IPy
Group: Development/Libraries/Python
Source: %{modname}-%{version}.tar.bz2
BuildRequires: python-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{py_requires}
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
BuildArch: noarch
%endif
%description
The IP class allows a comfortable parsing and handling for most
notations in use for IPv4 and IPv6 addresses and networks. It was
greatly inspired by RIPE's Perl module NET::IP's interface but
doesn't share the implementation. It doesn't share non-CIDR netmasks,
so funky stuff like a netmask of 0xffffff0f can't be done here.
Author:
--------
Victor Stinner <victor.stinner AT inl.fr>
Maximillian Dornseif
%prep
%setup -q -n %{modname}-%{version}
%build
export CFLAGS="%{optflags}"
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot} --record=INSTALLED_FILES
%clean
rm -rf %{buildroot}
%files -f INSTALLED_FILES
%defattr(-,root,root)
%doc AUTHORS COPYING ChangeLog README
%changelog