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 3C0A8139696 for ; Sun, 19 Feb 2017 10:33:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 934EBE0CC1; Sun, 19 Feb 2017 10:33:31 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6F1EEE0CC1 for ; Sun, 19 Feb 2017 10:33:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7F23134102B for ; Sun, 19 Feb 2017 10:33:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 288154D26 for ; Sun, 19 Feb 2017 10:33:29 +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: <1487499838.d319b32af201531c8c1b0e09c2496f9c3a16c74b.soap@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-r1.ebuild media-sound/apetag/apetag-1.12-r2.ebuild X-VCS-Directories: media-sound/apetag/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: d319b32af201531c8c1b0e09c2496f9c3a16c74b X-VCS-Branch: master Date: Sun, 19 Feb 2017 10:33:29 +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-Archives-Salt: 5743be38-d7fe-4c48-b8db-370a7bca14e5 X-Archives-Hash: d3dbaee4046d1654655a80092167a5e2 commit: d319b32af201531c8c1b0e09c2496f9c3a16c74b Author: David Seifert gentoo org> AuthorDate: Sun Feb 19 10:23:58 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Feb 19 10:23:58 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d319b32a media-sound/apetag: Add missing Python variables Package-Manager: Portage-2.3.3, Repoman-2.3.1 .../apetag/{apetag-1.12-r1.ebuild => apetag-1.12-r2.ebuild} | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/media-sound/apetag/apetag-1.12-r1.ebuild b/media-sound/apetag/apetag-1.12-r2.ebuild similarity index 82% rename from media-sound/apetag/apetag-1.12-r1.ebuild rename to media-sound/apetag/apetag-1.12-r2.ebuild index 6a35cba1cb..c5e0f16288 100644 --- a/media-sound/apetag/apetag-1.12-r1.ebuild +++ b/media-sound/apetag/apetag-1.12-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -16,11 +16,15 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="amd64 ~ppc64 x86" IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" -S=${WORKDIR}/Apetag +RDEPEND="${PYTHON_DEPS}" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${PN^} src_prepare() { - eapply_user + default sed -i \ -e 's:CXXDEBUG:LDFLAGS:' \ Makefile || die @@ -44,5 +48,5 @@ src_install() { dosym ../lib/apetag/rmid3tag.py /usr/bin/rmid3tag.py dosym ../lib/apetag/tagdir.py /usr/bin/tagdir.py - dodoc 00readme + newdoc 00readme README }