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 69CF813835A for ; Wed, 11 Nov 2020 21:27:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 506BEE0B83; Wed, 11 Nov 2020 21:27:03 +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 38D77E0B83 for ; Wed, 11 Nov 2020 21:27:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 11D9D340688 for ; Wed, 11 Nov 2020 21:27:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53A6D445 for ; Wed, 11 Nov 2020 21:26:59 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1605130000.1f569f59422f100a5bd34cae4b85b2b7d8270ecc.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/uncertainties/uncertainties-3.1.4-r1.ebuild dev-python/uncertainties/uncertainties-3.1.4.ebuild X-VCS-Directories: dev-python/uncertainties/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 1f569f59422f100a5bd34cae4b85b2b7d8270ecc X-VCS-Branch: master Date: Wed, 11 Nov 2020 21:26:59 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ad8f7273-5f6d-4157-a69a-fcf486fab41f X-Archives-Hash: 55eaa664aa5689255067638f3b478047 commit: 1f569f59422f100a5bd34cae4b85b2b7d8270ecc Author: Han Mertens outlook com> AuthorDate: Mon Nov 9 20:17:36 2020 +0000 Commit: Patrice Clement gentoo org> CommitDate: Wed Nov 11 21:26:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f569f59 dev-python/uncertainties: add dev-pytohn/future as dependency. Closes: https://bugs.gentoo.org/732832 Signed-off-by: Han Mertens outlook.com> Closes: https://github.com/gentoo/gentoo/pull/18204 Signed-off-by: Patrice Clement gentoo.org> ...nties-3.1.4.ebuild => uncertainties-3.1.4-r1.ebuild} | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/dev-python/uncertainties/uncertainties-3.1.4.ebuild b/dev-python/uncertainties/uncertainties-3.1.4-r1.ebuild similarity index 75% rename from dev-python/uncertainties/uncertainties-3.1.4.ebuild rename to dev-python/uncertainties/uncertainties-3.1.4-r1.ebuild index f1decac029b..0aff696ff8d 100644 --- a/dev-python/uncertainties/uncertainties-3.1.4.ebuild +++ b/dev-python/uncertainties/uncertainties-3.1.4-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 PYTHON_COMPAT=( python3_{6..9} ) @@ -16,20 +16,17 @@ SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="doc" -RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] +RDEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/future[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND}" +BDEPEND=" doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) " distutils_enable_tests nose -ppython_compile_all() { - if use doc; then - PYTHONPATH="${BUILD_DIR}"/lib esetup.py build_sphinx - fi -} - python_compile_all() { use doc && "${PYTHON}" setup.py build_sphinx }