Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 May 2017 07:39:30 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r440240 - in head/audio: . py-hsaudiotag
Message-ID:  <201705060739.v467dUMO021128@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Sat May  6 07:39:30 2017
New Revision: 440240
URL: https://svnweb.freebsd.org/changeset/ports/440240

Log:
  hsaudiotag is a pure Python library that lets you read metadata (bitrate,
  sample rate, duration and tags) from mp3, mp4, wma, ogg, flac and aiff files.
  It can only read tags, not write to them, but unlike more complete libraries
  (like Mutagen), it is BSD licensed, making it suitable for most projects.
  It is also backed by a nifty test suite.
  
  WWW: http://hg.hardcoded.net/hsaudiotag
  
  PR:		214493
  Submitted by:	Yuri Victorovich <yuri@rawbw.com>

Added:
  head/audio/py-hsaudiotag/
  head/audio/py-hsaudiotag/Makefile   (contents, props changed)
  head/audio/py-hsaudiotag/distinfo   (contents, props changed)
  head/audio/py-hsaudiotag/pkg-descr   (contents, props changed)
Modified:
  head/audio/Makefile

Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile	Sat May  6 07:38:46 2017	(r440239)
+++ head/audio/Makefile	Sat May  6 07:39:30 2017	(r440240)
@@ -627,6 +627,7 @@
     SUBDIR += py-eyed3
     SUBDIR += py-fmoo-audiotools
     SUBDIR += py-gmusicapi
+    SUBDIR += py-hsaudiotag
     SUBDIR += py-id3
     SUBDIR += py-karaoke
     SUBDIR += py-mad

Added: head/audio/py-hsaudiotag/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/py-hsaudiotag/Makefile	Sat May  6 07:39:30 2017	(r440240)
@@ -0,0 +1,19 @@
+# Created by: Yuri Victorovich <yuri@rawbw.com>
+# $FreeBSD$
+
+PORTNAME=	hsaudiotag
+PORTVERSION=	1.1.1
+CATEGORIES=	audio python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@rawbw.com
+COMMENT=	Read metdata (tags) of mp3, mp4, wma, ogg, flac and aiff files
+
+LICENSE=	BSD3CLAUSE
+
+USES=		python:2
+USE_PYTHON=	distutils autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/audio/py-hsaudiotag/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/py-hsaudiotag/distinfo	Sat May  6 07:39:30 2017	(r440240)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1479091794
+SHA256 (hsaudiotag-1.1.1.tar.gz) = 48b57c6a00b0ed2bb906850ac42390740ff5b83a222c09a2d3dea28b44a80f96
+SIZE (hsaudiotag-1.1.1.tar.gz) = 16409

Added: head/audio/py-hsaudiotag/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/py-hsaudiotag/pkg-descr	Sat May  6 07:39:30 2017	(r440240)
@@ -0,0 +1,7 @@
+hsaudiotag is a pure Python library that lets you read metadata (bitrate,
+sample rate, duration and tags) from mp3, mp4, wma, ogg, flac and aiff files.
+It can only read tags, not write to them, but unlike more complete libraries
+(like Mutagen), it is BSD licensed, making it suitable for most projects.
+It is also backed by a nifty test suite.
+
+WWW: http://hg.hardcoded.net/hsaudiotag



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705060739.v467dUMO021128>