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 D6F18158083 for ; Thu, 5 Sep 2024 19:33:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB3E82BC02B; Thu, 5 Sep 2024 19:33:31 +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 96FBB2BC02B for ; Thu, 5 Sep 2024 19:33:31 +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 DD18E342F94 for ; Thu, 5 Sep 2024 19:33:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D2431F3A for ; Thu, 5 Sep 2024 19:33:29 +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: <1725564769.a96af1e2ef016984da15bcf721475f0951f3c11d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Wx-Scintilla/, dev-perl/Wx-Scintilla/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Wx-Scintilla/Wx-Scintilla-0.390.0-r5.ebuild dev-perl/Wx-Scintilla/files/Wx-Scintilla-0.39-respect-user-flags.patch X-VCS-Directories: dev-perl/Wx-Scintilla/files/ dev-perl/Wx-Scintilla/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a96af1e2ef016984da15bcf721475f0951f3c11d X-VCS-Branch: master Date: Thu, 5 Sep 2024 19:33:29 +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: 74f554e5-1b17-4280-9e01-12cda43cdc1e X-Archives-Hash: 5034043e208d0910280a3f2dbec17955 commit: a96af1e2ef016984da15bcf721475f0951f3c11d Author: Alfred Wingate protonmail com> AuthorDate: Thu Sep 5 17:45:00 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Sep 5 19:32:49 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a96af1e2 dev-perl/Wx-Scintilla: respect user flags Signed-off-by: Alfred Wingate protonmail.com> Signed-off-by: Sam James gentoo.org> dev-perl/Wx-Scintilla/Wx-Scintilla-0.390.0-r5.ebuild | 3 ++- .../files/Wx-Scintilla-0.39-respect-user-flags.patch | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/dev-perl/Wx-Scintilla/Wx-Scintilla-0.390.0-r5.ebuild b/dev-perl/Wx-Scintilla/Wx-Scintilla-0.390.0-r5.ebuild index 61c60e271dfb..65cb495b5f83 100644 --- a/dev-perl/Wx-Scintilla/Wx-Scintilla-0.390.0-r5.ebuild +++ b/dev-perl/Wx-Scintilla/Wx-Scintilla-0.390.0-r5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -29,6 +29,7 @@ BDEPEND=${DEPEND} PATCHES=( "${FILESDIR}"/${PN}-0.34-flags.patch "${FILESDIR}"/${PN}-0.39-gcc6.patch + "${FILESDIR}"/${PN}-0.39-respect-user-flags.patch ) src_configure() { diff --git a/dev-perl/Wx-Scintilla/files/Wx-Scintilla-0.39-respect-user-flags.patch b/dev-perl/Wx-Scintilla/files/Wx-Scintilla-0.39-respect-user-flags.patch new file mode 100644 index 000000000000..e92e644a7956 --- /dev/null +++ b/dev-perl/Wx-Scintilla/files/Wx-Scintilla-0.39-respect-user-flags.patch @@ -0,0 +1,18 @@ +--- a/inc/Module/Build/Scintilla.pm ++++ b/inc/Module/Build/Scintilla.pm +@@ -89,7 +89,7 @@ + + sub stc_ldflags { + my $self = shift; +- return Alien::wxWidgets->link_flags; ++ return Alien::wxWidgets->link_flags . $Config{ldflags}; + } + + sub stc_defines { +@@ -119,6 +119,7 @@ + my $flags = qx($command); + chomp($flags); + $flags .= ' ' . Alien::wxWidgets->c_flags; ++ $flags .= ' ' . $Config{ccflags}; + return $flags; + }