diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2021-08-10 11:30:56 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-08-16 08:21:14 -0700 |
commit | 8c6f98157ee54b1de130e6a0ea2ada861411c45c (patch) | |
tree | 3dd127fbeab712d7c8112149e5232ec138251fc0 /meta-python/recipes-devtools/python/python3-configargparse_1.5.2.bb | |
parent | 0aa3b3e0c2c63bf4623a076a09faef47f4762a7d (diff) | |
download | meta-openembedded-8c6f98157ee54b1de130e6a0ea2ada861411c45c.tar.gz |
python3-configargparse: Upgrade 1.5.1 -> 1.5.2
Upgrade to release 1.5.2:
- fix: append with nargs > 1 for env vars
- add support for argparse.BooleanOptionalAction
- Docs update
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-configargparse_1.5.2.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-configargparse_1.5.2.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-configargparse_1.5.2.bb b/meta-python/recipes-devtools/python/python3-configargparse_1.5.2.bb new file mode 100644 index 0000000000..e4b6797182 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-configargparse_1.5.2.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | SUMMARY = "A drop-in replacement for argparse that allows options to also be set via config files and/or environment variables." | ||
2 | HOMEPAGE = "https://github.com/bw2/ConfigArgParse" | ||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=da746463714cc35999ed9a42339f2943" | ||
5 | |||
6 | SRC_URI[sha256sum] = "c39540eb4843883d526beeed912dc80c92481b0c13c9787c91e614a624de3666" | ||
7 | |||
8 | PYPI_PACKAGE = "ConfigArgParse" | ||
9 | |||
10 | inherit pypi setuptools3 | ||
11 | |||
12 | PACKAGECONFIG ?= "yaml" | ||
13 | PACKAGECONFIG[yaml] = ",,,${PYTHON_PN}-pyyaml" | ||
14 | |||
15 | RDEPENDS:${PN} += "\ | ||
16 | ${PYTHON_PN}-core \ | ||
17 | ${PYTHON_PN}-shell \ | ||
18 | ${PYTHON_PN}-json \ | ||
19 | " | ||
20 | |||
21 | BBCLASSEXTEND = "native nativesdk" | ||