2010-05-12 11:42:20 +00:00
|
|
|
#
|
2011-02-11 00:54:27 +00:00
|
|
|
# spec file for package python-netaddr
|
2010-05-12 11:42:20 +00:00
|
|
|
#
|
2011-02-11 00:54:27 +00:00
|
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2010-05-12 11:42:20 +00:00
|
|
|
#
|
|
|
|
# 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-netaddr
|
2010-10-06 01:58:49 +00:00
|
|
|
Version: 0.7.5
|
2010-05-12 11:42:20 +00:00
|
|
|
Release: 1
|
2011-03-03 09:55:40 +00:00
|
|
|
License: BSD3c
|
2010-05-12 11:42:20 +00:00
|
|
|
Summary: Pythonic manipulation of IPv4, IPv6, CIDR, EUI and MAC network addresses
|
|
|
|
Url: http://code.google.com/p/netaddr
|
|
|
|
Group: Development/Libraries/Python
|
2010-10-06 01:58:49 +00:00
|
|
|
Source: netaddr-%{version}.tar.bz2
|
2010-05-12 11:42:20 +00:00
|
|
|
BuildRequires: python-devel
|
|
|
|
BuildRequires: python-setuptools
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2011-03-03 09:55:40 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
%py_requires
|
|
|
|
%if 0%{?suse_version} > 1110
|
2010-05-12 11:42:20 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
%endif
|
2011-03-03 09:55:40 +00:00
|
|
|
%endif
|
2010-05-12 11:42:20 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
A pure Python network address representation and manipulation library.
|
|
|
|
|
|
|
|
netaddr provides a Pythonic way of working with:
|
|
|
|
- IPv4 and IPv6 addresses and subnets (including CIDR notation);
|
|
|
|
- MAC (Media Access Control) addresses in multiple formats;
|
|
|
|
- IEEE EUI-64, OUI and IAB identifiers;
|
|
|
|
- a user friendly IP glob-style format.
|
|
|
|
|
|
|
|
Included are routines for:
|
|
|
|
- generating, sorting and summarizing IP addresses;
|
|
|
|
- converting IP addresses and ranges between various different formats;
|
|
|
|
- performing set based operations on groups of IP addresses and subnets;
|
|
|
|
- arbitrary IP address range calculations and conversions;
|
|
|
|
- querying IEEE OUI and IAB organisational information;
|
|
|
|
- querying of IP standards related data from key IANA data sources.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n netaddr-%{version}
|
2011-03-03 09:55:40 +00:00
|
|
|
chmod -x AUTHORS CHANGELOG COPYRIGHT README LICENSE THANKS # remove executable bit from docs
|
2010-05-12 11:42:20 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
%{__python} setup.py build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES
|
|
|
|
|
|
|
|
%files -f INSTALLED_FILES
|
|
|
|
%defattr(-,root,root)
|
2011-03-03 09:55:40 +00:00
|
|
|
%doc AUTHORS CHANGELOG COPYRIGHT README LICENSE THANKS
|
|
|
|
|
2011-02-11 00:54:27 +00:00
|
|
|
%changelog
|