diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-10-04 05:00:30 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-10-04 05:00:30 +0000 |
commit | 4f9593266a2dfc3a898aa8b1adf5bf5876e010be (patch) | |
tree | 73fd361fa00b3e13142a1b038b36a1e78697f3d7 /dev-python/pygooglevoice | |
parent | Revbump to fix authentication issues. (diff) | |
download | gentoo-2-4f9593266a2dfc3a898aa8b1adf5bf5876e010be.tar.gz gentoo-2-4f9593266a2dfc3a898aa8b1adf5bf5876e010be.tar.bz2 gentoo-2-4f9593266a2dfc3a898aa8b1adf5bf5876e010be.zip |
Remove old.
(Portage version: 2.2.0_alpha60/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pygooglevoice')
-rw-r--r-- | dev-python/pygooglevoice/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/pygooglevoice/pygooglevoice-0.5.ebuild | 46 |
2 files changed, 4 insertions, 47 deletions
diff --git a/dev-python/pygooglevoice/ChangeLog b/dev-python/pygooglevoice/ChangeLog index b0600e0c5fc2..f6bd2586015c 100644 --- a/dev-python/pygooglevoice/ChangeLog +++ b/dev-python/pygooglevoice/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/pygooglevoice # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pygooglevoice/ChangeLog,v 1.2 2011/10/04 04:59:51 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygooglevoice/ChangeLog,v 1.3 2011/10/04 05:00:30 radhermit Exp $ + + 04 Oct 2011; Tim Harder <radhermit@gentoo.org> -pygooglevoice-0.5.ebuild: + Remove old. *pygooglevoice-0.5-r1 (04 Oct 2011) diff --git a/dev-python/pygooglevoice/pygooglevoice-0.5.ebuild b/dev-python/pygooglevoice/pygooglevoice-0.5.ebuild deleted file mode 100644 index 67b0860b2b0b..000000000000 --- a/dev-python/pygooglevoice/pygooglevoice-0.5.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pygooglevoice/pygooglevoice-0.5.ebuild,v 1.1 2011/05/30 11:26:39 radhermit Exp $ - -EAPI="3" -PYTHON_DEPEND="2:2.6 3" -SUPPORT_PYTHON_ABIS="1" -PYTHON_MODNAME="googlevoice" - -inherit distutils - -DESCRIPTION="Python Bindings for the Google Voice API" -HOMEPAGE="http://code.google.com/p/pygooglevoice/" -SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz - http://${PN}.googlecode.com/files/${P}-extras.zip" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples" - -DEPEND="app-arch/unzip" -RDEPEND="" - -# Requires interactive login -RESTRICT="test" - -src_test() { - testing() { - PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" googlevoice/tests.py - } - python_execute_function testing -} - -src_install() { - distutils_src_install - - if use doc ; then - dohtml -r "${WORKDIR}"/doc/* || die "dohtml failed" - fi - - if use examples ; then - exeinto /usr/share/doc/${PF}/examples - doexe "${WORKDIR}"/examples/[a-z]*.py || die "doexe failed" - fi -} |