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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3A9F5138334 for ; Thu, 12 Dec 2019 16:03:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2177DE088B; Thu, 12 Dec 2019 16:03:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 04739E088B for ; Thu, 12 Dec 2019 16:03:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C3EF534D974 for ; Thu, 12 Dec 2019 16:03:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3741A905 for ; Thu, 12 Dec 2019 16:03:16 +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: <1576166580.ae26101d26ecbf4d8fcb789f88828bbaa423789c.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/shnflacverify/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/shnflacverify/shnflacverify-0.3.ebuild X-VCS-Directories: media-sound/shnflacverify/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: ae26101d26ecbf4d8fcb789f88828bbaa423789c X-VCS-Branch: master Date: Thu, 12 Dec 2019 16:03:16 +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: b2197190-ee3b-43db-8981-c71d7dc97183 X-Archives-Hash: 3d439111b346bbaa4c1e04cf958419bd commit: ae26101d26ecbf4d8fcb789f88828bbaa423789c Author: David Seifert gentoo org> AuthorDate: Thu Dec 12 16:03:00 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Dec 12 16:03:00 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae26101d media-sound/shnflacverify: Port to EAPI 7 Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> media-sound/shnflacverify/shnflacverify-0.3.ebuild | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/media-sound/shnflacverify/shnflacverify-0.3.ebuild b/media-sound/shnflacverify/shnflacverify-0.3.ebuild index 80e08a78f3b..7f5b5eb1bf0 100644 --- a/media-sound/shnflacverify/shnflacverify-0.3.ebuild +++ b/media-sound/shnflacverify/shnflacverify-0.3.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 inherit eutils @@ -12,12 +12,10 @@ SRC_URI="http://downloads.sourceforge.net/project/${PN}/${PN}/${P}/${P}.zip" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" -DEPEND="" -RDEPEND="${DEPEND} - dev-lang/perl +RDEPEND=" app-arch/unzip + dev-lang/perl media-libs/flac media-sound/shntool sys-apps/coreutils" @@ -25,11 +23,14 @@ RDEPEND="${DEPEND} S="${WORKDIR}" src_prepare() { - local X + default + edos2unix *.txt + + local X for X in flac md5sum shntool metaflac; do einfo "setting \$${X}_cmd to $(type -p ${X})" - sed -i -e "s|^\(\$${X}_cmd\s*=\s*'\)[^']*\('.*\)|\1$(type -p ${X})\2|g" shnflac* + sed -i -e "s|^\(\$${X}_cmd\s*=\s*'\)[^']*\('.*\)|\1$(type -p ${X})\2|g" shnflac* || die done }