From patchwork Thu Nov 21 20:29:32 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Fitzmayer X-Patchwork-Id: 52918 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 818E5E64011 for ; Thu, 21 Nov 2024 20:30:00 +0000 (UTC) Received: from mailserv.regfish.com (mailserv.regfish.com [52.57.101.90]) by mx.groups.io with SMTP id smtpd.web10.8455.1732220998391913298 for ; Thu, 21 Nov 2024 12:29:58 -0800 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 0BA9D6202C; Thu, 21 Nov 2024 20:29:57 +0000 (UTC) Received: from localhost.localdomain (ip-046-223-148-253.um13.pools.vodafone-ip.de [46.223.148.253]) (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 E2AC86187C; Thu, 21 Nov 2024 20:29:56 +0000 (UTC) From: Michael Fitzmayer To: Openembedded-devel@lists.openembedded.org Cc: Michael Fitzmayer Subject: [PATCH 2/2] Add recipe: canopenterm 1.0.8 Date: Thu, 21 Nov 2024 21:29:32 +0100 Message-Id: <20241121202932.2703888-1-mail@michael-fitzmayer.de> X-Mailer: git-send-email 2.39.5 In-Reply-To: References: MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Thu, 21 Nov 2024 20:30:00 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/113978 CANopenTerm is an open-source software tool designed for the development, testing, and analysis of CANopen CC networks and devices. It extends its capabilities to support other CAN CC protocols, including SAE J1939 and OBD-II. Signed-off-by: Michael Fitzmayer --- .../canopenterm/canopenterm_1.0.8.bb | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 meta-oe/recipes-extended/canopenterm/canopenterm_1.0.8.bb diff --git a/meta-oe/recipes-extended/canopenterm/canopenterm_1.0.8.bb b/meta-oe/recipes-extended/canopenterm/canopenterm_1.0.8.bb new file mode 100644 index 000000000..191225bb1 --- /dev/null +++ b/meta-oe/recipes-extended/canopenterm/canopenterm_1.0.8.bb @@ -0,0 +1,29 @@ + +SUMMARY = "CANopenTerm is a versatile software tool to analyse and \ + configure CANopen devices. \ + " +DESCRIPTION = "CANopenTerm is an open-source software tool designed for the \ + development, testing, and analysis of CANopen CC networks and \ + devices. It extends its capabilities to support other CAN CC \ + protocols, including SAE J1939 and OBD-II. \ + " +HOMEPAGE = "https://canopenterm.de" +BUGTRACKER = "https://github.com/CANopenTerm/CANopenTerm/issues" + +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE.md;md5=10e84ea70e8c3a1fbc462f5424806474" + +DEPENDS = "libinih libsdl2 lua libsocketcan pocketpy" + +SRC_URI = "git://github.com/CANopenTerm/CANopenTerm.git;protocol=https;branch=main" +SRCREV = "5bc04e09351f68e889381e1912b0445c4f18ee32" + +S = "${WORKDIR}/git" + +inherit cmake + +EXTRA_OECMAKE += "-DBUILD_YOCTO=ON" + +FILES:${PN} += "${bindir}/CANopenTerm ${datadir}" + +RDEPENDS:${PN} = "libinih libsdl2 lua libsocketcan pocketpy"