* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2016-12-06 0:43 Sebastien Fabbro
0 siblings, 0 replies; 26+ messages in thread
From: Sebastien Fabbro @ 2016-12-06 0:43 UTC (permalink / raw
To: gentoo-commits
commit: 6559c903eb05bd0bdae2a4d356d0260b4e7f1b36
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 6 00:36:43 2016 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> 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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>sci@gentoo.org</email>
+ <name>Gentoo Science Project</name>
+ </maintainer>
+ <longdescription lang="en">
+ 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.
+ </longdescription>
+ <upstream>
+ <remote-id type="pypi">uncertainties</remote-id>
+ </upstream>
+</pkgmetadata>
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
+}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2017-06-28 18:21 Sebastien Fabbro
0 siblings, 0 replies; 26+ messages in thread
From: Sebastien Fabbro @ 2017-06-28 18:21 UTC (permalink / raw
To: gentoo-commits
commit: 827bcc7308f5cf6896ba6aa3cec001e598bb7cf5
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 28 18:00:14 2017 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Wed Jun 28 18:20:41 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=827bcc73
dev-python/uncertainties: added python-3.6
Package-Manager: Portage-2.3.6, Repoman-2.3.2
dev-python/uncertainties/uncertainties-3.0.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/uncertainties/uncertainties-3.0.1.ebuild b/dev-python/uncertainties/uncertainties-3.0.1.ebuild
index 6fdadf755d9..c50978aff23 100644
--- a/dev-python/uncertainties/uncertainties-3.0.1.ebuild
+++ b/dev-python/uncertainties/uncertainties-3.0.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2019-07-15 15:03 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2019-07-15 15:03 UTC (permalink / raw
To: gentoo-commits
commit: d1199f389e8597e8fa31548ea860822ed1b3ffc4
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 15 15:02:13 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jul 15 15:03:29 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1199f38
dev-python/uncertainties: Fix duplicate keywords
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/uncertainties/uncertainties-3.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/uncertainties/uncertainties-3.0.1.ebuild b/dev-python/uncertainties/uncertainties-3.0.1.ebuild
index e6d408a79b3..afeaffaa863 100644
--- a/dev-python/uncertainties/uncertainties-3.0.1.ebuild
+++ b/dev-python/uncertainties/uncertainties-3.0.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2019-12-28 16:16 David Seifert
0 siblings, 0 replies; 26+ messages in thread
From: David Seifert @ 2019-12-28 16:16 UTC (permalink / raw
To: gentoo-commits
commit: 159d0a4bd8b45e2f60e26590e05a626cf8f7bd8f
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 28 16:16:22 2019 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Dec 28 16:16:22 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=159d0a4b
dev-python/uncertainties: Remove Py2
Package-Manager: Portage-2.3.83, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>
dev-python/uncertainties/uncertainties-3.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/uncertainties/uncertainties-3.0.1.ebuild b/dev-python/uncertainties/uncertainties-3.0.1.ebuild
index d3cb81ec37a..db961f1d769 100644
--- a/dev-python/uncertainties/uncertainties-3.0.1.ebuild
+++ b/dev-python/uncertainties/uncertainties-3.0.1.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{5,6} )
+PYTHON_COMPAT=( python3_{5,6} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2020-06-07 10:45 Pacho Ramos
0 siblings, 0 replies; 26+ messages in thread
From: Pacho Ramos @ 2020-06-07 10:45 UTC (permalink / raw
To: gentoo-commits
commit: 740f9378e01050cabb897fe592e65d911f8d5715
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 7 10:20:06 2020 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jun 7 10:45:22 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=740f9378
dev-python/uncertainties: Bump to 3.1.4
Closes: https://bugs.gentoo.org/657016
Closes: https://bugs.gentoo.org/701646
Closes: https://bugs.gentoo.org/719614
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
dev-python/uncertainties/Manifest | 1 +
.../uncertainties/uncertainties-3.1.4.ebuild | 40 ++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/dev-python/uncertainties/Manifest b/dev-python/uncertainties/Manifest
index d51deff0a09..f86a0b6a3f5 100644
--- a/dev-python/uncertainties/Manifest
+++ b/dev-python/uncertainties/Manifest
@@ -1 +1,2 @@
DIST uncertainties-3.0.1.tar.gz 225752 BLAKE2B 6dc872d5617b8c4e9deda5a5a60492ae1eb0facd7f053f0799b3762831f9bad7da39726811feffa3630091e00dbedf89c296ed4e1b2b1f78399ed45663ea5339 SHA512 d4b2a905665c46224586f5f9702ad9e69580fc5afe8c6c045b04141fdc54e0c402cdee033ee0ee7055823b922bd33c732b3066453876509d45add15abf9d85f5
+DIST uncertainties-3.1.4.tar.gz 148897 BLAKE2B 3e94b61ff6aac42a7910cafebee5b440541a020c58bc2ce402d0a056b5d278205f4a6556bf49073f5ded305cfa73ba7e9095e71d3963fd9b73e2e9e19ec360b5 SHA512 209ebbed1f9cf99e3263f6470b04fc737c6d34d878f7eb1d2a7df7e63d4d42b0460391a08f99d8fe09df8f7f0e1de8a8e6c2cbecaedc7f0373ab06d05fbeb955
diff --git a/dev-python/uncertainties/uncertainties-3.1.4.ebuild b/dev-python/uncertainties/uncertainties-3.1.4.ebuild
new file mode 100644
index 00000000000..f1decac029b
--- /dev/null
+++ b/dev-python/uncertainties/uncertainties-3.1.4.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{6..9} )
+
+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-linux ~x86-linux"
+IUSE="doc"
+
+RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ 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
+}
+
+python_install_all() {
+ use doc && local HTML_DOCS=( build/sphinx/html/. )
+ distutils-r1_python_install_all
+}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2020-07-12 16:57 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2020-07-12 16:57 UTC (permalink / raw
To: gentoo-commits
commit: df0b513322d5a0e121a709684cf3917701918fc7
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 12 16:45:52 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul 12 16:56:10 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df0b5133
dev-python/uncertainties: Remove redundant versions
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/uncertainties/Manifest | 1 -
.../uncertainties/uncertainties-3.0.1.ebuild | 43 ----------------------
2 files changed, 44 deletions(-)
diff --git a/dev-python/uncertainties/Manifest b/dev-python/uncertainties/Manifest
index f86a0b6a3f5..5b1991f6233 100644
--- a/dev-python/uncertainties/Manifest
+++ b/dev-python/uncertainties/Manifest
@@ -1,2 +1 @@
-DIST uncertainties-3.0.1.tar.gz 225752 BLAKE2B 6dc872d5617b8c4e9deda5a5a60492ae1eb0facd7f053f0799b3762831f9bad7da39726811feffa3630091e00dbedf89c296ed4e1b2b1f78399ed45663ea5339 SHA512 d4b2a905665c46224586f5f9702ad9e69580fc5afe8c6c045b04141fdc54e0c402cdee033ee0ee7055823b922bd33c732b3066453876509d45add15abf9d85f5
DIST uncertainties-3.1.4.tar.gz 148897 BLAKE2B 3e94b61ff6aac42a7910cafebee5b440541a020c58bc2ce402d0a056b5d278205f4a6556bf49073f5ded305cfa73ba7e9095e71d3963fd9b73e2e9e19ec360b5 SHA512 209ebbed1f9cf99e3263f6470b04fc737c6d34d878f7eb1d2a7df7e63d4d42b0460391a08f99d8fe09df8f7f0e1de8a8e6c2cbecaedc7f0373ab06d05fbeb955
diff --git a/dev-python/uncertainties/uncertainties-3.0.1.ebuild b/dev-python/uncertainties/uncertainties-3.0.1.ebuild
deleted file mode 100644
index f27c1d6e6cd..00000000000
--- a/dev-python/uncertainties/uncertainties-3.0.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-
-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-linux ~x86-linux"
-IUSE="doc test"
-RESTRICT="!test? ( 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
-}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2020-11-11 21:26 Patrice Clement
0 siblings, 0 replies; 26+ messages in thread
From: Patrice Clement @ 2020-11-11 21:26 UTC (permalink / raw
To: gentoo-commits
commit: 1f569f59422f100a5bd34cae4b85b2b7d8270ecc
Author: Han Mertens <hanmertens <AT> outlook <DOT> com>
AuthorDate: Mon Nov 9 20:17:36 2020 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> 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 <hanmertens <AT> outlook.com>
Closes: https://github.com/gentoo/gentoo/pull/18204
Signed-off-by: Patrice Clement <monsieurp <AT> 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
}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2021-07-12 9:11 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2021-07-12 9:11 UTC (permalink / raw
To: gentoo-commits
commit: 581236b5f97942840d11e1640c9f321779e39aea
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 12 06:26:06 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jul 12 09:11:34 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=581236b5
dev-python/uncertainties: Bump to 3.1.6
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/uncertainties/Manifest | 1 +
.../uncertainties/uncertainties-3.1.6.ebuild | 36 ++++++++++++++++++++++
2 files changed, 37 insertions(+)
diff --git a/dev-python/uncertainties/Manifest b/dev-python/uncertainties/Manifest
index 5b1991f6233..ccfe4295aee 100644
--- a/dev-python/uncertainties/Manifest
+++ b/dev-python/uncertainties/Manifest
@@ -1 +1,2 @@
DIST uncertainties-3.1.4.tar.gz 148897 BLAKE2B 3e94b61ff6aac42a7910cafebee5b440541a020c58bc2ce402d0a056b5d278205f4a6556bf49073f5ded305cfa73ba7e9095e71d3963fd9b73e2e9e19ec360b5 SHA512 209ebbed1f9cf99e3263f6470b04fc737c6d34d878f7eb1d2a7df7e63d4d42b0460391a08f99d8fe09df8f7f0e1de8a8e6c2cbecaedc7f0373ab06d05fbeb955
+DIST uncertainties-3.1.6.tar.gz 158419 BLAKE2B 09582936a9b982efeee6cf3c99de568ebc820940ca2bfa1e4fd10edbcbd9447e7711158f8b98567a506d6c5a9ecf63b6e21d296c7f8d8dcbbaf4c2fb6a571355 SHA512 8835ed851d00bbe830770e57bc89ce57acf291e6cef2fca59897adb75e1e2de456da3631f73242ade20f567358b1d727b2b7f5df02e2f3e0cd8d861e81a6a211
diff --git a/dev-python/uncertainties/uncertainties-3.1.6.ebuild b/dev-python/uncertainties/uncertainties-3.1.6.ebuild
new file mode 100644
index 00000000000..96b4e0d8f98
--- /dev/null
+++ b/dev-python/uncertainties/uncertainties-3.1.6.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..9} )
+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-linux ~x86-linux"
+IUSE="doc"
+
+RDEPEND="
+ dev-python/numpy[${PYTHON_USEDEP}]
+ dev-python/future[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+"
+
+distutils_enable_tests nose
+
+python_compile_all() {
+ use doc && "${PYTHON}" setup.py build_sphinx
+}
+
+python_install_all() {
+ use doc && local HTML_DOCS=( build/sphinx/html/. )
+ distutils-r1_python_install_all
+}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2021-08-25 18:12 Arthur Zamarin
0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2021-08-25 18:12 UTC (permalink / raw
To: gentoo-commits
commit: 8bb6bcb07ac41f300d430441a7cb0998fd3f94dc
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 25 18:08:48 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 25 18:08:48 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bb6bcb0
dev-python/uncertainties: make numpy optional dep
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/uncertainties/uncertainties-3.1.6.ebuild | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/dev-python/uncertainties/uncertainties-3.1.6.ebuild b/dev-python/uncertainties/uncertainties-3.1.6.ebuild
index 79cf80d6291..69090d5bc1f 100644
--- a/dev-python/uncertainties/uncertainties-3.1.6.ebuild
+++ b/dev-python/uncertainties/uncertainties-3.1.6.ebuild
@@ -4,7 +4,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
+inherit distutils-r1 optfeature
DESCRIPTION="Python module for calculations with uncertainties"
HOMEPAGE="https://pythonhosted.org/uncertainties/"
@@ -15,13 +15,10 @@ SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc"
-RDEPEND="
- dev-python/numpy[${PYTHON_USEDEP}]
- dev-python/future[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
+RDEPEND="dev-python/future[${PYTHON_USEDEP}]"
+BDEPEND="${RDEPEND}
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+ test? ( dev-python/numpy[${PYTHON_USEDEP}] )
"
distutils_enable_tests nose
@@ -34,3 +31,7 @@ python_install_all() {
use doc && local HTML_DOCS=( build/sphinx/html/. )
distutils-r1_python_install_all
}
+
+pkg_postinst() {
+ optfeature "numpy support" dev-python/numpy
+}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2021-08-25 18:12 Arthur Zamarin
0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2021-08-25 18:12 UTC (permalink / raw
To: gentoo-commits
commit: fa343bc099d0f401b5a18af32c12caee25a9d787
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 25 18:10:49 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 25 18:10:49 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa343bc0
dev-python/uncertainties: use distutils_enable_sphinx for doc gen
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/uncertainties/uncertainties-3.1.6.ebuild | 12 +-----------
1 file changed, 1 insertion(+), 11 deletions(-)
diff --git a/dev-python/uncertainties/uncertainties-3.1.6.ebuild b/dev-python/uncertainties/uncertainties-3.1.6.ebuild
index 69090d5bc1f..c7a176fb8e2 100644
--- a/dev-python/uncertainties/uncertainties-3.1.6.ebuild
+++ b/dev-python/uncertainties/uncertainties-3.1.6.ebuild
@@ -13,24 +13,14 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc"
RDEPEND="dev-python/future[${PYTHON_USEDEP}]"
BDEPEND="${RDEPEND}
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? ( dev-python/numpy[${PYTHON_USEDEP}] )
"
distutils_enable_tests nose
-
-python_compile_all() {
- use doc && "${PYTHON}" setup.py build_sphinx
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( build/sphinx/html/. )
- distutils-r1_python_install_all
-}
+distutils_enable_sphinx doc --no-autodoc
pkg_postinst() {
optfeature "numpy support" dev-python/numpy
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2021-08-25 18:12 Arthur Zamarin
0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2021-08-25 18:12 UTC (permalink / raw
To: gentoo-commits
commit: a84cd3890eac41549484472bc68759d7287846be
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 25 18:06:24 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 25 18:06:24 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a84cd389
dev-python/uncertainties: enable py3.10
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/uncertainties/uncertainties-3.1.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/uncertainties/uncertainties-3.1.6.ebuild b/dev-python/uncertainties/uncertainties-3.1.6.ebuild
index 96b4e0d8f98..79cf80d6291 100644
--- a/dev-python/uncertainties/uncertainties-3.1.6.ebuild
+++ b/dev-python/uncertainties/uncertainties-3.1.6.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python module for calculations with uncertainties"
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2021-10-17 9:41 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2021-10-17 9:41 UTC (permalink / raw
To: gentoo-commits
commit: c810fddb6901b06b561733596f2712bccad18904
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 17 09:38:44 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Oct 17 09:38:44 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c810fddb
dev-python/uncertainties: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/uncertainties/Manifest | 1 -
.../uncertainties/uncertainties-3.1.4-r1.ebuild | 37 ----------------------
2 files changed, 38 deletions(-)
diff --git a/dev-python/uncertainties/Manifest b/dev-python/uncertainties/Manifest
index ccfe4295aee..e6411d5e901 100644
--- a/dev-python/uncertainties/Manifest
+++ b/dev-python/uncertainties/Manifest
@@ -1,2 +1 @@
-DIST uncertainties-3.1.4.tar.gz 148897 BLAKE2B 3e94b61ff6aac42a7910cafebee5b440541a020c58bc2ce402d0a056b5d278205f4a6556bf49073f5ded305cfa73ba7e9095e71d3963fd9b73e2e9e19ec360b5 SHA512 209ebbed1f9cf99e3263f6470b04fc737c6d34d878f7eb1d2a7df7e63d4d42b0460391a08f99d8fe09df8f7f0e1de8a8e6c2cbecaedc7f0373ab06d05fbeb955
DIST uncertainties-3.1.6.tar.gz 158419 BLAKE2B 09582936a9b982efeee6cf3c99de568ebc820940ca2bfa1e4fd10edbcbd9447e7711158f8b98567a506d6c5a9ecf63b6e21d296c7f8d8dcbbaf4c2fb6a571355 SHA512 8835ed851d00bbe830770e57bc89ce57acf291e6cef2fca59897adb75e1e2de456da3631f73242ade20f567358b1d727b2b7f5df02e2f3e0cd8d861e81a6a211
diff --git a/dev-python/uncertainties/uncertainties-3.1.4-r1.ebuild b/dev-python/uncertainties/uncertainties-3.1.4-r1.ebuild
deleted file mode 100644
index 1efd35b52aa..00000000000
--- a/dev-python/uncertainties/uncertainties-3.1.4-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-
-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-linux ~x86-linux"
-IUSE="doc"
-
-RDEPEND="
- dev-python/numpy[${PYTHON_USEDEP}]
- dev-python/future[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-"
-
-distutils_enable_tests nose
-
-python_compile_all() {
- use doc && "${PYTHON}" setup.py build_sphinx
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( build/sphinx/html/. )
- distutils-r1_python_install_all
-}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2022-06-05 5:53 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2022-06-05 5:53 UTC (permalink / raw
To: gentoo-commits
commit: 15dd042bf01f83ff1881690388c480af055be2f7
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 5 05:51:11 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jun 5 05:51:11 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15dd042b
dev-python/uncertainties: Add python@ as co-maint.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/uncertainties/metadata.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dev-python/uncertainties/metadata.xml b/dev-python/uncertainties/metadata.xml
index b9b57f692bac..7c343d7bf1e7 100644
--- a/dev-python/uncertainties/metadata.xml
+++ b/dev-python/uncertainties/metadata.xml
@@ -5,6 +5,10 @@
<email>sci@gentoo.org</email>
<name>Gentoo Science Project</name>
</maintainer>
+ <maintainer type="project">
+ <email>python@gentoo.org</email>
+ <name>Python</name>
+ </maintainer>
<longdescription lang="en">
uncertainties is a Python module, which allows calculations such as
.
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2022-06-19 18:08 Arthur Zamarin
0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2022-06-19 18:08 UTC (permalink / raw
To: gentoo-commits
commit: 97a666e16a29cd9544c8c2bfd5ecc77d8ba9066b
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 19 17:44:31 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> 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 <arthurzam <AT> 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
+}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2022-10-19 9:16 Andrew Ammerlaan
0 siblings, 0 replies; 26+ messages in thread
From: Andrew Ammerlaan @ 2022-10-19 9:16 UTC (permalink / raw
To: gentoo-commits
commit: b300a9e0c8ac43c8437c4d177bc733862184c3c7
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 19 09:16:06 2022 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Wed Oct 19 09:16:26 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b300a9e0
dev-python/uncertainties: enable py3.11, nose --> pytest
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
dev-python/uncertainties/uncertainties-3.1.7.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/uncertainties/uncertainties-3.1.7.ebuild b/dev-python/uncertainties/uncertainties-3.1.7.ebuild
index 6a0cd2fa7e53..c7f85704f3f1 100644
--- a/dev-python/uncertainties/uncertainties-3.1.7.ebuild
+++ b/dev-python/uncertainties/uncertainties-3.1.7.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1 optfeature
DESCRIPTION="Python module for calculations with uncertainties"
@@ -20,7 +20,7 @@ BDEPEND="${RDEPEND}
test? ( dev-python/numpy[${PYTHON_USEDEP}] )
"
-distutils_enable_tests nose
+distutils_enable_tests pytest
distutils_enable_sphinx doc --no-autodoc
pkg_postinst() {
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2022-11-14 5:07 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2022-11-14 5:07 UTC (permalink / raw
To: gentoo-commits
commit: 197ccdafaa5c4c3de3365c71bde40c49b3ec4421
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 14 05:06:39 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Nov 14 05:06:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=197ccdaf
dev-python/uncertainties: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/uncertainties/Manifest | 1 -
.../uncertainties/uncertainties-3.1.6.ebuild | 27 ----------------------
2 files changed, 28 deletions(-)
diff --git a/dev-python/uncertainties/Manifest b/dev-python/uncertainties/Manifest
index aa347a6caa00..ef3ca04a07c5 100644
--- a/dev-python/uncertainties/Manifest
+++ b/dev-python/uncertainties/Manifest
@@ -1,2 +1 @@
-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.6.ebuild b/dev-python/uncertainties/uncertainties-3.1.6.ebuild
deleted file mode 100644
index c7a176fb8e25..000000000000
--- a/dev-python/uncertainties/uncertainties-3.1.6.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-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
-}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2022-12-31 15:27 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2022-12-31 15:27 UTC (permalink / raw
To: gentoo-commits
commit: 54a84bb9547313f328a053bf9d6b03cd94373040
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 31 15:24:50 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 31 15:27:53 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54a84bb9
dev-python/uncertainties: Add GH remote-id
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/uncertainties/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-python/uncertainties/metadata.xml b/dev-python/uncertainties/metadata.xml
index 7c343d7bf1e7..86cdd1f286cc 100644
--- a/dev-python/uncertainties/metadata.xml
+++ b/dev-python/uncertainties/metadata.xml
@@ -21,6 +21,7 @@
are what is predicted by error propagation theory.
</longdescription>
<upstream>
+ <remote-id type="github">lebigot/uncertainties</remote-id>
<remote-id type="pypi">uncertainties</remote-id>
</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2022-12-31 15:27 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2022-12-31 15:27 UTC (permalink / raw
To: gentoo-commits
commit: 7a29df58c88ed6a7e1e8dbad00d481c3dbe25974
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 31 15:24:11 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 31 15:27:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a29df58
dev-python/uncertainties: Strip the dep on dev-python/future
Closes: https://bugs.gentoo.org/888285
See-Also: https://github.com/lebigot/uncertainties/pull/168a
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
...es-3.1.7.ebuild => uncertainties-3.1.7-r1.ebuild} | 20 ++++++++++++++++----
1 file changed, 16 insertions(+), 4 deletions(-)
diff --git a/dev-python/uncertainties/uncertainties-3.1.7.ebuild b/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
similarity index 60%
rename from dev-python/uncertainties/uncertainties-3.1.7.ebuild
rename to dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
index c7f85704f3f1..93177ac576f4 100644
--- a/dev-python/uncertainties/uncertainties-3.1.7.ebuild
+++ b/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
@@ -5,24 +5,36 @@ EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{8..11} )
+
inherit distutils-r1 optfeature
DESCRIPTION="Python module for calculations with uncertainties"
-HOMEPAGE="https://pythonhosted.org/uncertainties/"
+HOMEPAGE="
+ https://pythonhosted.org/uncertainties/
+ https://github.com/lebigot/uncertainties/
+ https://pypi.org/project/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}] )
+BDEPEND="
+ test? (
+ dev-python/numpy[${PYTHON_USEDEP}]
+ )
"
distutils_enable_tests pytest
distutils_enable_sphinx doc --no-autodoc
+src_prepare() {
+ # not used in py3, see https://github.com/lebigot/uncertainties/pull/168
+ sed -i -e '/future/d' setup.py || die
+ distutils-r1_src_prepare
+}
+
pkg_postinst() {
optfeature "numpy support" dev-python/numpy
}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2023-03-16 4:13 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2023-03-16 4:13 UTC (permalink / raw
To: gentoo-commits
commit: c2f393b18b51173bdd34b7e524cd7bd20aa267e7
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 15 17:49:02 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 04:09:10 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2f393b1
dev-python/uncertainties: Use pypi.eclass
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild b/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
index 9890ec206665..c7d7ca2bd697 100644
--- a/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
+++ b/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..11} )
-inherit distutils-r1 optfeature
+inherit distutils-r1 optfeature pypi
DESCRIPTION="Python module for calculations with uncertainties"
HOMEPAGE="
@@ -14,7 +14,6 @@ HOMEPAGE="
https://github.com/lebigot/uncertainties/
https://pypi.org/project/uncertainties/
"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2023-11-04 18:03 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2023-11-04 18:03 UTC (permalink / raw
To: gentoo-commits
commit: ab8d4ab6a53867585bb1616c74d268d3f397ddef
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 4 15:50:30 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Nov 4 18:03:10 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab8d4ab6
dev-python/uncertainties: Enable py3.12
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild b/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
index c7d7ca2bd697..5c1abc030534 100644
--- a/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
+++ b/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 optfeature pypi
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2024-05-19 11:47 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-05-19 11:47 UTC (permalink / raw
To: gentoo-commits
commit: a8d4590fcb388a294fc275dc23df13db11c3c52f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 08:05:04 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun May 19 11:47:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8d4590f
dev-python/uncertainties: Update homepage
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/uncertainties/metadata.xml | 2 +-
dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/uncertainties/metadata.xml b/dev-python/uncertainties/metadata.xml
index 86cdd1f286cc..4d1857508b13 100644
--- a/dev-python/uncertainties/metadata.xml
+++ b/dev-python/uncertainties/metadata.xml
@@ -21,7 +21,7 @@
are what is predicted by error propagation theory.
</longdescription>
<upstream>
- <remote-id type="github">lebigot/uncertainties</remote-id>
+ <remote-id type="github">lmfit/uncertainties</remote-id>
<remote-id type="pypi">uncertainties</remote-id>
</upstream>
</pkgmetadata>
diff --git a/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild b/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
index 09df84db552d..d959694cae67 100644
--- a/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
+++ b/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
@@ -11,7 +11,7 @@ inherit distutils-r1 optfeature pypi
DESCRIPTION="Python module for calculations with uncertainties"
HOMEPAGE="
https://pythonhosted.org/uncertainties/
- https://github.com/lebigot/uncertainties/
+ https://github.com/lmfit/uncertainties/
https://pypi.org/project/uncertainties/
"
@@ -29,7 +29,7 @@ distutils_enable_tests pytest
distutils_enable_sphinx doc --no-autodoc
src_prepare() {
- # not used in py3, see https://github.com/lebigot/uncertainties/pull/168
+ # not used in py3, see https://github.com/lmfit/uncertainties/pull/168
sed -i -e '/future/d' setup.py || die
# fix tests with numpy-2
# https://github.com/lmfit/uncertainties/pull/225
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2024-05-19 11:47 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-05-19 11:47 UTC (permalink / raw
To: gentoo-commits
commit: a603a7c799137c6bfbf86be7b65dc339e42ad052
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 08:00:20 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun May 19 11:47:14 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a603a7c7
dev-python/uncertainties: Fix tests with numpy-2
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild b/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
index 5c1abc030534..09df84db552d 100644
--- a/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
+++ b/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -31,6 +31,10 @@ distutils_enable_sphinx doc --no-autodoc
src_prepare() {
# not used in py3, see https://github.com/lebigot/uncertainties/pull/168
sed -i -e '/future/d' setup.py || die
+ # fix tests with numpy-2
+ # https://github.com/lmfit/uncertainties/pull/225
+ sed -e "/assert not hasattr(numpy, 'acos')/d" \
+ -i uncertainties/unumpy/test_unumpy.py || die
distutils-r1_src_prepare
}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2024-06-09 3:17 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-06-09 3:17 UTC (permalink / raw
To: gentoo-commits
commit: 4454811a0d6197aec7225081bba5ce90b772a0cd
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 9 03:13:56 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jun 9 03:13:56 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4454811a
dev-python/uncertainties: Bump to 3.2.1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/uncertainties/Manifest | 1 +
.../uncertainties/uncertainties-3.2.1.ebuild | 32 ++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/dev-python/uncertainties/Manifest b/dev-python/uncertainties/Manifest
index ef3ca04a07c5..118b8a16d6e8 100644
--- a/dev-python/uncertainties/Manifest
+++ b/dev-python/uncertainties/Manifest
@@ -1 +1,2 @@
DIST uncertainties-3.1.7.tar.gz 158727 BLAKE2B d68b74d291b1f6c4505a47f6fa19653eade43dc1ccaf78e02bd320df92d8bdaeac1b0808a21dceb046a6e2acd076836728b4014d39ca8da17647582320ce50e8 SHA512 24576415265df22459d83bb28e632195e6760204a6e11523821afe25222ea3e035bf7f10c552ec456bb2cdf42a09e296865f9bf0d13ff44beb88c11ebc479ff9
+DIST uncertainties-3.2.1.tar.gz 143154 BLAKE2B 68a0e840878eed602666f1b315ea575f3ab07ca12555f6153801ffbb54b9b1ae8742e4d87c7cec9ec0ace505c4dd8aeb45d3a010663691db31145a146390c932 SHA512 4b1b1738bed60dddacaa0e7f6d8672e32c8282681c4f2f5222e26798150774a24349fb1a98011ff37dc990ab2dd271a3fff2abbc7a0279d499d08585df1b814f
diff --git a/dev-python/uncertainties/uncertainties-3.2.1.ebuild b/dev-python/uncertainties/uncertainties-3.2.1.ebuild
new file mode 100644
index 000000000000..6d67e5f2f80f
--- /dev/null
+++ b/dev-python/uncertainties/uncertainties-3.2.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 optfeature pypi
+
+DESCRIPTION="Python module for calculations with uncertainties"
+HOMEPAGE="
+ https://pythonhosted.org/uncertainties/
+ https://github.com/lmfit/uncertainties/
+ https://pypi.org/project/uncertainties/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+BDEPEND="
+ test? (
+ dev-python/numpy[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+pkg_postinst() {
+ optfeature "numpy support" dev-python/numpy
+}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2024-06-09 3:17 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-06-09 3:17 UTC (permalink / raw
To: gentoo-commits
commit: f65fa07c3f1954fed7cc827c4307c0afc6c970c0
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 9 03:16:51 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jun 9 03:16:51 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f65fa07c
dev-python/uncertainties: Enable py3.13
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/uncertainties/uncertainties-3.2.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/uncertainties/uncertainties-3.2.1.ebuild b/dev-python/uncertainties/uncertainties-3.2.1.ebuild
index 6d67e5f2f80f..2a213488261f 100644
--- a/dev-python/uncertainties/uncertainties-3.2.1.ebuild
+++ b/dev-python/uncertainties/uncertainties-3.2.1.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1 optfeature pypi
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2024-07-08 4:41 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-07-08 4:41 UTC (permalink / raw
To: gentoo-commits
commit: af601a226b0c1b4753d980fe324801e63bbeb788
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 8 04:16:43 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jul 8 04:41:01 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af601a22
dev-python/uncertainties: Bump to 3.2.2
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/uncertainties/Manifest | 1 +
.../uncertainties/uncertainties-3.2.2.ebuild | 32 ++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/dev-python/uncertainties/Manifest b/dev-python/uncertainties/Manifest
index e17ca605b727..7d8d73d2822b 100644
--- a/dev-python/uncertainties/Manifest
+++ b/dev-python/uncertainties/Manifest
@@ -1 +1,2 @@
DIST uncertainties-3.2.1.tar.gz 143154 BLAKE2B 68a0e840878eed602666f1b315ea575f3ab07ca12555f6153801ffbb54b9b1ae8742e4d87c7cec9ec0ace505c4dd8aeb45d3a010663691db31145a146390c932 SHA512 4b1b1738bed60dddacaa0e7f6d8672e32c8282681c4f2f5222e26798150774a24349fb1a98011ff37dc990ab2dd271a3fff2abbc7a0279d499d08585df1b814f
+DIST uncertainties-3.2.2.tar.gz 143865 BLAKE2B 38f88ba147f2ef43749ddf2735fc26c1804e8acd504db2b8317abe69b37daded70b7e111edae1793dc3000d5bde207fe4156221d17c9284eb0006d3369efb367 SHA512 b78efc09cc572ecd24ead89db4136741429ab9032295c9e9050a79e14662b41c7537580f698e38d4ee1a36ae460ee22a463eeb473806a1f72246ab6868d950a3
diff --git a/dev-python/uncertainties/uncertainties-3.2.2.ebuild b/dev-python/uncertainties/uncertainties-3.2.2.ebuild
new file mode 100644
index 000000000000..2a213488261f
--- /dev/null
+++ b/dev-python/uncertainties/uncertainties-3.2.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 optfeature pypi
+
+DESCRIPTION="Python module for calculations with uncertainties"
+HOMEPAGE="
+ https://pythonhosted.org/uncertainties/
+ https://github.com/lmfit/uncertainties/
+ https://pypi.org/project/uncertainties/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+BDEPEND="
+ test? (
+ dev-python/numpy[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+pkg_postinst() {
+ optfeature "numpy support" dev-python/numpy
+}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/
@ 2024-07-08 4:41 Michał Górny
0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-07-08 4:41 UTC (permalink / raw
To: gentoo-commits
commit: 6a7fd633e3f74a94b540ebec0fbc419bb61a9441
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 8 04:15:54 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jul 8 04:41:00 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a7fd633
dev-python/uncertainties: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/uncertainties/Manifest | 1 -
.../uncertainties/uncertainties-3.1.7-r1.ebuild | 43 ----------------------
2 files changed, 44 deletions(-)
diff --git a/dev-python/uncertainties/Manifest b/dev-python/uncertainties/Manifest
index 118b8a16d6e8..e17ca605b727 100644
--- a/dev-python/uncertainties/Manifest
+++ b/dev-python/uncertainties/Manifest
@@ -1,2 +1 @@
-DIST uncertainties-3.1.7.tar.gz 158727 BLAKE2B d68b74d291b1f6c4505a47f6fa19653eade43dc1ccaf78e02bd320df92d8bdaeac1b0808a21dceb046a6e2acd076836728b4014d39ca8da17647582320ce50e8 SHA512 24576415265df22459d83bb28e632195e6760204a6e11523821afe25222ea3e035bf7f10c552ec456bb2cdf42a09e296865f9bf0d13ff44beb88c11ebc479ff9
DIST uncertainties-3.2.1.tar.gz 143154 BLAKE2B 68a0e840878eed602666f1b315ea575f3ab07ca12555f6153801ffbb54b9b1ae8742e4d87c7cec9ec0ace505c4dd8aeb45d3a010663691db31145a146390c932 SHA512 4b1b1738bed60dddacaa0e7f6d8672e32c8282681c4f2f5222e26798150774a24349fb1a98011ff37dc990ab2dd271a3fff2abbc7a0279d499d08585df1b814f
diff --git a/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild b/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
deleted file mode 100644
index d959694cae67..000000000000
--- a/dev-python/uncertainties/uncertainties-3.1.7-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1 optfeature pypi
-
-DESCRIPTION="Python module for calculations with uncertainties"
-HOMEPAGE="
- https://pythonhosted.org/uncertainties/
- https://github.com/lmfit/uncertainties/
- https://pypi.org/project/uncertainties/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-
-BDEPEND="
- test? (
- dev-python/numpy[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx doc --no-autodoc
-
-src_prepare() {
- # not used in py3, see https://github.com/lmfit/uncertainties/pull/168
- sed -i -e '/future/d' setup.py || die
- # fix tests with numpy-2
- # https://github.com/lmfit/uncertainties/pull/225
- sed -e "/assert not hasattr(numpy, 'acos')/d" \
- -i uncertainties/unumpy/test_unumpy.py || die
- distutils-r1_src_prepare
-}
-
-pkg_postinst() {
- optfeature "numpy support" dev-python/numpy
-}
^ permalink raw reply related [flat|nested] 26+ messages in thread
end of thread, other threads:[~2024-07-08 4:41 UTC | newest]
Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-28 18:21 [gentoo-commits] repo/gentoo:master commit in: dev-python/uncertainties/ Sebastien Fabbro
-- strict thread matches above, loose matches on Subject: below --
2024-07-08 4:41 Michał Górny
2024-07-08 4:41 Michał Górny
2024-06-09 3:17 Michał Górny
2024-06-09 3:17 Michał Górny
2024-05-19 11:47 Michał Górny
2024-05-19 11:47 Michał Górny
2023-11-04 18:03 Michał Górny
2023-03-16 4:13 Michał Górny
2022-12-31 15:27 Michał Górny
2022-12-31 15:27 Michał Górny
2022-11-14 5:07 Michał Górny
2022-10-19 9:16 Andrew Ammerlaan
2022-06-19 18:08 Arthur Zamarin
2022-06-05 5:53 Michał Górny
2021-10-17 9:41 Michał Górny
2021-08-25 18:12 Arthur Zamarin
2021-08-25 18:12 Arthur Zamarin
2021-08-25 18:12 Arthur Zamarin
2021-07-12 9:11 Michał Górny
2020-11-11 21:26 Patrice Clement
2020-07-12 16:57 Michał Górny
2020-06-07 10:45 Pacho Ramos
2019-12-28 16:16 David Seifert
2019-07-15 15:03 Michał Górny
2016-12-06 0:43 Sebastien Fabbro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox