From owner-svn-ports-all@freebsd.org Sat May 6 07:39:32 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7DB1ED60A22; Sat, 6 May 2017 07:39:32 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 40E046D1; Sat, 6 May 2017 07:39:32 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v467dVBm021132; Sat, 6 May 2017 07:39:31 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v467dUMO021128; Sat, 6 May 2017 07:39:30 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201705060739.v467dUMO021128@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Sat, 6 May 2017 07:39:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440240 - in head/audio: . py-hsaudiotag 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.23 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: Sat, 06 May 2017 07:39:32 -0000 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 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 +# $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 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