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 33E0D138334 for ; Wed, 25 Sep 2019 03:34:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DC54CE08A6; Wed, 25 Sep 2019 03:34:45 +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 86E69E08A8 for ; Wed, 25 Sep 2019 03:34:45 +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 1AE3434B528 for ; Wed, 25 Sep 2019 03:34:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96DE27FD for ; Wed, 25 Sep 2019 03:34:41 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1569382358.07a5f08c15e92e0492daa816eee07fd2e7241b99.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/audiotag/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/audiotag/audiotag-0.19-r1.ebuild X-VCS-Directories: media-sound/audiotag/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 07a5f08c15e92e0492daa816eee07fd2e7241b99 X-VCS-Branch: master Date: Wed, 25 Sep 2019 03:34:41 +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: bf454cdd-7bec-4f2a-8e16-8c2d87fc039b X-Archives-Hash: f31071339207fae762856690ad73b531 commit: 07a5f08c15e92e0492daa816eee07fd2e7241b99 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sun May 12 08:15:34 2019 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Sep 25 03:32:38 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07a5f08c media-sound/audiotag: EAPI=7 bump Closes: https://bugs.gentoo.org/685686 Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/11976 Signed-off-by: Joonas Niilola gentoo.org> media-sound/audiotag/audiotag-0.19-r1.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/media-sound/audiotag/audiotag-0.19-r1.ebuild b/media-sound/audiotag/audiotag-0.19-r1.ebuild new file mode 100644 index 00000000000..ec257e988de --- /dev/null +++ b/media-sound/audiotag/audiotag-0.19-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit eutils + +DESCRIPTION="Command-line tool for mass tagging/renaming of audio files" +HOMEPAGE="https://github.com/Daenyth/audiotag" +SRC_URI="https://github.com/downloads/Daenyth/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND="dev-lang/perl" + +src_install() { + dobin ${PN} + dodoc ChangeLog README +} + +pkg_postinst() { + optfeature "for m4a/mp4 support" media-video/atomicparsley media-video/atomicparsley-wez + optfeature "for flac support" media-libs/flac + optfeature "for mp3 support" media-libs/id3lib + optfeature "for vorbis support" media-sound/vorbis-tools +}