commit:     066f2dd0d6cebf982c8aeea3f7f1031d93d3698a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Apr  7 09:35:27 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Apr  7 09:35:27 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=066f2dd0

distutils-r1.eclass: Add hatchling support (meh!)

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 eclass/distutils-r1.eclass | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
index ed2e9f70269f..5598543c0f9a 100644
--- a/eclass/distutils-r1.eclass
+++ b/eclass/distutils-r1.eclass
@@ -98,6 +98,8 @@ esac
 #
 # - flit - flit_core backend
 #
+# - hatchling - hatchling backend (from hatch)
+#
 # - pdm - pdm.pep517 backend
 #
 # - poetry - poetry-core backend
@@ -187,6 +189,10 @@ _distutils_set_globals() {
                                bdep+='
                                        dev-python/flit_core[${PYTHON_USEDEP}]'
                                ;;
+                       hatchling)
+                               bdep+='
+                                       dev-python/hatchling[${PYTHON_USEDEP}]'
+                               ;;
                        pdm)
                                bdep+='
                                        dev-python/pdm-pep517[${PYTHON_USEDEP}]'
@@ -911,6 +917,9 @@ _distutils-r1_backend_to_key() {
                flit_core.buildapi|flit.buildapi)
                        echo flit
                        ;;
+               hatchling.build)
+                       echo hatchling
+                       ;;
                pdm.pep517.api)
                        echo pdm
                        ;;

Reply via email to