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 00DD915800F for ; Sat, 28 Jan 2023 23:52:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E80AE092E; Sat, 28 Jan 2023 23:52:25 +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 A70D6E092E for ; Sat, 28 Jan 2023 23:52:24 +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 C343B340E58 for ; Sat, 28 Jan 2023 23:52:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61EE4888 for ; Sat, 28 Jan 2023 23:52:21 +0000 (UTC) From: "Rick Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rick Farina" Message-ID: <1674949938.329a015f97e3e9cc0c7e9b6fdd7f5f38c3075ac2.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/kismet/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/kismet/kismet-9999.ebuild X-VCS-Directories: net-wireless/kismet/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Rick Farina X-VCS-Revision: 329a015f97e3e9cc0c7e9b6fdd7f5f38c3075ac2 X-VCS-Branch: master Date: Sat, 28 Jan 2023 23:52:21 +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: 4cf1692e-fbfd-4f19-890d-f40c5d5fb341 X-Archives-Hash: 764518d89359efaa1ea8bbd75187adf0 commit: 329a015f97e3e9cc0c7e9b6fdd7f5f38c3075ac2 Author: Rick Farina gentoo org> AuthorDate: Sat Jan 28 23:40:19 2023 +0000 Commit: Rick Farina gentoo org> CommitDate: Sat Jan 28 23:52:18 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=329a015f net-wireless/kismet: fix qa-sed qa script noticed sed wasn't doing it's job anymore, fixed Signed-off-by: Rick Farina gentoo.org> net-wireless/kismet/kismet-9999.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/net-wireless/kismet/kismet-9999.ebuild b/net-wireless/kismet/kismet-9999.ebuild index ecfcb8c57308..c9e0a62e9649 100644 --- a/net-wireless/kismet/kismet-9999.ebuild +++ b/net-wireless/kismet/kismet-9999.ebuild @@ -104,14 +104,13 @@ src_prepare() { # log_tools/kismetdb_to_wiglecsv.cc trackedcomponent.h \ # trackedelement.h trackedelement_workers.h - # Don't strip and set correct mangrp - sed -i -e 's| -s||g' \ - -e 's|@mangrp@|root|g' Makefile.in || die - eapply_user if [ "${PV}" = "9999" ]; then + sed -i -e 's|@mangrp@|root|g' Makefile.inc.in || die eautoreconf + else + sed -i -e 's|@mangrp@|root|g' Makefile.inc || die fi # VERSION was incorrectly removed in 4e490cf0b49a287e964df9c5e5c4067f6918909e upstream # https://github.com/kismetwireless/kismet/issues/427