Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/shiboken: shiboken-1.0.9.ebuild ChangeLog
Date: Tue, 27 Dec 2011 08:39:42
Message-Id: 20111227083932.152FE2004C@flycatcher.gentoo.org
1 patrick 11/12/27 08:39:32
2
3 Modified: ChangeLog
4 Added: shiboken-1.0.9.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.13 dev-python/shiboken/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/shiboken/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 13 Sep 2011 19:12:17 -0000 1.12
24 +++ ChangeLog 27 Dec 2011 08:39:31 -0000 1.13
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/shiboken
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/ChangeLog,v 1.12 2011/09/13 19:12:17 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/ChangeLog,v 1.13 2011/12/27 08:39:31 patrick Exp $
30 +
31 +*shiboken-1.0.9 (27 Dec 2011)
32 +
33 + 27 Dec 2011; Patrick Lauer <patrick@g.o>
34 + +files/shiboken-1.0.9-fix-pkgconfig.patch, +shiboken-1.0.9.ebuild:
35 + Bump
36
37 13 Sep 2011; Pacho Ramos <pacho@g.o> metadata.xml:
38 Drop maintainer due retirement, bug #278944
39
40
41
42 1.1 dev-python/shiboken/shiboken-1.0.9.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/shiboken-1.0.9.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/shiboken-1.0.9.ebuild?rev=1.1&content-type=text/plain
46
47 Index: shiboken-1.0.9.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/shiboken-1.0.9.ebuild,v 1.1 2011/12/27 08:39:31 patrick Exp $
52
53 EAPI=3
54
55 PYTHON_DEPEND="2:2.5"
56
57 inherit python versionator cmake-utils
58
59 MY_PV=$(replace_version_separator '_' '~')
60 MY_P=${PN}-${MY_PV}
61
62 DESCRIPTION="A tool for creating Python bindings for C++ libraries"
63 HOMEPAGE="http://www.pyside.org/"
64 SRC_URI="http://www.pyside.org/files/${MY_P}.tar.bz2"
65
66 LICENSE="LGPL-2.1"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE="debug test"
70
71 DEPEND=">=dev-python/apiextractor-0.10.8
72 >=dev-python/generatorrunner-0.6.14
73 >=x11-libs/qt-core-4.7.0"
74 RDEPEND="${DEPEND}
75 !dev-python/boostpythongenerator"
76
77 PATCHES=( "${FILESDIR}/${P}-fix-pkgconfig.patch" )
78
79 DOCS=( ChangeLog )
80
81 S=${WORKDIR}/${MY_P}
82
83 pkg_setup() {
84 python_set_active_version 2
85 }
86
87 src_configure() {
88 local mycmakeargs=(
89 $(cmake-utils_use_build test TESTS)
90 )
91 cmake-utils_src_configure
92 }