diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2024-08-15 09:30:54 +0300 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-08-15 10:28:12 -0700 |
| commit | 093b94c68afabca43998cdbd540fedb1c9ca0a22 (patch) | |
| tree | fe0af5ff65c27aee17a482894b407051aefbd8ff /meta-python/recipes-devtools/python/python3-path_17.0.0.bb | |
| parent | e72396ae321609497d3329e047b21113fb11bc35 (diff) | |
| download | meta-openembedded-093b94c68afabca43998cdbd540fedb1c9ca0a22.tar.gz | |
python3-path: Upgrade 16.14.0 -> 17.0.0
Upgrade to release 17.0.0:
- Removed deprecated behaviors.
- Removed crufty manifest.in.
- Removed crufty Dockerfile.
- Moved tests to tests directory.
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-path_17.0.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-path_17.0.0.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-path_17.0.0.bb b/meta-python/recipes-devtools/python/python3-path_17.0.0.bb new file mode 100644 index 0000000000..e809952079 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-path_17.0.0.bb | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | SUMMARY = "A module wrapper for os.path" | ||
| 2 | LICENSE = "MIT" | ||
| 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=141643e11c48898150daa83802dbc65f" | ||
| 4 | |||
| 5 | SRC_URI[sha256sum] = "e1540261d22df1416fb1b498b3b1ed5353a371a48fe197d66611bb01e7fab2d5" | ||
| 6 | |||
| 7 | SRC_URI += "\ | ||
| 8 | file://run-ptest \ | ||
| 9 | " | ||
| 10 | |||
| 11 | inherit pypi python_setuptools_build_meta ptest | ||
| 12 | |||
| 13 | DEPENDS += "python3-setuptools-scm-native" | ||
| 14 | |||
| 15 | RDEPENDS:${PN} += " \ | ||
| 16 | python3-appdirs \ | ||
| 17 | python3-crypt \ | ||
| 18 | python3-io \ | ||
| 19 | python3-numbers \ | ||
| 20 | python3-shell \ | ||
| 21 | " | ||
| 22 | RDEPENDS:${PN}-ptest += " \ | ||
| 23 | python3-pytest \ | ||
| 24 | python3-unittest-automake-output \ | ||
| 25 | " | ||
| 26 | |||
| 27 | BBCLASSEXTEND = "nativesdk native" | ||
| 28 | |||
| 29 | do_install_ptest() { | ||
| 30 | install -d ${D}${PTEST_PATH}/test | ||
| 31 | cp -rf ${S}/tests/test_* ${D}${PTEST_PATH}/test/ | ||
| 32 | install -d ${D}${PTEST_PATH}/path | ||
| 33 | cp -rf ${S}/path/* ${D}${PTEST_PATH}/path/ | ||
| 34 | } | ||
