Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/gst-python: gst-python-1.2.1.ebuild ChangeLog gst-python-0.10.22.ebuild
Date: Sat, 31 May 2014 13:40:59
Message-Id: 20140531134054.E50392004E@flycatcher.gentoo.org
1 pacho 14/05/31 13:40:54
2
3 Modified: ChangeLog
4 Added: gst-python-1.2.1.ebuild
5 Removed: gst-python-0.10.22.ebuild
6 Log:
7 Version bump, drop old
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.131 dev-python/gst-python/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gst-python/ChangeLog?rev=1.131&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gst-python/ChangeLog?rev=1.131&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gst-python/ChangeLog?r1=1.130&r2=1.131
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/gst-python/ChangeLog,v
21 retrieving revision 1.130
22 retrieving revision 1.131
23 diff -u -r1.130 -r1.131
24 --- ChangeLog 6 Apr 2014 10:28:39 -0000 1.130
25 +++ ChangeLog 31 May 2014 13:40:54 -0000 1.131
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/gst-python
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gst-python/ChangeLog,v 1.130 2014/04/06 10:28:39 eva Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/gst-python/ChangeLog,v 1.131 2014/05/31 13:40:54 pacho Exp $
31 +
32 +*gst-python-1.2.1 (31 May 2014)
33 +
34 + 31 May 2014; Pacho Ramos <pacho@g.o> +gst-python-1.2.1.ebuild,
35 + -gst-python-0.10.22.ebuild:
36 + Version bump, drop old
37
38 *gst-python-1.2.0 (06 Apr 2014)
39
40
41
42
43 1.1 dev-python/gst-python/gst-python-1.2.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gst-python/gst-python-1.2.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gst-python/gst-python-1.2.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gst-python-1.2.1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/gst-python/gst-python-1.2.1.ebuild,v 1.1 2014/05/31 13:40:54 pacho Exp $
53
54 EAPI="5"
55 PYTHON_COMPAT=( python{2_7,3_2,3_3} )
56
57 inherit python-r1
58
59 DESCRIPTION="A Python Interface to GStreamer"
60 HOMEPAGE="http://gstreamer.freedesktop.org/"
61 SRC_URI="http://gstreamer.freedesktop.org/src/${PN}/${P}.tar.bz2"
62
63 LICENSE="LGPL-2"
64 SLOT="1.0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
66 IUSE="test" #examples , bug #506962
67
68 RDEPEND="
69 dev-libs/libxml2
70 >=dev-python/pygobject-3:3[${PYTHON_USEDEP}]
71 >=media-libs/gstreamer-1.2:1.0
72 >=media-libs/gst-plugins-base-1.2:1.0
73 "
74 DEPEND="${RDEPEND}
75 virtual/pkgconfig
76 "
77 # XXX: unittests are not ported to 1.0 yet.
78
79 src_prepare() {
80 # Leave examples alone
81 sed -e 's/\(SUBDIRS = .*\)examples/\1/' \
82 -i Makefile.am Makefile.in || die
83
84 prepare_gst() {
85 mkdir -p "${BUILD_DIR}" || die
86 }
87 python_foreach_impl prepare_gst
88 }
89
90 src_configure() {
91 ECONF_SOURCE="${S}" python_foreach_impl run_in_build_dir econf
92 }
93
94 src_compile() {
95 python_foreach_impl run_in_build_dir default
96 }
97
98 src_install() {
99 python_foreach_impl run_in_build_dir default
100 prune_libtool_files --modules
101 einstalldocs
102
103 # if use examples; then
104 # docinto examples
105 # dodoc examples/*
106 # fi
107 }