From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 16F82138334 for ; Mon, 6 Aug 2018 19:41:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEDC6E07FA; Mon, 6 Aug 2018 19:41:26 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 92EA7E07FA for ; Mon, 6 Aug 2018 19:41:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B85DC335C29 for ; Mon, 6 Aug 2018 19:41:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4DBD3395 for ; Mon, 6 Aug 2018 19:41:22 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1533584411.6b3f223cb088e6ff683c80bfba690f2be5322844.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pipenv/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pipenv/pipenv-9.0.0-r2.ebuild X-VCS-Directories: dev-python/pipenv/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: 6b3f223cb088e6ff683c80bfba690f2be5322844 X-VCS-Branch: master Date: Mon, 6 Aug 2018 19:41:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: be5db8f3-a19d-45c9-bf91-9147101dd9a2 X-Archives-Hash: 5e4db86b4c39c8bbf871274af7f3659c commit: 6b3f223cb088e6ff683c80bfba690f2be5322844 Author: Patrick Lauer gentoo org> AuthorDate: Mon Aug 6 19:39:57 2018 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Mon Aug 6 19:40:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b3f223c dev-python/pipenv: Add missing py2 dependencies Package-Manager: Portage-2.3.44, Repoman-2.3.10 dev-python/pipenv/pipenv-9.0.0-r2.ebuild | 40 ++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/dev-python/pipenv/pipenv-9.0.0-r2.ebuild b/dev-python/pipenv/pipenv-9.0.0-r2.ebuild new file mode 100644 index 00000000000..73a98b4733a --- /dev/null +++ b/dev-python/pipenv/pipenv-9.0.0-r2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) + +inherit distutils-r1 + +DESCRIPTION="Python Development Workflow for Humans" +HOMEPAGE="https://github.com/pypa/pipenv https://pypi.org/project/pipenv/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=" + >=dev-python/flake8-3.0.0[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/pew-0.1.26[${PYTHON_USEDEP}] + >=dev-python/pip-9.0.1[${PYTHON_USEDEP}] + >dev-python/requests-2.18.0[${PYTHON_USEDEP}] + >=dev-python/urllib3-1.21.1[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/pathlib[${PYTHON_USEDEP}]' 'python2_7') + $(python_gen_cond_dep 'dev-python/backports-shutil_get_terminal_size[${PYTHON_USEDEP}]' 'python2_7') + " +DEPEND="${RDEPEND} + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + )" + +# not completely packed +# requires networking +RESTRICT="test" + +python_test() { + py.test -v -v || die +}