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 80E4C138359 for ; Wed, 23 Sep 2020 10:35:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE0B6E0822; Wed, 23 Sep 2020 10:35:34 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 B9B5BE0822 for ; Wed, 23 Sep 2020 10:35:34 +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 9E57933BE3B for ; Wed, 23 Sep 2020 10:35:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 457E3353 for ; Wed, 23 Sep 2020 10:35:32 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1600857328.0849167a034be086a421d6e1797052de915a678b.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/apetag/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/apetag/apetag-1.12-r2.ebuild X-VCS-Directories: media-sound/apetag/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 0849167a034be086a421d6e1797052de915a678b X-VCS-Branch: master Date: Wed, 23 Sep 2020 10:35:32 +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: a0cc0252-e54f-4334-92f6-8276e8a13943 X-Archives-Hash: d526a8d04e4e50346ae47b96363fa9c6 commit: 0849167a034be086a421d6e1797052de915a678b Author: Miroslav Šulc gentoo org> AuthorDate: Wed Sep 23 10:35:17 2020 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Wed Sep 23 10:35:28 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0849167a media-sound/apetag: removed obsolete 1.12-r2 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Miroslav Šulc gentoo.org> media-sound/apetag/apetag-1.12-r2.ebuild | 51 -------------------------------- 1 file changed, 51 deletions(-) diff --git a/media-sound/apetag/apetag-1.12-r2.ebuild b/media-sound/apetag/apetag-1.12-r2.ebuild deleted file mode 100644 index 2bf854f5561..00000000000 --- a/media-sound/apetag/apetag-1.12-r2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 ) - -inherit python-single-r1 toolchain-funcs - -DESCRIPTION="Command-line ape 2.0 tagger" -HOMEPAGE="http://muth.org/Robert/Apetag/" -SRC_URI="http://muth.org/Robert/Apetag/${PN}.${PV}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86" -IUSE="" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS}" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${PN^} - -src_prepare() { - default - sed -i \ - -e 's:CXXDEBUG:LDFLAGS:' \ - Makefile || die - python_fix_shebang *.py -} - -src_compile() { - tc-export CXX - emake \ - CXXFLAGS="${CXXFLAGS} -Wall -pedantic" \ - LDFLAGS="${LDFLAGS}" -} - -src_install() { - dobin ${PN} - - python_moduleinto /usr/lib/apetag - python_domodule *.py - - fperms +x /usr/lib/apetag/{rmid3tag,tagdir}.py - dosym ../lib/apetag/rmid3tag.py /usr/bin/rmid3tag.py - dosym ../lib/apetag/tagdir.py /usr/bin/tagdir.py - - newdoc 00readme README -}