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 dev-python/gst-python: gst-python-0.10.15-r1.ebuild ChangeLog gst-python-0.10.15.ebuild
|
|
Date:
|
Thu, 14 May 2009 07:17:13 +0000
|
|
ssuominen 09/05/14 07:17:13
Modified: ChangeLog
Added: gst-python-0.10.15-r1.ebuild
Removed: gst-python-0.10.15.ebuild
Log:
Revision bump to correctly handle bytecompiling and autotools.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Revision Changes Path
1.50 dev-python/gst-python/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/gst-python/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/gst-python/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/gst-python/ChangeLog?r1=1.49&r2=1.50
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/gst-python/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog 13 May 2009 15:46:37 -0000 1.49
+++ ChangeLog 14 May 2009 07:17:13 -0000 1.50
@@ -1,6 +1,12 @@
# ChangeLog for dev-python/gst-python
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/gst-python/ChangeLog,v 1.49 2009/05/13 15:46:37 tester Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/gst-python/ChangeLog,v 1.50 2009/05/14 07:17:13 ssuominen Exp $
+
+*gst-python-0.10.15-r1 (14 May 2009)
+
+ 14 May 2009; Samuli Suominen <ssuominen@g.o>
+ -gst-python-0.10.15.ebuild, +gst-python-0.10.15-r1.ebuild:
+ Revision bump to correctly handle bytecompiling and autotools.
*gst-python-0.10.15 (13 May 2009)
1.1 dev-python/gst-python/gst-python-0.10.15-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/gst-python/gst-python-0.10.15-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/gst-python/gst-python-0.10.15-r1.ebuild?rev=1.1&content-type=text/plain
Index: gst-python-0.10.15-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/gst-python/gst-python-0.10.15-r1.ebuild,v 1.1 2009/05/14 07:17:13 ssuominen Exp $
EAPI=2
NEED_PYTHON=2.4
inherit autotools eutils multilib python
DESCRIPTION="A Python Interface to GStreamer"
HOMEPAGE="http://gstreamer.freedesktop.org"
SRC_URI="http://gstreamer.freedesktop.org/src/${PN}/${P}.tar.bz2"
LICENSE="LGPL-2"
SLOT="0.10"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="examples"
RDEPEND="|| ( >=dev-python/pygobject-2.11.2 >=dev-python/pygtk-2.6.3 )
>=media-libs/gstreamer-0.10.23
>=media-libs/gst-plugins-base-0.10.23
dev-libs/libxml2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.10.9-lazy.patch
rm -f py-compile
ln -s $(type -P true) py-compile
AT_M4DIR="common/m4" eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README TODO
if use examples; then
docinto examples
dodoc examples/*
fi
}
pkg_postinst() {
python_version
python_mod_compile /usr/$(get_libdir)/python${PYVER}/site-packages/pygst.py
python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/gst-0.10
}
pkg_postrm() {
python_mod_cleanup
}
|
|