Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
| Navigation: |
|
Lists:
gentoo-commits:
< Prev
By Thread
Next >
< Prev
By Date
Next >
|
| Headers: |
|
To:
|
gentoo-commits@g.o
|
|
From:
|
"Samuli Suominen (ssuominen)" <ssuominen@g.o>
|
|
Subject:
|
gentoo-x86 commit in media-sound/listen: ChangeLog listen-0.6.2.ebuild listen-0.5-r1.ebuild
|
|
Date:
|
Fri, 17 Jul 2009 09:07:26 +0000
|
|
ssuominen 09/07/17 09:07:26
Modified: ChangeLog
Added: listen-0.6.2.ebuild
Removed: listen-0.5-r1.ebuild
Log:
Version bump.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Revision Changes Path
1.20 media-sound/listen/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/listen/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/listen/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/listen/ChangeLog?r1=1.19&r2=1.20
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/listen/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog 11 Aug 2007 10:34:15 -0000 1.19
+++ ChangeLog 17 Jul 2009 09:07:25 -0000 1.20
@@ -1,8 +1,14 @@
# ChangeLog for media-sound/listen
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/listen/ChangeLog,v 1.19 2007/08/11 10:34:15 drac Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/listen/ChangeLog,v 1.20 2009/07/17 09:07:25 ssuominen Exp $
- 11 Aug 2007; Samuli Suominen <drac@g.o> listen-0.5-r1.ebuild:
+*listen-0.6.2 (17 Jul 2009)
+
+ 17 Jul 2009; Samuli Suominen <ssuominen@g.o> +listen-0.6.2.ebuild,
+ +files/listen-0.6.2-Makefile.patch:
+ Version bump.
+
+ 11 Aug 2007; Samuli Suominen <ssuominen@g.o> listen-0.5-r1.ebuild:
Fix elementtree depends for bug 185533.
16 Jul 2007; Michael Sterrett <mr_bones_@g.o> listen-0.5.ebuild,
1.1 media-sound/listen/listen-0.6.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/listen/listen-0.6.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/listen/listen-0.6.2.ebuild?rev=1.1&content-type=text/plain
Index: listen-0.6.2.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/listen/listen-0.6.2.ebuild,v 1.1 2009/07/17 09:07:25 ssuominen Exp $
EAPI=2
inherit eutils multilib python
DESCRIPTION="A Music player and management for GNOME"
HOMEPAGE="http://www.listen-project.org"
SRC_URI="http://download.listen-project.org/lastest/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="hal ipod +libsexy"
RDEPEND=">=dev-lang/python-2.5
>=dev-python/pygtk-2.6:2
|| ( dev-python/python-xlib dev-python/egg-python )
media-libs/mutagen
dev-python/gst-python:0.10
media-plugins/gst-plugins-meta:0.10
|| ( dev-python/pywebkitgtk dev-python/gtkmozembed-python )
dev-python/pyinotify
libsexy? ( dev-python/sexy-python )
ipod? ( media-libs/libgpod[python] )
hal? ( sys-apps/hal )"
DEPEND="${RDEPEND}
app-text/docbook2X
dev-util/pkgconfig
dev-util/intltool
sys-devel/gettext
!<media-sound/listen-0.6.2"
src_prepare() {
epatch "${FILESDIR}"/${P}-Makefile.patch
}
src_compile() {
if has_version dev-python/pywebkitgtk; then
CHECK_DEPENDS="0" emake || die "emake failed"
else
USE_GTKMOZEMBED="1" CHECK_DEPENDS="0" emake || die "emake failed"
fi
}
src_install() {
DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" emake \
install || die "emake install failed"
dodoc README
}
pkg_postinst() {
python_mod_optimize /usr/$(get_libdir)/${PN}
}
pkg_postrm() {
python_mod_cleanup /usr/$(get_libdir)/${PN}
}
|
|