5e681b15fc
Accepting request 1300758 from devel:languages:python
...
- Convert to libalternatives on SLE-16-based and newer systems only
OBS-URL: https://build.opensuse.org/request/show/1300758
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=32
2025-08-22 15:47:04 +00:00
bf4d45a995
- Convert to libalternatives on SLE-16-based and newer systems only
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=41
2025-08-21 10:00:31 +00:00
91288ea765
Accepting request 1293667 from devel:languages:python
...
- Convert to libalternatives
OBS-URL: https://build.opensuse.org/request/show/1293667
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=31
2025-07-17 15:17:03 +00:00
50b25ac9ae
- Convert to libalternatives
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=39
2025-07-16 10:07:31 +00:00
82d133ee64
Accepting request 1228484 from devel:languages:python
...
- Fix incorrect removal of shebangs
- update to 1.3.0:
* Added:
- Add partial address expansion in IPNetwork via the
expand_partial switch, this enables opting into pre-1.1.0
behavior
* Fixed:
- Fix running the test suite on musl systems
- Fix IPAddress IPv6 parsing with ZEROFILL enabled
- Fix handling of the NOHOST flag in the IPNetwork copy
constructor
OBS-URL: https://build.opensuse.org/request/show/1228484
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=30
2024-12-05 16:09:44 +00:00
b3651f2b14
- Fix incorrect removal of shebangs
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=37
2024-12-05 09:53:40 +00:00
c8de4cf5fe
Accepting request 1228465 from home:ojkastl_buildservice:Branch_devel_languages_python
...
update to 1.3.0, tests are all failing due to NameError for sys?\!?
OBS-URL: https://build.opensuse.org/request/show/1228465
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=36
2024-12-05 09:43:29 +00:00
d4fc1f5ff6
Accepting request 1160042 from devel:languages:python
...
- Update to 1.2.1:
* Fix bad version 1.2.0 upload to PyPI – now yanked. No changes to
the package.
- 1.2.0:
* Add CLI tool subcommand to display cli-network-info.
* Support running interactive-shell without IPython installed.
* Explicitly raise TypeError is a non-string value is passed to
valid_ipv4 or valid_ipv6.
- 1.1.0:
* Add the required Python version to the package metadata (#365 ).
* Add expand_partial_ipv4_address to the public API.
* Fix IPNetwork(...) in IPRange(...) false negatives (#157 ).
* Fix a few IPNetwork slicing edge cases (#214 ).
* Fix support for partial IP addresses accidentally left in IPNetwork in 1.0.0.
* Fixed an incorrect license classifier in the package metadata.
- 1.0.0:
* Removed:
* Drop support for Python versions lower than 3.7.
* Remove the flag shorthands: N, P and Z. Use NOHOST, INET_PTON
and ZEROFILL instead.
* Remove abbreviated CIDR format support in IPNetwork (implicit_prefix=True),
use cidr_abbrev_to_verbose if you need this behavior.
* Remove the IPAddress.is_private method.
* Changed:
* Stop accepting leading zeros when parsing IPv4 addresses in INET_PTON mode
(it's been allowed on some platforms).
* Stop parsing IPv4 addresses permissively (inet_aton()-like) by default.
* Apply the two changes above to valid_ipv4 as well.
* Update the address databases to the 2024-02-10 versions.
* Fixed:
OBS-URL: https://build.opensuse.org/request/show/1160042
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=29
2024-03-21 16:01:09 +00:00
3df6f29901
- Update to 1.2.1:
...
* Fix bad version 1.2.0 upload to PyPI – now yanked. No changes to
the package.
- 1.2.0:
* Add CLI tool subcommand to display cli-network-info.
* Support running interactive-shell without IPython installed.
* Explicitly raise TypeError is a non-string value is passed to
valid_ipv4 or valid_ipv6.
- 1.1.0:
* Add the required Python version to the package metadata (#365 ).
* Add expand_partial_ipv4_address to the public API.
* Fix IPNetwork(...) in IPRange(...) false negatives (#157 ).
* Fix a few IPNetwork slicing edge cases (#214 ).
* Fix support for partial IP addresses accidentally left in IPNetwork in 1.0.0.
* Fixed an incorrect license classifier in the package metadata.
- 1.0.0:
* Removed:
* Drop support for Python versions lower than 3.7.
* Remove the flag shorthands: N, P and Z. Use NOHOST, INET_PTON
and ZEROFILL instead.
* Remove abbreviated CIDR format support in IPNetwork (implicit_prefix=True),
use cidr_abbrev_to_verbose if you need this behavior.
* Remove the IPAddress.is_private method.
* Changed:
* Stop accepting leading zeros when parsing IPv4 addresses in INET_PTON mode
(it's been allowed on some platforms).
* Stop parsing IPv4 addresses permissively (inet_aton()-like) by default.
* Apply the two changes above to valid_ipv4 as well.
* Update the address databases to the 2024-02-10 versions.
* Fixed:
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=34
2024-03-21 09:25:55 +00:00
48dc68f672
Accepting request 1137444 from devel:languages:python
...
- 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/request/show/1137444
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=28
2024-01-08 22:44:37 +00:00
8130dfed35
- 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
2024-01-07 20:55:44 +00:00
acf78dadf2
Accepting request 1113440 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/1113440
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=27
2023-09-25 18:04:11 +00:00
5fdee45996
Accepting request 1113402 from home:mnhauke:network:automation
...
- Update to version 0.9.0
Added:
* Add hash capabilities to OUI.
Fixed:
* Backwards incompatible: Handle RFC 6164 IPv6 addresses (don't
reserve first IP address in point-to-point subnets).
* Technically backwards incompatible: Fix for is_loopback
behaviour – consider IPNetwork('::1/128') to be loopback.
* Fix print syntax in the documentation to be Python 3 compatible
* Fix the Sphinx syntax in the documentation.
Other:
* Deprecate Python 3.6.
* Eliminate unnecessary evals.
OBS-URL: https://build.opensuse.org/request/show/1113402
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=30
2023-09-25 11:09:51 +00:00
d2affd74fc
Accepting request 1092399 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/1092399
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=26
2023-06-12 13:26:31 +00:00
0c0975fb3c
Accepting request 1092293 from home:ecsos:python
...
- Add %{?sle15_python_module_pythons}
OBS-URL: https://build.opensuse.org/request/show/1092293
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=28
2023-06-11 20:25:24 +00:00
b805323207
Accepting request 930242 from devel:languages:python
...
- fix build for older distros
OBS-URL: https://build.opensuse.org/request/show/930242
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=25
2021-11-09 22:54:48 +00:00
0da4266bf2
- fix build for older distros
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=27
2021-11-08 21:36:27 +00:00
3ddddb16b9
Accepting request 819016 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/819016
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=24
2020-07-07 10:59:04 +00:00
Tomáš Chvátal
97b1c875af
Accepting request 818948 from home:mnhauke:network:automation
...
- Update to version 0.8.0
* Fixed weak reference support in classes with __slots__
* Added __bytes__ to IPAddress for intuitive usage
* Added format() function to EUI
* Added IPNetwork.netmask property setter
* Added support for IABs in the 40:D8:55 OUI
* Drastically optimized spanning_cidr()
* Fixed "x.x.x.x/x" in IPNetwork tests
* Added support for passing iterables of IPRange to IPSet and
cidr_merge()
Bugfixes:
* N log N complexity instead of linear
* Efficiently creating a large IPSet from a list of IPRanges?
* Weak reference support
- Run testsuite
OBS-URL: https://build.opensuse.org/request/show/818948
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=25
2020-07-06 15:10:29 +00:00
787c564a4c
Accepting request 808040 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/808040
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=23
2020-05-28 07:11:25 +00:00
Tomáš Chvátal
ab487329ec
Accepting request 807983 from home:pgajdos:python
...
submit
OBS-URL: https://build.opensuse.org/request/show/807983
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=23
2020-05-21 18:33:18 +00:00
ce40ea3980
Accepting request 659508 from devel:languages:python
...
Remove superfluous devel dependency for noarch package
OBS-URL: https://build.opensuse.org/request/show/659508
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=22
2018-12-24 10:40:06 +00:00
a7a80bb21a
Remove superfluous devel dependency for noarch package
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=21
2018-12-04 13:42:24 +00:00
f25e8235d6
Accepting request 516767 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/516767
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=21
2017-08-24 16:52:15 +00:00
9dc8a15f1a
Accepting request 514799 from home:mnhauke:network:automation
...
- Convert to singlespec
OBS-URL: https://build.opensuse.org/request/show/514799
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=18
2017-08-14 08:05:12 +00:00
5a9ba59caf
Accepting request 452046 from devel:languages:python
...
- update to 0.7.19:
* added a new SubnetSplitter class for those looking to divide up subnets.
Thanks alanwill and RyPeck and those on (Stack Overflow discussion).
* removed bundled pytest dependency code for "python setup.py test".
* setup.py now uses setuptools only (no more distutils) and setup_egg.py removed.
* cleaned up INSTALL docs so they accurately reflect current Python packaging.
* fixed broken parsing, generating and reading of IEEE index files when switching
between Python 2.x and 3.x.
FIXED Issue 133: https://github.com/drkjam/netaddr/issues/133
- Splitting a single network into multiple prefixed networks
FIXED Issue 129: https://github.com/drkjam/netaddr/issues/129
- fix IPAddress().netmask_bits to return 0 for 0.0.0.0 and [::] addresses
FIXED Issue 117: https://github.com/drkjam/netaddr/issues/117
- (python setup.py test) failing with python3 >= 3.5
FIXED Issue 137: https://github.com/drkjam/netaddr/issues/137
- API reference is broken on ReadTheDocs
FIXED Issue 143: https://github.com/drkjam/netaddr/issues/143
- Please refresh the bundled IANA and IEEE databases
OBS-URL: https://build.opensuse.org/request/show/452046
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=20
2017-01-25 22:32:44 +00:00
6c98c917f2
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=17
2017-01-23 21:13:34 +00:00
6e737937ac
Accepting request 450319 from home:stroeder:branches:devel:languages:python
...
update to 0.7.19
OBS-URL: https://build.opensuse.org/request/show/450319
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=16
2017-01-19 09:41:13 +00:00
Stephan Kulow
64094ca220
Accepting request 334025 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/334025
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=19
2015-09-30 03:52:31 +00:00
Denisart Benjamin
f5bf13d435
Accepting request 333795 from home:stroeder:branches:devel:languages:python
...
update to 0.7.18
OBS-URL: https://build.opensuse.org/request/show/333795
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=15
2015-09-27 11:24:21 +00:00
466f986dba
Accepting request 298177 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/298177
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=18
2015-04-21 08:53:43 +00:00
Michal Čihař
c669bcbf37
Accepting request 298038 from home:benoit_monin:branches:devel:languages:python
...
- update to 0.7.14
- set the source URL to pypi
- remove chmod call: file mode fixed upstream
OBS-URL: https://build.opensuse.org/request/show/298038
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=14
2015-04-20 12:57:28 +00:00
216f16a71a
Accepting request 280205 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/280205
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=17
2015-01-08 22:02:44 +00:00
Jan Matejek
f846121570
Accepting request 280106 from home:stroeder:branches:devel:languages:python
...
Update to 0.7.13
OBS-URL: https://build.opensuse.org/request/show/280106
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=13
2015-01-07 17:33:36 +00:00
Stephan Kulow
3545cd6c19
Accepting request 248991 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/248991
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=16
2014-09-15 15:40:59 +00:00
Jan Matejek
882d148e5c
Accepting request 248588 from Cloud:OpenStack:Master
...
- update to 0.7.12:
* Added method IPSet.iter_ipranges().
* bool(IPSet()) works now for large IPSets, e.g. IPSet(['2405:8100::/32']).
* IPNetwork.iter_hosts now skips the subnet-router anycast address for IPv6.
* Removed function fbsocket.inet_aton because it is unused and unnecessary
OBS-URL: https://build.opensuse.org/request/show/248588
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=12
2014-09-12 15:56:21 +00:00
Stephan Kulow
a8cdfbfde1
Accepting request 234700 from devel:languages:python
...
- Update to 0.7.11:
* Performance of IPSet increased dramatically, implemented by
Stefan Nordhausen and Martijn van Oosterhout. As a side effect,
IPSet(IPNetwork("10.0.0.0/8")) is now as fast as you'd expect.
* Various performance improvements all over the place.
* netaddr is now hosted on PyPI and can be installed via pip.
* Doing "10.0.0.42" in IPNetwork("10.0.0.0/24") works now.
* IPSet has two new methods: iscontiguous() and iprange(), thanks to Louis des Landes.
* Re-added the IPAddress.netmask_bits() method that was accidently removed.
* Networks 128.0.0.0/16, 191.255.0.0/16, and 223.255.255.0/24 are not marked as
reserved IPv4 addresses any more. Thanks to marnickv for pointing that out.
* Various bug fixes contributed by Wilfred Hughes, 2*yo and Adam Goodman.
FIXED Issue 58: https://github.com/drkjam/netaddr/issues/58
- foo.bar doesn't throw AddrFormatError
FIXED Issue 57: https://github.com/drkjam/netaddr/issues/57
- netaddr packages not hosted on PyPI
FIXED Issue 56: https://github.com/drkjam/netaddr/issues/56
- Fix comparison with large IPSet()
FIXED Issue 55: https://github.com/drkjam/netaddr/pull/55
- Fix smallest_matching_cidr and all_matching_cidrs
FIXED Issue 53: https://github.com/drkjam/netaddr/issues/53
- Exclude 128.0.0.0/16 and possibly others from reserved range set?
FIXED Issue 51: https://github.com/drkjam/netaddr/issues/51
- Encoding errors in netaddr/eui/oui.txt
FIXED Issue 46: https://github.com/drkjam/netaddr/issues/46
- len(IPSet()) fails on python3
FIXED Issue 43: https://github.com/drkjam/netaddr/issues/43
- Method to check if IPSet is contiguous
FIXED Issue 38: https://github.com/drkjam/netaddr/issues/38
- netmask_bits is missing from the IPAddress (forwarded request 233654 from frispete)
OBS-URL: https://build.opensuse.org/request/show/234700
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=14
2014-05-21 14:22:45 +00:00
Tomáš Chvátal
9638391858
Accepting request 233654 from home:frispete:python
...
- Update to 0.7.11:
* Performance of IPSet increased dramatically, implemented by
Stefan Nordhausen and Martijn van Oosterhout. As a side effect,
IPSet(IPNetwork("10.0.0.0/8")) is now as fast as you'd expect.
* Various performance improvements all over the place.
* netaddr is now hosted on PyPI and can be installed via pip.
* Doing "10.0.0.42" in IPNetwork("10.0.0.0/24") works now.
* IPSet has two new methods: iscontiguous() and iprange(), thanks to Louis des Landes.
* Re-added the IPAddress.netmask_bits() method that was accidently removed.
* Networks 128.0.0.0/16, 191.255.0.0/16, and 223.255.255.0/24 are not marked as
reserved IPv4 addresses any more. Thanks to marnickv for pointing that out.
* Various bug fixes contributed by Wilfred Hughes, 2*yo and Adam Goodman.
FIXED Issue 58: https://github.com/drkjam/netaddr/issues/58
- foo.bar doesn't throw AddrFormatError
FIXED Issue 57: https://github.com/drkjam/netaddr/issues/57
- netaddr packages not hosted on PyPI
FIXED Issue 56: https://github.com/drkjam/netaddr/issues/56
- Fix comparison with large IPSet()
FIXED Issue 55: https://github.com/drkjam/netaddr/pull/55
- Fix smallest_matching_cidr and all_matching_cidrs
FIXED Issue 53: https://github.com/drkjam/netaddr/issues/53
- Exclude 128.0.0.0/16 and possibly others from reserved range set?
FIXED Issue 51: https://github.com/drkjam/netaddr/issues/51
- Encoding errors in netaddr/eui/oui.txt
FIXED Issue 46: https://github.com/drkjam/netaddr/issues/46
- len(IPSet()) fails on python3
FIXED Issue 43: https://github.com/drkjam/netaddr/issues/43
- Method to check if IPSet is contiguous
FIXED Issue 38: https://github.com/drkjam/netaddr/issues/38
- netmask_bits is missing from the IPAddress
OBS-URL: https://build.opensuse.org/request/show/233654
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=11
2014-05-19 12:05:22 +00:00
Tomáš Chvátal
13c6788dff
Accepting request 204601 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/204601
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=13
2013-10-25 09:23:18 +00:00
Sascha Peilicke
cd5734c34a
- Require python-setuptools instead of distribute (upstreams merged)
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=10
2013-10-24 11:09:07 +00:00
Stephan Kulow
1e5d2e2444
Accepting request 135564 from devel:languages:python
...
Automatic submission by obs-autosubmit
OBS-URL: https://build.opensuse.org/request/show/135564
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=10
2012-09-25 08:46:30 +00:00
Alexandre Rogoski
d465cad02b
- Update to 0.7.10:
...
* A bunch of Python 3.x bug fixes. Thanks Arfrever.
* Extended nmap support to cover full target specification.
FIXED Issue 36 - http://github.com/drkjam/netaddr/issues/36
- ResourceWarnings with Python >=3.2
FIXED Issue 35 - http://github.com/drkjam/netaddr/issues/35
- netaddr-0.7.9: Test failure with Python 3
FIXED Issue 34 - http://github.com/drkjam/netaddr/issues/34
- netaddr.ip.iana.SaxRecordParser.endElement() incompatible
with Python 3.1
FIXED Issue 33 - http://github.com/drkjam/netaddr/issues/33
- netaddr script not installed with Python 3
FIXED Issue 23 - http://github.com/drkjam/netaddr/issues/23
- valid_nmap_range() does not validate nmap format case.
FIXED Issue 22 - http://github.com/drkjam/netaddr/issues/22
- all_matching_cidrs: documentation incorrect
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=9
2012-09-10 02:37:09 +00:00
Alexandre Rogoski
2e6ae7cbd2
- Update to 0.7.9:
...
* Re-release to fix build removing Sphinx dependency.
- Aditional changes from 0.7.8:
* New SAX parser for IANA data source files (contributed by
Andrew Stromnov)
* Fixed pickling failures with EUI, OUI and IAB classes.
FIXED Issue 31 - http://github.com/drkjam/netaddr/issues/31
- Exclude '39.0.0.0/8' network from reserved set. Thanks
Andrew Stromnov
FIXED Issue 28 - http://github.com/drkjam/netaddr/issues/28
- Fix algorithm in ipv6_link_local to fully conform to rfc4291.
Thanks Philipp Wollermann
FIXED Issue 25 - http://github.com/drkjam/netaddr/issues/25
- install_requires is too aggressive? Thanks Adam Lindsay and
commenters.
FIXED Issue 21 - http://github.com/drkjam/netaddr/issues/21
- deepcopy for EUI fails. Thanks Ryan Nowakowski.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=8
2012-08-29 05:27:01 +00:00
Stephan Kulow
c5085127cb
Accepting request 123020 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/123020
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=8
2012-06-01 05:22:58 +00:00
Alexandre Rogoski
de637b95a6
- Update to 0.7.7:
...
* Comprehensive documentation update! It's only taken 4 years
to get around to using Sphinx and I can confirm it is
**TOTALLY AWESOME!**
* Various bug fixes
* Refreshed IEEE OUI and IAB data
* FIXED Issue 24 - http://github.com/drkjam/netaddr/issues/24
- Fixed TypeError when comparing BaseIP instance with
non-BaseIP objects. Thanks pvaret
* FIXED Issue 17 - http://github.com/drkjam/netaddr/issues/17
- For large ipv6 networks the .subnet() method fails. Thanks
daveyss
* FIXED Issue 20 - http://github.com/drkjam/netaddr/issues/20
- Test failure with Python 3. Thanks Arfrever
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=7
2012-05-31 05:12:44 +00:00
Sascha Peilicke
f3f05650b9
Accepting request 83896 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/83896
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=6
2011-09-21 15:20:09 +00:00
Sascha Peilicke
921e2bfd9d
- Changed license to 'BSD-3-Clause' (SPDX style)
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=6
2011-09-20 13:44:24 +00:00
Sascha Peilicke
2191f785ad
- Fixed non-executable script rpmlint warning
...
- Readded dependency on python-setuptools (with python-distribute):
You can't simply remove this, it will break RPMs update mechanism!
- Preparatory stuff belongs into the %prep section and the %clean
section has a sane default
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=5
2011-09-20 13:43:18 +00:00
Alexandre Rogoski
27bafd2ce4
- Regenerate spec file with py2pack;
...
- Removed unneded python-setuptools BuildRequires;
- Update to 0.7.6:
* A bug fix point release
* Refreshed 3rd party data caches
* Tested against Python 3.2.x and PyPy 1.6.x
* Fixed unit tests under for Mac OSX
Specific bug fixes addressed in this release
--------------------------------------------
* FIXED Issue 15 - http://github.com/drkjam/netaddr/issues/15
- Incorrect and invalid glob produced when last octet is not *
* FIXED Issue 13 - http://github.com/drkjam/netaddr/issues/13
- Added support for IPython 0.11 API changes. Thanks juliantaylor
* FIXED Issue 11 - http://github.com/drkjam/netaddr/issues/11
- Calling valid_glob on cidr raises ValueError. Thanks radicand
* FIXED Issue 7 - http://github.com/drkjam/netaddr/issues/7
- Unpickling Bug in IPSet. Thanks LuizOz and labeneator
* FIXED Issue 2 - http://github.com/drkjam/netaddr/issues/2
- UnboundLocalError raised in IPNetwork constructor. Thanks keesbos
Miscellanea
-----------
- Has a famous soft drink company started making it own NICs?
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=4
2011-09-14 00:38:31 +00:00
Berthold Gunreben
e7af457484
Autobuild autoformatter for 63285
...
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netaddr?expand=0&rev=5
2011-03-08 09:42:09 +00:00