diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-08-11 21:55:02 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-08-15 11:44:20 +0100 |
commit | 1a801e235464bdb08ed07d571de8973a2c7d95f0 (patch) | |
tree | beca1b8496d1bc233b151505d95d3ae95cbfc0c4 /meta/recipes-devtools/build-compare | |
parent | f31ed30c114cf85e35afdbd84668d1e49fb589c4 (diff) | |
download | poky-1a801e235464bdb08ed07d571de8973a2c7d95f0.tar.gz |
build-compare: Drop recipe
If we no longer have the packagefeed-stability class, we no longer need
need build-compare as it was the only user of it. Therefore drop
the recipe too.
(From OE-Core rev: d6eb93d7c5c9bb1891527581eb0675c3aee271f6)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/build-compare')
-rw-r--r-- | meta/recipes-devtools/build-compare/build-compare_git.bb | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/recipes-devtools/build-compare/build-compare_git.bb b/meta/recipes-devtools/build-compare/build-compare_git.bb deleted file mode 100644 index 74a954db46..0000000000 --- a/meta/recipes-devtools/build-compare/build-compare_git.bb +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | SUMMARY = "Build Result Compare Script" | ||
2 | DESCRIPTION = "This package contains scripts to find out if the build result\ | ||
3 | differs to a former build." | ||
4 | HOMEPAGE = "https://github.com/openSUSE/build-compare" | ||
5 | LICENSE = "GPLv2" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
7 | |||
8 | SRC_URI = "git://github.com/openSUSE/build-compare.git" | ||
9 | |||
10 | # Date matches entry in build-compare.changes and date of SRCREV. | ||
11 | # | ||
12 | SRCREV = "102d844ce052c6dec6c56ee1d471bde72a1b4633" | ||
13 | PE = "1" | ||
14 | PV = "2020.05.29+git${SRCPV}" | ||
15 | UPSTREAM_CHECK_COMMITS = "1" | ||
16 | |||
17 | S = "${WORKDIR}/git" | ||
18 | |||
19 | BBCLASSEXTEND = "native nativesdk" | ||
20 | |||
21 | do_install() { | ||
22 | install -d ${D}/${bindir} | ||
23 | install -m 755 functions.sh ${D}/${bindir} | ||
24 | install -m 755 pkg-diff.sh ${D}/${bindir} | ||
25 | install -m 755 same-build-result.sh ${D}/${bindir} | ||
26 | install -m 755 srpm-check.sh ${D}/${bindir} | ||
27 | } | ||
28 | |||
29 | RDEPENDS_${PN} += "bash" | ||