From 820319bdc47909117d76dbbcd76784a2d34912b4 Mon Sep 17 00:00:00 2001 From: Alexandre Bard Date: Tue, 25 Feb 2020 16:33:03 +0100 Subject: [PATCH] python3: add setuptools git version recipe This tool is required by python recipes to set the version using data from git repo. BugzID: 61873 Signed-off-by: Patrick Zysset --- .../python/python3-setuptools-git-version_1.0.3.bb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 recipes-devtools/python/python3-setuptools-git-version_1.0.3.bb diff --git a/recipes-devtools/python/python3-setuptools-git-version_1.0.3.bb b/recipes-devtools/python/python3-setuptools-git-version_1.0.3.bb new file mode 100644 index 0000000..bfb2ca8 --- /dev/null +++ b/recipes-devtools/python/python3-setuptools-git-version_1.0.3.bb @@ -0,0 +1,13 @@ +DESCRIPTION = "Plugin for setuptools that enables git integration" +HOMEPAGE = "https://github.com/wichert/setuptools-git" +SECTION = "devel/python" +LICENSE = "BSD" +LIC_FILES_CHKSUM = "file://README.rst;md5=db37fc18ea101070f23372a046e58f52" + +SRC_URI[md5sum] = "802555a15f289a6016cfe10c02a004b7" +SRC_URI[sha256sum] = "82cf7ab80272e20b7cae81d907e0adf295ef7a1f735418c046ae7f40f5861e15" + +inherit setuptools3 pypi +PYPI_PACKAGE_EXT="zip" + +BBCLASSEXTEND = "native"