From owner-svn-ports-all@FreeBSD.ORG Sun Mar 2 09:10:37 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4B5559DD; Sun, 2 Mar 2014 09:10:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3713C1BCD; Sun, 2 Mar 2014 09:10:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s229Ab0U059982; Sun, 2 Mar 2014 09:10:37 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s229AaoE059976; Sun, 2 Mar 2014 09:10:36 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201403020910.s229AaoE059976@svn.freebsd.org> From: Frederic Culot Date: Sun, 2 Mar 2014 09:10:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346744 - in head/audio: . p5-MP3-Tag-Utils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Mar 2014 09:10:37 -0000 Author: culot Date: Sun Mar 2 09:10:35 2014 New Revision: 346744 URL: http://svnweb.freebsd.org/changeset/ports/346744 QAT: https://qat.redports.org/buildarchive/r346744/ Log: Assorted utilities for manipulating MP3 files via MP3::Tag. mp3rename - Rename MP3 files based off of it's tags. mp3show - Show tags for one or more MP3 file. mp3tag - Manipulate the tags for one or more MP3 files. WWW: http://search.cpan.org/dist/MP3-Tag-Utils/ PR: ports/186974 Submitted by: Zane C. Bowers-Hadley Added: head/audio/p5-MP3-Tag-Utils/ head/audio/p5-MP3-Tag-Utils/Makefile (contents, props changed) head/audio/p5-MP3-Tag-Utils/distinfo (contents, props changed) head/audio/p5-MP3-Tag-Utils/pkg-descr (contents, props changed) head/audio/p5-MP3-Tag-Utils/pkg-plist (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Sun Mar 2 08:48:05 2014 (r346743) +++ head/audio/Makefile Sun Mar 2 09:10:35 2014 (r346744) @@ -560,6 +560,7 @@ SUBDIR += p5-MP3-ID3v1Tag SUBDIR += p5-MP3-Info SUBDIR += p5-MP3-Tag + SUBDIR += p5-MP3-Tag-Utils SUBDIR += p5-MPEG-ID3v2Tag SUBDIR += p5-Music-Audioscrobbler-MPD SUBDIR += p5-Music-Audioscrobbler-Submit Added: head/audio/p5-MP3-Tag-Utils/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/p5-MP3-Tag-Utils/Makefile Sun Mar 2 09:10:35 2014 (r346744) @@ -0,0 +1,26 @@ +# Created by: Zane C. Bowers-Hadley +# $FreeBSD$ + +PORTNAME= MP3-Tag-Utils +PORTVERSION= 0.0.3 +CATEGORIES= audio perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:VVELOX +PKGNAMEPREFIX= p5- + +MAINTAINER= vvelox@vvelox.net +COMMENT= Assorted utilities for manipulating MP3 files via MP3::Tag + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-MP3-Tag>=1.13:${PORTSDIR}/audio/p5-MP3-Tag \ + p5-Text-NeatTemplate>=0.10.01:${PORTSDIR}/textproc/p5-Text-NeatTemplate +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USES= perl5 shebangfix +USE_PERL5= configure + +SHEBANG_FILES= bin/mp3rename bin/mp3show bin/mp3tag + +.include Added: head/audio/p5-MP3-Tag-Utils/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/p5-MP3-Tag-Utils/distinfo Sun Mar 2 09:10:35 2014 (r346744) @@ -0,0 +1,2 @@ +SHA256 (MP3-Tag-Utils-0.0.3.tar.gz) = 413375ed6cc8e1f4f0379c2576262d89446380b8bc11cdeab7122d9c209b3ad1 +SIZE (MP3-Tag-Utils-0.0.3.tar.gz) = 7328 Added: head/audio/p5-MP3-Tag-Utils/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/p5-MP3-Tag-Utils/pkg-descr Sun Mar 2 09:10:35 2014 (r346744) @@ -0,0 +1,7 @@ +Assorted utilities for manipulating MP3 files via MP3::Tag. + +mp3rename - Rename MP3 files based off of it's tags. +mp3show - Show tags for one or more MP3 file. +mp3tag - Manipulate the tags for one or more MP3 files. + +WWW: http://search.cpan.org/dist/MP3-Tag-Utils/ Added: head/audio/p5-MP3-Tag-Utils/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/p5-MP3-Tag-Utils/pkg-plist Sun Mar 2 09:10:35 2014 (r346744) @@ -0,0 +1,11 @@ +bin/mp3rename +bin/mp3show +bin/mp3tag +%%SITE_PERL%%/MP3/Tag/Utils.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/MP3/Tag/Utils/.packlist +%%PERL5_MAN3%%/MP3::Tag::Utils.3.gz +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MP3/Tag/Utils +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MP3/Tag +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MP3 +@dirrmtry %%SITE_PERL%%/MP3/Tag +@dirrmtry %%SITE_PERL%%/MP3