2024-01-06 11:15:19 +01:00
|
|
|
%define pkgname %(echo %name | cut -d- -f2- | tr - _)
|
2024-01-06 11:15:19 +01:00
|
|
|
Name: python-ifaddr
|
2024-01-06 11:15:19 +01:00
|
|
|
Version: 0.2.0
|
2024-01-06 11:15:19 +01:00
|
|
|
Release: 3mamba
|
2024-01-06 11:15:19 +01:00
|
|
|
Summary: A small Python library that allows you to find all the IP addresses of the computer
|
|
|
|
Group: System/Libraries
|
|
|
|
Vendor: openmamba
|
|
|
|
Distribution: openmamba
|
|
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
|
|
URL: https://github.com/pydron/ifaddr
|
|
|
|
Source: https://pypi.debian.net/ifaddr/ifaddr-%{version}.tar.gz
|
|
|
|
License: MIT
|
|
|
|
## AUTOBUILDREQ-BEGIN
|
2024-01-06 11:15:19 +01:00
|
|
|
BuildRequires: libpython3-devel
|
2024-01-06 11:15:19 +01:00
|
|
|
## AUTOBUILDREQ-END
|
|
|
|
|
|
|
|
%description
|
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
%if 0%{?with_pyver}
|
|
|
|
%pyver_package
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n ifaddr-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
CFLAGS="%{optflags}" %{__python} setup.py build
|
|
|
|
|
|
|
|
%install
|
|
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%{__python} setup.py install \
|
|
|
|
-O1 --skip-build \
|
|
|
|
--root="%{buildroot}" \
|
|
|
|
--install-headers=%{python_inc} \
|
|
|
|
--install-lib=%{python_sitearch} \
|
|
|
|
--record=%{name}.filelist
|
|
|
|
|
2024-01-06 11:15:19 +01:00
|
|
|
sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist
|
2024-01-06 11:15:19 +01:00
|
|
|
|
|
|
|
%files %{?pyappend} -f %{name}.filelist
|
|
|
|
%defattr(-,root,root)
|
2024-01-06 11:15:19 +01:00
|
|
|
%dir %{python_sitearch}/%{pkgname}-%{version}-py*.egg-info
|
|
|
|
%{python_sitearch}/%{pkgname}-%{version}-py*.egg-info/*
|
2024-01-06 11:15:19 +01:00
|
|
|
|
|
|
|
%changelog
|
2024-01-06 11:15:19 +01:00
|
|
|
* Wed Apr 26 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 0.2.0-3mamba
|
|
|
|
- rebuilt with python 3.10
|
|
|
|
|
2024-01-06 11:15:19 +01:00
|
|
|
* Tue Dec 20 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 0.2.0-2mamba
|
|
|
|
- rebuilt with dist-deps
|
|
|
|
|
2024-01-06 11:15:19 +01:00
|
|
|
* Thu Jun 16 2022 Automatic Build System <autodist@mambasoft.it> 0.2.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-06 11:15:19 +01:00
|
|
|
* Sun Feb 28 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 0.1.7-1mamba
|
|
|
|
- package created using the webbuild interface
|