forked from pool/python-netaddr
* 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
89 lines
2.8 KiB
RPMSpec
89 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package python-netaddr
|
|
#
|
|
# 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
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-netaddr
|
|
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 pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module xml}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-importlib-metadata
|
|
Requires: python-importlib_resources
|
|
%ifpython2
|
|
Requires: python-xml
|
|
%endif
|
|
Requires(post): update-alternatives
|
|
Requires(postun):update-alternatives
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%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}
|
|
sed -i "1d" netaddr/{cli,ip/iana,eui/ieee,tests/__init__}.py # Fix non-executable scripts
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_clone -a %{buildroot}%{_bindir}/netaddr
|
|
%fdupes %{buildroot}
|
|
|
|
%check
|
|
%pytest
|
|
|
|
%post
|
|
%python_install_alternative netaddr
|
|
|
|
%postun
|
|
%python_uninstall_alternative netaddr
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc AUTHORS CHANGELOG COPYRIGHT README.rst
|
|
%{python_sitelib}/netaddr*
|
|
%{_bindir}/netaddr-%{python_bin_suffix}
|
|
%python_alternative %{_bindir}/netaddr
|
|
|
|
%changelog
|