summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2008-06-04 07:57:28 +0000
committerAlexis Ballier <aballier@gentoo.org>2008-06-04 07:57:28 +0000
commitaf32db6236ee5d7ec2b36b253ca98673d9376f36 (patch)
treea56480e33639061f82df151b5e57cb8b54a11f41 /media-libs
parentVersion bump and cleanup (diff)
downloadgentoo-2-af32db6236ee5d7ec2b36b253ca98673d9376f36.tar.gz
gentoo-2-af32db6236ee5d7ec2b36b253ca98673d9376f36.tar.bz2
gentoo-2-af32db6236ee5d7ec2b36b253ca98673d9376f36.zip
version bump, thanks to Maxwell Grender-Jones <max@themaniac.org> for the notice, bug #224809
(Portage version: 2.1.5.3)
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/mutagen/ChangeLog10
-rw-r--r--media-libs/mutagen/mutagen-1.14.ebuild27
2 files changed, 35 insertions, 2 deletions
diff --git a/media-libs/mutagen/ChangeLog b/media-libs/mutagen/ChangeLog
index 3a11d1ff5a9d..3dc114da83d0 100644
--- a/media-libs/mutagen/ChangeLog
+++ b/media-libs/mutagen/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for media-libs/mutagen
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mutagen/ChangeLog,v 1.55 2007/12/15 08:44:35 drac Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mutagen/ChangeLog,v 1.56 2008/06/04 07:57:28 aballier Exp $
+
+*mutagen-1.14 (04 Jun 2008)
+
+ 04 Jun 2008; Alexis Ballier <aballier@gentoo.org> +mutagen-1.14.ebuild:
+ version bump, thanks to Maxwell Grender-Jones <max@themaniac.org> for the
+ notice, bug #224809
15 Dec 2007; Samuli Suominen <drac@gentoo.org> mutagen-1.12.ebuild,
mutagen-1.13.ebuild:
diff --git a/media-libs/mutagen/mutagen-1.14.ebuild b/media-libs/mutagen/mutagen-1.14.ebuild
new file mode 100644
index 000000000000..71c7d22dad17
--- /dev/null
+++ b/media-libs/mutagen/mutagen-1.14.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mutagen/mutagen-1.14.ebuild,v 1.1 2008/06/04 07:57:28 aballier Exp $
+
+inherit distutils
+
+DESCRIPTION="Mutagen is an audio metadata tag reader and writer implemented in pure Python."
+HOMEPAGE="http://www.sacredchao.net/quodlibet/wiki/Development/Mutagen"
+SRC_URI="http://www.sacredchao.net/~piman/software/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+
+RDEPEND=">=virtual/python-2.4"
+DEPEND="${RDEPEND}
+ test? ( dev-python/eyeD3
+ dev-python/pyvorbis
+ media-libs/flac
+ media-sound/vorbis-tools )"
+
+DOCS="API-NOTES NEWS README TODO TUTORIAL"
+
+src_test() {
+ python setup.py test || die "src_test failed."
+}