Compare commits

...

No commits in common. 'c9' and 'cs10' have entirely different histories.
c9 ... cs10

4
.gitignore vendored

@ -1,2 +1,2 @@
SOURCES/libnl-3.7.0.tar.gz SOURCES/libnl-3.11.0.tar.gz
SOURCES/libnl-doc-3.7.0.tar.gz SOURCES/libnl-doc-3.11.0.tar.gz

@ -1,2 +1,2 @@
34c0fa84005b1522175d42165f6e885f75b1b8e3 SOURCES/libnl-3.7.0.tar.gz 09c8ca840acc68f55c2476e5ee19ea5787a5cf61 SOURCES/libnl-3.11.0.tar.gz
ed296fd3341d3f90912a01bb77d539c19ca666f3 SOURCES/libnl-doc-3.7.0.tar.gz fbcd70def39c22bc4a4d04e36a9a56f2e33541c8 SOURCES/libnl-doc-3.11.0.tar.gz

@ -1,12 +1,11 @@
Name: libnl3 Name: libnl3
Version: 3.7.0 Version: 3.11.0
Release: 1%{?dist} Release: 1%{?dist}
Summary: Convenience library for kernel netlink sockets Summary: Convenience library for kernel netlink sockets
License: LGPLv2 License: LGPL-2.1-only
URL: http://www.infradead.org/~tgr/libnl/ URL: http://www.infradead.org/~tgr/libnl/
%define rcversion %{nil} %global version_path libnl%(echo %{version} | tr . _)
%define fullversion %{version}%{rcversion}
%if 0%{?rhel} > 8 %if 0%{?rhel} > 8
# Disable python3 build by default # Disable python3 build by default
@ -15,8 +14,8 @@ URL: http://www.infradead.org/~tgr/libnl/
%bcond_without python3 %bcond_without python3
%endif %endif
Source: http://www.infradead.org/~tgr/libnl/files/libnl-%{fullversion}.tar.gz Source0: https://github.com/thom311/libnl/releases/download/%{version_path}/libnl-%{version}.tar.gz
Source1: http://www.infradead.org/~tgr/libnl/files/libnl-doc-%{fullversion}.tar.gz Source1: https://github.com/thom311/libnl/releases/download/%{version_path}/libnl-doc-%{version}.tar.gz
#Patch1: some.patch #Patch1: some.patch
@ -67,6 +66,7 @@ This package contains libnl3 API documentation
Summary: libnl3 binding for Python 3 Summary: libnl3 binding for Python 3
%{?python_provide:%python_provide python3-libnl3} %{?python_provide:%python_provide python3-libnl3}
BuildRequires: python3-devel BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: make BuildRequires: make
Requires: %{name} = %{version}-%{release} Requires: %{name} = %{version}-%{release}
@ -75,7 +75,7 @@ Python 3 bindings for libnl3
%endif %endif
%prep %prep
%autosetup -p1 -n libnl-%{fullversion} %autosetup -p1 -n libnl-%{version}
tar -xzf %SOURCE1 tar -xzf %SOURCE1
@ -116,35 +116,35 @@ popd
%ldconfig_scriptlets cli %ldconfig_scriptlets cli
%files %files
%doc COPYING %license COPYING
%exclude %{_libdir}/libnl-cli*.so.* %exclude %{_libdir}/libnl-cli*.so.*
%exclude %{_libdir}/libnl*-3.a %exclude %{_libdir}/libnl*-3.a
%{_libdir}/libnl-*.so.* %{_libdir}/libnl-*.so.*
%config(noreplace) %{_sysconfdir}/* %config(noreplace) %{_sysconfdir}/*
%files devel %files devel
%doc COPYING %license COPYING
%{_includedir}/libnl3/netlink/ %{_includedir}/libnl3/netlink/
%dir %{_includedir}/libnl3/ %dir %{_includedir}/libnl3/
%{_libdir}/*.so %{_libdir}/*.so
%{_libdir}/pkgconfig/*.pc %{_libdir}/pkgconfig/*.pc
%files cli %files cli
%doc COPYING %license COPYING
%{_libdir}/libnl-cli*.so.* %{_libdir}/libnl-cli*.so.*
%{_libdir}/libnl/ %{_libdir}/libnl/
%{_bindir}/* %{_bindir}/*
%{_mandir}/man8/* %{_mandir}/man8/*
%files doc %files doc
%doc COPYING %license COPYING
%doc libnl-doc-%{fullversion}/*.html %doc libnl-doc-%{version}/*.html
%doc libnl-doc-%{fullversion}/*.css %doc libnl-doc-%{version}/*.css
%doc libnl-doc-%{fullversion}/stylesheets/* %doc libnl-doc-%{version}/stylesheets/*
%doc libnl-doc-%{fullversion}/images/* %doc libnl-doc-%{version}/images/*
%doc libnl-doc-%{fullversion}/images/icons/* %doc libnl-doc-%{version}/images/icons/*
%doc libnl-doc-%{fullversion}/images/icons/callouts/* %doc libnl-doc-%{version}/images/icons/callouts/*
%doc libnl-doc-%{fullversion}/api/* %doc libnl-doc-%{version}/api/*
%if %{with python3} %if %{with python3}
%files -n python3-libnl3 %files -n python3-libnl3
@ -153,27 +153,67 @@ popd
%endif %endif
%changelog %changelog
* Tue Nov 12 2024 Thomas Haller <thaller@redhat.com> - 3.11.0-1
- Update to 3.11.0 release
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 3.9.0-5
- Bump release for October 2024 mass rebuild:
Resolves: RHEL-64018
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 3.9.0-4
- Bump release for June 2024 mass rebuild
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.9.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.9.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Mon Dec 4 2023 Thomas Haller <thaller@redhat.com> - 3.9.0-1
- Update to 3.9.0 release
* Mon Oct 30 2023 Thomas Haller <thaller@redhat.com> - 3.8.0-2
- Use SPDX license identifier in package
* Tue Aug 29 2023 Thomas Haller <thaller@redhat.com> - 3.8.0-1
- Update to 3.8.0 release
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.7.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 3.7.0-4
- Rebuilt for Python 3.12
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.7.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.7.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Wed Jul 6 2022 Thomas Haller <thaller@redhat.com> - 3.7.0-1 * Wed Jul 6 2022 Thomas Haller <thaller@redhat.com> - 3.7.0-1
- Update to 3.7.0 release (rh #2075841) - Update to 3.7.0 release
* Tue May 3 2022 Thomas Haller <thaller@redhat.com> - 3.6.0-2 * Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 3.6.0-4
- route: fix crash parsing multihop route (rh #2081279) - Rebuilt for Python 3.11
* Fri May 6 2022 Till Maas <opensource@till.name> - 3.6.0-3
- Fix URLs (rh #1541407)
- Cleanup specfile
* Thu Apr 21 2022 Thomas Haller <thaller@redhat.com> - 3.6.0-1 * Fri May 6 2022 Thomas Haller <thaller@redhat.com> - 3.6.0-2
- Update to 3.6.0 release (rh #2075841) - route: fix crash parsing multihop route (rh #2081279)
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 3.5.0-10 * Fri Apr 15 2022 Thomas Haller <thaller@redhat.com> - 3.6.0-1
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags - Update to 3.6.0 release
Related: rhbz#1991688
* Fri Jul 2 2021 Thomas Haller <thaller@redhat.com> - 3.5.0-9 * Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.0-9
- Various fixes found by coverity (rh #1938776) - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Tue Jun 8 2021 Thomas Haller <thaller@redhat.com> - 3.5.0-8 * Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.0-8
- Drop python3-libnl3 package (rh #1969549) - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 3.5.0-7 * Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 3.5.0-7
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937 - Rebuilt for Python 3.10
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.0-6 * Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.0-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild

Loading…
Cancel
Save