From: "Alexander Kanavin" <alex.kanavin@gmail.com>
To: openembedded-core@lists.openembedded.org
Cc: Alexander Kanavin <alex.kanavin@gmail.com>
Subject: [PATCH 04/23] libcap: update 2.44 -> 2.45
Date: Fri, 4 Dec 2020 21:07:17 +0100 [thread overview]
Message-ID: <20201204200737.7072-4-alex.kanavin@gmail.com> (raw)
In-Reply-To: <20201204200737.7072-1-alex.kanavin@gmail.com>
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
...-tests-do-not-statically-link-a-test.patch | 36 +++++++++++++------
...-tests-do-not-run-target-executables.patch | 16 ++++-----
.../libcap/{libcap_2.44.bb => libcap_2.45.bb} | 2 +-
3 files changed, 34 insertions(+), 20 deletions(-)
rename meta/recipes-support/libcap/{libcap_2.44.bb => libcap_2.45.bb} (96%)
diff --git a/meta/recipes-support/libcap/files/0001-tests-do-not-statically-link-a-test.patch b/meta/recipes-support/libcap/files/0001-tests-do-not-statically-link-a-test.patch
index d9fd48a9db..3c737b884e 100644
--- a/meta/recipes-support/libcap/files/0001-tests-do-not-statically-link-a-test.patch
+++ b/meta/recipes-support/libcap/files/0001-tests-do-not-statically-link-a-test.patch
@@ -1,4 +1,4 @@
-From 03e925f0d68bc51e1acf1ac2014a9c2452c664bf Mon Sep 17 00:00:00 2001
+From c22c6c16362c7dbc8d6faea06edee5e07759c5fa Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <alex.kanavin@gmail.com>
Date: Wed, 15 Jan 2020 17:16:28 +0100
Subject: [PATCH] tests: do not statically link a test
@@ -9,23 +9,37 @@ Upstream-Status: Inappropriate [oe-core specific]
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
+ progs/Makefile | 2 +-
tests/Makefile | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
+ 2 files changed, 3 insertions(+), 3 deletions(-)
+diff --git a/progs/Makefile b/progs/Makefile
+index 1d7fc7a..37db8f7 100644
+--- a/progs/Makefile
++++ b/progs/Makefile
+@@ -42,7 +42,7 @@ endif
+ test: $(PROGS)
+
+ tcapsh-static: capsh.c $(DEPS)
+- $(CC) $(IPATH) $(CAPSH_SHELL) $(CFLAGS) -o $@ $< $(LIBCAPLIB) $(LDFLAGS) --static
++ $(CC) $(IPATH) $(CAPSH_SHELL) $(CFLAGS) -o $@ $< $(LIBCAPLIB) $(LDFLAGS)
+
+ sudotest: test tcapsh-static
+ sudo $(LDPATH) ./quicktest.sh
diff --git a/tests/Makefile b/tests/Makefile
-index d569650..f5ca377 100644
+index 3431df9..727fb86 100644
--- a/tests/Makefile
+++ b/tests/Makefile
-@@ -11,7 +11,7 @@ ifeq ($(DYNAMIC),yes)
- LDPATH = LD_LIBRARY_PATH=../libcap
- DEPSBUILD = all
+@@ -22,7 +22,7 @@ ifeq ($(PTHREADS),yes)
+ DEPS += ../libcap/libpsx.so
+ endif
else
-LDFLAGS += --static
-+LDFLAGS +=
- DEPSBUILD = libcap.a libpsx.a
- endif
-
-@@ -51,7 +51,7 @@ libcap_psx_launch_test: libcap_launch_test.c $(DEPS)
++LDFLAGS +=
+ DEPS=../libcap/libcap.a ../progs/tcapsh-static
+ ifeq ($(PTHREADS),yes)
+ DEPS += ../libcap/libpsx.a
+@@ -106,7 +106,7 @@ noexploit: exploit.o $(DEPS)
# This one runs in a chroot with no shared library files.
noop: noop.c
diff --git a/meta/recipes-support/libcap/files/0002-tests-do-not-run-target-executables.patch b/meta/recipes-support/libcap/files/0002-tests-do-not-run-target-executables.patch
index bfce8e0547..69287152eb 100644
--- a/meta/recipes-support/libcap/files/0002-tests-do-not-run-target-executables.patch
+++ b/meta/recipes-support/libcap/files/0002-tests-do-not-run-target-executables.patch
@@ -1,4 +1,4 @@
-From 7744c1f678f5226a151bc6b2a254a56835229d91 Mon Sep 17 00:00:00 2001
+From 652071e430d5eea758965176b7648e79ad404daa Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <alex.kanavin@gmail.com>
Date: Fri, 20 Dec 2019 16:54:05 +0100
Subject: [PATCH] tests: do not run target executables
@@ -11,20 +11,20 @@ Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
1 file changed, 2 deletions(-)
diff --git a/tests/Makefile b/tests/Makefile
-index 8956d5d..d569650 100644
+index fc39fee..3431df9 100644
--- a/tests/Makefile
+++ b/tests/Makefile
-@@ -27,13 +27,11 @@ sudotest: test run_libcap_launch_test run_libcap_launch_test
- install: all
+@@ -59,13 +59,11 @@ endif
+ # unprivileged
run_psx_test: psx_test
-- $(LDPATH) ./psx_test
+- ./psx_test
psx_test: psx_test.c $(DEPS)
- $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LIBPSXLIB)
+ $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LINKEXTRA) $(LIBPSXLIB) $(LDFLAGS)
run_libcap_psx_test: libcap_psx_test
-- $(LDPATH) ./libcap_psx_test
+- ./libcap_psx_test
libcap_psx_test: libcap_psx_test.c $(DEPS)
- $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LIBCAPLIB) $(LIBPSXLIB) $(LDFLAGS)
+ $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LINKEXTRA) $(LIBCAPLIB) $(LIBPSXLIB) $(LDFLAGS)
diff --git a/meta/recipes-support/libcap/libcap_2.44.bb b/meta/recipes-support/libcap/libcap_2.45.bb
similarity index 96%
rename from meta/recipes-support/libcap/libcap_2.44.bb
rename to meta/recipes-support/libcap/libcap_2.45.bb
index 79875522d6..067ba32d99 100644
--- a/meta/recipes-support/libcap/libcap_2.44.bb
+++ b/meta/recipes-support/libcap/libcap_2.45.bb
@@ -12,7 +12,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/libs/security/linux-privs/${BPN}2/${BPN}-${
file://0002-tests-do-not-run-target-executables.patch \
file://0001-tests-do-not-statically-link-a-test.patch \
"
-SRC_URI[sha256sum] = "92188359cd5be86e8e5bd3f6483ac6ce582264f912398937ef763def2205c8e1"
+SRC_URI[sha256sum] = "d66639f765c0e10557666b00f519caf0bd07a95f867dddaee131cd284fac3286"
UPSTREAM_CHECK_URI = "https://www.kernel.org/pub/linux/libs/security/linux-privs/${BPN}2/"
--
2.29.2
next prev parent reply other threads:[~2020-12-04 20:07 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-04 20:07 [PATCH 01/23] netbase: upgrade 6.1 -> 6.2 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 02/23] meson: upgrade 0.55.1 -> 0.56.0 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 03/23] vulkan-samples: update to latest revision Alexander Kanavin
2020-12-04 20:07 ` Alexander Kanavin [this message]
2020-12-04 20:07 ` [PATCH 05/23] bind: upgrade 9.16.7 -> 9.16.9 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 06/23] quota: upgrade 4.05 -> 4.06 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 07/23] pango: upgrade 1.46.2 -> 1.48.0 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 08/23] elfutils: upgrade 0.181 -> 0.182 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 09/23] kea: upgrade 1.7.10 -> 1.8.1 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 10/23] ifupdown: upgrade 0.8.35 -> 0.8.36 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 11/23] createrepo-c: upgrade 0.16.1 -> 0.16.2 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 12/23] acpica: upgrade 20200925 -> 20201113 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 13/23] grep: upgrade 3.5 -> 3.6 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 14/23] man-pages: upgrade 5.08 -> 5.09 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 15/23] stress-ng: upgrade 0.11.23 -> 0.11.24 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 16/23] libhandy: upgrade 1.0.1 -> 1.0.2 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 17/23] piglit: upgrade to latest revision Alexander Kanavin
2020-12-04 20:07 ` [PATCH 18/23] xkbcomp: upgrade 1.4.3 -> 1.4.4 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 19/23] lz4: upgrade 1.9.2 -> 1.9.3 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 20/23] bison: upgrade 3.7.3 -> 3.7.4 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 21/23] python3-setuptools-scm: fix upstream version check Alexander Kanavin
2020-12-04 20:07 ` [PATCH 22/23] cantarell-fonts: update 0.0.25 -> 0.201 Alexander Kanavin
2020-12-04 20:07 ` [PATCH 23/23] ptest-packagelists.inc: exclude lttng-tools-ptest Alexander Kanavin
2020-12-04 20:39 ` [OE-core] " Jonathan Rajotte-Julien
2020-12-04 20:48 ` Alexander Kanavin
2020-12-04 21:21 ` Jonathan Rajotte-Julien
2020-12-04 21:49 ` Alexander Kanavin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201204200737.7072-4-alex.kanavin@gmail.com \
--to=alex.kanavin@gmail.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox