From patchwork Thu Sep 24 06:45:22 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 99155 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 760D6C98310 for ; Thu, 24 Sep 2026 06:45:40 +0000 (UTC) Received: from mailout02.t-online.de (mailout02.t-online.de [194.25.134.17]) by mx.groups.io with SMTP id smtpd.msgproc01-g2.2016.1790232336199728489 for ; Wed, 23 Sep 2026 23:45:36 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=f_l_k@t-online.de header.s=20260216 header.b=hI6m8pUz; spf=pass (domain: t-online.de, ip: 194.25.134.17, mailfrom: f_l_k@t-online.de) Received: from fwd78.aul.t-online.de (fwd78.aul.t-online.de [10.223.144.104]) by mailout02.t-online.de (Postfix) with SMTP id 14120DFDB for ; Thu, 24 Sep 2026 08:45:34 +0200 (CEST) Received: from intel-corei7-64.fritz.box ([84.154.161.151]) by fwd78.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1x9dCz-1Cw6L20; Thu, 24 Sep 2026 08:45:29 +0200 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-oe][PATCH 1/2] influxdb: inherit go-mod-update-modules Date: Thu, 24 Sep 2026 08:45:22 +0200 Message-ID: <20260924064523.165613-1-f_l_k@t-online.de> X-Mailer: git-send-email 2.55.0 MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1790232329-457F990A-E7FB9588/0/0 CLEAN NORMAL X-TOI-MSGID: 9419e42d-b18e-41f7-bdeb-4f3e846d96ef DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=t-online.de; s=20260216; t=1790232334; i=f_l_k@t-online.de; bh=e0tmNupb9TVcLXnDUSatKy7LWn9GNukzH0ClVNbpgtU=; h=From:To:Subject:Date; b=hI6m8pUzTPJ0pY8WyQrdr8kFUG4HsGQSM6yjzaz/01jAHw+Gp2B7vtdCnIzPG31m0 joXvNKclbCg2/B34Mv+T9IZ6xwfE/ecSK5hEomG4A5G2u43+LoaPIOUFKI8GnwMg4u DshAL1DBh2EQ/HskexsUboCsjI4Q2Vw3ToSutNOp9FZz7xNsy+yfcCwtgpEqSRnSy9 PdnUQtBGLEcGhubUNHHuYK0Y3eUVio28sH6wUaTiQsosLQXnkcCAFNDamm8abYbc90 2F8Zk/bQwUBVkeGN2ZPFbGK0bG15z7dSsaqE+3hZ2RUtGuLLybkKPQbbgqKwoToWPJ hIaukzJ3U4LDg== 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 ; Thu, 24 Sep 2026 06:45:40 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/130279 The class includes the generated -licenses.inc and -go-mods.inc files itself and provides the update_modules task to regenerate them, so the recipe no longer needs to require them. AI-Generated: Uses Claude Code (Claude Fable 5.1) Signed-off-by: Markus Volk --- meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb b/meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb index 4ce8e3681c..dc57afd0ad 100644 --- a/meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb +++ b/meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb @@ -3,7 +3,6 @@ HOMEPAGE = "https://www.influxdata.com/products/influxdb-overview/" LICENSE = "MIT AND ${GO_MOD_LICENSES}" LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=f39a8d10930fb37bd59adabb3b9d0bd6" -require ${BPN}-licenses.inc SRC_URI = "\ git://${GO_IMPORT};protocol=https;branch=1.8;destsuffix=${GO_SRCURI_DESTSUFFIX} \ @@ -12,7 +11,6 @@ SRC_URI = "\ file://influxdb \ file://influxdb.conf \ " -require ${BPN}-go-mods.inc SRCREV = "688e697c51fd5353725da078555adbeff0363d01" @@ -22,7 +20,7 @@ GO_INSTALL = "\ ${GO_IMPORT}/cmd/influxd \ " -inherit go-mod pkgconfig systemd update-rc.d useradd +inherit go-mod go-mod-update-modules pkgconfig systemd update-rc.d useradd INITSCRIPT_PACKAGES = "${PN}" INITSCRIPT_NAME = "influxdb" From patchwork Thu Sep 24 06:45:23 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 99154 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 85E95C98314 for ; Thu, 24 Sep 2026 06:45:40 +0000 (UTC) Received: from mailout02.t-online.de (mailout02.t-online.de [194.25.134.17]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.2029.1790232336199899970 for ; Wed, 23 Sep 2026 23:45:36 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=f_l_k@t-online.de header.s=20260216 header.b=mc5YFLKW; spf=pass (domain: t-online.de, ip: 194.25.134.17, mailfrom: f_l_k@t-online.de) Received: from fwd78.aul.t-online.de (fwd78.aul.t-online.de [10.223.144.104]) by mailout02.t-online.de (Postfix) with SMTP id 23A97DF55 for ; Thu, 24 Sep 2026 08:45:34 +0200 (CEST) Received: from intel-corei7-64.fritz.box ([84.154.161.151]) by fwd78.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1x9dCz-1Cw6L30; Thu, 24 Sep 2026 08:45:29 +0200 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-oe][PATCH 2/2] syzkaller: inherit go-mod-update-modules Date: Thu, 24 Sep 2026 08:45:23 +0200 Message-ID: <20260924064523.165613-2-f_l_k@t-online.de> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260924064523.165613-1-f_l_k@t-online.de> References: <20260924064523.165613-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1790232329-89FF890A-3D06AB10/0/0 CLEAN NORMAL X-TOI-MSGID: 2025f794-0bba-4156-977d-06d73db85e58 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=t-online.de; s=20260216; t=1790232334; i=f_l_k@t-online.de; bh=J9gPikpzVdapPrOpTlyjjWxcHJL9hZ2cmAMyCTV/oP4=; h=From:To:Subject:Date:In-Reply-To:References; b=mc5YFLKWq38gcPJx2JG0MzPnVF41dmq7fMVGH66bcpy9QL64UdhEtSFvsL63hanbb uEJYVgW7kxHeljjI5PcLKIsCAHxthqA3lvB872QQkdOrzEYG/R53uSbOzboEb9RMJH WuN15bHpijUJDyv2GBnBuRfzZvTIlgN708LhZVb0G+nYgvS/SWElIaCK7HC/1Tna5L JgQ1b6tWSj8/kczQkNGIgVa+LNXb4fgltRLSfCjtBeZ+E8TSJr+jUgUYIhnNKwhW1Z csAh3fWpWdXnqqtcUFORBYTbw56Lb9x9q0WIq3iKbsqKRT5ZECc7d2OL8/33tqb5b2 P+Tb8l8Krq8Mw== 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 ; Thu, 24 Sep 2026 06:45:40 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/130280 The class includes the generated -licenses.inc and -go-mods.inc files itself and provides the update_modules task to regenerate them, so the recipe no longer needs to require them. AI-Generated: Uses Claude Code (Claude Fable 5.1) Signed-off-by: Markus Volk --- meta-oe/recipes-test/syzkaller/syzkaller_git.bb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/meta-oe/recipes-test/syzkaller/syzkaller_git.bb b/meta-oe/recipes-test/syzkaller/syzkaller_git.bb index bdd4cf6a40..25df242d42 100644 --- a/meta-oe/recipes-test/syzkaller/syzkaller_git.bb +++ b/meta-oe/recipes-test/syzkaller/syzkaller_git.bb @@ -4,16 +4,14 @@ BUGTRACKER = "https://github.com/google/syzkaller/issues" SECTION = "devel" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=5335066555b14d832335aa4660d6c376" -require ${BPN}-licenses.inc SRC_URI = "git://${GO_IMPORT};protocol=https;destsuffix=${GO_SRCURI_DESTSUFFIX};branch=master" SRCREV = "22ec1469fe8c0ba256de07e8f97fa7b375b522bd" -require ${BPN}-go-mods.inc # Upstream repo does not tag UPSTREAM_CHECK_COMMITS = "1" -inherit go-mod +inherit go-mod go-mod-update-modules GO_IMPORT = "github.com/google/syzkaller"