2022-11-21 10:27:36 +08:00
|
|
|
#needsrootforbuild
|
2019-09-30 10:53:19 -04:00
|
|
|
Name: iproute
|
2023-01-31 15:46:34 +08:00
|
|
|
Version: 6.1.0
|
2023-02-01 16:57:22 +08:00
|
|
|
Epoch: 1
|
2023-02-25 10:38:50 +08:00
|
|
|
Release: 6
|
2019-09-30 10:53:19 -04:00
|
|
|
Summary: Linux network configuration utilities
|
|
|
|
|
License: GPLv2+ and Public Domain
|
|
|
|
|
URL: https://kernel.org/pub/linux/utils/net/iproute2/
|
|
|
|
|
Source0: https://mirrors.edge.kernel.org/pub/linux/utils/net/iproute2/iproute2-%{version}.tar.xz
|
|
|
|
|
|
2020-01-20 22:46:18 +08:00
|
|
|
Patch1: bugfix-iproute2-3.10.0-fix-maddr-show.patch
|
|
|
|
|
Patch2: bugfix-iproute2-change-proc-to-ipnetnsproc-which-is-private.patch
|
2023-02-18 16:26:52 +08:00
|
|
|
Patch3: backport-testsuite-fix-testsuite-build-failure-when-iproute-b.patch
|
2020-01-20 22:46:18 +08:00
|
|
|
|
2022-11-09 20:15:00 +08:00
|
|
|
Patch9000: feature-iproute-add-support-for-ipvlan-l2e-mode.patch
|
2022-11-21 10:27:36 +08:00
|
|
|
Patch9001: bugfix-iproute2-cancel-some-test-cases.patch
|
2022-11-09 20:15:00 +08:00
|
|
|
|
2022-03-01 19:39:02 +08:00
|
|
|
BuildRequires: gcc bison elfutils-libelf-devel flex iptables-devel
|
2023-02-17 11:21:09 +08:00
|
|
|
BuildRequires: libmnl-devel libselinux-devel pkgconfig libbpf-devel sudo make
|
2021-11-26 16:30:42 +08:00
|
|
|
Requires: libbpf psmisc
|
2019-09-30 10:53:19 -04:00
|
|
|
|
|
|
|
|
Provides: /sbin/ip iproute-tc tc
|
|
|
|
|
Obsoletes: iproute-tc
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
Iproute2 is a collection of user-space utilities to set up networking
|
|
|
|
|
under Linux from the command-line. It can inspect and configure,
|
|
|
|
|
among other things: interface paramters, IP addresses, routing,
|
|
|
|
|
tunnels, bridges, packet transformations (IPsec, etc.), and Quality
|
|
|
|
|
of Service.
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
|
Summary: Header files for iprout2
|
|
|
|
|
License: GPLv2+
|
|
|
|
|
Provides: iproute-static = %{version}-%{release}
|
|
|
|
|
Obsoletes: iproute-static < %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
Header files for iprout2
|
|
|
|
|
|
|
|
|
|
%package_help
|
|
|
|
|
|
|
|
|
|
%prep
|
2021-08-02 10:13:33 +08:00
|
|
|
%autosetup -n %{name}2-%{version} -p1
|
2019-09-30 10:53:19 -04:00
|
|
|
|
|
|
|
|
%build
|
2020-12-10 09:13:02 +08:00
|
|
|
export LIBDIR='%{_libdir}'
|
2020-09-24 20:51:59 +08:00
|
|
|
export IPT_LIB_DIR='/%{_lib}/xtables'
|
2019-09-30 10:53:19 -04:00
|
|
|
%configure
|
|
|
|
|
%make_build
|
|
|
|
|
|
2022-11-21 10:27:36 +08:00
|
|
|
%check
|
|
|
|
|
make check
|
|
|
|
|
if test -n "$(find . -name *.err)"; then
|
|
|
|
|
echo "make check failed, please check"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
2019-09-30 10:53:19 -04:00
|
|
|
%install
|
|
|
|
|
export CONFDIR='%{_sysconfdir}/iproute2'
|
|
|
|
|
export SBINDIR='%{_sbindir}'
|
|
|
|
|
export LIBDIR='%{_libdir}'
|
|
|
|
|
export DOCDIR='%{_docdir}'
|
|
|
|
|
|
|
|
|
|
%make_install
|
|
|
|
|
|
|
|
|
|
install -m 0755 -d %{buildroot}%{_includedir}
|
|
|
|
|
install -m 0644 include/libnetlink.h %{buildroot}%{_includedir}/libnetlink.h
|
|
|
|
|
install -m 0644 lib/libnetlink.a %{buildroot}%{_libdir}/libnetlink.a
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
%license COPYING
|
2020-01-14 17:33:16 +08:00
|
|
|
%doc README
|
2019-09-30 10:53:19 -04:00
|
|
|
%attr(644,root,root) %config(noreplace) %{_sysconfdir}/iproute2/*
|
|
|
|
|
%{_sbindir}/*
|
|
|
|
|
%{_libdir}/tc/*
|
2020-07-22 19:27:33 +08:00
|
|
|
%{_datadir}/bash-completion/completions/*
|
2019-09-30 10:53:19 -04:00
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
%license COPYING
|
|
|
|
|
%{_libdir}/libnetlink.a
|
|
|
|
|
%{_includedir}/*
|
|
|
|
|
|
|
|
|
|
%files help
|
|
|
|
|
%defattr(-,root,root)
|
2020-01-14 17:33:16 +08:00
|
|
|
%doc README
|
2019-09-30 10:53:19 -04:00
|
|
|
%{_mandir}/*
|
|
|
|
|
|
|
|
|
|
%changelog
|
2023-02-25 10:38:50 +08:00
|
|
|
* Sat Feb 25 2023 jiangheng <jiangheng14@huawei.com> - 1:6.1.0-6
|
|
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:fix ip netns attach failed
|
|
|
|
|
|
2023-02-18 16:26:52 +08:00
|
|
|
* Sat Feb 18 2023 gaoxingwang <gaoxingwang1@huawei.com> - 1:6.1.0-5
|
|
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:fix testsuite build failure and delete libcap-devel dependency
|
|
|
|
|
|
2023-02-17 11:21:09 +08:00
|
|
|
* Fri Feb 17 2023 gaoxingwang <gaoxingwang1@huawei.com> - 1:6.1.0-4
|
|
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:add BuildRequire for make to fix build failure
|
|
|
|
|
|
2023-02-09 14:50:24 +08:00
|
|
|
* Thu Feb 9 2023 gaoxingwang <gaoxingwang1@huawei.com> - 1:6.1.0-3
|
|
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:add epoch version in changelog to fix check_spec_file ci failure
|
|
|
|
|
|
2023-02-01 16:57:22 +08:00
|
|
|
* Wed Feb 1 2023 gaoxingwang <gaoxingwang1@huawei.com> - 6.1.0-2
|
|
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:add epoch version
|
|
|
|
|
|
|
|
|
|
* Tue Jan 31 2023 gaoxingwang <gaoxingwang1@huawei.com> - 6.1.0-1
|
2023-01-31 15:46:34 +08:00
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:update to 6.1.0
|
|
|
|
|
|
2022-12-22 09:51:03 +08:00
|
|
|
* Thu Dec 22 2022 gaoxingwang <gaoxingwang1@huawei.com> - 5.15.0-9
|
|
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:cancel some test cases that failed due to host configure
|
|
|
|
|
|
2022-12-21 14:27:38 +08:00
|
|
|
* Wed Dec 21 2022 gaoxingwang <gaoxingwang1@huawei.com> - 5.15.0-8
|
|
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:cancle man page check
|
|
|
|
|
|
2022-11-21 10:27:36 +08:00
|
|
|
* Mon Nov 21 2022 gaoxingwang <gaoxingwang1@huawei.com> - 5.15.0-7
|
|
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:enable make check
|
|
|
|
|
|
2022-11-09 20:15:00 +08:00
|
|
|
* Wed Nov 09 2022 jiangheng <jiangheng14@huawei.com> - 5.15.0-6
|
|
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:add ipvlan l2e mode support
|
|
|
|
|
|
2022-10-10 17:27:05 +08:00
|
|
|
* Mon Oct 10 2022 jiangheng<jiangheng14@huawei.com> - 5.15.0-5
|
2022-10-08 17:49:53 +08:00
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
2022-10-10 17:27:05 +08:00
|
|
|
- DESC:bridge: fix memory leak when doing fdb get
|
|
|
|
|
mptcp: fix memory leak when doing 'endpoint show'
|
|
|
|
|
mptcp: fix memory leak when getting limits
|
|
|
|
|
ip neigh: fix memory leak when doing 'get'
|
|
|
|
|
ip address: fix memory leak when specifying device
|
|
|
|
|
fix marco expansion in changelog
|
2022-10-08 17:49:53 +08:00
|
|
|
|
2022-08-26 17:33:43 +08:00
|
|
|
* Fri Aug 26 2022 sunsuwan<sunsuwan3@huawei.com> - 5.15.0-4
|
|
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:lnstat: fix buffer overflow in header output
|
|
|
|
|
libnetlink: fix socket leak in rtnl_open_byptoyo
|
|
|
|
|
lnstat: fix strdup leak in w argument parsing
|
|
|
|
|
q_cake: allow fix buffer overflow on large labels
|
|
|
|
|
tc flower: fix buffer overflow on large labels
|
|
|
|
|
tc_tuil: fix parsing action control with space and sl
|
|
|
|
|
tipc: fix keylen check
|
|
|
|
|
fix devlink health dump command without arg
|
|
|
|
|
tc: em_u32: fix offset parsing
|
|
|
|
|
l2tp fix typo in AF_INET6 checksum JSON print
|
|
|
|
|
ip: Fix size_columns() for very large values
|
|
|
|
|
ip: Fix size_columns() invocation that passes a 32-bit quantity
|
|
|
|
|
|
2022-03-01 19:39:02 +08:00
|
|
|
* Tue Mar 01 2022 jiangheng<jiangheng12@huawei.com> - 5.15.0-3
|
|
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC: remove libcap-devel dependency
|
|
|
|
|
|
2022-05-25 10:27:50 +08:00
|
|
|
* Mon Feb 21 2022 jiangheng<jiangheng12@huawei.com> - 5.15.0-2
|
2022-02-21 17:32:02 +08:00
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC: remove libdb-devel dependency
|
|
|
|
|
|
2021-11-26 16:30:42 +08:00
|
|
|
* Fri Nov 26 2021 jiangheng <jiangheng12@huawei.com> - 5.15.0-1
|
|
|
|
|
- DESC: update to 5.15.0
|
|
|
|
|
|
2021-08-02 10:13:33 +08:00
|
|
|
* Mon Aug 02 2021 chenyanpanHW <chenyanpan@huawei.com> - 5.10.0-2
|
2022-10-08 17:49:53 +08:00
|
|
|
- DESC: delete -S git from autosetup, and delete BuildRequires git
|
2021-08-02 10:13:33 +08:00
|
|
|
|
2021-01-26 15:38:53 +08:00
|
|
|
* Tue Jan 26 2021 xihaochen<xihaochen@huawei.com> - 5.10.0-1
|
|
|
|
|
- Type:requirements
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC: update iproute to 5.10.0
|
|
|
|
|
|
2020-12-10 09:13:02 +08:00
|
|
|
* Thu Dec 10 2020 zhouyihang <zhouyihang3@huawei.com> - 5.7.0-3
|
|
|
|
|
- Type:bugfix
|
|
|
|
|
- Id:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:modify fix of get_tc_lib err
|
|
|
|
|
|
2022-05-25 10:27:50 +08:00
|
|
|
* Thu Sep 24 2020 zhouyihang <zhouyihang3@huawei.com> - 5.7.0-2
|
2020-09-24 20:51:59 +08:00
|
|
|
- Type:bugfix
|
|
|
|
|
- Id:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:fix get_tc_lib err
|
|
|
|
|
|
2020-07-22 19:27:33 +08:00
|
|
|
* Wed Jul 22 2020 hanzhijun <hanzhijun1@huawei.com> - 5.7.0-1
|
|
|
|
|
- update to 5.7.0
|
|
|
|
|
|
2020-01-20 22:46:18 +08:00
|
|
|
* Mon Jan 20 2020 openEuler Buildteam <buildteam@openeuler.org> - 5.4.0-2
|
|
|
|
|
- fix maddr show and change proc to ipnetnsproc
|
|
|
|
|
|
2020-01-14 17:33:16 +08:00
|
|
|
* Tue Jan 14 2020 openEuler Buildteam <buildteam@openeuler.org> - 5.4.0-1
|
|
|
|
|
- update to 5.4.0
|
|
|
|
|
|
2019-11-06 19:33:52 +08:00
|
|
|
* Fri Oct 18 2019 openEuler Buildteam <buildteam@openeuler.org> - 5.2.0-2
|
|
|
|
|
- Type:bugfix
|
|
|
|
|
- Id:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:add the bugfix about iproute
|
|
|
|
|
|
2019-09-30 10:53:19 -04:00
|
|
|
* Thu Sep 19 2019 openEuler Buildteam <buildteam@openeuler.org> - 5.2.0-1
|
|
|
|
|
- Package init
|