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 D24FC138334 for ; Tue, 28 May 2019 17:23:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF0D0E087D; Tue, 28 May 2019 17:23:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8D54AE087E for ; Tue, 28 May 2019 17:23:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 234E83451E0 for ; Tue, 28 May 2019 17:23:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B3B83600 for ; Tue, 28 May 2019 17:22: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: <1559064159.2d73332e5b26bf6a0a8ec6d29eaf25f34f6dfc38.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/rip/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/rip/rip-1.07.ebuild X-VCS-Directories: media-sound/rip/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 2d73332e5b26bf6a0a8ec6d29eaf25f34f6dfc38 X-VCS-Branch: master Date: Tue, 28 May 2019 17:22: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: e81f2b82-b983-4f7d-b521-f3f5f231e269 X-Archives-Hash: f3d4d08f6e4d422d16bae4cf41f59bed commit: 2d73332e5b26bf6a0a8ec6d29eaf25f34f6dfc38 Author: David Seifert gentoo org> AuthorDate: Tue May 28 17:22:39 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Tue May 28 17:22:39 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d73332e media-sound/rip: Port to EAPI 7 Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: David Seifert gentoo.org> media-sound/rip/rip-1.07.ebuild | 25 +++++-------------------- 1 file changed, 5 insertions(+), 20 deletions(-) diff --git a/media-sound/rip/rip-1.07.ebuild b/media-sound/rip/rip-1.07.ebuild index 960ece4d292..e1f22280db1 100644 --- a/media-sound/rip/rip-1.07.ebuild +++ b/media-sound/rip/rip-1.07.ebuild @@ -1,20 +1,16 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 - -IUSE="" +EAPI=7 DESCRIPTION="A command-line based audio CD ripper and mp3 encoder" SRC_URI="http://rip.sourceforge.net/download/${P}.tar.gz" HOMEPAGE="http://rip.sourceforge.net" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="amd64 ppc ppc64 sparc x86" -DEPEND="" - RDEPEND="media-sound/cdparanoia virtual/eject dev-lang/perl @@ -22,18 +18,7 @@ RDEPEND="media-sound/cdparanoia >=dev-perl/MP3-Info-0.91 || ( media-sound/vorbis-tools media-sound/lame media-libs/flac media-sound/bladeenc )" -src_compile() { - #the thing itself is just a perl script - #so we need an empty method here - echo "nothing to be done" - -} - src_install () { - - chmod 755 rip - dobin rip || die - - # Install documentation. - dodoc FAQ README + dobin rip + einstalldocs }