diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2023-06-27 15:12:14 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-06-27 13:44:47 -0700 |
commit | b5331178cd35eba9604fc023133e6df683de3642 (patch) | |
tree | 7f17783f5898810e5c53bd7f564cec91b8de4f2a /meta-python/recipes-devtools/python/python3-pyscaffold_4.5.bb | |
parent | b06bfdac6a26496971eaf627d49badda58ee4d8c (diff) | |
download | meta-openembedded-b5331178cd35eba9604fc023133e6df683de3642.tar.gz |
python3-pyscaffold: upgrade 4.4.1 -> 4.5
Changelog:
============
Change macOS default configuration dir from ~/Library/Preferences to ~/Library/Application Support
Simplify git command, by letting exceptions go through
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pyscaffold_4.5.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-pyscaffold_4.5.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pyscaffold_4.5.bb b/meta-python/recipes-devtools/python/python3-pyscaffold_4.5.bb new file mode 100644 index 000000000..dda81e225 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pyscaffold_4.5.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | SUMMARY = "Python project template generator with batteries included" | ||
2 | DESCRIPTION = "PyScaffold package helps to setup a new Python project. \ | ||
3 | After installation, it provides a new command [putup], which could be \ | ||
4 | used to create template Projects." | ||
5 | |||
6 | HOMEPAGE = "https://github.com/pyscaffold/pyscaffold" | ||
7 | SECTION = "devel/python" | ||
8 | LICENSE = "0BSD & MIT" | ||
9 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=14a49c74a1d91829908ac756c07e6b91" | ||
10 | DEPENDS += "python3-setuptools-scm-native" | ||
11 | |||
12 | SRC_URI[sha256sum] = "d849f9a2e15bdcf165e19f96835f0b17e1a2d59d4c561c445b827a081de6d262" | ||
13 | |||
14 | inherit pypi python_setuptools_build_meta | ||
15 | PYPI_PACKAGE = "PyScaffold" | ||
16 | |||
17 | RDEPENDS:${PN} += " \ | ||
18 | python3-email \ | ||
19 | python3-compression \ | ||
20 | " | ||
21 | |||
22 | BBCLASSEXTEND = "native nativesdk" | ||