mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-16 15:25:53 +01:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
40 lines
1.3 KiB
BlitzBasic
40 lines
1.3 KiB
BlitzBasic
DESCRIPTION = "A python library for manipulating kickstart files"
|
|
HOMEPAGE = "https://fedoraproject.org/wiki/pykickstart"
|
|
LICENSE = "GPL-2.0-or-later"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=81bcece21748c91ba9992349a91ec11d"
|
|
|
|
inherit python_setuptools_build_meta ptest
|
|
|
|
RDEPENDS:${PN} = "python3 \
|
|
python3-requests \
|
|
python3-six \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-pytest \
|
|
python3-unittest-automake-output \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests
|
|
for file in `grep -Rl unittest.main ${D}${PTEST_PATH}/tests/`; do
|
|
dirname=`dirname $file`
|
|
basename=`basename $file`
|
|
[ $basename != "__init__.py" ] && mv $file ${dirname}/test_${basename}
|
|
done
|
|
}
|
|
|
|
SRC_URI = "git://github.com/rhinstaller/pykickstart.git;protocol=https;branch=master;tag=r${PV} \
|
|
file://0001-support-authentication-for-kickstart.patch \
|
|
file://0002-pykickstart-parser.py-add-lock-for-readKickstart-and.patch \
|
|
file://0003-comment-out-sections-shutdown-and-environment-in-gen.patch \
|
|
file://0004-load.py-retry-to-invoke-request-with-timeout.patch \
|
|
file://run-ptest \
|
|
"
|
|
SRCREV = "6e0d1238cb4696a9040072a5a28a706e5775c552"
|
|
|
|
UPSTREAM_CHECK_GITTAGREGEX = "r(?P<pver>\d+(\.\d+)+(-\d+)*)"
|
|
|