diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2023-02-27 16:09:41 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-02-27 09:43:09 -0800 |
commit | 5784b3c3bfbbaf1ffab6a0036ba119b35dfb63ab (patch) | |
tree | c442ced981aa51be0cfdafea1d4ebcb5024fc0af /meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.44.bb | |
parent | 40147490a8d52d7e5aecd66932eeb03e56e94902 (diff) | |
download | meta-openembedded-5784b3c3bfbbaf1ffab6a0036ba119b35dfb63ab.tar.gz |
python3-pykickstart: upgrade 3.43 -> 3.44
Changelog:
=========
Remove the auth and authconfig commands
The parse method is expected to return a value
tests: unittest isn't used in handle_unicode anymore
Add RHEL 9 handler
Resolves: rhbz#1966730
Add RHEL 9 version for commands that had a RHEL version in the past
Add RHEL 9 version for BTRFS related commands
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.44.bb')
-rw-r--r-- | meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.44.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.44.bb b/meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.44.bb new file mode 100644 index 0000000000..632662c28c --- /dev/null +++ b/meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.44.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | DESCRIPTION = "A python library for manipulating kickstart files" | ||
2 | HOMEPAGE = "http://fedoraproject.org/wiki/pykickstart" | ||
3 | LICENSE = "GPL-2.0-or-later" | ||
4 | |||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b" | ||
6 | FILESEXTRAPATHS:prepend := "${THISDIR}/files:" | ||
7 | |||
8 | DEPENDS = "python3" | ||
9 | RDEPENDS:${PN} = "python3 \ | ||
10 | python3-requests \ | ||
11 | python3-six \ | ||
12 | " | ||
13 | |||
14 | S = "${WORKDIR}/git" | ||
15 | SRC_URI = "git://github.com/rhinstaller/pykickstart.git;protocol=https;branch=master \ | ||
16 | file://0001-support-authentication-for-kickstart.patch \ | ||
17 | file://0002-pykickstart-parser.py-add-lock-for-readKickstart-and.patch \ | ||
18 | file://0003-comment-out-sections-shutdown-and-environment-in-gen.patch \ | ||
19 | file://0004-load.py-retry-to-invoke-request-with-timeout.patch \ | ||
20 | " | ||
21 | SRCREV = "6f29ffdb6ed8330ddd21c026576d9fb23dd31c0f" | ||
22 | |||
23 | UPSTREAM_CHECK_GITTAGREGEX = "r(?P<pver>\d+(\.\d+)+(-\d+)*)" | ||
24 | |||
25 | inherit setuptools3 | ||
26 | PIP_INSTALL_PACKAGE = "pykickstart" | ||
27 | PIP_INSTALL_DIST_PATH = "${S}/dist" | ||