summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-cachetools_5.0.0.bb
diff options
context:
space:
mode:
authorXu Huan <xuhuan.fnst@fujitsu.com>2022-05-27 09:15:27 +0800
committerKhem Raj <raj.khem@gmail.com>2022-05-29 06:39:14 -0700
commit8563c476ee3bdc71e3232e380a7d711657c34968 (patch)
treed6bc2cbaae89ed79ef8cbd5020b934b61fd1a441 /meta-python/recipes-devtools/python/python3-cachetools_5.0.0.bb
parent51faef2f34fa40eaa2b9fdcf6f79df5ff51eb7b6 (diff)
downloadmeta-openembedded-8563c476ee3bdc71e3232e380a7d711657c34968.tar.gz
python3-cachetools: upgrade 5.0.0 -> 5.1.0
License-Update: Copyright year updated to 2022. Changelog: Add cache decorator parameters as wrapper function attributes. Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-cachetools_5.0.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-cachetools_5.0.0.bb32
1 files changed, 0 insertions, 32 deletions
diff --git a/meta-python/recipes-devtools/python/python3-cachetools_5.0.0.bb b/meta-python/recipes-devtools/python/python3-cachetools_5.0.0.bb
deleted file mode 100644
index f2974f7e34..0000000000
--- a/meta-python/recipes-devtools/python/python3-cachetools_5.0.0.bb
+++ /dev/null
@@ -1,32 +0,0 @@
1SUMMARY = "Extensible memoizing collections and decorators"
2HOMEPAGE = "https://github.com/tkem/cachetools"
3DESCRIPTION = "This module provides various memoizing \
4collections and decorators, including variants of the \
5Python 3 Standard Library @lru_cache function decorator."
6SECTION = "devel/python"
7
8LICENSE = "MIT"
9LIC_FILES_CHKSUM = "file://LICENSE;md5=439a07e400525964c3c82684146e46eb"
10
11inherit pypi python_setuptools_build_meta ptest
12
13SRC_URI += " \
14 file://run-ptest \
15"
16
17RDEPENDS:${PN} += " \
18 ${PYTHON_PN}-math \
19"
20
21RDEPENDS:${PN}-ptest += " \
22 ${PYTHON_PN}-pytest \
23"
24
25do_install_ptest() {
26 install -d ${D}${PTEST_PATH}/tests
27 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
28}
29
30SRC_URI[sha256sum] = "486471dfa8799eb7ec503a8059e263db000cdda20075ce5e48903087f79d5fd6"
31
32BBCLASSEXTEND = "native nativesdk"