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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2E667158092 for ; Sun, 19 Jun 2022 18:08:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71C4DE0908; Sun, 19 Jun 2022 18:08:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4FF26E0916 for ; Sun, 19 Jun 2022 18:08:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 61280341555 for ; Sun, 19 Jun 2022 18:08:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 14DF850B for ; Sun, 19 Jun 2022 18:08:47 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1655662118.97a666e16a29cd9544c8c2bfd5ecc77d8ba9066b.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/uncertainties/Manifest dev-python/uncertainties/uncertainties-3.1.7.ebuild X-VCS-Directories: dev-python/uncertainties/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 97a666e16a29cd9544c8c2bfd5ecc77d8ba9066b X-VCS-Branch: master Date: Sun, 19 Jun 2022 18:08:47 +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: cdb07112-1e4b-4790-bea2-123c23c47942 X-Archives-Hash: 0284fa6b3e7b264a9a39bf0b63c2c6a1 commit: 97a666e16a29cd9544c8c2bfd5ecc77d8ba9066b Author: Arthur Zamarin gentoo org> AuthorDate: Sun Jun 19 17:44:31 2022 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sun Jun 19 18:08:38 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97a666e1 dev-python/uncertainties: add 3.1.7 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/uncertainties/Manifest | 1 + .../uncertainties/uncertainties-3.1.7.ebuild | 28 ++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-python/uncertainties/Manifest b/dev-python/uncertainties/Manifest index e6411d5e9018..aa347a6caa00 100644 --- a/dev-python/uncertainties/Manifest +++ b/dev-python/uncertainties/Manifest @@ -1 +1,2 @@ DIST uncertainties-3.1.6.tar.gz 158419 BLAKE2B 09582936a9b982efeee6cf3c99de568ebc820940ca2bfa1e4fd10edbcbd9447e7711158f8b98567a506d6c5a9ecf63b6e21d296c7f8d8dcbbaf4c2fb6a571355 SHA512 8835ed851d00bbe830770e57bc89ce57acf291e6cef2fca59897adb75e1e2de456da3631f73242ade20f567358b1d727b2b7f5df02e2f3e0cd8d861e81a6a211 +DIST uncertainties-3.1.7.tar.gz 158727 BLAKE2B d68b74d291b1f6c4505a47f6fa19653eade43dc1ccaf78e02bd320df92d8bdaeac1b0808a21dceb046a6e2acd076836728b4014d39ca8da17647582320ce50e8 SHA512 24576415265df22459d83bb28e632195e6760204a6e11523821afe25222ea3e035bf7f10c552ec456bb2cdf42a09e296865f9bf0d13ff44beb88c11ebc479ff9 diff --git a/dev-python/uncertainties/uncertainties-3.1.7.ebuild b/dev-python/uncertainties/uncertainties-3.1.7.ebuild new file mode 100644 index 000000000000..6a0cd2fa7e53 --- /dev/null +++ b/dev-python/uncertainties/uncertainties-3.1.7.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 optfeature + +DESCRIPTION="Python module for calculations with uncertainties" +HOMEPAGE="https://pythonhosted.org/uncertainties/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND="dev-python/future[${PYTHON_USEDEP}]" +BDEPEND="${RDEPEND} + test? ( dev-python/numpy[${PYTHON_USEDEP}] ) +" + +distutils_enable_tests nose +distutils_enable_sphinx doc --no-autodoc + +pkg_postinst() { + optfeature "numpy support" dev-python/numpy +}