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 9373A1395E4 for ; Tue, 6 Dec 2016 00:43:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 665F421C054; Tue, 6 Dec 2016 00:43:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2828A21C054 for ; Tue, 6 Dec 2016 00:43:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D73F3341142 for ; Tue, 6 Dec 2016 00:43:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0CE8D24BB for ; Tue, 6 Dec 2016 00:43:20 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <1480984868.6559c903eb05bd0bdae2a4d356d0260b4e7f1b36.bicatali@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/metadata.xml dev-python/uncertainties/uncertainties-3.0.1.ebuild X-VCS-Directories: dev-python/uncertainties/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: 6559c903eb05bd0bdae2a4d356d0260b4e7f1b36 X-VCS-Branch: master Date: Tue, 6 Dec 2016 00:43:20 +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: 9aef9690-aa6b-416b-b41b-56fa10eecf7b X-Archives-Hash: 67983330e4f4baaa6b4c5ebd1d4a9c97 commit: 6559c903eb05bd0bdae2a4d356d0260b4e7f1b36 Author: Sébastien Fabbro gentoo org> AuthorDate: Tue Dec 6 00:36:43 2016 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Tue Dec 6 00:41:08 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6559c903 dev-python/uncertainties: initial import Package-Manager: portage-2.3.3 dev-python/uncertainties/Manifest | 1 + dev-python/uncertainties/metadata.xml | 22 +++++++++++ .../uncertainties/uncertainties-3.0.1.ebuild | 43 ++++++++++++++++++++++ 3 files changed, 66 insertions(+) diff --git a/dev-python/uncertainties/Manifest b/dev-python/uncertainties/Manifest new file mode 100644 index 00000000..bcf447c --- /dev/null +++ b/dev-python/uncertainties/Manifest @@ -0,0 +1 @@ +DIST uncertainties-3.0.1.tar.gz 225752 SHA256 de0765cac6911e5afa93ee941063a07b4a98dbd9c314c5eea4ab14bfff0054a4 SHA512 d4b2a905665c46224586f5f9702ad9e69580fc5afe8c6c045b04141fdc54e0c402cdee033ee0ee7055823b922bd33c732b3066453876509d45add15abf9d85f5 WHIRLPOOL f203fc2fdae59775dcb57db81ffb3ff02befd50676251c218934fa15f7c7df047d97282d90ac5f9f658d040b173e2aad8fed5130c8158c39fadd7d13b80036df diff --git a/dev-python/uncertainties/metadata.xml b/dev-python/uncertainties/metadata.xml new file mode 100644 index 00000000..a24d721 --- /dev/null +++ b/dev-python/uncertainties/metadata.xml @@ -0,0 +1,22 @@ + + + + + sci@gentoo.org + Gentoo Science Project + + + uncertainties is a Python module, which allows calculations such as + . + (0.2 +/- 0.01) * 2 = 0.4 +/- 0.02 + . + to be performed transparently; much more complex mathematical expressions + involving numbers with uncertainties can also be evaluated transparently. + Correlations between expressions are correctly taken into account; x-x is + thus exactly zero, for instance. The uncertainties produced by this module + are what is predicted by error propagation theory. + + + uncertainties + + diff --git a/dev-python/uncertainties/uncertainties-3.0.1.ebuild b/dev-python/uncertainties/uncertainties-3.0.1.ebuild new file mode 100644 index 00000000..3ef0de8 --- /dev/null +++ b/dev-python/uncertainties/uncertainties-3.0.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5} ) + +inherit distutils-r1 + +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 ~amd64-linux ~x86-linux" +IUSE="doc test" + +RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +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 +} + +python_test() { + esetup.py nosetests -sv || die +} + +python_install_all() { + use doc && local HTML_DOCS=( build/sphinx/html/. ) + distutils-r1_python_install_all +}