diff options
author | Ali Polatel <hawking@gentoo.org> | 2008-05-13 20:04:06 +0000 |
---|---|---|
committer | Ali Polatel <hawking@gentoo.org> | 2008-05-13 20:04:06 +0000 |
commit | 7c88a23490ee6fd2550c1bd7f1fdc582fdf4c700 (patch) | |
tree | 25085586f97836d423684418b436a74f4c5a7fea /dev-python | |
parent | The feedparser rawdog uses has many tweaks and therefore system feedparser ca... (diff) | |
download | gentoo-2-7c88a23490ee6fd2550c1bd7f1fdc582fdf4c700.tar.gz gentoo-2-7c88a23490ee6fd2550c1bd7f1fdc582fdf4c700.tar.bz2 gentoo-2-7c88a23490ee6fd2550c1bd7f1fdc582fdf4c700.zip |
Version bump.
(Portage version: 2.1.5_rc10)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/eyeD3/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/eyeD3/eyeD3-0.6.15.ebuild | 34 |
2 files changed, 40 insertions, 1 deletions
diff --git a/dev-python/eyeD3/ChangeLog b/dev-python/eyeD3/ChangeLog index e4489f07b124..6e67241ea095 100644 --- a/dev-python/eyeD3/ChangeLog +++ b/dev-python/eyeD3/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/eyeD3 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/eyeD3/ChangeLog,v 1.30 2008/05/09 15:55:08 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/eyeD3/ChangeLog,v 1.31 2008/05/13 20:04:06 hawking Exp $ + +*eyeD3-0.6.15 (13 May 2008) + + 13 May 2008; Ali Polatel <hawking@gentoo.org> +eyeD3-0.6.15.ebuild: + Version bump. 09 May 2008; Raúl Porcel <armin76@gentoo.org> eyeD3-0.6.14.ebuild: sparc stable diff --git a/dev-python/eyeD3/eyeD3-0.6.15.ebuild b/dev-python/eyeD3/eyeD3-0.6.15.ebuild new file mode 100644 index 000000000000..926cceb1c19e --- /dev/null +++ b/dev-python/eyeD3/eyeD3-0.6.15.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/eyeD3/eyeD3-0.6.15.ebuild,v 1.1 2008/05/13 20:04:06 hawking Exp $ + +NEED_PYTHON=2.3 + +inherit distutils + +DESCRIPTION="Module for manipulating ID3 (v1 + v2) tags in Python" +HOMEPAGE="http://eyed3.nicfit.net/" +SRC_URI="http://eyed3.nicfit.net/releases/${P}.tar.gz" +IUSE="" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +src_compile() { + econf + distutils_src_compile +} + +src_install() { + # Not calling make install because + # we would have to patch it (for example bug #164310) + # and it's therefore easier to do it manually + + DOCS="AUTHORS THANKS" + dohtml README.html && rm README.html + + distutils_src_install + + dobin bin/eyeD3 || die "dobin failed." + doman doc/eyeD3.1 || die "doman failed." +} |