From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BD779158091 for ; Sat, 11 Jun 2022 06:03:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7EBAE086C; Sat, 11 Jun 2022 06:03:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D2657E086C for ; Sat, 11 Jun 2022 06:03:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E17EB34196C for ; Sat, 11 Jun 2022 06:03:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E8B74E5 for ; Sat, 11 Jun 2022 06:03:28 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1654927398.3f80775fd1204bf44e4ecd41202b591e1d953e63.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/sbsigntools/files/, app-crypt/sbsigntools/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/sbsigntools/files/sbsigntools-0.9.4-no-werror.patch app-crypt/sbsigntools/sbsigntools-0.9.4.ebuild X-VCS-Directories: app-crypt/sbsigntools/ app-crypt/sbsigntools/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3f80775fd1204bf44e4ecd41202b591e1d953e63 X-VCS-Branch: master Date: Sat, 11 Jun 2022 06:03:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2c26e161-7f1f-423f-ae10-4078fad36f46 X-Archives-Hash: 01482318d3c5307fceb502edc31d4c7d commit: 3f80775fd1204bf44e4ecd41202b591e1d953e63 Author: Sam James gentoo org> AuthorDate: Sat Jun 11 06:01:26 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jun 11 06:03:18 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f80775f app-crypt/sbsigntools: drop Werror Closes: https://bugs.gentoo.org/832212 Bug: https://bugs.gentoo.org/845372 Bug: https://bugs.gentoo.org/828947 Signed-off-by: Sam James gentoo.org> .../sbsigntools/files/sbsigntools-0.9.4-no-werror.patch | 13 +++++++++++++ app-crypt/sbsigntools/sbsigntools-0.9.4.ebuild | 4 ++++ 2 files changed, 17 insertions(+) diff --git a/app-crypt/sbsigntools/files/sbsigntools-0.9.4-no-werror.patch b/app-crypt/sbsigntools/files/sbsigntools-0.9.4-no-werror.patch new file mode 100644 index 000000000000..42650929b87c --- /dev/null +++ b/app-crypt/sbsigntools/files/sbsigntools-0.9.4-no-werror.patch @@ -0,0 +1,13 @@ +https://bugs.gentoo.org/832212 +https://bugs.gentoo.org/845372 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -7,7 +7,7 @@ AM_CFLAGS = -Wall -Wextra --std=gnu99 + common_SOURCES = idc.c idc.h image.c image.h fileio.c fileio.h \ + efivars.h $(coff_headers) + common_LDADD = ../lib/ccan/libccan.a $(libcrypto_LIBS) +-common_CFLAGS = -I$(top_srcdir)/lib/ccan/ -Werror ++common_CFLAGS = -I$(top_srcdir)/lib/ccan/ + + sbsign_SOURCES = sbsign.c $(common_SOURCES) + sbsign_LDADD = $(common_LDADD) diff --git a/app-crypt/sbsigntools/sbsigntools-0.9.4.ebuild b/app-crypt/sbsigntools/sbsigntools-0.9.4.ebuild index b8865b50a89d..ba90949d3bc3 100644 --- a/app-crypt/sbsigntools/sbsigntools-0.9.4.ebuild +++ b/app-crypt/sbsigntools/sbsigntools-0.9.4.ebuild @@ -26,6 +26,10 @@ DEPEND="${RDEPEND} sys-libs/binutils-libs virtual/pkgconfig" +PATCHES=( + "${FILESDIR}"/${PN}-0.9.4-no-werror.patch +) + src_prepare() { mv "${WORKDIR}"/lib/ccan "${S}"/lib || die "mv failed" rmdir "${WORKDIR}"/lib || die "rmdir failed"