Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/shiboken: ChangeLog shiboken-1.0.6.ebuild shiboken-1.0.3.ebuild shiboken-0.5.1-r1.ebuild shiboken-1.0.0.ebuild
Date: Tue, 06 Sep 2011 12:42:46
Message-Id: 20110906124217.1155720054@flycatcher.gentoo.org
1 scarabeus 11/09/06 12:42:17
2
3 Modified: ChangeLog
4 Added: shiboken-1.0.6.ebuild
5 Removed: shiboken-1.0.3.ebuild shiboken-0.5.1-r1.ebuild
6 shiboken-1.0.0.ebuild
7 Log:
8 Bump pyside to latest release. Punt older that i didn't manage to make behave.
9
10 (Portage version: 2.2.0_alpha53/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.11 dev-python/shiboken/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/ChangeLog?rev=1.11&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/ChangeLog?rev=1.11&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/ChangeLog?r1=1.10&r2=1.11
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-python/shiboken/ChangeLog,v
22 retrieving revision 1.10
23 retrieving revision 1.11
24 diff -u -r1.10 -r1.11
25 --- ChangeLog 28 Jul 2011 22:33:11 -0000 1.10
26 +++ ChangeLog 6 Sep 2011 12:42:16 -0000 1.11
27 @@ -1,6 +1,15 @@
28 # ChangeLog for dev-python/shiboken
29 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/ChangeLog,v 1.10 2011/07/28 22:33:11 patrick Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/ChangeLog,v 1.11 2011/09/06 12:42:16 scarabeus Exp $
32 +
33 +*shiboken-1.0.6 (06 Sep 2011)
34 +
35 + 06 Sep 2011; Tomáš Chvátal <scarabeus@g.o>
36 + -shiboken-0.5.1-r1.ebuild, -files/shiboken-0.5.1-fix-pkgconfig.patch,
37 + -shiboken-1.0.0.ebuild, -files/shiboken-1.0.0-fix-pkgconfig.patch,
38 + -shiboken-1.0.3.ebuild, +shiboken-1.0.6.ebuild,
39 + +files/shiboken-1.0.6-fix-pkgconfig.patch:
40 + Version bump to latest release. Cleanup ebuild. Remove older.
41
42 28 Jul 2011; Patrick Lauer <patrick@g.o> shiboken-1.0.3.ebuild:
43 Small dep fixes for #369823
44
45
46
47 1.1 dev-python/shiboken/shiboken-1.0.6.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/shiboken-1.0.6.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/shiboken-1.0.6.ebuild?rev=1.1&content-type=text/plain
51
52 Index: shiboken-1.0.6.ebuild
53 ===================================================================
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/shiboken-1.0.6.ebuild,v 1.1 2011/09/06 12:42:16 scarabeus Exp $
57
58 EAPI=3
59
60 PYTHON_DEPEND="2:2.5"
61
62 inherit python versionator cmake-utils
63
64 MY_PV=$(replace_version_separator '_' '~')
65 MY_P=${PN}-${MY_PV}
66
67 DESCRIPTION="A tool for creating Python bindings for C++ libraries"
68 HOMEPAGE="http://www.pyside.org/"
69 SRC_URI="http://www.pyside.org/files/${MY_P}.tar.bz2"
70
71 LICENSE="LGPL-2.1"
72 SLOT="0"
73 KEYWORDS="~amd64 ~x86"
74 IUSE="debug test"
75
76 DEPEND=">=dev-python/apiextractor-0.10.6
77 >=dev-python/generatorrunner-0.6.12
78 >=x11-libs/qt-core-4.7.0"
79 RDEPEND="${DEPEND}
80 !dev-python/boostpythongenerator"
81
82 PATCHES=( "${FILESDIR}/${P}-fix-pkgconfig.patch" )
83
84 DOCS=( ChangeLog )
85
86 S=${WORKDIR}/${MY_P}
87
88 pkg_setup() {
89 python_set_active_version 2
90 }
91
92 src_configure() {
93 local mycmakeargs=(
94 $(cmake-utils_use_build test TESTS)
95 )
96 cmake-utils_src_configure
97 }