diff options
author | V3n3RiX <venerix@koprulu.sector> | 2025-02-25 19:25:33 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2025-02-25 19:25:33 +0000 |
commit | 67dbd3ba144944fbf4b466be1b5fa0569b774e6f (patch) | |
tree | 721c7f9085992578da57f71ea0c5becb6827cdb4 /dev-python/matplotlib-venn | |
parent | d4653056cc74d97f24bef0d56b4ebe11c53c8b76 (diff) |
gentoo auto-resync : 25:02:2025 - 19:25:33
Diffstat (limited to 'dev-python/matplotlib-venn')
-rw-r--r-- | dev-python/matplotlib-venn/Manifest | 2 | ||||
-rw-r--r-- | dev-python/matplotlib-venn/matplotlib-venn-1.1.2.ebuild | 47 |
2 files changed, 49 insertions, 0 deletions
diff --git a/dev-python/matplotlib-venn/Manifest b/dev-python/matplotlib-venn/Manifest index 2624e80ced93..d4395aea9040 100644 --- a/dev-python/matplotlib-venn/Manifest +++ b/dev-python/matplotlib-venn/Manifest @@ -1,3 +1,5 @@ DIST matplotlib-venn-1.1.1.gh.tar.gz 978290 BLAKE2B 21f0541df95428557e60eaca95e7e2749825bb36c69855b7adca54141af7c343073d62f99fe3b45ae17dcd514cd91813b188e426f61e415f9a353ce214588b71 SHA512 b01fe31122d8a4f6914aaa24ad09cc571536952f1d22231c7c59a760c2baafce7d6e7bc91de8bfc1efd5d2aca18371f6b834908382407fdb5add806a137d8e16 +DIST matplotlib-venn-1.1.2.gh.tar.gz 978372 BLAKE2B 995747f378a0295011515b2448b2512e41b24ea9b4826b9f93c2089543bbf60859fa593a72c5a02f332264b97f166967ff7b46b042e8887a56257441831cdb20 SHA512 3641f313a8355cf9d0e7862689547593c7f4387a63ed8e85fdb7e3937d4ef61bfcab6b9ff2319d7864303f2cb12b9e531e7103f5d70cd32f2c66c10d538a81a7 EBUILD matplotlib-venn-1.1.1.ebuild 1010 BLAKE2B b1265de8991ffab83df967cb80533fa07a72fe0a0e9eb90127be36375ca74fec92867b1e3eab24963f664179c1d61561580d76a21805007ff13168dae404dd75 SHA512 225990156b14063d70118143182395bb0c0301ba63a4576bfe7ea080af229278f1f52ae43521aafb2f101f4f5fd021c4e4e616fef4b56ff654edbc874f5558a5 +EBUILD matplotlib-venn-1.1.2.ebuild 1010 BLAKE2B 20dba65810ba50e463093ffb44d9a74610e6df9a5970848fece0962b0ce529333b732fbdb4efb7967f5b918d6728f58c6e028e5fd9cb93576bde66cc3e56610e SHA512 11dfd5ce1aa50714dc15c48c0df7ac50a318024772d30a156382794b5f43e2beb0490e20e3b1d26cbbf2c08ab87db2b5df78a1193ea479437f91b81e62740e64 MISC metadata.xml 388 BLAKE2B 3a38b2b64e30b3aa0e854b1cec424b622095fde81af938c5432c0b078fd92af92824562dbbc02a4be130af7b8ba41e1de2aebcdd059140edf07b41d7fe906bed SHA512 503c292b6c4c8e1d5fcca62e7ab653eb5300ec5cb15211136c37d6c51e268135ad825facce2a311ea737492b572cfe350d3efa6bb3a8258ab0dcf5550c5829ff diff --git a/dev-python/matplotlib-venn/matplotlib-venn-1.1.2.ebuild b/dev-python/matplotlib-venn/matplotlib-venn-1.1.2.ebuild new file mode 100644 index 000000000000..309fd6b8149f --- /dev/null +++ b/dev-python/matplotlib-venn/matplotlib-venn-1.1.2.ebuild @@ -0,0 +1,47 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 +PYTHON_COMPAT=( python3_{10..13} ) + +inherit distutils-r1 + +DESCRIPTION="Plot area-proportional two- and three-way Venn diagrams in matplotlib" +HOMEPAGE=" + https://github.com/konstantint/matplotlib-venn/ + https://pypi.org/project/matplotlib-venn/ +" +SRC_URI=" + https://github.com/konstantint/matplotlib-venn/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/scipy[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/shapely[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_test() { + local EPYTEST_DESELECT=( + # TODO: some minor number mismatch + matplotlib_venn/layout/venn3/cost_based.py::matplotlib_venn.layout.venn3.cost_based.LayoutAlgorithm + ) + + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + epytest +} |