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 57E1D138334 for ; Fri, 22 Feb 2019 00:42:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53385E086D; Fri, 22 Feb 2019 00:42:14 +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 2CB8FE086D for ; Fri, 22 Feb 2019 00:42:14 +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 E7A69335D8D for ; Fri, 22 Feb 2019 00:42:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42355540 for ; Fri, 22 Feb 2019 00:42:11 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1550796116.89a1fb6c2e555645ada74e508e59d8ab61034eed.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mp3_check/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mp3_check/mp3_check-1.98.ebuild X-VCS-Directories: media-sound/mp3_check/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 89a1fb6c2e555645ada74e508e59d8ab61034eed X-VCS-Branch: master Date: Fri, 22 Feb 2019 00:42:11 +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: 04f7c34e-41e6-4a1c-bd4d-247f7e639357 X-Archives-Hash: 5c7d517508e74ab17faf4a8674019cd7 commit: 89a1fb6c2e555645ada74e508e59d8ab61034eed Author: Michael Mair-Keimberger gmail com> AuthorDate: Thu Feb 21 20:37:17 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Feb 22 00:41:56 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89a1fb6c media-sound/mp3_check: remove old (EAPI0) Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/11127 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/mp3_check/mp3_check-1.98.ebuild | 30 ----------------------------- 1 file changed, 30 deletions(-) diff --git a/media-sound/mp3_check/mp3_check-1.98.ebuild b/media-sound/mp3_check/mp3_check-1.98.ebuild deleted file mode 100644 index 48baafa74e1..00000000000 --- a/media-sound/mp3_check/mp3_check-1.98.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils toolchain-funcs - -DESCRIPTION="MP3 consistency checker" -HOMEPAGE="https://sourceforge.net/projects/mp3check/" -SRC_URI="mirror://sourceforge/mp3check/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86" -IUSE="" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-makefile.patch -} - -src_compile() { - emake CC="$(tc-getCC)" || die -} - -src_install () { - dobin mp3_check || die "dobin failed" - dodoc WISHLIST TODO THANKYOU README *NOTES FOR_TESTING GOALS MILESTONE* -}