diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-07-06 19:33:00 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-07-06 19:33:00 +0000 |
commit | 9d8034cf710107c307c24221c0e85fea89936ccc (patch) | |
tree | 718860b077a7fbeea1f795bd712c67819d169a38 /dev-python/python-memcached/python-memcached-1.44.ebuild | |
parent | ppc64 stable wrt #319725 (diff) | |
download | gentoo-2-9d8034cf710107c307c24221c0e85fea89936ccc.tar.gz gentoo-2-9d8034cf710107c307c24221c0e85fea89936ccc.tar.bz2 gentoo-2-9d8034cf710107c307c24221c0e85fea89936ccc.zip |
Use PYTHON_DEPEND instead of NEED_PYTHON.
(Portage version: HEAD/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/python-memcached/python-memcached-1.44.ebuild')
-rw-r--r-- | dev-python/python-memcached/python-memcached-1.44.ebuild | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/dev-python/python-memcached/python-memcached-1.44.ebuild b/dev-python/python-memcached/python-memcached-1.44.ebuild index 8b95dc361b85..5fffb7397060 100644 --- a/dev-python/python-memcached/python-memcached-1.44.ebuild +++ b/dev-python/python-memcached/python-memcached-1.44.ebuild @@ -1,15 +1,16 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/python-memcached-1.44.ebuild,v 1.6 2010/03/26 02:48:00 sping Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/python-memcached-1.44.ebuild,v 1.7 2010/07/06 19:33:00 arfrever Exp $ -NEED_PYTHON="2.4" +EAPI="3" +PYTHON_DEPEND="2" SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" inherit distutils -DESCRIPTION="A Python based API (implemented in 100% python) for -communicating with the memcached distributed memory object cache daemon." -HOMEPAGE="http://www.tummy.com/Community/software/python-memcached/" +DESCRIPTION="Pure python memcached client" +HOMEPAGE="http://www.tummy.com/Community/software/python-memcached/ http://pypi.python.org/pypi/python-memcached" SRC_URI="ftp://ftp.tummy.com/pub/python-memcached/old-releases/${P}.tar.gz" LICENSE="OSL-2.0" @@ -20,8 +21,4 @@ IUSE="" DEPEND="dev-python/setuptools" RDEPEND="" -RESTRICT_PYTHON_ABIS="3*" - -pkg_postinst() { - python_mod_optimize memcache.py -} +PYTHON_MODNAME="memcache.py" |