From e98476fdbdd0b7de57dbe4ef3005a897ac431f26 Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Tue, 13 Apr 2021 17:55:41 +0200 Subject: partrt, bitcalc, count-ticks: Bump, fixes - bump all 3 recipes to the latest upstream commit to include python3 compatibility changes in partrt; - partrt: add missing 'bitcalc' RDEPENDS; - minor cleanup; Signed-off-by: Alexandru Avadanii Change-Id: I1c4874eb8a2a02d0443f0ba873ce5df2e95d5a8f --- recipes-enea/bitcalc/bitcalc_1.0.bb | 8 ++++++-- recipes-enea/count-ticks/count-ticks_1.1.bb | 6 ++---- recipes-enea/partrt/partrt_1.1.bb | 9 +++------ 3 files changed, 11 insertions(+), 12 deletions(-) (limited to 'recipes-enea') diff --git a/recipes-enea/bitcalc/bitcalc_1.0.bb b/recipes-enea/bitcalc/bitcalc_1.0.bb index f5a0aad..d822729 100644 --- a/recipes-enea/bitcalc/bitcalc_1.0.bb +++ b/recipes-enea/bitcalc/bitcalc_1.0.bb @@ -19,10 +19,14 @@ SRC_URI = "git://github.com/OpenEneaLinux/rt-tools.git;branch=master \ DEPENDS_remove_aarch64 = "gcc-sanitizers" SRC_URI_append_aarch64 = "file://0001-bitcalc-disable-gcc-address-sanitizer.patch" -SRCREV = "9d4d1ce26b58ada516466c30e53c75c2961d6f0a" +SRCREV = "a96dcc47f327a990afaf75911183b1631367609c" S = "${WORKDIR}/git" -EXTRA_OEMAKE += "'DESTDIR=${D}/usr/bin'" +EXTRA_OEMAKE += "'DESTDIR=${D}${bindir}'" inherit pkgconfig cmake + +do_install() { + install -m 0755 -D ${B}/bitcalc/src/bitcalc ${D}${bindir}/bitcalc +} diff --git a/recipes-enea/count-ticks/count-ticks_1.1.bb b/recipes-enea/count-ticks/count-ticks_1.1.bb index a33a0f9..1a66f3b 100644 --- a/recipes-enea/count-ticks/count-ticks_1.1.bb +++ b/recipes-enea/count-ticks/count-ticks_1.1.bb @@ -12,14 +12,12 @@ SRC_URI = "git://github.com/OpenEneaLinux/rt-tools.git;branch=master \ file://run-ptest \ " -SRCREV = "9d4d1ce26b58ada516466c30e53c75c2961d6f0a" +SRCREV = "a96dcc47f327a990afaf75911183b1631367609c" inherit ptest S = "${WORKDIR}/git" -FILES_${PN} += "/bin/*" - do_install() { - install -D ${S}/count_ticks/count_ticks ${D}/usr/bin/count_ticks + install -m 0755 -D ${S}/count_ticks/count_ticks ${D}${bindir}/count_ticks } diff --git a/recipes-enea/partrt/partrt_1.1.bb b/recipes-enea/partrt/partrt_1.1.bb index 65995e1..4509002 100644 --- a/recipes-enea/partrt/partrt_1.1.bb +++ b/recipes-enea/partrt/partrt_1.1.bb @@ -4,24 +4,21 @@ SECTION = "utils" LICENSE = "BSD" LIC_FILES_CHKSUM = "file://LICENSE;md5=b52bab7a403562f36be803f11489f1a4" -RDEPENDS_${PN} = "bash" +RDEPENDS_${PN} = "bash bitcalc" RDEPENDS_${PN}-ptest += "python3" SRC_URI = "git://github.com/OpenEneaLinux/rt-tools.git;branch=master \ file://run-ptest \ " -SRCREV = "9d4d1ce26b58ada516466c30e53c75c2961d6f0a" +SRCREV = "a96dcc47f327a990afaf75911183b1631367609c" inherit ptest S = "${WORKDIR}/git" -FILES_${PN} += "/bin/*" - do_install() { - install -d ${D}/usr/bin - install ${S}/partrt/partrt ${D}/usr/bin + install -m 0755 -D ${S}/partrt/partrt ${D}${bindir}/partrt } do_install_ptest() { -- cgit v1.2.3-54-g00ecf