From 27c1d146e5ee9e472a31a7958ad4dc70a5451ea7 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 2 Jun 2023 15:29:04 +0100 Subject: gentoo auto-resync : 02:06:2023 - 15:29:04 --- dev-python/pygraphviz/Manifest | 2 + dev-python/pygraphviz/pygraphviz-1.11.ebuild | 55 ++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 dev-python/pygraphviz/pygraphviz-1.11.ebuild (limited to 'dev-python/pygraphviz') diff --git a/dev-python/pygraphviz/Manifest b/dev-python/pygraphviz/Manifest index 7019fbc8bb90..ea5eb2dcd8b0 100644 --- a/dev-python/pygraphviz/Manifest +++ b/dev-python/pygraphviz/Manifest @@ -1,3 +1,5 @@ DIST pygraphviz-1.10.zip 120582 BLAKE2B 965b84ec6951c364084ddde4f0594ad7c14eb7e884062ad4f24042b6298b9caf10b3aa33eecfe8154c87c4bfd8d3651acc586129b019aef8b809130d69c03f82 SHA512 571c35f7a8013d5f128fcfbbd68372c8660560847afa0648737eae6d305a9283b69dce23a1b1aeb808bd4eac9c9cefa72b1d358fbc47b724a0b70997ea3f6d84 +DIST pygraphviz-1.11.zip 120803 BLAKE2B 004312750bcb9fab5c39af2c1de6c452489d9a2deea8211e6bb7cd722e9043070644b61c78047b01d649d41194441d82ffe2dde9fb17b6d9233bd0acee539c7e SHA512 3914d29fb214e1f7d59c7849e1e63e783902acd262912eccffbf6a67f8cbf6f540b9f2e84c9e7b4f0d90fae27f451a701a3b75a4dcb15b8a81bed463b34e2ef2 EBUILD pygraphviz-1.10.ebuild 1087 BLAKE2B 5a8a04c3b9f7095c5e805985a462af69bc08ec8776138badbbefce7370110919684465c07f717580daac8eb03da545aab1ff45135ade5e00c5975e334b28ae67 SHA512 1b814d0dfeb5b43f25e9c927e6c5b975004cdedab69d67516e493a3e9e1728c3cbbdaa3eb50343903dd365be3b715ca76272ab63c034e1f6c43d3c52f466c9d9 +EBUILD pygraphviz-1.11.ebuild 1091 BLAKE2B 1a1458948b9fcfde1747941c32c524b4d28bafd5197bc7011d5d94e135acf25da245db6a574e28bf5ce00c7b173f68bc258c17a6a023449dc995b882d28add33 SHA512 425fc62e39d9a336f6a906cedfeb98061449e5635fd2b5f3c087c71faaee3c3a60d55e90caa1207a6d977c8c9362f8a0d9a171209cb6ec14d612cc11addec50a MISC metadata.xml 682 BLAKE2B 50dc3c55cac525fce3a396c94bdb48eb6e2c0b43636ae53c8ddbce2c9d3f82d8a080d881d4e6ac61ee71f88779c560d38fba3e10424fcd30af0dc80f979df081 SHA512 87e124765948529b7444fb1ad1ae655e18478ca46631a11a6613b289e2ac39600cdc00cc7af82b40694fb1e90c0ccad98be2fb457c5d7f74d5b087a6b3319aff diff --git a/dev-python/pygraphviz/pygraphviz-1.11.ebuild b/dev-python/pygraphviz/pygraphviz-1.11.ebuild new file mode 100644 index 000000000000..0d46c2c812aa --- /dev/null +++ b/dev-python/pygraphviz/pygraphviz-1.11.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..11} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Python wrapper for the Graphviz Agraph data structure" +HOMEPAGE=" + https://pygraphviz.github.io/ + https://github.com/pygraphviz/pygraphviz/ + https://pypi.org/project/pygraphviz/ +" +SRC_URI="$(pypi_sdist_url "${PN}" "${PV}" .zip)" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~x86-linux ~ppc-macos ~x64-macos" + +# Note: only C API of graphviz is used, PYTHON_USEDEP unnecessary. +DEPEND=" + media-gfx/graphviz +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + app-arch/unzip + dev-lang/swig:0 + test? ( + dev-python/doctest-ignore-unicode[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_configure() { + swig -python pygraphviz/graphviz.i || die +} + +python_test() { + cd "${BUILD_DIR}"/install || die + epytest +} + +python_install_all() { + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + + distutils-r1_python_install_all +} -- cgit v1.2.3