summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2023-05-18 17:08:20 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-05-22 10:53:49 +0100
commit00a0136c3bc74de096de57d04670fe8fdebe499c (patch)
treedb036299c02aaecc2dcf3931a672743bf8964954 /meta/recipes-devtools/python
parent70f38fa6a74777280f5b1fdd33e1f986d9624847 (diff)
downloadpoky-00a0136c3bc74de096de57d04670fe8fdebe499c.tar.gz
python3-gitdb: remove python3-async dependency
The dependency on the async module was removed back in 0.6.0 (November 2014). Whilst here, also merge the bb/inc and stop using PYTHON_PN, as we only support Python 3. (From OE-Core rev: 5fc09287ec8ca4332614eaa6b0dd5aabf10f6a31) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r--meta/recipes-devtools/python/python-gitdb.inc23
-rw-r--r--meta/recipes-devtools/python/python3-gitdb_4.0.10.bb23
2 files changed, 21 insertions, 25 deletions
diff --git a/meta/recipes-devtools/python/python-gitdb.inc b/meta/recipes-devtools/python/python-gitdb.inc
deleted file mode 100644
index d92d6453d8..0000000000
--- a/meta/recipes-devtools/python/python-gitdb.inc
+++ /dev/null
@@ -1,23 +0,0 @@
1SUMMARY = "A pure-Python git object database"
2HOMEPAGE = "http://github.com/gitpython-developers/gitdb"
3SECTION = "devel/python"
4LICENSE = "BSD-3-Clause"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=59e5ecb13339a936eedf83282eaf4528"
6
7inherit pypi
8
9PYPI_PACKAGE = "gitdb"
10
11SRC_URI[sha256sum] = "6eb990b69df4e15bad899ea868dc46572c3f75339735663b81de79b06f17eb9a"
12
13DEPENDS = "${PYTHON_PN}-async ${PYTHON_PN}-setuptools-native ${PYTHON_PN}-smmap"
14
15RDEPENDS:${PN} += "${PYTHON_PN}-async \
16 ${PYTHON_PN}-compression \
17 ${PYTHON_PN}-crypt \
18 ${PYTHON_PN}-io \
19 ${PYTHON_PN}-mmap \
20 ${PYTHON_PN}-shell \
21 ${PYTHON_PN}-smmap \
22"
23BBCLASSEXTEND = "native nativesdk"
diff --git a/meta/recipes-devtools/python/python3-gitdb_4.0.10.bb b/meta/recipes-devtools/python/python3-gitdb_4.0.10.bb
index 2dcd9c8aff..3a430c30f0 100644
--- a/meta/recipes-devtools/python/python3-gitdb_4.0.10.bb
+++ b/meta/recipes-devtools/python/python3-gitdb_4.0.10.bb
@@ -1,3 +1,22 @@
1inherit setuptools3 1SUMMARY = "A pure-Python git object database"
2require python-gitdb.inc 2HOMEPAGE = "http://github.com/gitpython-developers/gitdb"
3SECTION = "devel/python"
4LICENSE = "BSD-3-Clause"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=59e5ecb13339a936eedf83282eaf4528"
3 6
7DEPENDS = "python3-smmap"
8
9inherit pypi setuptools3
10
11PYPI_PACKAGE = "gitdb"
12
13SRC_URI[sha256sum] = "6eb990b69df4e15bad899ea868dc46572c3f75339735663b81de79b06f17eb9a"
14
15RDEPENDS:${PN} += "python3-compression \
16 python3-crypt \
17 python3-io \
18 python3-mmap \
19 python3-shell \
20 python3-smmap \
21"
22BBCLASSEXTEND = "native nativesdk"