public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: dev-python/anytree/
@ 2024-06-17 21:40 Julien Roy
  0 siblings, 0 replies; 4+ messages in thread
From: Julien Roy @ 2024-06-17 21:40 UTC (permalink / raw
  To: gentoo-commits

commit:     21e1950315856d4fa7f6cc7785c0890691f44ba5
Author:     Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
AuthorDate: Mon Jun 17 13:56:23 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Mon Jun 17 13:58:18 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=21e19503

dev-python/anytree: add USE=dot, test dep on six, .gh suffix

- Fix PythonGHDistfileSuffix by adding .gh suffix to source archive.
- Add `USE=dot` to optionally pull in `media-gfx/graphviz`, or otherwise disable
related test.
- Add `dev-python/six` dependency required by `USE=test`.

Closes: https://bugs.gentoo.org/934415
Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com>

 dev-python/anytree/Manifest              |  2 +-
 dev-python/anytree/anytree-2.12.0.ebuild | 27 +++++++++++++++++++++++++--
 dev-python/anytree/metadata.xml          |  3 +++
 3 files changed, 29 insertions(+), 3 deletions(-)

diff --git a/dev-python/anytree/Manifest b/dev-python/anytree/Manifest
index 97b80ce12..46aba4f41 100644
--- a/dev-python/anytree/Manifest
+++ b/dev-python/anytree/Manifest
@@ -1 +1 @@
-DIST anytree-2.12.0.tar.gz 192330 BLAKE2B 117f80689b6610f622a41b2abb85cf54f2ba639659f80e6b8d163043d2552586ef11ed86532b19c7b69beec5e66ab3acad2f72ed0f1e9aa5d3832e4e8ec76457 SHA512 822a72cf84227a7b78cb3808eea585d783821d9c476f1b1e50d77cf982b4bf3c08011be9564ff5205a3efd0d982b03daabeb0067aea523a14002179c94451ff4
+DIST anytree-2.12.0.gh.tar.gz 192330 BLAKE2B 117f80689b6610f622a41b2abb85cf54f2ba639659f80e6b8d163043d2552586ef11ed86532b19c7b69beec5e66ab3acad2f72ed0f1e9aa5d3832e4e8ec76457 SHA512 822a72cf84227a7b78cb3808eea585d783821d9c476f1b1e50d77cf982b4bf3c08011be9564ff5205a3efd0d982b03daabeb0067aea523a14002179c94451ff4

diff --git a/dev-python/anytree/anytree-2.12.0.ebuild b/dev-python/anytree/anytree-2.12.0.ebuild
index b34aff9a0..bbed6b04b 100644
--- a/dev-python/anytree/anytree-2.12.0.ebuild
+++ b/dev-python/anytree/anytree-2.12.0.ebuild
@@ -7,17 +7,32 @@ PYTHON_COMPAT=( python3_{10..13} )
 DISTUTILS_USE_PEP517=poetry
 
 inherit distutils-r1
-# inherit pypi
 
 DESCRIPTION="Powerful and Lightweight Python Tree Data Structure with various plugins"
 HOMEPAGE="https://anytree.readthedocs.io/"
 
-SRC_URI="https://github.com/c0fec0de/anytree/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/c0fec0de/anytree/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~x86"
 
+IUSE="dot"
+
+RDEPEND="
+	dot? (
+		media-gfx/graphviz
+	)
+"
+
+DEPEND="${RDEPEND}
+	test? (
+		$(python_gen_cond_dep '
+			dev-python/six[${PYTHON_USEDEP}]
+		')
+	)
+"
+
 distutils_enable_sphinx docs
 distutils_enable_tests pytest
 
@@ -29,6 +44,14 @@ src_prepare(){
 
 python_test() {
 	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+	local -x EPYTEST_DESELECT=()
+
+	if ! use dot; then
+		EPYTEST_DESELECT+=(
+			"tests/test_dotexport.py::test_tree_png"
+		)
+	fi
+
 	cd "${S}/tests" || die
 	distutils-r1_python_test
 }

diff --git a/dev-python/anytree/metadata.xml b/dev-python/anytree/metadata.xml
index 4961d1e12..475d5d4ca 100644
--- a/dev-python/anytree/metadata.xml
+++ b/dev-python/anytree/metadata.xml
@@ -8,4 +8,7 @@
     <remote-id type="github">c0fec0de/anytree</remote-id>
     <remote-id type="pypi">Anytree</remote-id>
   </upstream>
+  <use>
+    <flag name="dot">allow to create dot graphs using <pkg>media-gfx/graphviz</pkg></flag>
+  </use>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/anytree/
@ 2025-05-23 22:14 Julien Roy
  0 siblings, 0 replies; 4+ messages in thread
From: Julien Roy @ 2025-05-23 22:14 UTC (permalink / raw
  To: gentoo-commits

commit:     bc5a1652358a4bc7e3ce2030291737da90a8fc89
Author:     Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
AuthorDate: Sun May 11 16:47:46 2025 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sun May 11 16:47:46 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc5a1652

dev-python/anytree: add 2.13.0

Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com>

 dev-python/anytree/Manifest              |  1 +
 dev-python/anytree/anytree-2.13.0.ebuild | 65 ++++++++++++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/dev-python/anytree/Manifest b/dev-python/anytree/Manifest
index 46aba4f417..637bbc16d0 100644
--- a/dev-python/anytree/Manifest
+++ b/dev-python/anytree/Manifest
@@ -1 +1,2 @@
 DIST anytree-2.12.0.gh.tar.gz 192330 BLAKE2B 117f80689b6610f622a41b2abb85cf54f2ba639659f80e6b8d163043d2552586ef11ed86532b19c7b69beec5e66ab3acad2f72ed0f1e9aa5d3832e4e8ec76457 SHA512 822a72cf84227a7b78cb3808eea585d783821d9c476f1b1e50d77cf982b4bf3c08011be9564ff5205a3efd0d982b03daabeb0067aea523a14002179c94451ff4
+DIST anytree-2.13.0.gh.tar.gz 235959 BLAKE2B a49dfad2d4360e449ce666a8e9227bdb3f83c60dd7ca7a68081e046414f4da041deb4762d6f54372e32e48e6c9bdd93ee6de785b0f8c4c7e6f0622f4944c3051 SHA512 f587449b78877ee7f9ed1dedf88d55c75c05567fd7fe780808b2852152308a4bf2d42651fe1967b9eb67021ca33daa29ed387847ad93261ff93dfda356b4f296

diff --git a/dev-python/anytree/anytree-2.13.0.ebuild b/dev-python/anytree/anytree-2.13.0.ebuild
new file mode 100644
index 0000000000..268039c075
--- /dev/null
+++ b/dev-python/anytree/anytree-2.13.0.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..13} )
+DISTUTILS_USE_PEP517=pdm-backend
+
+inherit distutils-r1
+
+DESCRIPTION="Powerful and Lightweight Python Tree Data Structure with various plugins"
+HOMEPAGE="https://anytree.readthedocs.io/"
+
+SRC_URI="https://github.com/c0fec0de/anytree/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+IUSE="dot"
+
+RDEPEND="
+	dot? (
+		media-gfx/graphviz
+	)
+"
+
+DEPEND="${RDEPEND}
+	test? (
+		$(python_gen_cond_dep '
+			dev-python/six[${PYTHON_USEDEP}]
+			dev-python/pytest-cov[${PYTHON_USEDEP}]
+		')
+	)
+"
+
+distutils_enable_sphinx docs
+distutils_enable_tests pytest
+
+src_prepare(){
+	default
+
+	sed -e '/--cov/d' -i pyproject.toml || die
+
+	mkdir "${S}/tests/dotexport" || die
+}
+
+python_test() {
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+	local -x EPYTEST_DESELECT=()
+	local -x EPYTEST_IGNORE=(
+		tests/test_dotexport.py
+		tests/test_dotexporter.py
+		tests/test_mermaidexporter.py
+		tests/test_uniquedotexporter.py
+	)
+
+	if ! use dot; then
+		EPYTEST_DESELECT+=(
+			"tests/test_dotexport.py::test_tree_png"
+		)
+	fi
+
+	distutils-r1_python_test "${S}/tests"
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/anytree/
@ 2025-06-17  8:34 David Roman
  2025-06-17  8:45 ` [gentoo-commits] repo/proj/guru:master " David Roman
  0 siblings, 1 reply; 4+ messages in thread
From: David Roman @ 2025-06-17  8:34 UTC (permalink / raw
  To: gentoo-commits

commit:     382fbb4c18d5db5a406d8df1b05c1ac6f3f85f9c
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Tue Jun 17 08:33:00 2025 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Jun 17 08:33:04 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=382fbb4c

dev-python/anytree: treeclean, moved to ::gentoo

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 dev-python/anytree/Manifest              |  2 -
 dev-python/anytree/anytree-2.12.0.ebuild | 57 ----------------------------
 dev-python/anytree/anytree-2.13.0.ebuild | 65 --------------------------------
 dev-python/anytree/metadata.xml          | 14 -------
 4 files changed, 138 deletions(-)

diff --git a/dev-python/anytree/Manifest b/dev-python/anytree/Manifest
deleted file mode 100644
index 637bbc16d0..0000000000
--- a/dev-python/anytree/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST anytree-2.12.0.gh.tar.gz 192330 BLAKE2B 117f80689b6610f622a41b2abb85cf54f2ba639659f80e6b8d163043d2552586ef11ed86532b19c7b69beec5e66ab3acad2f72ed0f1e9aa5d3832e4e8ec76457 SHA512 822a72cf84227a7b78cb3808eea585d783821d9c476f1b1e50d77cf982b4bf3c08011be9564ff5205a3efd0d982b03daabeb0067aea523a14002179c94451ff4
-DIST anytree-2.13.0.gh.tar.gz 235959 BLAKE2B a49dfad2d4360e449ce666a8e9227bdb3f83c60dd7ca7a68081e046414f4da041deb4762d6f54372e32e48e6c9bdd93ee6de785b0f8c4c7e6f0622f4944c3051 SHA512 f587449b78877ee7f9ed1dedf88d55c75c05567fd7fe780808b2852152308a4bf2d42651fe1967b9eb67021ca33daa29ed387847ad93261ff93dfda356b4f296

diff --git a/dev-python/anytree/anytree-2.12.0.ebuild b/dev-python/anytree/anytree-2.12.0.ebuild
deleted file mode 100644
index 065dc8d581..0000000000
--- a/dev-python/anytree/anytree-2.12.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{11..13} )
-DISTUTILS_USE_PEP517=poetry
-
-inherit distutils-r1
-
-DESCRIPTION="Powerful and Lightweight Python Tree Data Structure with various plugins"
-HOMEPAGE="https://anytree.readthedocs.io/"
-
-SRC_URI="https://github.com/c0fec0de/anytree/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-IUSE="dot"
-
-RDEPEND="
-	dot? (
-		media-gfx/graphviz
-	)
-"
-
-DEPEND="${RDEPEND}
-	test? (
-		$(python_gen_cond_dep '
-			dev-python/six[${PYTHON_USEDEP}]
-		')
-	)
-"
-
-distutils_enable_sphinx docs
-distutils_enable_tests pytest
-
-src_prepare(){
-	default
-
-	mkdir "${S}/tests/dotexport" || die
-}
-
-python_test() {
-	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-	local -x EPYTEST_DESELECT=()
-
-	if ! use dot; then
-		EPYTEST_DESELECT+=(
-			"tests/test_dotexport.py::test_tree_png"
-		)
-	fi
-
-	cd "${S}/tests" || die
-	distutils-r1_python_test
-}

diff --git a/dev-python/anytree/anytree-2.13.0.ebuild b/dev-python/anytree/anytree-2.13.0.ebuild
deleted file mode 100644
index 268039c075..0000000000
--- a/dev-python/anytree/anytree-2.13.0.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{11..13} )
-DISTUTILS_USE_PEP517=pdm-backend
-
-inherit distutils-r1
-
-DESCRIPTION="Powerful and Lightweight Python Tree Data Structure with various plugins"
-HOMEPAGE="https://anytree.readthedocs.io/"
-
-SRC_URI="https://github.com/c0fec0de/anytree/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-IUSE="dot"
-
-RDEPEND="
-	dot? (
-		media-gfx/graphviz
-	)
-"
-
-DEPEND="${RDEPEND}
-	test? (
-		$(python_gen_cond_dep '
-			dev-python/six[${PYTHON_USEDEP}]
-			dev-python/pytest-cov[${PYTHON_USEDEP}]
-		')
-	)
-"
-
-distutils_enable_sphinx docs
-distutils_enable_tests pytest
-
-src_prepare(){
-	default
-
-	sed -e '/--cov/d' -i pyproject.toml || die
-
-	mkdir "${S}/tests/dotexport" || die
-}
-
-python_test() {
-	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-	local -x EPYTEST_DESELECT=()
-	local -x EPYTEST_IGNORE=(
-		tests/test_dotexport.py
-		tests/test_dotexporter.py
-		tests/test_mermaidexporter.py
-		tests/test_uniquedotexporter.py
-	)
-
-	if ! use dot; then
-		EPYTEST_DESELECT+=(
-			"tests/test_dotexport.py::test_tree_png"
-		)
-	fi
-
-	distutils-r1_python_test "${S}/tests"
-}

diff --git a/dev-python/anytree/metadata.xml b/dev-python/anytree/metadata.xml
deleted file mode 100644
index 475d5d4cae..0000000000
--- a/dev-python/anytree/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="person">
-    <email>negril.nx+gentoo@gmail.com</email>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">c0fec0de/anytree</remote-id>
-    <remote-id type="pypi">Anytree</remote-id>
-  </upstream>
-  <use>
-    <flag name="dot">allow to create dot graphs using <pkg>media-gfx/graphviz</pkg></flag>
-  </use>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/anytree/
  2025-06-17  8:34 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/anytree/ David Roman
@ 2025-06-17  8:45 ` David Roman
  0 siblings, 0 replies; 4+ messages in thread
From: David Roman @ 2025-06-17  8:45 UTC (permalink / raw
  To: gentoo-commits

commit:     382fbb4c18d5db5a406d8df1b05c1ac6f3f85f9c
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Tue Jun 17 08:33:00 2025 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Jun 17 08:33:04 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=382fbb4c

dev-python/anytree: treeclean, moved to ::gentoo

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 dev-python/anytree/Manifest              |  2 -
 dev-python/anytree/anytree-2.12.0.ebuild | 57 ----------------------------
 dev-python/anytree/anytree-2.13.0.ebuild | 65 --------------------------------
 dev-python/anytree/metadata.xml          | 14 -------
 4 files changed, 138 deletions(-)

diff --git a/dev-python/anytree/Manifest b/dev-python/anytree/Manifest
deleted file mode 100644
index 637bbc16d0..0000000000
--- a/dev-python/anytree/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST anytree-2.12.0.gh.tar.gz 192330 BLAKE2B 117f80689b6610f622a41b2abb85cf54f2ba639659f80e6b8d163043d2552586ef11ed86532b19c7b69beec5e66ab3acad2f72ed0f1e9aa5d3832e4e8ec76457 SHA512 822a72cf84227a7b78cb3808eea585d783821d9c476f1b1e50d77cf982b4bf3c08011be9564ff5205a3efd0d982b03daabeb0067aea523a14002179c94451ff4
-DIST anytree-2.13.0.gh.tar.gz 235959 BLAKE2B a49dfad2d4360e449ce666a8e9227bdb3f83c60dd7ca7a68081e046414f4da041deb4762d6f54372e32e48e6c9bdd93ee6de785b0f8c4c7e6f0622f4944c3051 SHA512 f587449b78877ee7f9ed1dedf88d55c75c05567fd7fe780808b2852152308a4bf2d42651fe1967b9eb67021ca33daa29ed387847ad93261ff93dfda356b4f296

diff --git a/dev-python/anytree/anytree-2.12.0.ebuild b/dev-python/anytree/anytree-2.12.0.ebuild
deleted file mode 100644
index 065dc8d581..0000000000
--- a/dev-python/anytree/anytree-2.12.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{11..13} )
-DISTUTILS_USE_PEP517=poetry
-
-inherit distutils-r1
-
-DESCRIPTION="Powerful and Lightweight Python Tree Data Structure with various plugins"
-HOMEPAGE="https://anytree.readthedocs.io/"
-
-SRC_URI="https://github.com/c0fec0de/anytree/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-IUSE="dot"
-
-RDEPEND="
-	dot? (
-		media-gfx/graphviz
-	)
-"
-
-DEPEND="${RDEPEND}
-	test? (
-		$(python_gen_cond_dep '
-			dev-python/six[${PYTHON_USEDEP}]
-		')
-	)
-"
-
-distutils_enable_sphinx docs
-distutils_enable_tests pytest
-
-src_prepare(){
-	default
-
-	mkdir "${S}/tests/dotexport" || die
-}
-
-python_test() {
-	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-	local -x EPYTEST_DESELECT=()
-
-	if ! use dot; then
-		EPYTEST_DESELECT+=(
-			"tests/test_dotexport.py::test_tree_png"
-		)
-	fi
-
-	cd "${S}/tests" || die
-	distutils-r1_python_test
-}

diff --git a/dev-python/anytree/anytree-2.13.0.ebuild b/dev-python/anytree/anytree-2.13.0.ebuild
deleted file mode 100644
index 268039c075..0000000000
--- a/dev-python/anytree/anytree-2.13.0.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{11..13} )
-DISTUTILS_USE_PEP517=pdm-backend
-
-inherit distutils-r1
-
-DESCRIPTION="Powerful and Lightweight Python Tree Data Structure with various plugins"
-HOMEPAGE="https://anytree.readthedocs.io/"
-
-SRC_URI="https://github.com/c0fec0de/anytree/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-IUSE="dot"
-
-RDEPEND="
-	dot? (
-		media-gfx/graphviz
-	)
-"
-
-DEPEND="${RDEPEND}
-	test? (
-		$(python_gen_cond_dep '
-			dev-python/six[${PYTHON_USEDEP}]
-			dev-python/pytest-cov[${PYTHON_USEDEP}]
-		')
-	)
-"
-
-distutils_enable_sphinx docs
-distutils_enable_tests pytest
-
-src_prepare(){
-	default
-
-	sed -e '/--cov/d' -i pyproject.toml || die
-
-	mkdir "${S}/tests/dotexport" || die
-}
-
-python_test() {
-	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-	local -x EPYTEST_DESELECT=()
-	local -x EPYTEST_IGNORE=(
-		tests/test_dotexport.py
-		tests/test_dotexporter.py
-		tests/test_mermaidexporter.py
-		tests/test_uniquedotexporter.py
-	)
-
-	if ! use dot; then
-		EPYTEST_DESELECT+=(
-			"tests/test_dotexport.py::test_tree_png"
-		)
-	fi
-
-	distutils-r1_python_test "${S}/tests"
-}

diff --git a/dev-python/anytree/metadata.xml b/dev-python/anytree/metadata.xml
deleted file mode 100644
index 475d5d4cae..0000000000
--- a/dev-python/anytree/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="person">
-    <email>negril.nx+gentoo@gmail.com</email>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">c0fec0de/anytree</remote-id>
-    <remote-id type="pypi">Anytree</remote-id>
-  </upstream>
-  <use>
-    <flag name="dot">allow to create dot graphs using <pkg>media-gfx/graphviz</pkg></flag>
-  </use>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-06-17  8:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-17  8:34 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/anytree/ David Roman
2025-06-17  8:45 ` [gentoo-commits] repo/proj/guru:master " David Roman
  -- strict thread matches above, loose matches on Subject: below --
2025-05-23 22:14 Julien Roy
2024-06-17 21:40 Julien Roy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox