diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2022-08-17 18:35:37 +0300 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-08-17 09:35:42 -0700 |
| commit | 330b46745ccf09ea190ebbea52003876698ce9da (patch) | |
| tree | ea56ed447a560c6432191525b93f9f697f6a6ea0 /meta-python/recipes-devtools/python/python3-yarl_1.8.1.bb | |
| parent | f74aa93fbe8363ca2dd908914c3ea8f7be91988d (diff) | |
| download | meta-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.bb | 27 |
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 @@ | |||
| 1 | SUMMARY = "The module provides handy URL class for url parsing and changing" | ||
| 2 | HOMEPAGE = "https://github.com/aio-libs/yarl/" | ||
| 3 | LICENSE = "Apache-2.0" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e581798a7b985311f29fa3e163ea27ae" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "af887845b8c2e060eb5605ff72b6f2dd2aab7a761379373fd89d314f4752abbf" | ||
| 7 | |||
| 8 | SRC_URI += "file://run-ptest" | ||
| 9 | |||
| 10 | PYPI_PACKAGE = "yarl" | ||
| 11 | |||
| 12 | inherit pypi ptest setuptools3 | ||
| 13 | |||
| 14 | RDEPENDS:${PN} = "\ | ||
| 15 | ${PYTHON_PN}-multidict \ | ||
| 16 | ${PYTHON_PN}-idna \ | ||
| 17 | ${PYTHON_PN}-io \ | ||
| 18 | " | ||
| 19 | |||
| 20 | RDEPENDS:${PN}-ptest += " \ | ||
| 21 | ${PYTHON_PN}-pytest \ | ||
| 22 | " | ||
| 23 | |||
| 24 | do_install_ptest() { | ||
| 25 | install -d ${D}${PTEST_PATH}/tests | ||
| 26 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 27 | } | ||
