From patchwork Wed Apr 1 17:56:48 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Fitzmayer X-Patchwork-Id: 85046 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id D0E88109B497 for ; Wed, 1 Apr 2026 17:56:55 +0000 (UTC) Received: from mailserv.regfish.com (mailserv.regfish.com [52.57.101.90]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.19696.1775066212581809589 for ; Wed, 01 Apr 2026 10:56:53 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=none, err=permanent DNS error (domain: michael-fitzmayer.de, ip: 52.57.101.90, mailfrom: mail@michael-fitzmayer.de) Received: by mailserv.regfish.com (Postfix, from userid 706) id 7875D60798; Wed, 1 Apr 2026 17:56:50 +0000 (UTC) Received: from DESKTOP-B84SDL6.localdomain (ipservice-092-209-208-070.092.209.pools.vodafone-ip.de [92.209.208.70]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: 46272-0001) by mailserv.regfish.com (Postfix) with ESMTPSA id 515F560773; Wed, 1 Apr 2026 17:56:50 +0000 (UTC) From: Michael Fitzmayer To: openembedded-devel@lists.openembedded.org Cc: Michael Fitzmayer Subject: [meta-oe][PATCH] canvenient: update to version 1.01 Date: Wed, 1 Apr 2026 19:56:48 +0200 Message-ID: <20260401175649.12348-1-mail@michael-fitzmayer.de> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 List-Id: X-Webhook-Received: from 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 01 Apr 2026 17:56:55 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/125910 - Add versioning - New version to be able to use a proper version tag in the Yocto recipe Signed-off-by: Michael Fitzmayer --- .../canvenient/canvenient_1.01.bb | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 meta-oe/recipes-devtools/canvenient/canvenient_1.01.bb diff --git a/meta-oe/recipes-devtools/canvenient/canvenient_1.01.bb b/meta-oe/recipes-devtools/canvenient/canvenient_1.01.bb new file mode 100644 index 0000000000..8ae41f0a83 --- /dev/null +++ b/meta-oe/recipes-devtools/canvenient/canvenient_1.01.bb @@ -0,0 +1,41 @@ + +SUMMARY = "CANvenient is an abstraction layer for multiple CAN APIs \ + on Windows and Linux. \ + " +DESCRIPTION = "CANvenient is an abstraction layer for multiple CAN APIs on \ + Windows and Linux. It provides a unified interface for CAN \ + communication, allowing developers to write code that is \ + portable across different platforms and CAN hardware. \ + " +HOMEPAGE = "https://canopenterm.de/canvenient" +BUGTRACKER = "https://github.com/CANopenTerm/CANvenient/issues" + +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE.md;md5=bd2edc721b4a0289efe949bdbe7dda79" + +DEPENDS = "libsocketcan" + +SRC_URI = "git://github.com/CANopenTerm/CANvenient.git;protocol=https;branch=main;tag=v${PV}" + +SRCREV = "b8b37e3915caf5bce93f38c2c6cca71356dcfcab" + +inherit cmake ptest + + +do_install:append() { + install -d ${D}${includedir} + install -d ${D}${libdir} + + install -m 0644 ${S}/include/CANvenient.h ${D}${includedir}/ + install -m 0755 ${B}/libCANvenient.so.1.0.1 ${D}${libdir}/ + + ln -sf libCANvenient.so.1.0.1 ${D}${libdir}/libCANvenient.so.1 + ln -sf libCANvenient.so.1.0.1 ${D}${libdir}/libCANvenient.so +} + +FILES:${PN} += "${libdir}/libCANvenient.so ${libdir}/libCANvenient.so.*" +FILES:${PN}-dev += "${includedir}" + +SOLIBS = ".so" + +RDEPENDS:${PN} = "libsocketcan"