diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-07-14 17:59:26 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-07-14 17:59:26 +0000 |
commit | e5309d0ce4f8f314eae90ade2afe658eb772537f (patch) | |
tree | 8720af5d406cf7c1beb5853ee3c4305147d2fd1d /dev-python | |
parent | Set SUPPORT_PYTHON_ABIS. (diff) | |
download | gentoo-2-e5309d0ce4f8f314eae90ade2afe658eb772537f.tar.gz gentoo-2-e5309d0ce4f8f314eae90ade2afe658eb772537f.tar.bz2 gentoo-2-e5309d0ce4f8f314eae90ade2afe658eb772537f.zip |
Set SUPPORT_PYTHON_ABIS.
(Portage version: HEAD/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/pyaudio/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/pyaudio/pyaudio-0.2.3.ebuild | 19 |
2 files changed, 17 insertions, 8 deletions
diff --git a/dev-python/pyaudio/ChangeLog b/dev-python/pyaudio/ChangeLog index 8be1e1d9047e..326cb5c73e11 100644 --- a/dev-python/pyaudio/ChangeLog +++ b/dev-python/pyaudio/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/pyaudio # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyaudio/ChangeLog,v 1.3 2010/06/02 11:16:03 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyaudio/ChangeLog,v 1.4 2010/07/14 17:59:26 arfrever Exp $ + + 14 Jul 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + pyaudio-0.2.3.ebuild: + Set SUPPORT_PYTHON_ABIS. 02 Jun 2010; Dirkjan Ochtman <djc@gentoo.org> metadata.xml: python team takes over maintainership. diff --git a/dev-python/pyaudio/pyaudio-0.2.3.ebuild b/dev-python/pyaudio/pyaudio-0.2.3.ebuild index 540933fd7b64..80c0c5fbbdc1 100644 --- a/dev-python/pyaudio/pyaudio-0.2.3.ebuild +++ b/dev-python/pyaudio/pyaudio-0.2.3.ebuild @@ -1,19 +1,24 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyaudio/pyaudio-0.2.3.ebuild,v 1.1 2009/01/21 21:17:24 hncaldwell Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyaudio/pyaudio-0.2.3.ebuild,v 1.2 2010/07/14 17:59:26 arfrever Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" + +inherit distutils DESCRIPTION="Python bindings for PortAudio" HOMEPAGE="http://people.csail.mit.edu/hubert/pyaudio/" SRC_URI="http://people.csail.mit.edu/hubert/pyaudio/packages/${P}.tar.gz" + LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND="dev-lang/python - media-libs/portaudio" +DEPEND="media-libs/portaudio" RDEPEND="${DEPEND}" -src_install() { - python setup.py install --root="${D}" || die -} +PYTHON_MODNAME="pyaudio.py" |