Gentoo Archives: gentoo-commits

From: "Dominik Kapusta (ayoy)" <ayoy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyside-tools: pyside-tools-0.1.3.ebuild
Date: Tue, 29 Jun 2010 17:58:14
Message-Id: 20100629175804.CE9732C621@corvid.gentoo.org
1 ayoy 10/06/29 17:58:04
2
3 Modified: pyside-tools-0.1.3.ebuild
4 Log:
5 Use proper test procedure for pyside-0.1.3 (bug #236617).
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 dev-python/pyside-tools/pyside-tools-0.1.3.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside-tools/pyside-tools-0.1.3.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside-tools/pyside-tools-0.1.3.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside-tools/pyside-tools-0.1.3.ebuild?r1=1.1&r2=1.2
14
15 Index: pyside-tools-0.1.3.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyside-tools/pyside-tools-0.1.3.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- pyside-tools-0.1.3.ebuild 16 Jun 2010 18:56:07 -0000 1.1
22 +++ pyside-tools-0.1.3.ebuild 29 Jun 2010 17:58:04 -0000 1.2
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside-tools/pyside-tools-0.1.3.ebuild,v 1.1 2010/06/16 18:56:07 ayoy Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside-tools/pyside-tools-0.1.3.ebuild,v 1.2 2010/06/29 17:58:04 ayoy Exp $
28
29 EAPI="2"
30
31 @@ -13,13 +13,19 @@
32 LICENSE="GPL-2"
33 SLOT="0"
34 KEYWORDS="~amd64 ~x86"
35 -IUSE="debug"
36 +IUSE="debug test"
37
38 DEPEND=">=dev-python/pyside-0.3.2
39 >=x11-libs/qt-core-4.6.0
40 >=x11-libs/qt-gui-4.6.0"
41 RDEPEND="${DEPEND}"
42
43 +src_test() {
44 + cd "${S}"/tests/rcc
45 + ./run_test.sh $(which python) ./rcc_test.py ./example.qrc . \
46 + || die "tests failed"
47 +}
48 +
49 src_install() {
50 cmake-utils_src_install
51 dobin pyside-uic || die "installing pyside-uic failed"