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 44A2C15800F for ; Wed, 4 Jan 2023 04:32:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86C1CE0869; Wed, 4 Jan 2023 04:32:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 4AFCDE0869 for ; Wed, 4 Jan 2023 04:32:47 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6B770340E7F for ; Wed, 4 Jan 2023 04:32:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C13CD84D for ; Wed, 4 Jan 2023 04:32:42 +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: <1672806722.ff1fcba28ce2f58511dafeaf24ba726feef774f9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-Twofish/, dev-perl/Crypt-Twofish/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Crypt-Twofish/Crypt-Twofish-2.180.0-r1.ebuild dev-perl/Crypt-Twofish/Crypt-Twofish-2.180.0.ebuild dev-perl/Crypt-Twofish/files/Crypt-Twofish-2.180.0-configure-clang16.patch X-VCS-Directories: dev-perl/Crypt-Twofish/ dev-perl/Crypt-Twofish/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ff1fcba28ce2f58511dafeaf24ba726feef774f9 X-VCS-Branch: master Date: Wed, 4 Jan 2023 04:32:42 +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: b00d84eb-3bc0-478f-9244-8b3eb0c6232a X-Archives-Hash: b5fc3bcd202ddbd7d72dbbd97bcb053c commit: ff1fcba28ce2f58511dafeaf24ba726feef774f9 Author: Sam James gentoo org> AuthorDate: Wed Jan 4 04:30:53 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jan 4 04:32:02 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff1fcba2 dev-perl/Crypt-Twofish: fix configure w/ clang 16 Signed-off-by: Sam James gentoo.org> ...ofish-2.180.0.ebuild => Crypt-Twofish-2.180.0-r1.ebuild} | 6 +++++- .../files/Crypt-Twofish-2.180.0-configure-clang16.patch | 13 +++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/dev-perl/Crypt-Twofish/Crypt-Twofish-2.180.0.ebuild b/dev-perl/Crypt-Twofish/Crypt-Twofish-2.180.0-r1.ebuild similarity index 77% rename from dev-perl/Crypt-Twofish/Crypt-Twofish-2.180.0.ebuild rename to dev-perl/Crypt-Twofish/Crypt-Twofish-2.180.0-r1.ebuild index 08416159288b..5468e3cab0b2 100644 --- a/dev-perl/Crypt-Twofish/Crypt-Twofish-2.180.0.ebuild +++ b/dev-perl/Crypt-Twofish/Crypt-Twofish-2.180.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,6 +12,10 @@ DESCRIPTION="The Twofish Encryption Algorithm" SLOT="0" KEYWORDS="amd64 ~ia64 ~ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" +PATCHES=( + "${FILESDIR}"/${PN}-2.180.0-configure-clang16.patch +) + src_compile() { mymake=( "OPTIMIZE=${CFLAGS}" diff --git a/dev-perl/Crypt-Twofish/files/Crypt-Twofish-2.180.0-configure-clang16.patch b/dev-perl/Crypt-Twofish/files/Crypt-Twofish-2.180.0-configure-clang16.patch new file mode 100644 index 000000000000..4dbb15364190 --- /dev/null +++ b/dev-perl/Crypt-Twofish/files/Crypt-Twofish-2.180.0-configure-clang16.patch @@ -0,0 +1,13 @@ +https://gitlab.com/fweimer-rh/fedora-modernc/-/commit/1dfd7bb468b91abb93f6b3c54c8b1dcdaf8ccdff +https://rt.cpan.org/Public/Bug/Display.html?id=145461 +--- a/Makefile.PL ++++ b/Makefile.PL +@@ -6,6 +6,7 @@ use ExtUtils::MakeMaker; + + ($stdint = <<"TEST") =~ s/^\| {0,3}//gm; + | #include ++| #include + | int main(void) { + | printf("%d%d", sizeof(uint16_t), sizeof(uint32_t)); + | return 0; +