public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libcap/files/, sys-libs/libcap/
Date: Sun,  5 Sep 2021 09:51:57 +0000 (UTC)	[thread overview]
Message-ID: <1630835503.72b75e511e958de407ff6172fe52d93fcdc5c83c.soap@gentoo> (raw)

commit:     72b75e511e958de407ff6172fe52d93fcdc5c83c
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  5 09:51:43 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Sep  5 09:51:43 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72b75e51

sys-libs/libcap: update patch for 2.56

* all build system changes are now upstreamed

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 .../files/libcap-2.56-build-system-fixes.patch     | 233 +++++++++++++++++++--
 sys-libs/libcap/libcap-2.56.ebuild                 |   1 +
 2 files changed, 216 insertions(+), 18 deletions(-)

diff --git a/sys-libs/libcap/files/libcap-2.56-build-system-fixes.patch b/sys-libs/libcap/files/libcap-2.56-build-system-fixes.patch
index bd026b15632..572bde97e2c 100644
--- a/sys-libs/libcap/files/libcap-2.56-build-system-fixes.patch
+++ b/sys-libs/libcap/files/libcap-2.56-build-system-fixes.patch
@@ -1,22 +1,26 @@
-From 35989c0ae0073009b1f9c0338410162a11d399fc Mon Sep 17 00:00:00 2001
+From 3249c2696468bc82ec45f4fcabddc390473a45da Mon Sep 17 00:00:00 2001
 From: David Seifert <soap@gentoo.org>
-Date: Fri, 3 Sep 2021 09:41:26 +0200
-Subject: [PATCH] Build system fixes
+Date: Sat, 4 Sep 2021 10:39:34 +0200
+Subject: [PATCH 1/3] Build system fixes
 
 Summary:
