summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-02-01 23:51:34 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-02-01 23:51:34 +0000
commit4d71b92dd222ae6d15c935933eadbe09ca6a650f (patch)
treeaefe1389b6e7b94a929d810ab2f266b6b9af9c02 /dev-python/python-memcached/python-memcached-1.48-r1.ebuild
parentdev-haskell/either: new versions (diff)
downloadhistorical-4d71b92dd222ae6d15c935933eadbe09ca6a650f.tar.gz
historical-4d71b92dd222ae6d15c935933eadbe09ca6a650f.tar.bz2
historical-4d71b92dd222ae6d15c935933eadbe09ca6a650f.zip
Remove old.
Package-Manager: portage-2.2.15/cvs/Linux x86_64
Diffstat (limited to 'dev-python/python-memcached/python-memcached-1.48-r1.ebuild')
-rw-r--r--dev-python/python-memcached/python-memcached-1.48-r1.ebuild35
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-python/python-memcached/python-memcached-1.48-r1.ebuild b/dev-python/python-memcached/python-memcached-1.48-r1.ebuild
deleted file mode 100644
index 84e5fc538929..000000000000
--- a/dev-python/python-memcached/python-memcached-1.48-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2014 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.48-r1.ebuild,v 1.3 2014/03/31 20:48:53 mgorny Exp $
-
-EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7} pypy pypy2_0 )
-
-inherit distutils-r1
-
-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"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
-IUSE="test"
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( net-misc/memcached )"
-RDEPEND=""
-
-MULTIBUILD_JOBS="1"
-
-python_test() {
- pushd "${BUILD_DIR}/lib" > /dev/null
- cp memcache.py memcache_test.py || die
- sed -ie "s/11211/11219/" memcache_test.py || die
- memcached -u portage -d -p 11219 -l localhost -P "${T}/memcached.pid"
- "${PYTHON}" memcache_test.py || die
- kill "$(<"${T}/memcached.pid")"
- rm "${T}/memcached.pid"
- rm memcache_test.py*
- popd > /dev/null
-}