diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-09-25 14:49:01 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-09-30 17:00:51 +0100 |
| commit | 4f29d72dcfe9eb39aacac6cb9fe0133fd6d3463f (patch) | |
| tree | 1920aca6f4299dfe3b3a96fc5be15000306a1d52 /meta/recipes-devtools/python/python3-idna_3.10.bb | |
| parent | 45241d14413025713e6cf2d4eccd8e2182e5a6c5 (diff) | |
| download | poky-4f29d72dcfe9eb39aacac6cb9fe0133fd6d3463f.tar.gz | |
python3-idna: upgrade 3.8 -> 3.10
Changelog:
===========
- Deprecate setup.cfg in favour of pyproject.toml
- Use ruff for code formatting
(From OE-Core rev: 4f2720cc4db6fecba47dcba26a426ffc9b4279bf)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-idna_3.10.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-idna_3.10.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-idna_3.10.bb b/meta/recipes-devtools/python/python3-idna_3.10.bb new file mode 100644 index 0000000000..854dc35242 --- /dev/null +++ b/meta/recipes-devtools/python/python3-idna_3.10.bb | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | SUMMARY = "Internationalised Domain Names in Applications" | ||
| 2 | HOMEPAGE = "https://github.com/kjd/idna" | ||
| 3 | LICENSE = "BSD-3-Clause & Python-2.0 & Unicode-TOU" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=204c0612e40a4dd46012a78d02c80fb1" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9" | ||
| 7 | |||
| 8 | SRC_URI += "file://run-ptest" | ||
| 9 | |||
| 10 | inherit pypi python_flit_core ptest | ||
| 11 | |||
| 12 | do_install_ptest() { | ||
| 13 | cp -r ${S}/tests ${D}${PTEST_PATH}/ | ||
| 14 | } | ||
| 15 | |||
| 16 | RDEPENDS:${PN} += "python3-codecs" | ||
| 17 | RDEPENDS:${PN}-ptest += "python3-unittest-automake-output" | ||
| 18 | |||
| 19 | BBCLASSEXTEND = "native nativesdk" | ||
