diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-04-04 13:48:41 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-04-06 09:30:10 +0100 |
| commit | 82d7dc9709bb2cc85a42b168bdd25ab70e763bee (patch) | |
| tree | 7130c3b1295124d3a3bba97b50815ec2c4416f3b /meta/recipes-support/diffoscope/diffoscope_172.bb | |
| parent | 855fbb6f99655384bae413b2fe4909fd003fa866 (diff) | |
| download | poky-82d7dc9709bb2cc85a42b168bdd25ab70e763bee.tar.gz | |
diffoscope: Upgrade 168 -> 172
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: 275738c3f2116de9b812b46e00d80b4de6975d7f)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/diffoscope/diffoscope_172.bb')
| -rw-r--r-- | meta/recipes-support/diffoscope/diffoscope_172.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-support/diffoscope/diffoscope_172.bb b/meta/recipes-support/diffoscope/diffoscope_172.bb new file mode 100644 index 0000000000..bf4726e778 --- /dev/null +++ b/meta/recipes-support/diffoscope/diffoscope_172.bb | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | SUMMARY = "in-depth comparison of files, archives, and directories" | ||
| 2 | DESCRIPTION = "Tries to get to the bottom of what makes files or directories \ | ||
| 3 | different. It will recursively unpack archives of many kinds and transform \ | ||
| 4 | various binary formats into more human-readable form to compare them. \ | ||
| 5 | It can compare two tarballs, ISO images, or PDF just as easily." | ||
| 6 | HOMEPAGE = "https://diffoscope.org/" | ||
| 7 | BUGTRACKER = "https://salsa.debian.org/reproducible-builds/diffoscope/-/issues" | ||
| 8 | LICENSE = "GPL-3.0+" | ||
| 9 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
| 10 | |||
| 11 | PYPI_PACKAGE = "diffoscope" | ||
| 12 | |||
| 13 | inherit pypi setuptools3 | ||
| 14 | |||
| 15 | SRC_URI[sha256sum] = "5ffe7f38555c6409bc7e7edc277ed77dd78641fe1306fc38d153dbbe445ddea4" | ||
| 16 | |||
| 17 | RDEPENDS_${PN} += "binutils vim squashfs-tools python3-libarchive-c python3-magic python3-rpm" | ||
| 18 | |||
| 19 | # Dependencies don't build for musl | ||
| 20 | COMPATIBLE_HOST_libc-musl = 'null' | ||
| 21 | |||
| 22 | do_install_append_class-native() { | ||
| 23 | create_wrapper ${D}${bindir}/diffoscope \ | ||
| 24 | MAGIC=${STAGING_DIR_NATIVE}${datadir_native}/misc/magic.mgc \ | ||
| 25 | RPM_CONFIGDIR=${STAGING_LIBDIR_NATIVE}/rpm \ | ||
| 26 | RPM_ETCCONFIGDIR=${STAGING_DIR_NATIVE} | ||
| 27 | } | ||
| 28 | |||
| 29 | BBCLASSEXTEND = "native" | ||
