forked from pool/python-netaddr
- update to 0.10.1:
* Get rid of some warnings * Add an :data:`INET_ATON` flag to explicitly request ``inet_aton()`` IPv4 parsing semantics from :class:`IPAddress`. * Add an :meth:`IPAddress.is_ipv4_private_use` convenience method. * Add an :meth:`IPAddress.is_global` convenience method to allow determining if an address is considered globally reachable. * Add an :meth:`IPAddress.is_ipv6_unique_local` convenience method. * Improve Python 3.13 compatibility, thank you John Eckersberg. * Deprecate Python 3.7 support. * Deprecate abbreviated CIDR format support in :class:`IPNetwork` * Deprecate accepting leading zeros when parsing IPv4 addresses in :data:`INET_PTON` mode (it's been allowed on some platforms). If you need to allow and discard leading zeros use the :data:`ZEROFILL` flag. * Raise an exception if invalid flags are passed to ``IPAddress``, ``IPNetwork`` or ``IPRange``. * Improve the documentation substantially. * Update the DB files to the latest versions (2023-12-23). - IP recognition failure OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=32
This commit is contained in:
3
netaddr-0.10.1.tar.gz
Normal file
3
netaddr-0.10.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f4da4222ca8c3f43c8e18a8263e5426c750a3a837fdfeccf74c68d0408eaa3bf
|
||||
size 2225283
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7b46fa9b1a2d71fd5de9e4a3784ef339700a53a08c8040f08baf5f1194da0128
|
||||
size 2196428
|
@@ -1,3 +1,29 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Jan 7 20:54:19 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 0.10.1:
|
||||
* Get rid of some warnings
|
||||
* Add an :data:`INET_ATON` flag to explicitly request
|
||||
``inet_aton()`` IPv4 parsing semantics from :class:`IPAddress`.
|
||||
* Add an :meth:`IPAddress.is_ipv4_private_use` convenience
|
||||
method.
|
||||
* Add an :meth:`IPAddress.is_global` convenience method to
|
||||
allow determining if an address is considered globally reachable.
|
||||
* Add an :meth:`IPAddress.is_ipv6_unique_local` convenience
|
||||
method.
|
||||
* Improve Python 3.13 compatibility, thank you John Eckersberg.
|
||||
* Deprecate Python 3.7 support.
|
||||
* Deprecate abbreviated CIDR format support in
|
||||
:class:`IPNetwork`
|
||||
* Deprecate accepting leading zeros when parsing IPv4 addresses
|
||||
in :data:`INET_PTON` mode (it's been allowed on some platforms).
|
||||
If you need to allow and discard leading zeros use the
|
||||
:data:`ZEROFILL` flag.
|
||||
* Raise an exception if invalid flags are passed to
|
||||
``IPAddress``, ``IPNetwork`` or ``IPRange``.
|
||||
* Improve the documentation substantially.
|
||||
* Update the DB files to the latest versions (2023-12-23).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 25 09:15:49 UTC 2023 - Martin Hauke <mardnh@gmx.de>
|
||||
|
||||
@@ -139,7 +165,7 @@ Tue Jan 6 23:51:18 UTC 2015 - michael@stroeder.com
|
||||
* IPAddress objects can now be added to/subtracted from each other
|
||||
* compute static global ipv6 addr from the net prefix and mac address
|
||||
* add classifiers for python 3.3 and 3.4 support
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 11 12:40:27 UTC 2014 - dmueller@suse.com
|
||||
|
||||
@@ -327,7 +353,7 @@ Wed Oct 6 01:41:45 UTC 2010 - alexandre@exatati.com.br
|
||||
* 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
|
||||
- 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
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-netaddr
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,15 +18,13 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-netaddr
|
||||
Version: 0.9.0
|
||||
Version: 0.10.1
|
||||
Release: 0
|
||||
Summary: Pythonic manipulation of IPv4, IPv6, CIDR, EUI and MAC network addresses
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Languages/Python
|
||||
URL: https://github.com/drkjam/netaddr
|
||||
Source: https://files.pythonhosted.org/packages/source/n/netaddr/netaddr-%{version}.tar.gz
|
||||
BuildRequires: %{python_module importlib-metadata}
|
||||
BuildRequires: %{python_module importlib_resources}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module xml}
|
||||
|
Reference in New Issue
Block a user