commit:     42e868756e356ea8fb5238a25a16ebbbce113136
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Thu Sep 23 17:46:12 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Sep 23 19:00:03 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42e86875

sys-libs/libcap: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/22376
Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 .../files/libcap-2.56-build-system-fixes.patch     | 239 ---------------------
 1 file changed, 239 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
deleted file mode 100644
index 572bde97e2c..00000000000
--- a/sys-libs/libcap/files/libcap-2.56-build-system-fixes.patch
+++ /dev/null
@@ -1,239 +0,0 @@
-From 3249c2696468bc82ec45f4fcabddc390473a45da Mon Sep 17 00:00:00 2001
-From: David Seifert <[email protected]>
-Date: Sat, 4 Sep 2021 10:39:34 +0200
-Subject: [PATCH 1/3] Build system fixes
-
-Summary:
-- Always keep $(WARNINGS) when overriding CFLAGS
-
-Signed-off-by: Andrew G. Morgan <[email protected]>
----
- Make.Rules | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/Make.Rules b/Make.Rules
-index 3eeb098..00f2a03 100644
---- a/Make.Rules
-+++ b/Make.Rules
-@@ -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)
-+CFLAGS ?= $(COPTS) $(DEBUG)
-+CFLAGS += $(WARNINGS)
- CPPFLAGS += -Dlinux $(DEFINES) $(LIBCAP_INCLUDES)
- LDFLAGS ?= # -g
- 
--- 
-2.33.0
-
-
-From 99799844ad9272d43892881d1090369e6032aec2 Mon Sep 17 00:00:00 2001
-From: "Andrew G. Morgan" <[email protected]>
-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 <[email protected]>
----
- 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" <[email protected]>
-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 <[email protected]>
----
- 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..9ee11c8 100644
---- a/Makefile
-+++ b/Makefile
-@@ -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 $@
- 
- 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
-

Reply via email to