mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 12:12:16 +02:00
This patch updates SRC_URIs using git to include branch=master if no branch is set and also to use protocol=https for github urls as generated by the conversion script in OE-Core. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
37 lines
971 B
BlitzBasic
37 lines
971 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 = "GPLv2"
|
|
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 \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
inherit python3native
|
|
|
|
EXTRA_OEMAKE += " \
|
|
DESTDIR='${D}' \
|
|
PYTHONINCLUDE='-I${STAGING_INCDIR}/${PYTHON_DIR}${PYTHON_ABI}' \
|
|
PYTHONSITEPACKAGES='${PYTHON_SITEPACKAGES_DIR}' \
|
|
"
|
|
|
|
do_install () {
|
|
oe_runmake install
|
|
}
|
|
|
|
PACKAGES += "${PYTHON_PN}-${BPN}"
|
|
|
|
RPROVIDES:${BPN}-dbg += "${PYTHON_PN}-${BPN}-dbg"
|
|
|
|
FILES:${PYTHON_PN}-${BPN} = "${PYTHON_SITEPACKAGES_DIR}/pyisomd5sum.so"
|
|
|
|
SRCREV = "7860901f726f5d92689cb67243cc7f981f21f74b"
|
|
|
|
BBCLASSEXTEND = "native"
|