summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-yarl_1.8.1.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2022-08-17 18:35:37 +0300
committerKhem Raj <raj.khem@gmail.com>2022-08-17 09:35:42 -0700
commit330b46745ccf09ea190ebbea52003876698ce9da (patch)
treeea56ed447a560c6432191525b93f9f697f6a6ea0 /meta-python/recipes-devtools/python/python3-yarl_1.8.1.bb
parentf74aa93fbe8363ca2dd908914c3ea8f7be91988d (diff)
downloadmeta-openembedded-330b46745ccf09ea190ebbea52003876698ce9da.tar.gz
python3-yarl: Upgrade 1.7.2 -> 1.8.1
Upgrade to release 1.8.1: - Added URL.raw_suffix, URL.suffix, URL.raw_suffixes, URL.suffixes, URL.with_suffix - Fixed broken internal references to :meth:`~URL.human_repr` - Fixed broken external references to :doc:`multidict:index` docs Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-yarl_1.8.1.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-yarl_1.8.1.bb27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-yarl_1.8.1.bb b/meta-python/recipes-devtools/python/python3-yarl_1.8.1.bb
new file mode 100644
index 0000000000..66ee46b446
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-yarl_1.8.1.bb
@@ -0,0 +1,27 @@
1SUMMARY = "The module provides handy URL class for url parsing and changing"
2HOMEPAGE = "https://github.com/aio-libs/yarl/"
3LICENSE = "Apache-2.0"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=e581798a7b985311f29fa3e163ea27ae"
5
6SRC_URI[sha256sum] = "af887845b8c2e060eb5605ff72b6f2dd2aab7a761379373fd89d314f4752abbf"
7
8SRC_URI += "file://run-ptest"
9
10PYPI_PACKAGE = "yarl"
11
12inherit pypi ptest setuptools3
13
14RDEPENDS:${PN} = "\
15 ${PYTHON_PN}-multidict \
16 ${PYTHON_PN}-idna \
17 ${PYTHON_PN}-io \
18"
19
20RDEPENDS:${PN}-ptest += " \
21 ${PYTHON_PN}-pytest \
22"
23
24do_install_ptest() {
25 install -d ${D}${PTEST_PATH}/tests
26 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
27}