Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/envoy/
Date: Thu, 28 Sep 2017 12:56:00
Message-Id: 1506603340.f71d450d6f6195702367aa5d509e45f0b21c7554.monsieurp@gentoo
1 commit: f71d450d6f6195702367aa5d509e45f0b21c7554
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 28 12:55:40 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 28 12:55:40 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f71d450d
7
8 dev-python/envoy: EAPI 6 bump.
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.1
11
12 dev-python/envoy/envoy-0.0.3-r1.ebuild | 26 ++++++++++++++++++++++++++
13 1 file changed, 26 insertions(+)
14
15 diff --git a/dev-python/envoy/envoy-0.0.3-r1.ebuild b/dev-python/envoy/envoy-0.0.3-r1.ebuild
16 new file mode 100644
17 index 00000000000..5a7c6b0ccf7
18 --- /dev/null
19 +++ b/dev-python/envoy/envoy-0.0.3-r1.ebuild
20 @@ -0,0 +1,26 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
27 +
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="Simple API for running external processes"
31 +HOMEPAGE="https://github.com/kennethreitz/envoy https://pypi.python.org/pypi/envoy"
32 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
33 +
34 +LICENSE="MIT"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86"
37 +
38 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
39 +
40 +RESTRICT="test"
41 +
42 +python_test() {
43 + # These unit tests fail, see the following issue:
44 + # https://github.com/kennethreitz/envoy/issues/58
45 + "${PYTHON}" test_envoy.py || die
46 +}