summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/diffoscope/diffoscope_189.bb
diff options
context:
space:
mode:
authorwangmy <wangmy@fujitsu.com>2021-11-09 20:09:04 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-11-10 19:27:28 +0000
commitac34f24442f60a947b4039b0d9824ff4bac833e1 (patch)
tree082bcb943fa6e43d1ca6559cc779f2661af0418d /meta/recipes-support/diffoscope/diffoscope_189.bb
parenta0b518d3321c2de4efbd4fd1477c81efba5ac780 (diff)
downloadpoky-ac34f24442f60a947b4039b0d9824ff4bac833e1.tar.gz
diffoscope: upgrade 189 -> 190
Changelog: [Chris Lamb] Don't raise a traceback if we cannot de-marshal Python bytecode to support Python 3.7 loading newer .pyc files. (Closes: reproducible-builds/diffoscope#284) Fix Python tests under Python 3.7 with file 5.39+. [Vagrant Cascadian] Skip Python bytecode testing when "file" is older than 5.39. [Roland Clobus] Detect whether the GNU_BUILD_ID field has been modified. (From OE-Core rev: b9c59b5d2ac29544c1877f50ec10d2126339d814) 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_189.bb')
-rw-r--r--meta/recipes-support/diffoscope/diffoscope_189.bb30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-support/diffoscope/diffoscope_189.bb b/meta/recipes-support/diffoscope/diffoscope_189.bb
deleted file mode 100644
index d3c70b47c5..0000000000
--- a/meta/recipes-support/diffoscope/diffoscope_189.bb
+++ /dev/null
@@ -1,30 +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+"
9LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
10
11PYPI_PACKAGE = "diffoscope"
12
13inherit pypi setuptools3
14
15SRC_URI[sha256sum] = "2ec8d94af13e905ec1a905ebfb2654971cf977b149d296f8bf2aeff6bcab3d8a"
16
17RDEPENDS:${PN} += "binutils vim squashfs-tools python3-libarchive-c python3-magic python3-rpm"
18
19# Dependencies don't build for musl
20COMPATIBLE_HOST:libc-musl = 'null'
21
22do_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 LD_LIBRARY_PATH=${STAGING_LIBDIR_NATIVE} \
27 RPM_ETCCONFIGDIR=${STAGING_DIR_NATIVE}
28}
29
30BBCLASSEXTEND = "native"