diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2020-09-24 16:21:20 +0300 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2020-09-28 20:49:15 -0700 |
| commit | 4ab4f4d747c21d4a3dde753e8e9b940052580b39 (patch) | |
| tree | 91ce7b45719e58db8f8e1c58a9a259b5e0992f14 /meta-python/recipes-devtools/python/python3-yarl_1.6.0.bb | |
| parent | 8cc8f13508678c2ebe54d73550f0c65fd1132f2e (diff) | |
| download | meta-openembedded-4ab4f4d747c21d4a3dde753e8e9b940052580b39.tar.gz | |
python3-yarl: Upgrade 1.5.1 -> 1.6.0
Upgrade to release 1.6.0:
- Allow for int and float subclasses in query, while still denying
bool.
- Do not requote arguments in URL.build(), with_xxx() and in /
operator.
- Keep IPv6 brackets in origin().
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-yarl_1.6.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-yarl_1.6.0.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-yarl_1.6.0.bb b/meta-python/recipes-devtools/python/python3-yarl_1.6.0.bb new file mode 100644 index 0000000000..543acc51ba --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-yarl_1.6.0.bb | |||
| @@ -0,0 +1,29 @@ | |||
| 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=b334fc90d45983db318f54fd5bf6c90b" | ||
| 5 | |||
| 6 | SRC_URI[md5sum] = "802bb27ebdb260fbbaecbcc8168d6f28" | ||
| 7 | SRC_URI[sha256sum] = "61d3ea3c175fe45f1498af868879c6ffeb989d4143ac542163c45538ba5ec21b" | ||
| 8 | |||
| 9 | SRC_URI += " \ | ||
| 10 | file://run-ptest \ | ||
| 11 | " | ||
| 12 | |||
| 13 | PYPI_PACKAGE = "yarl" | ||
| 14 | |||
| 15 | inherit pypi ptest setuptools3 | ||
| 16 | |||
| 17 | RDEPENDS_${PN} = "\ | ||
| 18 | ${PYTHON_PN}-multidict \ | ||
| 19 | ${PYTHON_PN}-idna \ | ||
| 20 | " | ||
| 21 | |||
| 22 | RDEPENDS_${PN}-ptest += " \ | ||
| 23 | ${PYTHON_PN}-pytest \ | ||
| 24 | " | ||
| 25 | |||
| 26 | do_install_ptest() { | ||
| 27 | install -d ${D}${PTEST_PATH}/tests | ||
| 28 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 29 | } | ||
