- update to 0.11.0:

* Fixing netmask calculation for IPv6 
  * segfault when trying to access netifaces.ifaddresses
  * Interpret missing gateway priority, handle some out of order metrics

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netifaces?expand=0&rev=25
This commit is contained in:
Dirk Mueller 2021-07-17 06:41:13 +00:00 committed by Git OBS Bridge
parent 9f1a871ff4
commit 4171f87041
5 changed files with 15 additions and 29 deletions

19
LICENSE
View File

@ -1,19 +0,0 @@
Copyright (c) 2007-2018 Alastair Houghton
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

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

BIN
netifaces-0.11.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Sat Jul 17 06:40:25 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 0.11.0:
* Fixing netmask calculation for IPv6
* segfault when trying to access netifaces.ifaddresses
* Interpret missing gateway priority, handle some out of order metrics
-------------------------------------------------------------------
Fri May 24 11:00:13 UTC 2019 - pgajdos@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package python-netifaces
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2011 Novell
#
# All modifications and additions to the file contributed by third parties
@ -19,15 +19,13 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-netifaces
Version: 0.10.9
Version: 0.11.0
Release: 0
Summary: Portable network interface information
License: MIT
Group: Development/Languages/Python
Url: https://github.com/al45tair/netifaces
URL: https://github.com/al45tair/netifaces
Source0: https://pypi.io/packages/source/n/netifaces/netifaces-%{version}.tar.gz
# https://github.com/al45tair/netifaces/issues/40
Source1: https://raw.githubusercontent.com/al45tair/netifaces/master/LICENSE
Source2: https://raw.githubusercontent.com/al45tair/netifaces/master/test.py
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
@ -51,7 +49,7 @@ provided by the socket options is normally less complete.
%prep
%setup -q -n netifaces-%{version}
cp %{SOURCE1} %{SOURCE2} .
cp %{SOURCE2} .
%build
%python_build
@ -63,7 +61,6 @@ cp %{SOURCE1} %{SOURCE2} .
%python_expand PYTHONPATH=%{buildroot}%{$python_sitearch} $python test.py | grep 'Interface lo'
%files %{python_files}
%defattr(-,root,root,-)
%license LICENSE
%doc README.rst
%{python_sitearch}/*