Accepting request 209872 from devel:languages:python

- Update to version 0.81
  * Correct reverseName() for IPv6 addresses, so IP('::1').reverseName()
    returns correct.
  * Add network mask awareness to v46map()
  * Fix Python 3 errors in IPSet class
  * Make IPSet base class be object when MutableSet isn't available, fixing
    errors in Python 2.5
- Changes from 0.80
  * Drop support of Python older than 2.4
  * Python 3 does not need 2to3 conversion anymore (same code base)
  * Fix adding of non-adjacent networks:
    192.168.0.0/24 + 192.168.255.0/24 made 192.168.0.0/23
  * Fix adding networks that don't create a valid subnet:
    192.168.1.0/24 + 192.168.2.0/24 made 192.168.1.0/23
  * Fix adding with an IPv6 address where .int() was < 32 bits made
    IPy believe it was an IPv4 address:
   ::ffff:0/112 + ::1:0:0/112 made 255.255.0.0/111
  * Add support of IPSets
  * Add support for subtracting a network range
  * Prevent IPv4 and IPv6 ranges from saying they contain each other
  * Add a .v46map() method to convert mapped address ranges
    such as IP('::ffff:192.168.1.1'); RFC 4291
  * Change sort order to more natural: 
    IPv4 before IPv6; less-specific prefixes first (/0 before /32)
- Changes from 0.76
  * ip == other and ip != other doesn't fail with an exception anymore if other
    is not a IP object
  * Add IP.get_mac() method: get the 802.3 MAC address from IPv6 RFC 2464
    address.
  * Fix IP('::/0')[0]: return an IPv6 instead of an IPv4 address
- Changes from 0.75
  * IP('::/0').netmask() gives IP('::') instead of IP('0.0.0.0')
- Changes from 0.74
  * Fix tests for Python 3.1 and 3.2
  * ip.__nonzero__() and (ipa in ipb) return a bool instead of 0 or 1
  * IP('0.0.0.0/0') + IP('0.0.0.0/0') raises an error
- Changes from 0.73
  * Support Python 3: setup.py runs 2to3
  * Update the ranges for IPv6 IPs
  * Fix reverseName() and reverseNames() for IPv4 in IPv6 addresses
  * Drop support of Python < 2.5
- Changes from 0.72
  * Include examples and MANIFEST.in in source build (add them to
     MANIFEST.in)
  * Remove __rcsid__ constant from IPy module
- Changes from 0.71
  * Use xrange() instead of range()
  * Use isinstance(x, int) instead of type(x) == types.IntType
  * Prepare support of Python3 (use integer division: x // y)
  * Fix IP(long) constructor: ensure that the address is not too large
  * Constructor raise a TypeError if the type is not int, long,
    str or unicode
  * 223.0.0.0/8 is now public (belongs to APNIC)
- Change Group for standard devel/languages/python
- Remove AUTHOR section
- Remove redundant %clean section
- Remove --record=INSTALLED_FILES option and replace it with
  %{python_sitelib} in %files
- Use download Url as source (forwarded request 209871 from posophe)

OBS-URL: https://build.opensuse.org/request/show/209872
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-ipy?expand=0&rev=6
This commit is contained in:
Stephan Kulow
2013-12-09 15:59:43 +00:00
committed by Git OBS Bridge
4 changed files with 77 additions and 21 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3fe96748eac141f6046d5db10b8e6e815a591308400ed8ab39fc1e7802380316
size 20465

3
IPy-0.81.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4bc17a9b5e72e893a034e77193b82c2bc321ddf8d8c345281f2bb81bb007b939
size 32318

View File

@@ -1,3 +1,66 @@
-------------------------------------------------------------------
Sun Dec 8 21:12:16 UTC 2013 - p.drouand@gmail.com
- Update to version 0.81
* Correct reverseName() for IPv6 addresses, so IP('::1').reverseName()
returns correct.
* Add network mask awareness to v46map()
* Fix Python 3 errors in IPSet class
* Make IPSet base class be object when MutableSet isn't available, fixing
errors in Python 2.5
- Changes from 0.80
* Drop support of Python older than 2.4
* Python 3 does not need 2to3 conversion anymore (same code base)
* Fix adding of non-adjacent networks:
192.168.0.0/24 + 192.168.255.0/24 made 192.168.0.0/23
* Fix adding networks that don't create a valid subnet:
192.168.1.0/24 + 192.168.2.0/24 made 192.168.1.0/23
* Fix adding with an IPv6 address where .int() was < 32 bits made
IPy believe it was an IPv4 address:
::ffff:0/112 + ::1:0:0/112 made 255.255.0.0/111
* Add support of IPSets
* Add support for subtracting a network range
* Prevent IPv4 and IPv6 ranges from saying they contain each other
* Add a .v46map() method to convert mapped address ranges
such as IP('::ffff:192.168.1.1'); RFC 4291
* Change sort order to more natural:
IPv4 before IPv6; less-specific prefixes first (/0 before /32)
- Changes from 0.76
* ip == other and ip != other doesn't fail with an exception anymore if other
is not a IP object
* Add IP.get_mac() method: get the 802.3 MAC address from IPv6 RFC 2464
address.
* Fix IP('::/0')[0]: return an IPv6 instead of an IPv4 address
- Changes from 0.75
* IP('::/0').netmask() gives IP('::') instead of IP('0.0.0.0')
- Changes from 0.74
* Fix tests for Python 3.1 and 3.2
* ip.__nonzero__() and (ipa in ipb) return a bool instead of 0 or 1
* IP('0.0.0.0/0') + IP('0.0.0.0/0') raises an error
- Changes from 0.73
* Support Python 3: setup.py runs 2to3
* Update the ranges for IPv6 IPs
* Fix reverseName() and reverseNames() for IPv4 in IPv6 addresses
* Drop support of Python < 2.5
- Changes from 0.72
* Include examples and MANIFEST.in in source build (add them to
MANIFEST.in)
* Remove __rcsid__ constant from IPy module
- Changes from 0.71
* Use xrange() instead of range()
* Use isinstance(x, int) instead of type(x) == types.IntType
* Prepare support of Python3 (use integer division: x // y)
* Fix IP(long) constructor: ensure that the address is not too large
* Constructor raise a TypeError if the type is not int, long,
str or unicode
* 223.0.0.0/8 is now public (belongs to APNIC)
- Change Group for standard devel/languages/python
- Remove AUTHOR section
- Remove redundant %clean section
- Remove --record=INSTALLED_FILES option and replace it with
%{python_sitelib} in %files
- Use download Url as source
-------------------------------------------------------------------
Fri Nov 25 11:31:23 UTC 2011 - cfarrell@suse.com

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-ipy
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2013 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
@@ -19,17 +19,18 @@
%define modname IPy
Name: python-ipy
Version: 0.70
Release: 1
Version: 0.81
Release: 0
License: BSD-3-Clause
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
Group: Development/Languages/Python
Source: https://pypi.python.org/packages/source/I/IPy/IPy-%{version}.tar.gz
BuildRequires: python-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{py_requires}
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
BuildArch: noarch
%endif
@@ -40,26 +41,18 @@ 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
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%clean
rm -rf %{buildroot}
%files -f INSTALLED_FILES
%files
%defattr(-,root,root)
%doc AUTHORS COPYING ChangeLog README
%{python_sitelib}
%changelog