Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/envoy: envoy-0.0.2-r1.ebuild ChangeLog
Date: Wed, 05 Jun 2013 19:18:39
Message-Id: 20130605191834.558EE2171E@flycatcher.gentoo.org
1 idella4 13/06/05 19:18:34
2
3 Modified: ChangeLog
4 Added: envoy-0.0.2-r1.ebuild
5 Log:
6 revbump, migrate -> distutils-r1
7
8 (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.3 dev-python/envoy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/envoy/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/envoy/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/envoy/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/envoy/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 15 Jan 2012 19:14:25 -0000 1.2
24 +++ ChangeLog 5 Jun 2013 19:18:34 -0000 1.3
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/envoy
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/envoy/ChangeLog,v 1.2 2012/01/15 19:14:25 tove Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/envoy/ChangeLog,v 1.3 2013/06/05 19:18:34 idella4 Exp $
31 +
32 +*envoy-0.0.2-r1 (05 Jun 2013)
33 +
34 + 05 Jun 2013; Ian Delaney <idella4@g.o> +envoy-0.0.2-r1.ebuild,
35 + +files/test_envoy.py:
36 + revbump, migrate -> distutils-r1
37
38 15 Jan 2012; Torsten Veller <tove@g.o> envoy-0.0.2.ebuild:
39 Fix cvs keyword in the header (#398773)
40 @@ -10,4 +16,3 @@
41 30 Dec 2011; Patrick Lauer <patrick@g.o> +envoy-0.0.2.ebuild,
42 +metadata.xml:
43 Initial import for #396287, ebuild by jbergstroem
44 -
45
46
47
48 1.1 dev-python/envoy/envoy-0.0.2-r1.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/envoy/envoy-0.0.2-r1.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/envoy/envoy-0.0.2-r1.ebuild?rev=1.1&content-type=text/plain
52
53 Index: envoy-0.0.2-r1.ebuild
54 ===================================================================
55 # Copyright 1999-2013 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/dev-python/envoy/envoy-0.0.2-r1.ebuild,v 1.1 2013/06/05 19:18:34 idella4 Exp $
58
59 EAPI=5
60 PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy2_0 )
61
62 inherit distutils-r1
63
64 DESCRIPTION="Simple API for running external processes"
65 HOMEPAGE="https://github.com/kennethreitz/envoy http://pypi.python.org/pypi/envoy"
66 SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
67
68 LICENSE="MIT"
69 SLOT="0"
70 KEYWORDS="~x86 ~amd64"
71 IUSE=""
72
73 DEPEND="dev-python/setuptools"
74 RDEPEND=""
75
76 # Upstream forgot test_envoy.py in manifest. https://github.com/kennethreitz/envoy/pull/11
77 # that was a year ago
78 python_prepare_all() {
79 cp -r "${FILESDIR}"/test_envoy.py . || die
80 distutils-r1_python_prepare_all
81 }
82
83 python_test() {
84 # and it fails almost all;https://github.com/kennethreitz/envoy/issues/58
85 "${PYTHON}" test_envoy.py
86 }