Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pygooglevoice: pygooglevoice-0.5.ebuild metadata.xml ChangeLog
Date: Mon, 30 May 2011 11:26:49
Message-Id: 20110530112640.06FCD20054@flycatcher.gentoo.org
1 radhermit 11/05/30 11:26:40
2
3 Added: pygooglevoice-0.5.ebuild metadata.xml ChangeLog
4 Log:
5 Initial import.
6
7 (Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-python/pygooglevoice/pygooglevoice-0.5.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygooglevoice/pygooglevoice-0.5.ebuild?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygooglevoice/pygooglevoice-0.5.ebuild?rev=1.1&content-type=text/plain
14
15 Index: pygooglevoice-0.5.ebuild
16 ===================================================================
17 # Copyright 1999-2011 Gentoo Foundation
18 # Distributed under the terms of the GNU General Public License v2
19 # $Header: /var/cvsroot/gentoo-x86/dev-python/pygooglevoice/pygooglevoice-0.5.ebuild,v 1.1 2011/05/30 11:26:39 radhermit Exp $
20
21 EAPI="3"
22 PYTHON_DEPEND="2:2.6 3"
23 SUPPORT_PYTHON_ABIS="1"
24 PYTHON_MODNAME="googlevoice"
25
26 inherit distutils
27
28 DESCRIPTION="Python Bindings for the Google Voice API"
29 HOMEPAGE="http://code.google.com/p/pygooglevoice/"
30 SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz
31 http://${PN}.googlecode.com/files/${P}-extras.zip"
32
33 LICENSE="BSD"
34 SLOT="0"
35 KEYWORDS="~amd64 ~x86"
36 IUSE="doc examples"
37
38 DEPEND="app-arch/unzip"
39 RDEPEND=""
40
41 # Requires interactive login
42 RESTRICT="test"
43
44 src_test() {
45 testing() {
46 PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" googlevoice/tests.py
47 }
48 python_execute_function testing
49 }
50
51 src_install() {
52 distutils_src_install
53
54 if use doc ; then
55 dohtml -r "${WORKDIR}"/doc/* || die "dohtml failed"
56 fi
57
58 if use examples ; then
59 exeinto /usr/share/doc/${PF}/examples
60 doexe "${WORKDIR}"/examples/[a-z]*.py || die "doexe failed"
61 fi
62 }
63
64
65
66 1.1 dev-python/pygooglevoice/metadata.xml
67
68 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygooglevoice/metadata.xml?rev=1.1&view=markup
69 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygooglevoice/metadata.xml?rev=1.1&content-type=text/plain
70
71 Index: metadata.xml
72 ===================================================================
73 <?xml version="1.0" encoding="UTF-8"?>
74 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
75 <pkgmetadata>
76 <herd>python</herd>
77 </pkgmetadata>
78
79
80
81 1.1 dev-python/pygooglevoice/ChangeLog
82
83 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygooglevoice/ChangeLog?rev=1.1&view=markup
84 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygooglevoice/ChangeLog?rev=1.1&content-type=text/plain
85
86 Index: ChangeLog
87 ===================================================================
88 # ChangeLog for dev-python/pygooglevoice
89 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
90 # $Header: /var/cvsroot/gentoo-x86/dev-python/pygooglevoice/ChangeLog,v 1.1 2011/05/30 11:26:39 radhermit Exp $
91
92 *pygooglevoice-0.5 (30 May 2011)
93
94 30 May 2011; Tim Harder <radhermit@g.o> +pygooglevoice-0.5.ebuild,
95 +metadata.xml:
96 Initial import.