forked from pool/python-netutils
Compare commits
10 Commits
Author | SHA256 | Date | |
---|---|---|---|
8f7d23cc98 | |||
d01313e283 | |||
be17e3d639 | |||
330d01df60 | |||
230eedb276 | |||
b891bc20ed | |||
86e048839b | |||
3d4458f2da | |||
2c225b3e9e | |||
2a6450242f |
3
netutils-1.14.1.tar.gz
Normal file
3
netutils-1.14.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5095379b1e9f9e7e6062dd3529528f1531af844682b7b6d007025c582e2a1a94
|
||||
size 1507595
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:47b2590dd799f1a369a6a51ab872d1ef0fdd326592950775a98e3573bc925cf0
|
||||
size 1449061
|
@@ -1,3 +1,66 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 13 13:49:21 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 1.14.1:
|
||||
* 672 Update running configuration commands to be full
|
||||
versions. Flatbot OUI and PROTOCOL file updates.
|
||||
- update to 1.14.0:
|
||||
* Library mapping updates and fixes.
|
||||
* NIST library updates and fixes for CVE reporting.
|
||||
* Documentation fixes.
|
||||
* Palo Alto brace configuration fixes.
|
||||
* 646 Add Additional SROS Tests.
|
||||
* 649 Add RUNNING_CONFIG_MAPPER to help map platform to running
|
||||
configuration command.
|
||||
* 652 Flatbot OUI File Updates.
|
||||
* 653 Flatbot PROTOCOL File Updates.
|
||||
* 662 NIST library updates and fixes.
|
||||
* 640 Fix documentation issues.
|
||||
* 641 Fix documentation for Jinja examples.
|
||||
* 651 Fix Palo set format config parsing for curly brace.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 10 15:12:47 UTC 2025 - Georg Pfuetzenreuter <georg.pfuetzenreuter@suse.com>
|
||||
|
||||
- Enable sle15_python_module_pythons to build for Python 3.11 on Leap
|
||||
(project is now Python 3.9+)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 4 08:01:23 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 1.13.0
|
||||
* Added is_reversible_wildcardmask, netmask_to_wildcardmask,
|
||||
and wildcardmask_to_netmask functions.
|
||||
* Added aruba_os and aruba_osswitch parsers.
|
||||
- Drop fix-version-in-pyproject.patch, fixed upstream
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 14 10:42:23 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 1.12.0
|
||||
* Added Python 3.13 support.
|
||||
* Removed Python 3.8 support.
|
||||
- from version 1.11.0
|
||||
* (no changes reported)
|
||||
- Add fix-version-in-pyproject.patch to fix version in pyproject.toml
|
||||
- Drop use-legacycrypt-if-required.patch, merged upstream
|
||||
- Update BuildRequires from pyproject.toml
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 3 03:45:37 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Update to 1.10.0:
|
||||
* Added Functionality to ip_network filter to support method calls
|
||||
with kwargs.
|
||||
* Fix configuration parsers to allow newlines, no longer auto strip
|
||||
all newlines.
|
||||
* Added NIST URL creation and platform mapper.
|
||||
* Added DNA Center platform mappings.
|
||||
* Improved error message when duplicate line is parsed.
|
||||
- Add patch use-legacycrypt-if-required.patch:
|
||||
* Use the legacycrypt module where we need to.
|
||||
- Switch to autosetup macros.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 7 13:18:40 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-netutils
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,15 +16,17 @@
|
||||
#
|
||||
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-netutils
|
||||
Version: 1.8.1
|
||||
Version: 1.14.1
|
||||
Release: 0
|
||||
Summary: Common helper functions useful in network automation
|
||||
License: Apache-2.0
|
||||
URL: https://netutils.readthedocs.io
|
||||
Source: https://github.com/networktocode/netutils/archive/refs/tags/v%{version}.tar.gz#/netutils-%{version}.tar.gz
|
||||
BuildRequires: %{python_module base >= 3.7}
|
||||
BuildRequires: %{python_module base >= 3.9}
|
||||
BuildRequires: %{python_module jinja2}
|
||||
BuildRequires: %{python_module legacycrypt if %python-base >= 3.13}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module poetry-core >= 1}
|
||||
BuildRequires: %{python_module pytest}
|
||||
@@ -33,13 +35,17 @@ BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Recommends: python-napalm
|
||||
BuildArch: noarch
|
||||
%if 0%{?python_version_nodots} >= 313
|
||||
Requires: python-legacycrypt
|
||||
%endif
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
A Python library that is a collection of objects for common network automation tasks.
|
||||
|
||||
%prep
|
||||
%setup -q -n netutils-%{version}
|
||||
%autosetup -p1 -n netutils-%{version}
|
||||
chmod -x netutils/lib_helpers.py
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
Reference in New Issue
Block a user