forked from pool/python-netaddr
* Python 3.x is now fully supported. The paint is still drying on this so please help with testing and raise bug tickets when you find any issues! * Moved code hosting to github. All history ported thanks to the most excellent tool, svn2git (http://github.com/nirvdrum/svn2git). * All netaddr objects now use approx. 65% less memory due to the use of __slots__ in classes throughout the codebase. Thanks to Stefan Nordhausen and his Python guru for this suggestion! * Applied many optimisations and speedups throughout the codebase. * Fixed the behaviour of the IPNetwork constructor so it now behaves in a much more sensible and expected way (i.e. no longer uses inet_aton semantics which is just plain odd for network addresses). * One minor change to behaviour in this version is that the .value property on IPAddress and IPNetwork objects no longer support assignment using a string IP address. Only integer value assignments are now valid. The impact of this change should be minimal for the majority of users. * FIXED Issue 49 - http://code.google.com/p/netaddr/issues/detail?id=49 - Incorrect IP range recognition on IPs with leading zeros * FIXED Issue 50 - http://code.google.com/p/netaddr/issues/detail?id=50 - CIDR block parsing * FIXED Issue 52 - http://code.google.com/p/netaddr/issues/detail?id=52 - ipv6 cidr matches incorrectly match ipv4 [sic] * FIXED Issue 53 - http://code.google.com/p/netaddr/issues/detail?id=53 - Error in online documentation * FIXED Issue 54 - http://code.google.com/p/netaddr/issues/detail?id=54 - IP recognition failure * FIXED Issue 55 - http://code.google.com/p/netaddr/issues/detail?id=55 - Support for Python 3.x * FIXED Issue 56 - http://code.google.com/p/netaddr/issues/detail?id=56 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=2
70 lines
2.3 KiB
RPMSpec
70 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package python-netaddr (Version 0.7.5)
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
Name: python-netaddr
|
|
Version: 0.7.5
|
|
Release: 1
|
|
License: BSD License
|
|
Summary: Pythonic manipulation of IPv4, IPv6, CIDR, EUI and MAC network addresses
|
|
Url: http://code.google.com/p/netaddr
|
|
Group: Development/Libraries/Python
|
|
Source: netaddr-%{version}.tar.bz2
|
|
BuildRequires: python-devel
|
|
BuildRequires: python-setuptools
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
%{py_requires}
|
|
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
|
|
BuildArch: noarch
|
|
%endif
|
|
|
|
%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.
|
|
|
|
Author:
|
|
--------
|
|
David P. D. Moss <drkjam@gmail.com>
|
|
|
|
%prep
|
|
%setup -q -n netaddr-%{version}
|
|
|
|
|
|
%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)
|