diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-02-01 21:48:28 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-02-01 21:48:28 +0000 |
commit | a9f78bf055a21db4daddbc258d7641d075e02009 (patch) | |
tree | c9ca8f26c2d06ace5e14cac2c4996c228877d3fd /dev-python/pyalsaaudio/pyalsaaudio-0.7.ebuild | |
parent | Version bump. (diff) | |
download | historical-a9f78bf055a21db4daddbc258d7641d075e02009.tar.gz historical-a9f78bf055a21db4daddbc258d7641d075e02009.tar.bz2 historical-a9f78bf055a21db4daddbc258d7641d075e02009.zip |
Remove old.
Package-Manager: portage-2.2.15/cvs/Linux x86_64
Diffstat (limited to 'dev-python/pyalsaaudio/pyalsaaudio-0.7.ebuild')
-rw-r--r-- | dev-python/pyalsaaudio/pyalsaaudio-0.7.ebuild | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/dev-python/pyalsaaudio/pyalsaaudio-0.7.ebuild b/dev-python/pyalsaaudio/pyalsaaudio-0.7.ebuild deleted file mode 100644 index 16d9e5e5335a..000000000000 --- a/dev-python/pyalsaaudio/pyalsaaudio-0.7.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyalsaaudio/pyalsaaudio-0.7.ebuild,v 1.6 2013/04/05 17:37:33 ago Exp $ - -EAPI="3" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="*-jython" - -inherit distutils - -DESCRIPTION="A Python wrapper for the ALSA API" -HOMEPAGE="http://www.sourceforge.net/projects/pyalsaaudio http://pypi.python.org/pypi/pyalsaaudio" -SRC_URI="mirror://sourceforge/pyalsaaudio/${P}.tar.gz mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="PSF-2" -SLOT="0" -KEYWORDS="amd64 arm ppc ~sparc x86" -IUSE="doc" - -RDEPEND="media-libs/alsa-lib" -DEPEND="${RDEPEND} - doc? ( >=dev-python/sphinx-0.6 )" -RESTRICT="test" - -DOCS="CHANGES README" - -src_compile() { - distutils_src_compile - - if use doc; then - cd doc - emake html || die "emake html failed" - fi -} - -src_test() { - testing() { - PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib.*)" "$(PYTHON)" test.py -v - } - python_execute_function testing -} - -src_install() { - distutils_src_install - - if use doc; then - dohtml -r doc/html/ - fi - - insinto /usr/share/doc/${PF}/examples - doins *test.py -} |