diff options
Diffstat (limited to 'meta/recipes-devtools/build-compare/build-compare_git.bb')
-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" | ||