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 9B61A15801B for ; Tue, 15 Aug 2023 22:42:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7B6B2BC04B; Tue, 15 Aug 2023 22:42:30 +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 BD51E2BC04B for ; Tue, 15 Aug 2023 22:42:30 +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 D837A340E2D for ; Tue, 15 Aug 2023 22:42:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5FE25FB9 for ; Tue, 15 Aug 2023 22:42:27 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1692139337.102ea2f58caccc66d4f1fb544666b2213b7c341c.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/pasco/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-forensics/pasco/pasco-20040505_p1-r1.ebuild X-VCS-Directories: app-forensics/pasco/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 102ea2f58caccc66d4f1fb544666b2213b7c341c X-VCS-Branch: master Date: Tue, 15 Aug 2023 22:42:27 +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: 20295402-dc24-4fdc-9d1f-500c95b0e2cd X-Archives-Hash: 1213c9b95b27ed999199708092d2851b commit: 102ea2f58caccc66d4f1fb544666b2213b7c341c Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Aug 15 15:43:40 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Tue Aug 15 22:42:17 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=102ea2f5 app-forensics/pasco: EAPI6 cleanup Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> app-forensics/pasco/pasco-20040505_p1-r1.ebuild | 32 ------------------------- 1 file changed, 32 deletions(-) diff --git a/app-forensics/pasco/pasco-20040505_p1-r1.ebuild b/app-forensics/pasco/pasco-20040505_p1-r1.ebuild deleted file mode 100644 index 848aa78cff30..000000000000 --- a/app-forensics/pasco/pasco-20040505_p1-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -MY_P=${PN}_${PV/_p/_} - -DESCRIPTION="IE Activity Parser" -HOMEPAGE="https://sourceforge.net/projects/odessa/" -SRC_URI="mirror://sourceforge/odessa/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~ppc x86" -IUSE="" - -S=${WORKDIR}/${MY_P}/src -PATCHES=( - "${FILESDIR}"/${P}-fix-build-system.patch - "${FILESDIR}"/${P}-Wimplicit-function-declaration.patch -) - -src_configure() { - tc-export CC -} - -src_install() { - dobin ${PN} - dodoc ../{CHANGES,Readme.txt} -}