summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-backports-functools-lru-cache_1.6.4.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2021-04-12 17:02:11 +0300
committerKhem Raj <raj.khem@gmail.com>2021-04-13 08:06:07 -0700
commit2627bb1a242747aa5a61fc8ca77ea604d3e9f171 (patch)
treebdf4910eeba8dde6f4bef5480f13bb04c3977e93 /meta-python/recipes-devtools/python/python3-backports-functools-lru-cache_1.6.4.bb
parent8dce3fc5460a2dcddf7aa55911b045a4922b45db (diff)
downloadmeta-openembedded-2627bb1a242747aa5a61fc8ca77ea604d3e9f171.tar.gz
python3-backports-functools-lru-cache: Upgrade 1.6.3 -> 1.6.4
Upgrade to release 1.6.4: - For test dependencies, when indicating Python 3, use >=3 instead of >3 Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-backports-functools-lru-cache_1.6.4.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-backports-functools-lru-cache_1.6.4.bb31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-backports-functools-lru-cache_1.6.4.bb b/meta-python/recipes-devtools/python/python3-backports-functools-lru-cache_1.6.4.bb
new file mode 100644
index 0000000000..c90ffa1b47
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-backports-functools-lru-cache_1.6.4.bb
@@ -0,0 +1,31 @@
1SUMMARY = "Backport of functools.lru_cache from Python 3.3"
2HOMEPAGE = "https://github.com/jaraco/backports.functools_lru_cache"
3SECTION = "devel/python"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=7a7126e068206290f3fe9f8d6c713ea6"
6
7PYPI_PACKAGE = "backports.functools_lru_cache"
8
9SRC_URI[sha256sum] = "d5ed2169378b67d3c545e5600d363a923b09c456dab1593914935a68ad478271"
10
11DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
12
13inherit pypi setuptools3 ptest
14
15SRC_URI += " \
16 file://run-ptest \
17"
18
19RDEPENDS_${PN}-ptest += " \
20 ${PYTHON_PN}-pytest \
21"
22
23do_install_ptest() {
24 install -d ${D}${PTEST_PATH}/tests
25 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
26}
27
28RDEPENDS_${PN} += "\
29 ${PYTHON_PN}-pickle \
30 ${PYTHON_PN}-threading \
31 "