diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2021-05-11 19:52:13 +0300 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-05-14 07:24:47 -0700 |
| commit | ca7c4a6cf38b751414251e08e001e48af46dfa7f (patch) | |
| tree | e21f9d63299a5f9f12fb2f76b2fe66a0f1950271 /meta-python/recipes-devtools/python/python3-serpent_1.40.bb | |
| parent | b31524464a575f07856110383de6448726a74c01 (diff) | |
| download | meta-openembedded-ca7c4a6cf38b751414251e08e001e48af46dfa7f.tar.gz | |
python3-serpent: Upgrade 1.30.2 -> 1.40
Upgrade to release 1.40:
- dotnet: added optiononal bytes repr (de)serialization
- java: added optional bytes-repr (de)serialization
- added unittest for new bytes-repr form
- add parameter to serialize bytes into byte literal
representation instead of base-64 (which remains the default)
License-Update: Use file LICENSE.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-serpent_1.40.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-serpent_1.40.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-serpent_1.40.bb b/meta-python/recipes-devtools/python/python3-serpent_1.40.bb new file mode 100644 index 0000000000..305222f764 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-serpent_1.40.bb | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | SUMMARY = "Serialization based on ast.literal_eval" | ||
| 2 | LICENSE = "MIT" | ||
| 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d7c28f460fafe7be454fcdcac0b60263" | ||
| 4 | |||
| 5 | SRC_URI[sha256sum] = "10b34e7f8e3207ee6fb70dcdc9bce473851ee3daf0b47c58aec1b48032ac11ce" | ||
| 6 | |||
| 7 | inherit pypi ptest setuptools3 | ||
| 8 | |||
| 9 | SRC_URI += " \ | ||
| 10 | file://run-ptest \ | ||
| 11 | " | ||
| 12 | |||
| 13 | RDEPENDS_${PN}-ptest += " \ | ||
| 14 | ${PYTHON_PN}-pytest \ | ||
| 15 | ${PYTHON_PN}-pytz \ | ||
| 16 | " | ||
| 17 | |||
| 18 | do_install_ptest() { | ||
| 19 | install -d ${D}${PTEST_PATH}/tests | ||
| 20 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 21 | } | ||
| 22 | |||
| 23 | RDEPENDS_${PN} += "\ | ||
| 24 | ${PYTHON_PN}-netclient \ | ||
| 25 | ${PYTHON_PN}-numbers \ | ||
| 26 | " | ||
