mirror of
https://git.yoctoproject.org/poky
synced 2026-02-28 12:29:40 +01:00
In particular 170 includes rpm header fixes which stop the webpages for rpm diffs breaking web browsers and are important in the context of the autobuilder. (From OE-Core rev: 3b04da3a02b746241196f1fe42a9a345212cfc07) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 275738c3f2116de9b812b46e00d80b4de6975d7f) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
758 B
BlitzBasic
25 lines
758 B
BlitzBasic
SUMMARY = "in-depth comparison of files, archives, and directories"
|
|
HOMEPAGE = "https://diffoscope.org/"
|
|
LICENSE = "GPL-3.0+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
PYPI_PACKAGE = "diffoscope"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
SRC_URI[sha256sum] = "5ffe7f38555c6409bc7e7edc277ed77dd78641fe1306fc38d153dbbe445ddea4"
|
|
|
|
RDEPENDS_${PN} += "binutils vim squashfs-tools python3-libarchive-c python3-magic"
|
|
|
|
# Dependencies don't build for musl
|
|
COMPATIBLE_HOST_libc-musl = 'null'
|
|
|
|
do_install_append_class-native() {
|
|
create_wrapper ${D}${bindir}/diffoscope \
|
|
MAGIC=${STAGING_DIR_NATIVE}${datadir_native}/misc/magic.mgc \
|
|
RPM_CONFIGDIR=${STAGING_LIBDIR_NATIVE}/rpm \
|
|
RPM_ETCCONFIGDIR=${STAGING_DIR_NATIVE}
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|