Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pygooglevoice: pygooglevoice-0.5-r2.ebuild ChangeLog pygooglevoice-0.5-r1.ebuild
Date: Fri, 02 Jan 2015 23:18:38
Message-Id: 20150102231833.2CABBEBDD@oystercatcher.gentoo.org
1 idella4 15/01/02 23:18:33
2
3 Modified: ChangeLog
4 Added: pygooglevoice-0.5-r2.ebuild
5 Removed: pygooglevoice-0.5-r1.ebuild
6 Log:
7 revbump; conversion -> distutils-r1, rm old
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.5 dev-python/pygooglevoice/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygooglevoice/ChangeLog?rev=1.5&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygooglevoice/ChangeLog?rev=1.5&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygooglevoice/ChangeLog?r1=1.4&r2=1.5
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/pygooglevoice/ChangeLog,v
21 retrieving revision 1.4
22 retrieving revision 1.5
23 diff -u -r1.4 -r1.5
24 --- ChangeLog 23 Feb 2012 15:10:20 -0000 1.4
25 +++ ChangeLog 2 Jan 2015 23:18:33 -0000 1.5
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/pygooglevoice
28 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pygooglevoice/ChangeLog,v 1.4 2012/02/23 15:10:20 radhermit Exp $
30 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygooglevoice/ChangeLog,v 1.5 2015/01/02 23:18:33 idella4 Exp $
32 +
33 +*pygooglevoice-0.5-r2 (02 Jan 2015)
34 +
35 + 02 Jan 2015; Ian Delaney <idella4@g.o> +pygooglevoice-0.5-r2.ebuild,
36 + -pygooglevoice-0.5-r1.ebuild:
37 + revbump; conversion -> distutils-r1, rm old
38
39 23 Feb 2012; Tim Harder <radhermit@g.o> pygooglevoice-0.5-r1.ebuild:
40 Update to EAPI 4 and restrict python 3 (bug #404021).
41 @@ -19,4 +25,3 @@
42 30 May 2011; Tim Harder <radhermit@g.o> +pygooglevoice-0.5.ebuild,
43 +metadata.xml:
44 Initial import.
45 -
46
47
48
49 1.1 dev-python/pygooglevoice/pygooglevoice-0.5-r2.ebuild
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygooglevoice/pygooglevoice-0.5-r2.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygooglevoice/pygooglevoice-0.5-r2.ebuild?rev=1.1&content-type=text/plain
53
54 Index: pygooglevoice-0.5-r2.ebuild
55 ===================================================================
56 # Copyright 1999-2015 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/dev-python/pygooglevoice/pygooglevoice-0.5-r2.ebuild,v 1.1 2015/01/02 23:18:33 idella4 Exp $
59
60 EAPI=5
61 PYTHON_COMPAT=( python2_7 )
62
63 inherit distutils-r1
64
65 DESCRIPTION="Python Bindings for the Google Voice API"
66 HOMEPAGE="http://code.google.com/p/pygooglevoice/"
67 SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz
68 http://${PN}.googlecode.com/files/${P}-extras.zip"
69
70 LICENSE="BSD"
71 SLOT="0"
72 KEYWORDS="~amd64 ~x86"
73 IUSE="doc examples"
74
75 DEPEND="app-arch/unzip"
76
77 # Requires interactive login
78 RESTRICT="test"
79
80 PATCH=( "${FILESDIR}"/${P}-auth.patch )
81
82 python_test() {
83 "${PYTHON}" googlevoice/tests.py
84 }
85
86 python_install_all() {
87 use doc && local HTML_DOCS=( "${WORKDIR}"/doc/. )
88 use examples && local EXAMPLES=( examples/. )
89 distutils-r1_python_install_all
90 }