summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/diffoscope/diffoscope_276.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-09-03 16:32:41 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-09-04 12:38:44 +0100
commitb83adce978ac3e45e412803d4fc99e29a9c49fc6 (patch)
treeb3ce63fea8e192de82a7baadfd1ea8b0f6fa19cf /meta/recipes-support/diffoscope/diffoscope_276.bb
parentce8970ad466d837c4f0ae89c835614bfdef04fdc (diff)
downloadpoky-b83adce978ac3e45e412803d4fc99e29a9c49fc6.tar.gz
diffoscope: upgrade 276 -> 277
Changelog: =========== - Don't crash when attempting to hashing symlinks with targets that point to a directory. (From OE-Core rev: 6f21fa5bb71349a5cf6b6fd71548f78c3421ff22) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/diffoscope/diffoscope_276.bb')
-rw-r--r--meta/recipes-support/diffoscope/diffoscope_276.bb43
1 files changed, 0 insertions, 43 deletions
diff --git a/meta/recipes-support/diffoscope/diffoscope_276.bb b/meta/recipes-support/diffoscope/diffoscope_276.bb
deleted file mode 100644
index ed8ae52d9a..0000000000
--- a/meta/recipes-support/diffoscope/diffoscope_276.bb
+++ /dev/null
@@ -1,43 +0,0 @@
1SUMMARY = "in-depth comparison of files, archives, and directories"
2DESCRIPTION = "Tries to get to the bottom of what makes files or directories \
3different. It will recursively unpack archives of many kinds and transform \
4various binary formats into more human-readable form to compare them. \
5It can compare two tarballs, ISO images, or PDF just as easily."
6HOMEPAGE = "https://diffoscope.org/"
7BUGTRACKER = "https://salsa.debian.org/reproducible-builds/diffoscope/-/issues"
8LICENSE = "GPL-3.0-or-later"
9LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
10
11PYPI_PACKAGE = "diffoscope"
12
13inherit pypi setuptools3
14
15SRC_URI[sha256sum] = "094d1f8c312ef9e776247c5f7653b7953dc9c41a037683a1a5937d63a232584a"
16
17RDEPENDS:${PN} += "\
18 binutils \
19 python3-curses \
20 python3-difflib \
21 python3-fcntl \
22 python3-json \
23 python3-libarchive-c \
24 python3-magic \
25 python3-multiprocessing \
26 python3-pprint \
27 python3-rpm \
28 squashfs-tools \
29 vim \
30 "
31
32# Dependencies don't build for musl
33COMPATIBLE_HOST:libc-musl = 'null'
34
35do_install:append:class-native() {
36 create_wrapper ${D}${bindir}/diffoscope \
37 MAGIC=${STAGING_DIR_NATIVE}${datadir_native}/misc/magic.mgc \
38 RPM_CONFIGDIR=${STAGING_LIBDIR_NATIVE}/rpm \
39 LD_LIBRARY_PATH=${STAGING_LIBDIR_NATIVE} \
40 RPM_ETCCONFIGDIR=${STAGING_DIR_NATIVE}
41}
42
43BBCLASSEXTEND = "native"