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 A821E158094 for ; Sun, 9 Oct 2022 05:31:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3584E08EF; Sun, 9 Oct 2022 05:31:35 +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 B9525E08EF for ; Sun, 9 Oct 2022 05:31:35 +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 773B43410F5 for ; Sun, 9 Oct 2022 05:31:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB5FD55B for ; Sun, 9 Oct 2022 05:31:32 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1665293462.e5ef98dd7c0c6c83d38486af828c60bb797b78f3.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/aview/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/aview/aview-1.3.0_rc1-r3.ebuild X-VCS-Directories: media-gfx/aview/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: e5ef98dd7c0c6c83d38486af828c60bb797b78f3 X-VCS-Branch: master Date: Sun, 9 Oct 2022 05:31:32 +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: 518be356-8c0a-4ca6-9736-9c77bc84b91d X-Archives-Hash: f90816297445c3c41c79c3220de21508 commit: e5ef98dd7c0c6c83d38486af828c60bb797b78f3 Author: Ionen Wolkens gentoo org> AuthorDate: Sun Oct 9 04:36:20 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Sun Oct 9 05:31:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5ef98dd media-gfx/aview: EAPI7->8, tidy Signed-off-by: Ionen Wolkens gentoo.org> media-gfx/aview/aview-1.3.0_rc1-r3.ebuild | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/media-gfx/aview/aview-1.3.0_rc1-r3.ebuild b/media-gfx/aview/aview-1.3.0_rc1-r3.ebuild index 728a22350066..6c5269da95c3 100644 --- a/media-gfx/aview/aview-1.3.0_rc1-r3.ebuild +++ b/media-gfx/aview/aview-1.3.0_rc1-r3.ebuild @@ -1,24 +1,23 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools MY_P=${P/_/} -DESCRIPTION="An ASCII Image Viewer" +DESCRIPTION="ASCII Image Viewer" HOMEPAGE="http://aa-project.sourceforge.net/aview/" SRC_URI="mirror://sourceforge/aa-project/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P/rc*/}" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris" -DEPEND="media-libs/aalib:=" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P/rc*/}" +RDEPEND="media-libs/aalib" +DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}"/${P}-asciiview.patch @@ -27,6 +26,6 @@ PATCHES=( src_prepare() { default - mv configure.{in,ac} || die + eautoreconf }