Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-memcached: python-memcached-1.51.ebuild ChangeLog
Date: Tue, 28 May 2013 02:50:41
Message-Id: 20130528025033.E7D6E2171E@flycatcher.gentoo.org
1 patrick 13/05/28 02:50:33
2
3 Modified: ChangeLog
4 Added: python-memcached-1.51.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.26 dev-python/python-memcached/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-memcached/ChangeLog?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-memcached/ChangeLog?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-memcached/ChangeLog?r1=1.25&r2=1.26
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- ChangeLog 22 May 2013 14:26:54 -0000 1.25
24 +++ ChangeLog 28 May 2013 02:50:33 -0000 1.26
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/python-memcached
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v 1.25 2013/05/22 14:26:54 idella4 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v 1.26 2013/05/28 02:50:33 patrick Exp $
30 +
31 +*python-memcached-1.51 (28 May 2013)
32 +
33 + 28 May 2013; Patrick Lauer <patrick@g.o> +python-memcached-1.51.ebuild:
34 + Bump
35
36 *python-memcached-1.48-r1 (22 May 2013)
37
38
39
40
41 1.1 dev-python/python-memcached/python-memcached-1.51.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-memcached/python-memcached-1.51.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-memcached/python-memcached-1.51.ebuild?rev=1.1&content-type=text/plain
45
46 Index: python-memcached-1.51.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/python-memcached-1.51.ebuild,v 1.1 2013/05/28 02:50:33 patrick Exp $
51
52 EAPI="3"
53 PYTHON_DEPEND="2"
54 SUPPORT_PYTHON_ABIS="1"
55 RESTRICT_PYTHON_ABIS="3.*"
56
57 inherit distutils
58
59 DESCRIPTION="Pure python memcached client"
60 HOMEPAGE="http://www.tummy.com/Community/software/python-memcached/ http://pypi.python.org/pypi/python-memcached"
61 SRC_URI="ftp://ftp.tummy.com/pub/python-memcached/old-releases/${P}.tar.gz"
62
63 LICENSE="OSL-2.0"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
66 IUSE="test"
67
68 DEPEND="dev-python/setuptools
69 test? ( net-misc/memcached )"
70 RDEPEND=""
71
72 PYTHON_MODNAME="memcache.py"
73
74 src_test() {
75 cp memcache.py memcache_test.py || die
76 sed -ie "s/11211/11219/" memcache_test.py || die
77 testing() {
78 memcached -u portage -d -p 11219 -l localhost -P "${T}/memcached.pid"
79 PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" memcache_test.py || die
80 kill "$(<"${T}/memcached.pid")"
81 rm "${T}/memcached.pid"
82 }
83 python_execute_function testing
84 }