summaryrefslogtreecommitdiff
path: root/dev-python/contourpy
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-09-12 03:04:40 -0500
committerroot <root@alpha.trunkmasters.com>2026-09-12 03:04:40 -0500
commit9f2ba2858a177b1c2335b5b46428ee7cec08c288 (patch)
tree5d011733f0f36bb21431d32301b97936074fdbc6 /dev-python/contourpy
parentae5ea37cbb0424d6e3e6c1e1d282946e201225e6 (diff)
downloadbaldeagleos-repo-9f2ba2858a177b1c2335b5b46428ee7cec08c288.tar.gz
baldeagleos-repo-9f2ba2858a177b1c2335b5b46428ee7cec08c288.tar.xz
baldeagleos-repo-9f2ba2858a177b1c2335b5b46428ee7cec08c288.zip
Adding metadata
Diffstat (limited to 'dev-python/contourpy')
-rw-r--r--dev-python/contourpy/Manifest1
-rw-r--r--dev-python/contourpy/contourpy-1.4.0.ebuild49
2 files changed, 50 insertions, 0 deletions
diff --git a/dev-python/contourpy/Manifest b/dev-python/contourpy/Manifest
index 245f090c36bd..b2903ff4cc35 100644
--- a/dev-python/contourpy/Manifest
+++ b/dev-python/contourpy/Manifest
@@ -1 +1,2 @@
DIST contourpy-1.3.3.gh.tar.gz 13447399 BLAKE2B 3739abeb637fc17d3ab87d419b6f2a48bf3c0faca0581884c8abcb2078383b26cea104a058d3bf0505bd3111893a1e14c3a90c27e873838711f36c21615a7c78 SHA512 b920fc30189075cb29d6af346d0b7c9038b46b03c561388652eaf0d9647cb5246894903742c230b99fe5e3e62c6a60fcb634a24c31da6930819acd2eefb5f631
+DIST contourpy-1.4.0.gh.tar.gz 13308045 BLAKE2B 4d9000bd10e6e504213ccada31177635d9d6d5b9a494c3af4c1849c790715a102b423a39cf4fc7ee01eb557203621895ed3ad39182e04d2e096b405241658611 SHA512 e48dcc49b452d6ec2a0805938fadb0a1a778ddd3f4909c5e81b2f378fbdfd67d08bff03e8441a57a74dfe8f5c2aaec5e4efa1bccf368eb0d3094adb4a152ac98
diff --git a/dev-python/contourpy/contourpy-1.4.0.ebuild b/dev-python/contourpy/contourpy-1.4.0.ebuild
new file mode 100644
index 000000000000..61a902d0967d
--- /dev/null
+++ b/dev-python/contourpy/contourpy-1.4.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2022-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=meson-python
+PYTHON_COMPAT=( python3_{13..14} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for calculating contours in 2D quadrilateral grids"
+HOMEPAGE="
+ https://pypi.org/project/contourpy/
+ https://github.com/contourpy/contourpy/
+"
+SRC_URI="
+ https://github.com/contourpy/contourpy/archive/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+
+RDEPEND="
+ >=dev-python/numpy-1.25[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ >=dev-python/pybind11-2.13.4[${PYTHON_USEDEP}]
+ test? (
+ dev-python/matplotlib[${PYTHON_USEDEP}]
+ dev-python/pillow[${PYTHON_USEDEP}]
+ dev-python/wurlitzer[${PYTHON_USEDEP}]
+ )
+"
+
+DISTUTILS_ARGS=(
+ -Dwerror=false
+)
+
+EPYTEST_PLUGINS=( pytest-rerunfailures )
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+EPYTEST_IGNORE=(
+ # linters
+ tests/test_codebase.py
+)