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