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 7C8D6158021 for ; Thu, 13 Oct 2022 05:14:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A72A6E089A; Thu, 13 Oct 2022 05:14:58 +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 8E5EBE089A for ; Thu, 13 Oct 2022 05:14:58 +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 A38F8341298 for ; Thu, 13 Oct 2022 05:14:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C9D6C615 for ; Thu, 13 Oct 2022 05:14:55 +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: <1665638012.92ee47512ae81133c9cee9be6b585179b51d7ed5.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mp3asm/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mp3asm/mp3asm-0.1.3-r2.ebuild X-VCS-Directories: media-sound/mp3asm/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 92ee47512ae81133c9cee9be6b585179b51d7ed5 X-VCS-Branch: master Date: Thu, 13 Oct 2022 05:14:55 +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: 59f7b3b5-83ac-45b9-8fd6-dd27f882cf09 X-Archives-Hash: 663eff7921a6293fbe0c70f072972d0e commit: 92ee47512ae81133c9cee9be6b585179b51d7ed5 Author: Ionen Wolkens gentoo org> AuthorDate: Thu Oct 13 05:09:06 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Thu Oct 13 05:13:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92ee4751 media-sound/mp3asm: EAPI7->8, fix license Signed-off-by: Ionen Wolkens gentoo.org> media-sound/mp3asm/mp3asm-0.1.3-r2.ebuild | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/media-sound/mp3asm/mp3asm-0.1.3-r2.ebuild b/media-sound/mp3asm/mp3asm-0.1.3-r2.ebuild index a03af0ddc1db..ec2af61680e5 100644 --- a/media-sound/mp3asm/mp3asm-0.1.3-r2.ebuild +++ b/media-sound/mp3asm/mp3asm-0.1.3-r2.ebuild @@ -1,32 +1,33 @@ -# Copyright 1999-2020 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_PV="${PV}-1" # Patchlevel -DESCRIPTION="A command line tool to clean and edit mp3 files" +DESCRIPTION="Command line tool to clean and edit mp3 files" HOMEPAGE="https://sourceforge.net/projects/mp3asm/" SRC_URI="mirror://sourceforge/mp3asm/${PN}-${MY_PV}.tar.bz2" +S="${WORKDIR}/${PN}-0.1" # the author uses weird numbering... -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" KEYWORDS="amd64 ppc sparc x86" -# the author uses weird numbering... -S="${WORKDIR}/${PN}-0.1" - -PATCHES=( "${FILESDIR}"/${P}-fix-autotools.patch ) +PATCHES=( + "${FILESDIR}"/${P}-fix-autotools.patch +) src_prepare() { default - mv configure.{in,ac} || die + eautoreconf } src_install() { default + dodoc Changelog }