@@ -750,6 +750,7 @@ RECIPE_MAINTAINER:pn-python3-unittest-automake-output = "Ross Burton <ross.burto
RECIPE_MAINTAINER:pn-python3-uritools = "Marta Rybczynska <marta.rybczynska@ygreky.com>"
RECIPE_MAINTAINER:pn-python3-urllib3 = "Tim Orling <tim.orling@konsulko.com>"
RECIPE_MAINTAINER:pn-python3-uv-build = "Unassigned <unassigned@yoctoproject.org>"
+RECIPE_MAINTAINER:pn-python3-vcs-versioning = "Trevor Gamblin <tgamblin@baylibre.com>"
RECIPE_MAINTAINER:pn-python3-vcversioner = "Bruce Ashfield <bruce.ashfield@gmail.com>"
RECIPE_MAINTAINER:pn-python3-wcwidth = "Tim Orling <tim.orling@konsulko.com>"
RECIPE_MAINTAINER:pn-python3-webcolors = "Bruce Ashfield <bruce.ashfield@gmail.com>"
new file mode 100644
@@ -0,0 +1,24 @@
+SUMMARY = "the blessed package to manage your versions by vcs metadata"
+HOMEPAGE = "https://pypi.org/project/vcs-versioning/"
+DESCRIPTION = "Core VCS versioning functionality extracted as a standalone \
+library that can be used independently of setuptools."
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c9b06ad2ebd7e2e82d34b3caf353e7d5"
+
+SRC_URI[sha256sum] = "fabd75a3cab7dd8ac02fe24a3a9ba936bf258667b5a62ed468c9a1da0f5775bc"
+
+PYPI_PACKAGE = "vcs_versioning"
+
+inherit pypi python_setuptools_build_meta
+
+DEPENDS += "\
+ python3-packaging-native \
+ python3-typing-extensions-native \
+"
+
+RDEPENDS:${PN} = "\
+ python3-packaging \
+ python3-typing-extensions \
+"
+
+BBCLASSEXTEND = "native nativesdk"
The setuptools-scm project[1] now ships a second module which can be used independently of setuptools if desired. This is now a dependency for setuptools-scm, so add a recipe for it. Update the maintainers.inc file with the recipe and myself as maintainer. [1] https://github.com/pypa/setuptools-scm Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> --- meta/conf/distro/include/maintainers.inc | 1 + .../python/python3-vcs-versioning_1.1.1.bb | 24 +++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 meta/recipes-devtools/python/python3-vcs-versioning_1.1.1.bb