Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/twill: ChangeLog twill-0.9.ebuild
Date: Thu, 30 Dec 2010 22:18:39
Message-Id: 20101230221829.46F3420054@flycatcher.gentoo.org
1 arfrever 10/12/30 22:18:29
2
3 Modified: ChangeLog twill-0.9.ebuild
4 Log:
5 Fix dependencies. Set SUPPORT_PYTHON_ABIS.
6
7 (Portage version: 2.2.0_alpha10_p22/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 dev-python/twill/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twill/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twill/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twill/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/twill/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 4 Sep 2009 15:29:43 -0000 1.4
23 +++ ChangeLog 30 Dec 2010 22:18:29 -0000 1.5
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-python/twill
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twill/ChangeLog,v 1.4 2009/09/04 15:29:43 patrick Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twill/ChangeLog,v 1.5 2010/12/30 22:18:29 arfrever Exp $
30 +
31 + 30 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
32 + twill-0.9.ebuild:
33 + Fix dependencies. Set SUPPORT_PYTHON_ABIS.
34
35 04 Sep 2009; Patrick Lauer <patrick@g.o> -twill-0.9_beta1.ebuild:
36 Remove old
37
38
39
40 1.2 dev-python/twill/twill-0.9.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twill/twill-0.9.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twill/twill-0.9.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twill/twill-0.9.ebuild?r1=1.1&r2=1.2
45
46 Index: twill-0.9.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-python/twill/twill-0.9.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- twill-0.9.ebuild 15 Feb 2009 14:24:58 -0000 1.1
53 +++ twill-0.9.ebuild 30 Dec 2010 22:18:29 -0000 1.2
54 @@ -1,6 +1,11 @@
55 -# Copyright 1999-2009 Gentoo Foundation
56 +# Copyright 1999-2010 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twill/twill-0.9.ebuild,v 1.1 2009/02/15 14:24:58 patrick Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twill/twill-0.9.ebuild,v 1.2 2010/12/30 22:18:29 arfrever Exp $
60 +
61 +EAPI="3"
62 +PYTHON_DEPEND="2"
63 +SUPPORT_PYTHON_ABIS="1"
64 +RESTRICT_PYTHON_ABIS="3.*"
65
66 inherit distutils
67
68 @@ -10,25 +15,27 @@
69 DESCRIPTION="Simple scripting language for web browsing with Python API."
70 HOMEPAGE="http://twill.idyll.org/"
71 SRC_URI="http://darcs.idyll.org/~t/projects/${MY_P}.tar.gz"
72 +
73 LICENSE="MIT"
74 -KEYWORDS="~amd64 ~x86"
75 SLOT="0"
76 +KEYWORDS="~amd64 ~x86"
77 IUSE="doc"
78
79 -S=${WORKDIR}/${MY_P}
80 +S="${WORKDIR}/${MY_P}"
81 +
82 +src_test() {
83 + elog "Testing disabled due to sandbox problems opening"
84 + elog "a port on a server. Unpack the ebuild and run the"
85 + elog "tests manually with 'nosetests' (dev-python/nose)"
86 + elog "in the unpacked directory."
87 +}
88
89 src_install() {
90 distutils_src_install
91 +
92 if use doc; then
93 dodir /usr/share/doc/${PF}/examples
94 cp -R doc/* "${D}"/usr/share/doc/${PF}/
95 cp examples/* "${D}"/usr/share/doc/${PF}/examples/
96 fi
97 }
98 -
99 -src_test() {
100 - elog "Testing disabled due to sandbox prolems opening"
101 - elog "a port on a server. Unpack the ebuild and run the"
102 - elog "tests manually with 'nosetests' (dev-python/nose)"
103 - elog "in the unpacked directory."
104 -}