forked from pool/python-netifaces
Accepting request 906774 from devel:languages:python
- 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/request/show/906774 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-netifaces?expand=0&rev=15
This commit is contained in:
commit
1d6513409f
19
LICENSE
19
LICENSE
@ -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.
|
|
@ -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
BIN
netifaces-0.11.0.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -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
|
Fri May 24 11:00:13 UTC 2019 - pgajdos@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-netifaces
|
# spec file for package python-netifaces
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2021 SUSE LLC
|
||||||
# Copyright (c) 2011 Novell
|
# Copyright (c) 2011 Novell
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@ -19,15 +19,13 @@
|
|||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-netifaces
|
Name: python-netifaces
|
||||||
Version: 0.10.9
|
Version: 0.11.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Portable network interface information
|
Summary: Portable network interface information
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
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
|
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
|
Source2: https://raw.githubusercontent.com/al45tair/netifaces/master/test.py
|
||||||
BuildRequires: %{python_module devel}
|
BuildRequires: %{python_module devel}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
@ -51,7 +49,7 @@ provided by the socket options is normally less complete.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n netifaces-%{version}
|
%setup -q -n netifaces-%{version}
|
||||||
cp %{SOURCE1} %{SOURCE2} .
|
cp %{SOURCE2} .
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%python_build
|
||||||
@ -63,7 +61,6 @@ cp %{SOURCE1} %{SOURCE2} .
|
|||||||
%python_expand PYTHONPATH=%{buildroot}%{$python_sitearch} $python test.py | grep 'Interface lo'
|
%python_expand PYTHONPATH=%{buildroot}%{$python_sitearch} $python test.py | grep 'Interface lo'
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc README.rst
|
%doc README.rst
|
||||||
%{python_sitearch}/*
|
%{python_sitearch}/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user