-- Always respect CFLAGS
-- Only build tests conditionally (when we're going to run them)
+- Always keep $(WARNINGS) when overriding CFLAGS
+
+Signed-off-by: Andrew G. Morgan <morgan@kernel.org>
 ---
- Make.Rules | 3 ++-
- Makefile   | 1 -
- 2 files changed, 2 insertions(+), 2 deletions(-)
+ Make.Rules | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
 
 diff --git a/Make.Rules b/Make.Rules
-index 3eeb098..04dd8dc 100644
+index 3eeb098..00f2a03 100644
 --- a/Make.Rules
 +++ b/Make.Rules
-@@ -81,7 +81,8 @@ WARNINGS=-Wall -Wwrite-strings -Wpointer-arith -Wcast-qual -Wcast-align \
-         -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs       \
+@@ -78,10 +78,11 @@ OBJCOPY := $(CROSS_COMPILE)objcopy
+ 
+ DEBUG = # -g -DDEBUG
+ WARNINGS=-Wall -Wwrite-strings -Wpointer-arith -Wcast-qual -Wcast-align \
+-        -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs       \
++	-Wstrict-prototypes -Wmissing-prototypes -Wnested-externs       \
  	-Winline -Wshadow
  COPTS ?= -O2
 -CFLAGS ?= $(COPTS) $(WARNINGS) $(DEBUG)
@@ -25,18 +29,211 @@ index 3eeb098..04dd8dc 100644
  CPPFLAGS += -Dlinux $(DEFINES) $(LIBCAP_INCLUDES)
  LDFLAGS ?= # -g
  
+-- 
+2.33.0
+
+
+From 99799844ad9272d43892881d1090369e6032aec2 Mon Sep 17 00:00:00 2001
+From: "Andrew G. Morgan" <morgan@kernel.org>
+Date: Sat, 4 Sep 2021 11:42:24 -0700
+Subject: [PATCH 2/3] Don't build the tests/binaries until we want to run them
+
+Signed-off-by: Andrew G. Morgan <morgan@kernel.org>
+---
+ tests/Makefile | 8 +++-----
+ 1 file changed, 3 insertions(+), 5 deletions(-)
+
+diff --git a/tests/Makefile b/tests/Makefile
+index dd78432..ecb7d1b 100644
+--- a/tests/Makefile
++++ b/tests/Makefile
+@@ -8,12 +8,10 @@ include ../Make.Rules
+ #
+ 
+ all:
+-	$(MAKE) libcap_launch_test uns_test
+-ifeq ($(PTHREADS),yes)
+-	$(MAKE) psx_test libcap_psx_test libcap_psx_launch_test
+-endif
++	@echo leave test building to test target
+ 
+-install: all
++install:
++	@echo nothing to install from tests
+ 
+ ifeq ($(DYNAMIC),yes)
+ LINKEXTRA=-Wl,-rpath,../libcap
+-- 
+2.33.0
+
+
+From 5ef14d07420c299ecd8de96928a5d1ce1e232df3 Mon Sep 17 00:00:00 2001
+From: "Andrew G. Morgan" <morgan@kernel.org>
+Date: Sat, 4 Sep 2021 14:05:11 -0700
+Subject: [PATCH 3/3] Refactor top level Makefile to reduce redundant building
+
+Make build a bit quicker for folk that don't want to run tests.
+
+Signed-off-by: Andrew G. Morgan <morgan@kernel.org>
+---
+ Makefile         | 28 +++++-----------------------
+ doc/Makefile     |  6 ++++++
+ go/Makefile      |  5 +++--
+ libcap/Makefile  |  3 +++
+ pam_cap/Makefile |  2 +-
+ progs/Makefile   |  5 +++--
+ 6 files changed, 21 insertions(+), 28 deletions(-)
+
 diff --git a/Makefile b/Makefile
-index 1c195dd..3f71b12 100644
+index 1c195dd..9ee11c8 100644
 --- a/Makefile
 +++ b/Makefile
-@@ -17,7 +17,6 @@ ifeq ($(GOLANG),yes)
- 	$(MAKE) -C go $@
- 	rm -f cap/go.sum
- endif
--	$(MAKE) -C tests $@
+@@ -8,7 +8,7 @@ include Make.Rules
+ # flags
+ #
+ 
+-all install clean: %: %-here
++all test sudotest install clean: %: %-here
+ 	$(MAKE) -C libcap $@
+ ifneq ($(PAM_CAP),no)
+ 	$(MAKE) -C pam_cap $@
+@@ -20,10 +20,13 @@ endif
+ 	$(MAKE) -C tests $@
  	$(MAKE) -C progs $@
  	$(MAKE) -C doc $@
- 	$(MAKE) -C kdebug $@
+-	$(MAKE) -C kdebug $@
+ 
+ all-here:
+ 
++test-here:
++
++sudotest-here:
++
+ install-here:
+ 
+ clean-here:
+@@ -41,30 +44,9 @@ distclean: clean
+ release: distclean
+ 	cd .. && ln -s libcap libcap-$(VERSION).$(MINOR) && tar cvf libcap-$(VERSION).$(MINOR).tar --exclude patches libcap-$(VERSION).$(MINOR)/* && rm libcap-$(VERSION).$(MINOR)
+ 
+-test: all
+-	$(MAKE) -C libcap $@
+-	$(MAKE) -C tests $@
+-ifneq ($(PAM_CAP),no)
+-	$(MAKE) -C pam_cap $@
+-endif
+-ifeq ($(GOLANG),yes)
+-	$(MAKE) -C go $@
+-endif
+-	$(MAKE) -C progs $@
+-
+ ktest: all
+ 	$(MAKE) -C kdebug test
+ 
+-sudotest: all
+-	$(MAKE) -C tests $@
+-ifneq ($(PAM_CAP),no)
+-	$(MAKE) -C pam_cap $@
+-endif
+-ifeq ($(GOLANG),yes)
+-	$(MAKE) -C go $@
+-endif
+-	$(MAKE) -C progs $@
+-
+ distcheck:
+ 	./distcheck.sh
+ 	$(MAKE) DYNAMIC=no COPTS="-D_FORTIFY_SOURCE=2 -O1 -g" clean test
+diff --git a/doc/Makefile b/doc/Makefile
+index e2802dc..9614180 100644
+--- a/doc/Makefile
++++ b/doc/Makefile
+@@ -32,6 +32,12 @@ MANS = $(MAN1S) $(MAN3S) $(MAN8S)
+ 
+ all: $(MANS)
+ 
++test:
++	@echo no doc tests available
++
++sudotest:
++	@echo no doc sudotests available
++
+ .PHONY: html
+ html:
+ 	mkdir -p html
+diff --git a/go/Makefile b/go/Makefile
+index 5af5321..2b2061b 100644
+--- a/go/Makefile
++++ b/go/Makefile
+@@ -14,8 +14,9 @@ IMPORTDIR=kernel.org/pub/linux/libs/security/libcap
+ PKGDIR=pkg/$(GOOSARCH)/$(IMPORTDIR)
+ 
+ DEPS=../libcap/libcap.a ../libcap/libpsx.a
++TESTS=compare-cap try-launching psx-signals
+ 
+-all: PSXGOPACKAGE CAPGOPACKAGE web setid gowns captree compare-cap try-launching psx-signals
++all: PSXGOPACKAGE CAPGOPACKAGE web setid gowns captree
+ 
+ $(DEPS):
+ 	$(MAKE) -C ../libcap all
+@@ -93,7 +94,7 @@ endif
+ b210613: b210613.go CAPGOPACKAGE
+ 	CC="$(CC)" CGO_ENABLED="$(CGO_REQUIRED)" $(CGO_LDFLAGS_ALLOW) CGO_CFLAGS="$(CGO_CFLAGS)" CGO_LDFLAGS="$(CGO_LDFLAGS)" $(GO) build -mod=vendor $<
+ 
+-test: all
++test: all $(TESTS)
+ 	CC="$(CC)" CGO_ENABLED="$(CGO_REQUIRED)" $(CGO_LDFLAGS_ALLOW) $(GO) test -mod=vendor $(IMPORTDIR)/psx
+ 	CC="$(CC)" CGO_ENABLED="$(CGO_REQUIRED)" $(CGO_LDFLAGS_ALLOW) $(GO) test -mod=vendor $(IMPORTDIR)/cap
+ 	LD_LIBRARY_PATH=../libcap ./compare-cap
+diff --git a/libcap/Makefile b/libcap/Makefile
+index 4b96a0c..84340f2 100644
+--- a/libcap/Makefile
++++ b/libcap/Makefile
+@@ -148,6 +148,9 @@ ifeq ($(PTHREADS),yes)
+ endif
+ endif
+ 
++sudotest:
++	@echo no sudotests for libcap
++
+ install: install-static
+ ifeq ($(SHARED),yes)
+ 	$(MAKE) install-shared
+diff --git a/pam_cap/Makefile b/pam_cap/Makefile
+index b245307..a000978 100644
+--- a/pam_cap/Makefile
++++ b/pam_cap/Makefile
+@@ -72,7 +72,7 @@ test: testlink test_pam_cap pam_cap.so
+ 	LD_LIBRARY_PATH=../libcap ./pam_cap.so --help
+ 	@echo "module can be run as an executable!"
+ 
+-sudotest: test test_pam_cap
++sudotest: test_pam_cap
+ 	$(SUDO) ./test_pam_cap root 0x0 0x0 0x0 config=./capability.conf
+ 	$(SUDO) ./test_pam_cap root 0x0 0x0 0x0 config=./sudotest.conf
+ 	$(SUDO) ./test_pam_cap alpha 0x0 0x0 0x0 config=./capability.conf
+diff --git a/progs/Makefile b/progs/Makefile
+index 2f887c8..e2bd7fe 100644
+--- a/progs/Makefile
++++ b/progs/Makefile
+@@ -42,7 +42,8 @@ ifeq ($(RAISE_SETFCAP),yes)
+ 	$(FAKEROOT)$(SBINDIR)/setcap cap_setfcap=i $(FAKEROOT)$(SBINDIR)/setcap
+ endif
+ 
+-test: $(PROGS) capsh
++test:
++	@echo "no program tests without privilege, try 'make sudotest'"
+ 
+ capshdoc.h.cf: capshdoc.h ./mkcapshdoc.sh
+ 	./mkcapshdoc.sh > $@
+@@ -60,7 +61,7 @@ uns_test: ../tests/uns_test.c
+ 	$(MAKE) -C ../tests uns_test
+ 	cp ../tests/uns_test .
+ 
+-sudotest: test tcapsh-static uns_test
++sudotest: tcapsh-static uns_test
+ 	$(SUDO) $(LDPATH) ./quicktest.sh
+ 
+ clean:
 -- 
 2.33.0
 

diff --git a/sys-libs/libcap/libcap-2.56.ebuild b/sys-libs/libcap/libcap-2.56.ebuild
index ef97a68d05a..0298367e447 100644
--- a/sys-libs/libcap/libcap-2.56.ebuild
+++ b/sys-libs/libcap/libcap-2.56.ebuild
@@ -23,6 +23,7 @@ DEPEND="${PDEPEND}
 BDEPEND="tools? ( dev-lang/go )"
 
 PATCHES=(
+	# backport, remove on bump
 	"${FILESDIR}"/${PN}-2.56-build-system-fixes.patch
 	"${FILESDIR}"/${PN}-2.38-no_perl.patch
 	"${FILESDIR}"/${PN}-2.25-ignore-RAISE_SETFCAP-install-failures.patch


             reply	other threads:[~2021-09-05  9:52 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-05  9:51 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-12-30 18:12 [gentoo-commits] repo/gentoo:master commit in: sys-libs/libcap/files/, sys-libs/libcap/ David Seifert
2021-11-28 14:02 David Seifert
2021-11-28 14:02 David Seifert
2021-11-21 23:37 David Seifert
2021-09-11 23:52 Sam James
2021-09-04 17:35 David Seifert
2021-08-03 10:27 Lars Wendler
2021-06-06 15:42 David Seifert
2021-05-30 10:54 Lars Wendler
2020-11-04 22:16 Lars Wendler
2020-09-18 10:30 Lars Wendler
2020-08-02 17:14 Lars Wendler
2020-07-20 13:50 Lars Wendler
2020-07-13  9:10 Lars Wendler
2020-07-04 21:45 Lars Wendler
2020-06-04 17:45 Lars Wendler
2020-03-04 10:04 Lars Wendler
2019-12-10 10:29 Lars Wendler
2019-05-03 16:10 Lars Wendler
2017-02-01 14:42 Tony Vroon
2016-03-30 23:48 Mike Frysinger

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=1630835503.72b75e511e958de407ff6172fe52d93fcdc5c83c.soap@gentoo \
    --to=soap@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.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