From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1377876-garchives=archives.gentoo.org@lists.gentoo.org> 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 4C1AD15808C for <garchives@archives.gentoo.org>; Sun, 20 Mar 2022 18:49:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54C0DE0893; Sun, 20 Mar 2022 18:49:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3CCD3E0893 for <gentoo-commits@lists.gentoo.org>; Sun, 20 Mar 2022 18:49:34 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 89520343104 for <gentoo-commits@lists.gentoo.org>; Sun, 20 Mar 2022 18:49:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C00BA334 for <gentoo-commits@lists.gentoo.org>; Sun, 20 Mar 2022 18:49:30 +0000 (UTC) From: "David Seifert" <soap@gentoo.org> 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" <soap@gentoo.org> Message-ID: <1647802139.b117f0790ebafb3de6d1071ee79d98cbd3d62cc0.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/vorbisgain/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/vorbisgain/vorbisgain-0.37-r2.ebuild media-sound/vorbisgain/vorbisgain-0.37-r3.ebuild X-VCS-Directories: media-sound/vorbisgain/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: b117f0790ebafb3de6d1071ee79d98cbd3d62cc0 X-VCS-Branch: master Date: Sun, 20 Mar 2022 18:49:30 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2b54996e-0d22-4e80-8c31-93ab43d4986a X-Archives-Hash: 2e41b233a07a66d0926bc0d8e3e61930 commit: b117f0790ebafb3de6d1071ee79d98cbd3d62cc0 Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Sun Mar 20 18:48:59 2022 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Sun Mar 20 18:48:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b117f079 media-sound/vorbisgain: update EAPI 6 -> 8 Signed-off-by: David Seifert <soap <AT> gentoo.org> .../{vorbisgain-0.37-r2.ebuild => vorbisgain-0.37-r3.ebuild} | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/media-sound/vorbisgain/vorbisgain-0.37-r2.ebuild b/media-sound/vorbisgain/vorbisgain-0.37-r3.ebuild similarity index 84% rename from media-sound/vorbisgain/vorbisgain-0.37-r2.ebuild rename to media-sound/vorbisgain/vorbisgain-0.37-r3.ebuild index 89c9d228496b..0757e73f9d65 100644 --- a/media-sound/vorbisgain/vorbisgain-0.37-r2.ebuild +++ b/media-sound/vorbisgain/vorbisgain-0.37-r3.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 DESCRIPTION="Calculator of perceived sound level for Ogg Vorbis files" HOMEPAGE="https://sjeng.org/vorbisgain.html" @@ -10,7 +10,6 @@ SRC_URI="https://sjeng.org/ftp/vorbis/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="amd64 ppc ppc64 ~riscv sparc x86" -IUSE="" RDEPEND=" media-libs/libogg @@ -21,8 +20,12 @@ PATCHES=( # bug 200931 "${FILESDIR}"/${P}-fix-errno-and-warnings.patch ) -DOCS=( NEWS README vorbisgain.txt ) src_configure() { econf --enable-recursive } + +src_install() { + default + dodoc vorbisgain.txt +}