Gentoo Archives: gentoo-commits

From: "Dirkjan Ochtman (djc)" <djc@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-twitter: ChangeLog python-twitter-0.8.2.ebuild
Date: Thu, 01 Mar 2012 09:39:02
Message-Id: 20120301093850.396702004B@flycatcher.gentoo.org
1 djc 12/03/01 09:38:50
2
3 Modified: ChangeLog
4 Added: python-twitter-0.8.2.ebuild
5 Log:
6 Version bump python-twitter to 0.8.2.
7
8 (Portage version: 2.1.10.49/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.9 dev-python/python-twitter/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-twitter/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-twitter/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-twitter/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-twitter/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 24 Sep 2011 13:46:12 -0000 1.8
24 +++ ChangeLog 1 Mar 2012 09:38:50 -0000 1.9
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/python-twitter
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-twitter/ChangeLog,v 1.8 2011/09/24 13:46:12 grobian Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-twitter/ChangeLog,v 1.9 2012/03/01 09:38:50 djc Exp $
31 +
32 +*python-twitter-0.8.2 (01 Mar 2012)
33 +
34 + 01 Mar 2012; Dirkjan Ochtman <djc@g.o> +python-twitter-0.8.2.ebuild:
35 + Version bump to 0.8.2.
36
37 24 Sep 2011; Fabian Groffen <grobian@g.o> python-twitter-0.8.1.ebuild:
38 Marked ~x64-macos
39
40
41
42 1.1 dev-python/python-twitter/python-twitter-0.8.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-twitter/python-twitter-0.8.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-twitter/python-twitter-0.8.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: python-twitter-0.8.2.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-twitter/python-twitter-0.8.2.ebuild,v 1.1 2012/03/01 09:38:50 djc Exp $
52
53 EAPI="2"
54 SUPPORT_PYTHON_ABIS="1"
55
56 inherit distutils
57
58 DESCRIPTION="This library provides a pure python interface for the Twitter API"
59 HOMEPAGE="http://code.google.com/p/python-twitter/"
60 SRC_URI="http://python-twitter.googlecode.com/files/${P}.tar.gz"
61
62 LICENSE="Apache-2.0"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86 ~x64-macos"
65 IUSE="examples"
66
67 RDEPEND="dev-python/oauth2
68 dev-python/simplejson"
69 DEPEND="${RDEPEND}
70 dev-python/setuptools"
71 RESTRICT_PYTHON_ABIS="3.*"
72
73 DOCS="CHANGES README"
74 PYTHON_MODNAME="twitter.py"
75
76 src_prepare() {
77 distutils_src_prepare
78
79 # Delete internal copy of simplejson.
80 rm -fr simplejson
81 }
82
83 #Test are disabled because they are broken.
84 #See http://code.google.com/p/python-twitter/issues/detail?id=196 for details.
85 #src_test() {
86 # testing() {
87 # PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" twitter_test.py
88 # }
89 # python_execute_function testing
90 #}
91
92 src_install() {
93 distutils_src_install
94
95 dohtml doc/twitter.html
96
97 if use examples; then
98 insinto /usr/share/doc/${PF}/examples
99 doins examples/*
100 fi
101 }