mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-06 04:49:29 +00: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>
36 lines
942 B
BlitzBasic
36 lines
942 B
BlitzBasic
SUMMARY = "Tools for taking the MD5 sum of ISO images"
|
|
DESCRIPTION = "Tools for taking the MD5 sum of ISO images"
|
|
|
|
DEPENDS = "popt python3 openssl curl popt-native"
|
|
RDEPENDS:${BPN} = "openssl curl"
|
|
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"
|
|
|
|
SRC_URI = "git://github.com/rhinstaller/isomd5sum.git;branch=master;protocol=https \
|
|
file://0001-tweak-install-prefix.patch \
|
|
file://0002-fix-parallel-error.patch \
|
|
"
|
|
|
|
inherit python3native
|
|
|
|
EXTRA_OEMAKE += " \
|
|
DESTDIR='${D}' \
|
|
PYTHONINCLUDE='-I${STAGING_INCDIR}/${PYTHON_DIR}${PYTHON_ABI}' \
|
|
PYTHONSITEPACKAGES='${PYTHON_SITEPACKAGES_DIR}' \
|
|
"
|
|
|
|
do_install () {
|
|
oe_runmake install
|
|
}
|
|
|
|
PACKAGES += "python3-${BPN}"
|
|
|
|
RPROVIDES:${BPN}-dbg += "python3-${BPN}-dbg"
|
|
|
|
FILES:python3-${BPN} = "${PYTHON_SITEPACKAGES_DIR}/pyisomd5sum.so"
|
|
|
|
SRCREV = "ed1f54de86b5d507c4cfa552923e9ddfddd9b893"
|
|
|
|
BBCLASSEXTEND = "native"
|