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 3C529139084 for ; Sat, 2 Dec 2017 17:27:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F50AE0C5C; Sat, 2 Dec 2017 17:27:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 1D734E0C5C for ; Sat, 2 Dec 2017 17:27:47 +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 EB73033BF43 for ; Sat, 2 Dec 2017 17:27:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61FF1AE65 for ; Sat, 2 Dec 2017 17:27:45 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1512235651.0e9a0c555b4ec37f78c77a3ebcf9c1e106a04ed2.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pipenv/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pipenv/Manifest dev-python/pipenv/metadata.xml dev-python/pipenv/pipenv-8.3.2.ebuild X-VCS-Directories: dev-python/pipenv/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 0e9a0c555b4ec37f78c77a3ebcf9c1e106a04ed2 X-VCS-Branch: master Date: Sat, 2 Dec 2017 17:27:45 +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: cb1ed525-8c30-4663-b6ff-5ebbf625e58c X-Archives-Hash: 528a00210ac64dacff43a62a28e5b907 commit: 0e9a0c555b4ec37f78c77a3ebcf9c1e106a04ed2 Author: Justin Lecher gentoo org> AuthorDate: Sat Dec 2 17:27:20 2017 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Dec 2 17:27:31 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e9a0c55 dev-python/pipenv: New package Signed-off-by: Justin Lecher gentoo.org> Package-Manager: Portage-2.3.16, Repoman-2.3.6 dev-python/pipenv/Manifest | 1 + dev-python/pipenv/metadata.xml | 15 +++++++++++++++ dev-python/pipenv/pipenv-8.3.2.ebuild | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+) diff --git a/dev-python/pipenv/Manifest b/dev-python/pipenv/Manifest new file mode 100644 index 00000000000..632a9e12b30 --- /dev/null +++ b/dev-python/pipenv/Manifest @@ -0,0 +1 @@ +DIST pipenv-8.3.2.tar.gz 3843733 BLAKE2B 81e154b65a0024eb2587c70adc37e5419c112f737c58f4ae53fa1249092a52a6ee762784e4691a3a847026a955a9bbd2df4ccf949694da74db18915609c667c9 SHA512 bd2d1cf4a7a171fe94147064baf5dc73b7a7cce81d13078f214d4cc586541f241a8d174b99ed2009fca5607c46c42dd9839aa172848af63f708d922ca88c3138 diff --git a/dev-python/pipenv/metadata.xml b/dev-python/pipenv/metadata.xml new file mode 100644 index 00000000000..b87f6d34740 --- /dev/null +++ b/dev-python/pipenv/metadata.xml @@ -0,0 +1,15 @@ + + + + + python@gentoo.org + Python + + + pipenv + + me@kennethreitz.org + Kenneth Reitz + + + diff --git a/dev-python/pipenv/pipenv-8.3.2.ebuild b/dev-python/pipenv/pipenv-8.3.2.ebuild new file mode 100644 index 00000000000..dd7ad3f7639 --- /dev/null +++ b/dev-python/pipenv/pipenv-8.3.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_{3,4,5}} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Python Development Workflow for Humans." +HOMEPAGE="https://github.com/kennethreitz/pipenv https://pypi.python.org/pypi/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="" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/flake8[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +# not completely packed +# requires networking +RESTRICT="test" + +python_test() { + py.test -v -v || die +}