From: Scott Murray Date: Tue, 2 Mar 2021 15:55:44 +0000 (-0500) Subject: cluster-demo-simulator: update LICENSE/LIC_CHKSUM_FILE X-Git-Tag: 11.91.0~10 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F23%2F26123%2F1;p=AGL%2Fmeta-agl-demo.git cluster-demo-simulator: update LICENSE/LIC_CHKSUM_FILE Upstream has renamed the common license files, but investigation revealed that the LICENSE on this purely configuration recipe should likely be MIT to be consistent with the other similar recipes in the tree, so update both LICENSE and LIC_CHKSUM_FILE to fix both issues. As well, now that the demo repositories are merged, this recipe can just RDEPEND on simple-can-simulator, rather than duplicating it. Bug-AGL: SPEC-3819 Signed-off-by: Scott Murray Change-Id: I2302e904258a67d3c2a1756f94d247e3779106f0 --- diff --git a/recipes-config/cluster-demo-simulator/cluster-demo-simulator.bb b/recipes-config/cluster-demo-simulator/cluster-demo-simulator.bb index 171ea1677..593bdd595 100644 --- a/recipes-config/cluster-demo-simulator/cluster-demo-simulator.bb +++ b/recipes-config/cluster-demo-simulator/cluster-demo-simulator.bb @@ -1,11 +1,8 @@ -DESCRIPTION = "Simulate can messages of a driving car" -LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" +DESCRIPTION = "Systemd unit to start simple CAN simulator" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" -SRC_URI = "\ - file://cluster-demo-simulator.service \ - file://simple_can_simulator.py \ -" +SRC_URI = "file://cluster-demo-simulator.service" inherit systemd @@ -19,13 +16,8 @@ do_compile[noexec] = "1" do_install() { install -d ${D}${systemd_system_unitdir} install -m 0644 ${WORKDIR}/cluster-demo-simulator.service ${D}${systemd_system_unitdir} - install -d ${D}${sbindir} - install -m 0755 ${WORKDIR}/simple_can_simulator.py ${D}${sbindir} } FILES_${PN} += "${systemd_system_unitdir}" -RDEPENDS_${PN} = " \ - can-utils \ - python3 \ -" +RDEPENDS_${PN} = "simple-can-simulator"