From mboxrd@z Thu Jan 1 00:00:00 1970 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 450F4C282EC for ; Tue, 11 Mar 2025 16:11:12 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web11.13547.1741709464018501489 for ; Tue, 11 Mar 2025 09:11:04 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: denix.org, ip: 64.68.198.64, mailfrom: denis@denix.org) Received: from localhost (localhost [127.0.0.1]) by mailout4.zoneedit.com (Postfix) with ESMTP id 4118840CAA; Tue, 11 Mar 2025 16:11:03 +0000 (UTC) Received: from mailout4.zoneedit.com ([127.0.0.1]) by localhost (zmo14-pco.easydns.vpn [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CcLAbXyIJ0GE; Tue, 11 Mar 2025 16:11:03 +0000 (UTC) Received: from mail.denix.org (pool-100-15-87-159.washdc.fios.verizon.net [100.15.87.159]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 0C4CD40B66; Tue, 11 Mar 2025 16:11:00 +0000 (UTC) Received: by mail.denix.org (Postfix, from userid 1000) id 71E2B1642E8; Tue, 11 Mar 2025 12:10:59 -0400 (EDT) Date: Tue, 11 Mar 2025 12:10:59 -0400 From: Denys Dmytriyenko To: afd@ti.com Cc: Denys Dmytriyenko , Ryan Eatmon , meta-arago@lists.yoctoproject.org Subject: Re: [meta-arago][master/scarthgap][PATCH] meta-arago-extras: Add recipe for NNShark Message-ID: <20250311161059.GA23729@denix.org> References: <20250311143744.102671-1-afd@ti.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250311143744.102671-1-afd@ti.com> User-Agent: Mutt/1.5.20 (2009-06-14) 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 ; Tue, 11 Mar 2025 16:11:12 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/15971 On Tue, Mar 11, 2025 at 09:37:44AM -0500, Andrew Davis via lists.yoctoproject.org wrote: > Signed-off-by: Andrew Davis > --- > .../recipes-multimedia/nnshark/nnshark_git.bb | 38 +++++++++++++++++++ > 1 file changed, 38 insertions(+) > create mode 100644 meta-arago-extras/recipes-multimedia/nnshark/nnshark_git.bb > > diff --git a/meta-arago-extras/recipes-multimedia/nnshark/nnshark_git.bb b/meta-arago-extras/recipes-multimedia/nnshark/nnshark_git.bb > new file mode 100644 > index 00000000..1a3d8ad5 > --- /dev/null > +++ b/meta-arago-extras/recipes-multimedia/nnshark/nnshark_git.bb > @@ -0,0 +1,38 @@ > +SUMMARY = "A GStreamer NNstreamer pipelines real-time profiling plugin" > +HOMEPAGE = "https://github.com/nnstreamer/nnshark" > + > +LICENSE = "GPL-2.0-only & LGPL-2.1-only" > +LIC_FILES_CHKSUM = "file://COPYING;md5=e1caa368743492879002ad032445fa97 \ > + file://COPYING.LESSER;md5=66c40c88533cd228b5b85936709801c8" > + > +SRC_URI = "git://github.com/nnstreamer/nnshark.git;protocol=https;branch=master;name=nnshark \ > + git://github.com/GStreamer/common.git;protocol=https;branch=master;name=common;subdir=${S}/common \ > +" > + > +SRCREV_FORMAT="default" > +SRCREV_nnshark="bcee91b23a98c981b87051fe1b2ad545991c4aa2" > +SRCREV_common="b64f03f6090245624608beb5d2fff335e23a01c0" You might want to fix these ^ https://lists.yoctoproject.org/g/meta-ti/message/18319 > +S = "${WORKDIR}/git" > + > +DEPENDS = "\ > + gtk-doc-native \ > + gstreamer1.0 \ > + gstreamer1.0-plugins-base \ > +" > + > +inherit pkgconfig autotools-brokensep > + > +EXTRA_OECONF = " \ > + --disable-graphviz \ > + --disable-gtk-doc \ > +" > + > +do_configure:prepend() { > + sh autogen.sh --noconfigure > +} > + > +FILES:${PN} += "\ > + ${libdir}/gstreamer-1.0/libgstsharktracers.so \ > + ${libdir}/gstreamer-1.0/libgstsharktracers.la \ > +" > -- > 2.39.2