14
0

Accepting request 978081 from devel:languages:python

- update to 0.6.9:
  * wireguard peer fix for both IPv4 and IPv6: 
  * netns: avoid extra libc reloads: 
  * wireguard: IPv6 fixes: 
  * ndb: support arbitrary IPRoute-compatible source classes
  * ndb: tolerate source failures
  * ndb: chaotic tests
  * general: kernel version parser: 
  * package: static version file: 
  * iproute: support custom link kind classes: 
  * ndb: reload of tunnels in the down state 
  * ndb: improved reliability in the state sync, affected multihop and encap routes
  * ndb: improved neighbours management
  * tuntap: support loongarch 
  * ndb: fix routes cleanup 
  * ndb: support `in` for sources, interfaces and addresses
  * ndb: support changing tunnel (gre, ipip, ...) attributes
  * netlink: support NLM_F_DUMP_INTR 

- update to 0.6.5:
  * ndb: fix `in` for sources
  * core: provide entry_points aliases for legacy code
  * packaging: fix missing exports
  * ndb: memory leak fix
  * packaging: fix internal modules import
  * netlink: DEFAULT_RCVBUF size increased
  * rtnl: fix COLLECT_METADATA for geneve devices
  * ndb: route spec fixes
  * packaging: force virtual packages to require same versions
  * core: relocate RemoteIPRoute

OBS-URL: https://build.opensuse.org/request/show/978081
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyroute2?expand=0&rev=24
This commit is contained in:
2022-05-19 20:49:41 +00:00
committed by Git OBS Bridge
4 changed files with 59 additions and 22 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:08ac40cad52c0bb2e0f20087520599aa91fcce0b221dd26e9042330428810bc5
size 715991

3
pyroute2-0.6.9.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3d1c4d1a71fb569cab578f55f7134ef02d48e8b3182b4e7e66b2a775628edafb
size 23700

View File

@@ -1,3 +1,49 @@
-------------------------------------------------------------------
Tue May 10 19:01:23 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 0.6.9:
* wireguard peer fix for both IPv4 and IPv6:
* netns: avoid extra libc reloads:
* wireguard: IPv6 fixes:
* ndb: support arbitrary IPRoute-compatible source classes
* ndb: tolerate source failures
* ndb: chaotic tests
* general: kernel version parser:
* package: static version file:
* iproute: support custom link kind classes:
* ndb: reload of tunnels in the down state
* ndb: improved reliability in the state sync, affected multihop and encap routes
* ndb: improved neighbours management
* tuntap: support loongarch
* ndb: fix routes cleanup
* ndb: support `in` for sources, interfaces and addresses
* ndb: support changing tunnel (gre, ipip, ...) attributes
* netlink: support NLM_F_DUMP_INTR
-------------------------------------------------------------------
Sat Oct 16 21:54:19 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 0.6.5:
* ndb: fix `in` for sources
* core: provide entry_points aliases for legacy code
* packaging: fix missing exports
* ndb: memory leak fix
* packaging: fix internal modules import
* netlink: DEFAULT_RCVBUF size increased
* rtnl: fix COLLECT_METADATA for geneve devices
* ndb: route spec fixes
* packaging: force virtual packages to require same versions
* core: relocate RemoteIPRoute
* wireguard: fix key parsing
* packaging: fix importlib-metadata deps
* tc: support pfifo qdisc
* packaging: new layout
* ndb: fix default routes keys
* mptcp: basic support
* netlink: ext_ack support fix
* tc: netem rate setting
* NSPopen: fix fd leak
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 30 08:34:54 UTC 2021 - Antonio Larrosa <alarrosa@suse.com> Fri Apr 30 08:34:54 UTC 2021 - Antonio Larrosa <alarrosa@suse.com>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-pyroute2 # spec file for package python-pyroute2
# #
# Copyright (c) 2021 SUSE LLC # Copyright (c) 2022 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}} %{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-pyroute2 Name: python-pyroute2
Version: 0.5.18 Version: 0.6.9
Release: 0 Release: 0
Summary: Python Netlink library Summary: Python Netlink library
License: Apache-2.0 OR GPL-2.0-or-later License: Apache-2.0 OR GPL-2.0-or-later
@@ -31,6 +31,13 @@ BuildRequires: python-rpm-macros
Requires(post): update-alternatives Requires(post): update-alternatives
Requires(postun):update-alternatives Requires(postun):update-alternatives
BuildArch: noarch BuildArch: noarch
Requires: python-pyroute2.core = %{version}
Requires: python-pyroute2.ethtool = %{version}
Requires: python-pyroute2.ipdb = %{version}
Requires: python-pyroute2.ipset = %{version}
Requires: python-pyroute2.ndb = %{version}
Requires: python-pyroute2.nftables = %{version}
Requires: python-pyroute2.nslink = %{version}
%python_subpackages %python_subpackages
%description %description
@@ -58,27 +65,11 @@ protocols. Some supported netlink families and protocols:
%install %install
%python_install %python_install
%python_clone -a %{buildroot}%{_bindir}/pyroute2-cli
%python_clone -a %{buildroot}%{_bindir}/ss2
%python_expand %fdupes %{buildroot}%{$python_sitelib} %python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%post
%python_install_alternative pyroute2-cli
%python_install_alternative ss2
%postun
%python_uninstall_alternative pyroute2-cli
%python_uninstall_alternative ss2
%files %{python_files} %files %{python_files}
%license README.license.md %doc README.rst CHANGELOG.md
%doc README.md CHANGELOG.md README.report.md
%license LICENSE.Apache.v2 LICENSE.GPL.v2 %license LICENSE.Apache.v2 LICENSE.GPL.v2
%{python_sitelib}/* %{python_sitelib}/*
%python_alternative %{_bindir}/ss2
%python_alternative %{_bindir}/pyroute2-cli
%changelog %changelog