From a12eff7e3f6aa1d4150b0724d4b7939622aa598f Mon Sep 17 00:00:00 2001 From: Oleksandr Kravchuk Date: Sun, 5 Dec 2021 21:05:31 +0100 Subject: fb-test: fix SRC_URI Original repo doesn't exist any more. Even though I couldn't find any new official repo, this is the only one on github that contains used commit hash. Signed-off-by: Oleksandr Kravchuk Signed-off-by: Khem Raj (cherry picked from commit c57e4d5faa3d1c4b23173a4f26b2cd1aff846b34) Signed-off-by: Armin Kuster --- meta-oe/recipes-test/fbtest/fb-test_1.1.0.bb | 18 ++++++++++++++++++ meta-oe/recipes-test/fbtest/fb-test_git.bb | 20 -------------------- 2 files changed, 18 insertions(+), 20 deletions(-) create mode 100644 meta-oe/recipes-test/fbtest/fb-test_1.1.0.bb delete mode 100644 meta-oe/recipes-test/fbtest/fb-test_git.bb diff --git a/meta-oe/recipes-test/fbtest/fb-test_1.1.0.bb b/meta-oe/recipes-test/fbtest/fb-test_1.1.0.bb new file mode 100644 index 000000000..14ab41b14 --- /dev/null +++ b/meta-oe/recipes-test/fbtest/fb-test_1.1.0.bb @@ -0,0 +1,18 @@ +SUMMARY = "Test suite for Linux framebuffer" + +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a" + +SRCREV = "063ec650960c2d79ac51f5c5f026cb05343a33e2" +SRC_URI = "git://github.com//ponty/fb-test-app.git;branch=master;protocol=https" + +S = "${WORKDIR}/git" + +do_install() { + install -d ${D}${bindir} + install -m 0755 fb-test ${D}${bindir} + # avoid collisions with perf (perf) and mesa-demos (offset) + for prog in perf rect offset ; do + install -m 0755 $prog ${D}${bindir}/fb-$prog + done +} diff --git a/meta-oe/recipes-test/fbtest/fb-test_git.bb b/meta-oe/recipes-test/fbtest/fb-test_git.bb deleted file mode 100644 index 299213572..000000000 --- a/meta-oe/recipes-test/fbtest/fb-test_git.bb +++ /dev/null @@ -1,20 +0,0 @@ -SUMMARY = "Test suite for Linux framebuffer" - -PV = "1.1.0" - -LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a" - -SRCREV = "063ec650960c2d79ac51f5c5f026cb05343a33e2" -SRC_URI = "git://github.com/prpplague/fb-test-app.git;branch=master;protocol=https" - -S = "${WORKDIR}/git" - -do_install() { - install -d ${D}${bindir} - install -m 0755 fb-test ${D}${bindir} - # avoid collisions with perf (perf) and mesa-demos (offset) - for prog in perf rect offset ; do - install -m 0755 $prog ${D}${bindir}/fb-$prog - done -} -- cgit v1.2.3-54-g00ecf