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/pyside: ChangeLog pyside-1.0.6.ebuild pyside-1.0.0.ebuild pyside-0.4.2.ebuild pyside-1.0.3.ebuild
Date: Tue, 06 Sep 2011 12:42:31
Message-Id: 20110906124217.AB1CE2005C@flycatcher.gentoo.org
1 scarabeus 11/09/06 12:42:17
2
3 Modified: ChangeLog
4 Added: pyside-1.0.6.ebuild
5 Removed: pyside-1.0.0.ebuild pyside-0.4.2.ebuild
6 pyside-1.0.3.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.20 dev-python/pyside/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/ChangeLog?rev=1.20&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/ChangeLog?rev=1.20&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/ChangeLog?r1=1.19&r2=1.20
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v
22 retrieving revision 1.19
23 retrieving revision 1.20
24 diff -u -r1.19 -r1.20
25 --- ChangeLog 27 May 2011 18:25:22 -0000 1.19
26 +++ ChangeLog 6 Sep 2011 12:42:17 -0000 1.20
27 @@ -1,6 +1,13 @@
28 # ChangeLog for dev-python/pyside
29 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v 1.19 2011/05/27 18:25:22 chiiph Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v 1.20 2011/09/06 12:42:17 scarabeus Exp $
32 +
33 +*pyside-1.0.6 (06 Sep 2011)
34 +
35 + 06 Sep 2011; Tomáš Chvátal <scarabeus@g.o> -pyside-0.4.2.ebuild,
36 + -pyside-1.0.0.ebuild, -pyside-1.0.3.ebuild, +pyside-1.0.6.ebuild,
37 + -files/pyside-cmake-namespace.patch:
38 + Version bump to latest release. Cleanup ebuild. Remove older.
39
40 *pyside-1.0.3 (27 May 2011)
41
42
43
44
45 1.1 dev-python/pyside/pyside-1.0.6.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/pyside-1.0.6.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/pyside-1.0.6.ebuild?rev=1.1&content-type=text/plain
49
50 Index: pyside-1.0.6.ebuild
51 ===================================================================
52 # Copyright 1999-2011 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/pyside-1.0.6.ebuild,v 1.1 2011/09/06 12:42:17 scarabeus Exp $
55
56 EAPI=3
57
58 PYTHON_DEPEND="2:2.5"
59
60 inherit base python cmake-utils virtualx
61
62 MY_P="${PN}-qt4.7+${PV}"
63
64 DESCRIPTION="Python bindings for the Qt framework"
65 HOMEPAGE="http://www.pyside.org/"
66 SRC_URI="http://www.pyside.org/files/${MY_P}.tar.bz2"
67
68 LICENSE="LGPL-2.1"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE="debug kde test"
72
73 QT_PV="4.7.0"
74
75 RDEPEND=">=dev-python/shiboken-${PV}
76 >=x11-libs/qt-core-${QT_PV}
77 >=x11-libs/qt-assistant-${QT_PV}
78 >=x11-libs/qt-gui-${QT_PV}
79 >=x11-libs/qt-multimedia-${QT_PV}
80 >=x11-libs/qt-opengl-${QT_PV}
81 kde? ( media-libs/phonon )
82 !kde? (
83 || (
84 >=x11-libs/qt-phonon-${QT_PV}
85 media-libs/phonon
86 )
87 )
88 >=x11-libs/qt-script-${QT_PV}
89 >=x11-libs/qt-sql-${QT_PV}
90 >=x11-libs/qt-svg-${QT_PV}
91 >=x11-libs/qt-test-${QT_PV}
92 >=x11-libs/qt-webkit-${QT_PV}
93 >=x11-libs/qt-xmlpatterns-${QT_PV}"
94 DEPEND="${DEPEND}
95 test? ( >=x11-libs/qt-test-${QT_PV} )"
96
97 S="${WORKDIR}/${MY_P}.1"
98
99 DOCS=( "ChangeLog" )
100
101 PATCHES=(
102 "${FILESDIR}/${PN}-find-kde-phonon.patch"
103 )
104
105 pkg_setup() {
106 python_set_active_version 2
107 }
108
109 src_configure() {
110 local mycmakeargs=(
111 $(cmake-utils_use_build test TESTS)
112 )
113 cmake-utils_src_configure
114 }
115
116 src_test() {
117 VIRTUALX_COMMAND="cmake-utils_src_test"
118 virtualmake
119 }