Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pipenv/
Date: Thu, 01 Feb 2018 08:47:47
Message-Id: 1517474595.795ff79d5f37f40e31a138c440985f68d640ff35.mgorny@gentoo
1 commit: 795ff79d5f37f40e31a138c440985f68d640ff35
2 Author: Oz N Tiram <oz.tiram <AT> gmail <DOT> com>
3 AuthorDate: Wed Jan 24 19:27:19 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 1 08:43:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795ff79d
7
8 dev-python/pipenv: fix outdated dependency version
9
10 Bug: https://bugs.gentoo.org/645530
11 Closes: https://github.com/gentoo/gentoo/pull/6951
12 Package-Manager: Portage-2.3.19, Repoman-2.3.6
13
14 dev-python/pipenv/pipenv-9.0.0-r1.ebuild | 37 ++++++++++++++++++++++++++++++++
15 1 file changed, 37 insertions(+)
16
17 diff --git a/dev-python/pipenv/pipenv-9.0.0-r1.ebuild b/dev-python/pipenv/pipenv-9.0.0-r1.ebuild
18 new file mode 100644
19 index 00000000000..2d9715d9d7a
20 --- /dev/null
21 +++ b/dev-python/pipenv/pipenv-9.0.0-r1.ebuild
22 @@ -0,0 +1,37 @@
23 +# Copyright 1999-2018 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +
28 +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
29 +
30 +inherit distutils-r1
31 +
32 +DESCRIPTION="Python Development Workflow for Humans"
33 +HOMEPAGE="https://github.com/pypa/pipenv https://pypi.python.org/pypi/pipenv"
34 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
35 +
36 +LICENSE="MIT"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
39 +IUSE="test"
40 +
41 +DEPEND="
42 + >=dev-python/flake8-3.0.0[${PYTHON_USEDEP}]
43 + dev-python/setuptools[${PYTHON_USEDEP}]
44 + >=dev-python/pew-0.1.26[${PYTHON_USEDEP}]
45 + >=dev-python/pip-9.0.1[${PYTHON_USEDEP}]
46 + >dev-python/requests-2.18.0[${PYTHON_USEDEP}]
47 + >=dev-python/urllib3-1.21.1[${PYTHON_USEDEP}]
48 + test? (
49 + dev-python/flake8[${PYTHON_USEDEP}]
50 + dev-python/pytest[${PYTHON_USEDEP}]
51 + )"
52 +
53 +# not completely packed
54 +# requires networking
55 +RESTRICT="test"
56 +
57 +python_test() {
58 + py.test -v -v || die
59 +}