2024-07-15 12:54:50 +02:00
|
|
|
#
|
|
|
|
# spec file for package saltbundlepy-netaddr
|
|
|
|
#
|
2025-04-14 11:25:14 +02:00
|
|
|
# Copyright (c) 2025 SUSE LLC
|
2024-07-15 12:54:50 +02:00
|
|
|
#
|
|
|
|
# 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/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
%{?!saltbundlepy_module:%define saltbundlepy_module() saltbundlepy-%{**}}
|
|
|
|
%define pythons saltbundlepy
|
|
|
|
|
|
|
|
Name: saltbundlepy-netaddr
|
2025-04-14 11:25:14 +02:00
|
|
|
Version: 1.2.1
|
2024-07-15 12:54:50 +02:00
|
|
|
Release: 0
|
|
|
|
Summary: Pythonic manipulation of IPv4, IPv6, CIDR, EUI and MAC network addresses
|
|
|
|
License: BSD-3-Clause
|
|
|
|
Group: Development/Languages/Python
|
|
|
|
URL: http://github.com/drkjam/netaddr
|
|
|
|
Source: https://files.pythonhosted.org/packages/source/n/netaddr/netaddr-%{version}.tar.gz
|
2025-04-14 11:25:14 +02:00
|
|
|
BuildRequires: %{saltbundlepy_module devel >= 3.11}
|
|
|
|
BuildRequires: %{saltbundlepy_module pip}
|
|
|
|
BuildRequires: %{saltbundlepy_module pytest}
|
2024-07-15 12:54:50 +02:00
|
|
|
BuildRequires: %{saltbundlepy_module setuptools}
|
2025-04-14 11:25:14 +02:00
|
|
|
BuildRequires: %{saltbundlepy_module wheel}
|
2024-07-15 12:54:50 +02:00
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: saltbundlepy-rpm-macros
|
|
|
|
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
|
2025-04-14 11:25:14 +02:00
|
|
|
%autosetup -p1 -n netaddr-%{version}
|
|
|
|
sed -i "1d" netaddr/{cli,ip/iana,eui/ieee,tests/__init__}.py # Fix non-executable scripts
|
2024-07-15 12:54:50 +02:00
|
|
|
|
|
|
|
%build
|
2025-04-14 11:25:14 +02:00
|
|
|
%pyproject_wheel
|
2024-07-15 12:54:50 +02:00
|
|
|
|
|
|
|
%install
|
2025-04-14 11:25:14 +02:00
|
|
|
%pyproject_install
|
2024-07-15 12:54:50 +02:00
|
|
|
rm %{buildroot}%{_bindir}/netaddr
|
2025-04-14 11:25:14 +02:00
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
2024-07-15 12:54:50 +02:00
|
|
|
|
|
|
|
%check
|
2025-04-14 11:25:14 +02:00
|
|
|
%pytest
|
2024-07-15 12:54:50 +02:00
|
|
|
|
|
|
|
%files %{python_files}
|
2025-04-14 11:25:14 +02:00
|
|
|
%license LICENSE.rst
|
|
|
|
%doc AUTHORS.rst CHANGELOG.rst COPYRIGHT.rst README.rst
|
|
|
|
%{python_sitelib}/netaddr*
|
2024-07-15 12:54:50 +02:00
|
|
|
|
|
|
|
%changelog
|