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 CB75E158041 for ; Thu, 14 Mar 2024 02:25:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42F63E29C7; Thu, 14 Mar 2024 02:25:47 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 17FF5E29C7 for ; Thu, 14 Mar 2024 02:25: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 54A4233BF3C for ; Thu, 14 Mar 2024 02:25:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82813151D for ; Thu, 14 Mar 2024 02:25:43 +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: <1710381592.fe1c1e69e68d674583cf540f08835f45978117bb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/portspoof/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/portspoof/portspoof-1.3-r1.ebuild X-VCS-Directories: net-misc/portspoof/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fe1c1e69e68d674583cf540f08835f45978117bb X-VCS-Branch: master Date: Thu, 14 Mar 2024 02:25:43 +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: 2983094b-8b2c-4a2e-8ed7-6c9d5d783bce X-Archives-Hash: 803312dd6c54d76c3e6d9a9ba78d3a5c commit: fe1c1e69e68d674583cf540f08835f45978117bb Author: Eli Schwartz gmail com> AuthorDate: Thu Mar 14 01:54:22 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 14 01:59:52 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe1c1e69 net-misc/portspoof: run the full default src_prepare Not just eapply_user. This means the PATCHES array can just be automatically handled. Also, it is exceedingly important that user patches actually be applied on time, not *after* the live ebuild runs eautoreconf.... Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> net-misc/portspoof/portspoof-1.3-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/portspoof/portspoof-1.3-r1.ebuild b/net-misc/portspoof/portspoof-1.3-r1.ebuild index e0b95dc64d62..ad443ee320fb 100644 --- a/net-misc/portspoof/portspoof-1.3-r1.ebuild +++ b/net-misc/portspoof/portspoof-1.3-r1.ebuild @@ -18,6 +18,7 @@ else fi src_prepare() { + default if [[ ${PV} == "9999" ]] ; then mv configure.in configure.ac || die eautoreconf @@ -26,7 +27,6 @@ src_prepare() { 's#/usr/local/bin/portspoof -D -c /usr/local/etc/portspoof.conf -s /usr/local/etc/portspoof_signatures#/usr/bin/portspoof -D -c /etc/portspoof.conf -s /etc/portspoof_signatures#'\ system_files/init.d/portspoof.sh sed -i '/#include /d' src/connection.h || die - eapply_user } src_install() {