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 D9ED715814C for ; Sun, 8 Oct 2023 18:32:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 248FF2BC035; Sun, 8 Oct 2023 18:32:39 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0DB3D2BC110 for ; Sun, 8 Oct 2023 18:32:39 +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 37C37335C8E for ; Sun, 8 Oct 2023 18:32:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8EB0BED7 for ; Sun, 8 Oct 2023 18:32:36 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1696789944.38c1341fb4449782827efd6414ae094c85946e42.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/dfxml/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-forensics/dfxml/dfxml-20170921-r1.ebuild app-forensics/dfxml/dfxml-20170921-r2.ebuild X-VCS-Directories: app-forensics/dfxml/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 38c1341fb4449782827efd6414ae094c85946e42 X-VCS-Branch: master Date: Sun, 8 Oct 2023 18:32:36 +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: 707963f4-dbb3-4ba1-b3a8-0f98c1bfe4a1 X-Archives-Hash: f68d746aa1548592c46444d024cb5ba7 commit: 38c1341fb4449782827efd6414ae094c85946e42 Author: David Seifert gentoo org> AuthorDate: Sun Oct 8 18:32:24 2023 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Oct 8 18:32:24 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38c1341f app-forensics/dfxml: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> ...ml-20170921-r1.ebuild => dfxml-20170921-r2.ebuild} | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/app-forensics/dfxml/dfxml-20170921-r1.ebuild b/app-forensics/dfxml/dfxml-20170921-r2.ebuild similarity index 76% rename from app-forensics/dfxml/dfxml-20170921-r1.ebuild rename to app-forensics/dfxml/dfxml-20170921-r2.ebuild index d291bbf43c4d..2cd2be159d72 100644 --- a/app-forensics/dfxml/dfxml-20170921-r1.ebuild +++ b/app-forensics/dfxml/dfxml-20170921-r2.ebuild @@ -1,33 +1,28 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 + inherit autotools DESCRIPTION="Digital Forensics XML" HOMEPAGE="https://github.com/simsong/dfxml" SRC_URI="https://api.github.com/repos/simsong/${PN}/tarball/7d11eaa7da8d31f588ce8aecb4b4f5e7e8169ba6 -> ${P}.tar.gz" +S="${WORKDIR}/${P}/src" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~amd64" -DEPEND=" - dev-libs/expat -" -RDEPEND=" - ${DEPEND} -" - -S=${WORKDIR}/${P}/src +DEPEND="dev-libs/expat:=" +RDEPEND="${DEPEND}" src_unpack() { - unpack ${A} + default mv simsong-dfxml-* ${P} || die } src_prepare() { default - eautoreconf }