From cc897e70210ce191d1287a7a8653c4f906ff09f0 Mon Sep 17 00:00:00 2001 From: Alexandre Bard Date: Thu, 21 Jul 2022 09:34:18 +0200 Subject: [PATCH] cannelloni: Remove unnecessary recipe This recipe is now present in meta-networking Part of yocto upgrade from dunfell to kirkstone --- recipes-connectivity/cannelloni/cannelloni.bb | 29 ------------------- 1 file changed, 29 deletions(-) delete mode 100644 recipes-connectivity/cannelloni/cannelloni.bb diff --git a/recipes-connectivity/cannelloni/cannelloni.bb b/recipes-connectivity/cannelloni/cannelloni.bb deleted file mode 100644 index 98c081c..0000000 --- a/recipes-connectivity/cannelloni/cannelloni.bb +++ /dev/null @@ -1,29 +0,0 @@ -SUMMARY = "SocketCAN over Ethernet tunnel using UDP to transfer CAN frames between two machines" -SECTION = "socketcan" -LICENSE = "GPL-2.0-only" -LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" -PR = "r0" - -RDEPENDS:${PN}-dev += "${PN}-staticdev" - -SRCREV = "e3ac7393b566345d057c2d17a4d328007caaacac" - -SRC_URI = "git://github.com/mguentner/cannelloni.git;branch=master;protocol=https" - -S = "${WORKDIR}/git" - -inherit pkgconfig cmake -inherit systemd - -EXTRA_OECMAKE += "-DCMAKE_BUILD_TYPE=Release" - -INSANE_SKIP:${PN} = "ldflags" -INHIBIT_PACKAGE_STRIP = "1" -INHIBIT_SYSROOT_STRIP = "1" -SOLIBS = ".so" -FILES_SOLIBSDEV = "" - -do_install:append () { - install -d ${D}${libdir} - install -m 0755 ${WORKDIR}/build/libcannelloni-common.so ${D}${libdir} -}