Gentoo Archives: gentoo-commits

From: "Ali Polatel (hawking)" <hawking@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-openid: ChangeLog python-openid-2.2.0.ebuild
Date: Wed, 25 Jun 2008 10:35:33
Message-Id: E1KBSLX-00052o-HP@stork.gentoo.org
1 hawking 08/06/25 10:35:27
2
3 Modified: ChangeLog
4 Added: python-openid-2.2.0.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r1 x86_64)
8
9 Revision Changes Path
10 1.8 dev-python/python-openid/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/python-openid/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/python-openid/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/python-openid/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-openid/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 13 Mar 2008 04:00:57 -0000 1.7
23 +++ ChangeLog 25 Jun 2008 10:35:27 -0000 1.8
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/python-openid
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-openid/ChangeLog,v 1.7 2008/03/13 04:00:57 pythonhead Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-openid/ChangeLog,v 1.8 2008/06/25 10:35:27 hawking Exp $
29 +
30 +*python-openid-2.2.0 (25 Jun 2008)
31 +
32 + 25 Jun 2008; Ali Polatel <hawking@g.o> +python-openid-2.2.0.ebuild:
33 + Version bump.
34
35 *python-openid-2.1.1 (13 Mar 2008)
36
37
38
39
40 1.1 dev-python/python-openid/python-openid-2.2.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/python-openid/python-openid-2.2.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/python-openid/python-openid-2.2.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: python-openid-2.2.0.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-openid/python-openid-2.2.0.ebuild,v 1.1 2008/06/25 10:35:27 hawking Exp $
50
51 NEED_PYTHON=2.3
52
53 inherit distutils
54
55 DESCRIPTION="OpenID support for servers and consumers."
56 HOMEPAGE="http://www.openidenabled.com/openid/libraries/python/"
57 SRC_URI="http://www.openidenabled.com/files/${PN}/packages/${P}.tar.bz2"
58
59 LICENSE="Apache-2.0"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="doc examples mysql postgres sqlite"
63
64 RDEPEND="|| ( >=dev-lang/python-2.5 dev-python/elementtree )
65 || ( >=dev-lang/python-2.5 dev-python/pycrypto )
66 sqlite? (
67 || ( >=dev-lang/python-2.5 >=dev-python/pysqlite-2 )
68 )
69 postgres? ( dev-python/psycopg )
70 mysql? ( >=dev-python/mysql-python-1.2.2 )"
71 DEPEND="${RDEPEND}"
72
73 PYTHON_MODNAME="openid"
74
75 src_unpack() {
76 unpack ${A}
77 cd "${S}"
78
79 #Patch to fix confusion with localhost/127.0.0.1
80 epatch "${FILESDIR}"/${PN}-2.0.0-gentoo-test_fetchers.diff
81 }
82
83 src_install() {
84 distutils_src_install
85
86 use doc && dohtml doc/*
87
88 if use examples ; then
89 insinto /usr/share/doc/${PF}
90 doins -r examples
91 fi
92 }
93
94 src_test() {
95 #Remove test that requires running db server
96 sed -e '/storetest/d' -i admin/runtests
97
98 "${python}" admin/runtests || die "tests failed"
99 }
100
101
102
103 --
104 gentoo-commits@l.g.o mailing list