diff options
author | Thomas Sachau <tommy@gentoo.org> | 2012-04-07 11:27:30 +0200 |
---|---|---|
committer | Thomas Sachau <tommy@gentoo.org> | 2012-04-07 11:27:30 +0200 |
commit | da6735e9920391ba57247cbb843e453e9281ec2a (patch) | |
tree | 4c558768ad89984cb6e35a621b0a678ad8960835 /dev-python | |
parent | net-print/gnome-manual-duplex: add missing ChangeLog (diff) | |
download | sunrise-reviewed-da6735e9920391ba57247cbb843e453e9281ec2a.tar.gz sunrise-reviewed-da6735e9920391ba57247cbb843e453e9281ec2a.tar.bz2 sunrise-reviewed-da6735e9920391ba57247cbb843e453e9281ec2a.zip |
dev-python/pygooglechart: Drop dev-python/pygooglechart due to missing dependency
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/pygooglechart/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/pygooglechart/Manifest | 4 | ||||
-rw-r--r-- | dev-python/pygooglechart/metadata.xml | 7 | ||||
-rw-r--r-- | dev-python/pygooglechart/pygooglechart-0.3.0.ebuild | 42 |
4 files changed, 0 insertions, 61 deletions
diff --git a/dev-python/pygooglechart/ChangeLog b/dev-python/pygooglechart/ChangeLog deleted file mode 100644 index 9f02e967d..000000000 --- a/dev-python/pygooglechart/ChangeLog +++ /dev/null @@ -1,8 +0,0 @@ -# ChangeLog for dev-python/pygooglechart -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: $ - - 09 Jan 2011; Mike Gilbert (floppym) <floppymaster@gmail.com> - +pygooglechart-0.3.0.ebuild, +metadata.xml: - New ebuild for bug 242132 - diff --git a/dev-python/pygooglechart/Manifest b/dev-python/pygooglechart/Manifest deleted file mode 100644 index 5ce3fb205..000000000 --- a/dev-python/pygooglechart/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -DIST pygooglechart-0.3.0.tar.gz 27388 RMD160 0e270c325d58f180773f5d7ef8290bd14d4126a6 SHA1 5aadf5419ad799168dfd1aa085fac8c3ddff2dfb SHA256 f9a6fac4543c592381ccdc6b6384016c283ab74e15891c67593ff1b6167cee4d -EBUILD pygooglechart-0.3.0.ebuild 1039 RMD160 232ba4c04ffa2f37b8813d82e49696ea22e54300 SHA1 5fdf775756f22ff3d252f62e3c1a9627cf87e4c1 SHA256 f23c6f31852386afd32e711901eeef1cc5d4d75c130135e259bea09e133ba9de -MISC ChangeLog 263 RMD160 32a64676f6f0291eaa4897738f5660d17a528298 SHA1 1e2943af0c12c93d3368d11b49ca6b733c462076 SHA256 f03d667a2cc6ecd8dc119aff974ec16ccf377e250b4de54d0a9c0f284af79a2e -MISC metadata.xml 214 RMD160 efd8175069efb91061298ff4584218b633e44678 SHA1 d372fdbfcb7fd07a4082961d3f3527be4fca1d60 SHA256 c1f09dc7d5313cd2da7b82259c7846ed23144d62b15e59680ada90e2b6b4d154 diff --git a/dev-python/pygooglechart/metadata.xml b/dev-python/pygooglechart/metadata.xml deleted file mode 100644 index cc3fe2494..000000000 --- a/dev-python/pygooglechart/metadata.xml +++ /dev/null @@ -1,7 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer> - <email>maintainer-wanted@gentoo.org</email> - </maintainer> -</pkgmetadata> diff --git a/dev-python/pygooglechart/pygooglechart-0.3.0.ebuild b/dev-python/pygooglechart/pygooglechart-0.3.0.ebuild deleted file mode 100644 index dfcde9ea5..000000000 --- a/dev-python/pygooglechart/pygooglechart-0.3.0.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="3" - -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" - -inherit distutils python - -DESCRIPTION="A complete Python wrapper for the Google Chart API" -HOMEPAGE="http://pygooglechart.slowchop.com/" -SRC_URI="http://pygooglechart.slowchop.com/files/download/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -DEPEND="dev-python/setuptools - test? ( dev-python/PyQrcodec )" -RDEPEND="" - -# Tests currently fail -RESTRICT="test" -PYTHON_MODNAME="${PN}.py" - -src_test() { - # The test scripts import the test.test_base module; need this to get python - # to recognize the test module. - touch test/__init__.py - - testing() { - # python_execute_function will die if this function returns a non-zero - # exit status. - PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test/test_general.py && \ - PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test/test_bugs.py - } - python_execute_function testing -} |