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 4B46C158094 for ; Tue, 21 Jun 2022 16:30:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91DAAE086A; Tue, 21 Jun 2022 16:30:00 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7795CE0864 for ; Tue, 21 Jun 2022 16:30:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 675993414A9 for ; Tue, 21 Jun 2022 16:29:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D3CE97F for ; Tue, 21 Jun 2022 16:29:57 +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: <1655828962.829a940d1abd6f8d4e77e44ce5d245e2c4c9667f.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/arj/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/arj/arj-3.10.22-r7.ebuild app-arch/arj/arj-3.10.22-r8.ebuild X-VCS-Directories: app-arch/arj/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 829a940d1abd6f8d4e77e44ce5d245e2c4c9667f X-VCS-Branch: master Date: Tue, 21 Jun 2022 16:29:57 +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: 10c2e41b-ca58-4e0b-b302-1cf4bb41a062 X-Archives-Hash: e1d86e696d57c890d57c22bf9e24f94b commit: 829a940d1abd6f8d4e77e44ce5d245e2c4c9667f Author: David Seifert gentoo org> AuthorDate: Tue Jun 21 16:29:22 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Jun 21 16:29:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=829a940d app-arch/arj: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> .../{arj-3.10.22-r7.ebuild => arj-3.10.22-r8.ebuild} | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/app-arch/arj/arj-3.10.22-r7.ebuild b/app-arch/arj/arj-3.10.22-r8.ebuild similarity index 72% rename from app-arch/arj/arj-3.10.22-r7.ebuild rename to app-arch/arj/arj-3.10.22-r8.ebuild index 25397e35a751..571c5777b086 100644 --- a/app-arch/arj/arj-3.10.22-r7.ebuild +++ b/app-arch/arj/arj-3.10.22-r8.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit autotools toolchain-funcs @@ -10,13 +10,13 @@ MY_P="${PN}_${PV}" DESCRIPTION="Utility for opening arj archives" HOMEPAGE="http://arj.sourceforge.net/" -SRC_URI="mirror://debian/pool/main/a/arj/${MY_P}.orig.tar.gz +SRC_URI=" + mirror://debian/pool/main/a/arj/${MY_P}.orig.tar.gz mirror://debian/pool/main/a/arj/${MY_P}-${PATCH_LEVEL}.debian.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" -IUSE="" PATCHES=( "${FILESDIR}/${P}-implicit-declarations.patch" @@ -26,22 +26,13 @@ PATCHES=( "${FILESDIR}/${P}-interix.patch" ) -DOCS=( - doc/compile.txt - doc/debug.txt - doc/glossary.txt - doc/rev_hist.txt - doc/xlation.txt -) +DOCS=( doc/compile.txt doc/debug.txt doc/glossary.txt doc/rev_hist.txt doc/xlation.txt ) src_prepare() { default cd gnu || die 'failed to change to the "gnu" directory' echo -n "" > stripgcc.lnk || die "failed to disable stripgcc.lnk" - # This gets rid of the QA warning, but should be fixed upstream... - mv configure.{in,ac} || die 'failed to move configure.in to configure.ac' - eautoreconf }