summaryrefslogtreecommitdiff
path: root/dev-python/uncertainties
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /dev-python/uncertainties
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'dev-python/uncertainties')
-rw-r--r--dev-python/uncertainties/Manifest2
-rw-r--r--dev-python/uncertainties/metadata.xml24
-rw-r--r--dev-python/uncertainties/uncertainties-3.2.4.ebuild34
3 files changed, 0 insertions, 60 deletions
diff --git a/dev-python/uncertainties/Manifest b/dev-python/uncertainties/Manifest
deleted file mode 100644
index 8e12dbce8cc9..000000000000
--- a/dev-python/uncertainties/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST uncertainties-3.2.4.tar.gz 162075 BLAKE2B 62d82e1757673c9af7d09e8eb2af054416563420bc2e36ed774810f7b535502feaf62b8bc768031a614c1a2fdd0d9dbdc93decf586fb3663d4bc578febaf72e8 SHA512 6653b687393b0fc4b779c0dafd6d3115ee57e1f77f3a7d4351e0e790f1faf42dbf0298f72572123e624a590e75fa6c98c2a0de2d869353884273666f6ed61aa4
-DIST uncertainties-3.2.4.tar.gz.provenance 9456 BLAKE2B 1f2a240feca55bf40f48d78dd403939af630ef13adf2a06d2817a52b54f60193f755cbffea884e9bb5c8f19a7198623afaf96185542303b919972a42c62a7d4a SHA512 b0c9e17afc9e59048818c8c55a230862c26581a75e41d22c97641cc456cc510d7193ff3c6e267b90b3c2141d87c1f751cc3f654527403977d148ad1b67fd7b51
diff --git a/dev-python/uncertainties/metadata.xml b/dev-python/uncertainties/metadata.xml
deleted file mode 100644
index 8e7412a9f1ab..000000000000
--- a/dev-python/uncertainties/metadata.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <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
- .
- (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>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/dev-python/uncertainties/uncertainties-3.2.4.ebuild b/dev-python/uncertainties/uncertainties-3.2.4.ebuild
deleted file mode 100644
index ff561b914c28..000000000000
--- a/dev-python/uncertainties/uncertainties-3.2.4.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_VERIFY_REPO=https://github.com/lmfit/uncertainties
-PYTHON_COMPAT=( python3_{13..14} )
-
-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"
-
-BDEPEND="
- test? (
- dev-python/numpy[${PYTHON_USEDEP}]
- )
-"
-
-EPYTEST_PLUGINS=()
-distutils_enable_tests pytest
-
-pkg_postinst() {
- optfeature "numpy support" dev-python/numpy
-}