From b19030207036925a9705d3aaeb1659244441afb6 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: May 02 2020 21:02:28 +0000 Subject: Update to 1.24-rc2 (1.23.91) --- diff --git a/.gitignore b/.gitignore index 51c38cf..ccfe4d1 100644 --- a/.gitignore +++ b/.gitignore @@ -371,3 +371,4 @@ network-manager-applet-0.8.1.tar.bz2 /NetworkManager-1.22.8.tar.xz /NetworkManager-1.22.10.tar.xz /NetworkManager-1.23.90.tar.xz +/NetworkManager-1.23.91.tar.xz diff --git a/0001-nm-online-fix-build-of-nm-online-for-missing-libcsip.patch b/0001-nm-online-fix-build-of-nm-online-for-missing-libcsip.patch new file mode 100644 index 0000000..25b830f --- /dev/null +++ b/0001-nm-online-fix-build-of-nm-online-for-missing-libcsip.patch @@ -0,0 +1,28 @@ +From fea106f29d34f69bbc8d31d41702f1377ef08426 Mon Sep 17 00:00:00 2001 +From: Thomas Haller +Date: Sat, 2 May 2020 22:39:53 +0200 +Subject: [PATCH 1/1] nm-online: fix build of nm-online for missing + libcsiphash.la + +Fixes: e468b48ab7b8 ('nm-online: allow configuring timeout via NM_ONLINE_TIMEOUT environment') +(cherry picked from commit 69798fa6cd841c54915fdbee048ccd5765313a9b) +(cherry picked from commit 53476d821d3c66896bcdc0e6f26a60c0a184f469) +--- + Makefile.am | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/Makefile.am b/Makefile.am +index 6cb709b8d545..35564aa5c578 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -4289,6 +4289,7 @@ clients_nm_online_LDADD = \ + shared/nm-libnm-aux/libnm-libnm-aux.la \ + shared/nm-glib-aux/libnm-glib-aux.la \ + shared/nm-std-aux/libnm-std-aux.la \ ++ shared/libcsiphash.la \ + $(GLIB_LIBS) \ + $(NULL) + +-- +2.25.4 + diff --git a/NetworkManager.spec b/NetworkManager.spec index 10d4c10..1496ac2 100644 --- a/NetworkManager.spec +++ b/NetworkManager.spec @@ -6,8 +6,8 @@ %global epoch_version 1 %global rpm_version 1.24.0 -%global real_version 1.23.90 -%global release_version 0.1 +%global real_version 1.23.91 +%global release_version 0.2 %global snapshot %{nil} %global git_sha %{nil} @@ -112,9 +112,9 @@ # bpf(BPF_MAP_CREATE, ...) randomly fails with EPERM. That might # be related to `ulimit -l`. Anyway, this is not usable at the # moment. -%global ebpf_enabled no +%global ebpf_enabled "no" %else -%global ebpf_enabled no +%global ebpf_enabled "no" %endif ############################################################################### @@ -136,6 +136,7 @@ Source5: 20-connectivity-redhat.conf Source6: 70-nm-connectivity.conf #Patch1: 0001-some.patch +Patch1: 0001-nm-online-fix-build-of-nm-online-for-missing-libcsip.patch Requires(post): systemd Requires(post): /usr/sbin/update-alternatives @@ -584,7 +585,7 @@ This tool is still experimental. %else -Dlibpsl=false \ %endif -%if %{ebpf_enabled} != yes +%if %{ebpf_enabled} != "yes" -Debpf=false \ %else -Debpf=true \ @@ -1051,6 +1052,9 @@ fi %changelog +* Sat May 2 2020 Thomas Haller