Gentoo Archives: gentoo-commits

From: "Maxim Koltsov (maksbotan)" <maksbotan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-twitter: ChangeLog python-twitter-0.8.1.ebuild python-twitter-0.6.ebuild
Date: Sat, 30 Apr 2011 15:47:46
Message-Id: 20110430154735.DC7E820054@flycatcher.gentoo.org
1 maksbotan 11/04/30 15:47:35
2
3 Modified: ChangeLog
4 Added: python-twitter-0.8.1.ebuild
5 Removed: python-twitter-0.6.ebuild
6 Log:
7 dev-python/python-twitter version bump, #356815
8
9 (Portage version: 2.1.9.45/cvs/Linux i686)
10
11 Revision Changes Path
12 1.6 dev-python/python-twitter/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-twitter/ChangeLog?rev=1.6&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-twitter/ChangeLog?rev=1.6&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-twitter/ChangeLog?r1=1.5&r2=1.6
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-twitter/ChangeLog,v
21 retrieving revision 1.5
22 retrieving revision 1.6
23 diff -u -r1.5 -r1.6
24 --- ChangeLog 9 Dec 2009 18:50:22 -0000 1.5
25 +++ ChangeLog 30 Apr 2011 15:47:35 -0000 1.6
26 @@ -1,6 +1,15 @@
27 # ChangeLog for dev-python/python-twitter
28 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-twitter/ChangeLog,v 1.5 2009/12/09 18:50:22 nixnut Exp $
30 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-twitter/ChangeLog,v 1.6 2011/04/30 15:47:35 maksbotan Exp $
32 +
33 +*python-twitter-0.8.1 (30 Apr 2011)
34 +
35 + 30 Apr 2011; Maxim Koltsov (maksbotan) <maksbotan@g.o>
36 + -python-twitter-0.6.ebuild, +python-twitter-0.8.1.ebuild:
37 + dev-python/python-twitter version bump, #356815
38 + Removed dev-python/python-twitter as it's unusable now, commented out
39 + testsuite in ebuild as not passable, drop ppc keyword 'cause mandatory
40 + dependency oauth2 doesn't have it.
41
42 09 Dec 2009; nixnut <nixnut@g.o> python-twitter-0.6.ebuild:
43 ppc stable #295223
44
45
46
47 1.1 dev-python/python-twitter/python-twitter-0.8.1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-twitter/python-twitter-0.8.1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-twitter/python-twitter-0.8.1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: python-twitter-0.8.1.ebuild
53 ===================================================================
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-twitter/python-twitter-0.8.1.ebuild,v 1.1 2011/04/30 15:47:35 maksbotan Exp $
57
58 EAPI="2"
59 SUPPORT_PYTHON_ABIS="1"
60
61 inherit distutils
62
63 DESCRIPTION="This library provides a pure python interface for the Twitter API"
64 HOMEPAGE="http://code.google.com/p/python-twitter/"
65 SRC_URI="http://python-twitter.googlecode.com/files/${P}.tar.gz"
66
67 LICENSE="Apache-2.0"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE="examples"
71
72 RDEPEND="dev-python/oauth2
73 dev-python/simplejson"
74 DEPEND="${RDEPEND}
75 dev-python/setuptools"
76 RESTRICT_PYTHON_ABIS="3.*"
77
78 DOCS="CHANGES README"
79 PYTHON_MODNAME="twitter.py"
80
81 src_prepare() {
82 distutils_src_prepare
83
84 # Delete internal copy of simplejson.
85 rm -fr simplejson
86 }
87
88 #src_test() {
89 # testing() {
90 # PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" twitter_test.py
91 # }
92 # python_execute_function testing
93 #}
94
95 src_install() {
96 distutils_src_install
97
98 dohtml doc/twitter.html
99
100 if use examples; then
101 insinto /usr/share/doc/${PF}/examples
102 doins examples/*
103 fi
104 }