From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id AB2711581B9 for ; Fri, 19 Sep 2025 15:37:00 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 911BC3420DA for ; Fri, 19 Sep 2025 15:37:00 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 78962110574; Fri, 19 Sep 2025 15:36:57 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 6BFF4110574 for ; Fri, 19 Sep 2025 15:36:57 +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 EBA963420AD for ; Fri, 19 Sep 2025 15:36:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F38F38D3 for ; Fri, 19 Sep 2025 15:36:55 +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: <1758296141.c80b6e5a949a214a1474afbb2ae4ecd49527502b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/irssi/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/irssi/irssi-1.4.5-r1.ebuild net-irc/irssi/irssi-9999.ebuild X-VCS-Directories: net-irc/irssi/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c80b6e5a949a214a1474afbb2ae4ecd49527502b X-VCS-Branch: master Date: Fri, 19 Sep 2025 15:36:55 +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: b70b0f4f-b750-4ed3-8894-06553035c66b X-Archives-Hash: 02bb80445f278fa1e29b179ededfc4ef commit: c80b6e5a949a214a1474afbb2ae4ecd49527502b Author: Sam James gentoo org> AuthorDate: Fri Sep 19 15:23:18 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri Sep 19 15:35:41 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c80b6e5a net-irc/irssi: use PERL_FEATURES The ebuild uses GENTOO_DEPEND_ON_PERL=no because Perl is optional in irssi, so we have to do it "manually", but it's not so bad as we can just use the variables the eclass provides. Bug: https://bugs.gentoo.org/144256 Bug: https://bugs.gentoo.org/616176 Bug: https://bugs.gentoo.org/674596 Bug: https://bugs.gentoo.org/875101 Signed-off-by: Sam James gentoo.org> net-irc/irssi/{irssi-9999.ebuild => irssi-1.4.5-r1.ebuild} | 9 ++++++--- net-irc/irssi/irssi-9999.ebuild | 9 ++++++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/net-irc/irssi/irssi-9999.ebuild b/net-irc/irssi/irssi-1.4.5-r1.ebuild similarity index 90% copy from net-irc/irssi/irssi-9999.ebuild copy to net-irc/irssi/irssi-1.4.5-r1.ebuild index 93f50f3353b0..68e8e27dc234 100644 --- a/net-irc/irssi/irssi-9999.ebuild +++ b/net-irc/irssi/irssi-1.4.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -22,7 +22,7 @@ fi LICENSE="GPL-2" SLOT="0" -IUSE="otr +perl selinux +proxy" +IUSE="otr +perl selinux +proxy ${GENTOO_PERL_USESTRING}" RDEPEND=" >=dev-libs/glib-2.6.0 @@ -32,7 +32,10 @@ RDEPEND=" >=dev-libs/libgcrypt-1.2.0:= >=net-libs/libotr-4.1.0 ) - perl? ( dev-lang/perl:= ) + perl? ( + ${GENTOO_PERL_DEPSTRING} + dev-lang/perl:= + ) " DEPEND="${RDEPEND}" BDEPEND="dev-lang/perl diff --git a/net-irc/irssi/irssi-9999.ebuild b/net-irc/irssi/irssi-9999.ebuild index 93f50f3353b0..68e8e27dc234 100644 --- a/net-irc/irssi/irssi-9999.ebuild +++ b/net-irc/irssi/irssi-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -22,7 +22,7 @@ fi LICENSE="GPL-2" SLOT="0" -IUSE="otr +perl selinux +proxy" +IUSE="otr +perl selinux +proxy ${GENTOO_PERL_USESTRING}" RDEPEND=" >=dev-libs/glib-2.6.0 @@ -32,7 +32,10 @@ RDEPEND=" >=dev-libs/libgcrypt-1.2.0:= >=net-libs/libotr-4.1.0 ) - perl? ( dev-lang/perl:= ) + perl? ( + ${GENTOO_PERL_DEPSTRING} + dev-lang/perl:= + ) " DEPEND="${RDEPEND}" BDEPEND="dev-lang/perl