From patchwork Fri Jun 3 00:06:48 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Kjellerstedt X-Patchwork-Id: 8786 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 72506CCA47B for ; Fri, 3 Jun 2022 00:07:03 +0000 (UTC) Received: from smtp1.axis.com (smtp1.axis.com [195.60.68.17]) by mx.groups.io with SMTP id smtpd.web11.1901.1654214817091818945 for ; Thu, 02 Jun 2022 17:06:58 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@axis.com header.s=axis-central1 header.b=TJbyip9w; spf=pass (domain: axis.com, ip: 195.60.68.17, mailfrom: peter.kjellerstedt@axis.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=axis.com; q=dns/txt; s=axis-central1; t=1654214817; x=1685750817; h=from:to:subject:date:message-id:mime-version: content-transfer-encoding; bh=W4V6bXVAhdO+qKZFuIvrdIG8yzEDVan/veSz5WzpkH8=; b=TJbyip9wgOuUa6fur14OBjsa0OtIR0Gz+2hYMmjusMmJtfw+tGMg6PxA VyfgDY4q3lA1pXkixnovsT8gFzFjkacsaNfYujReUvPgeGEgKiSX/AM+m 5wJPs84FiYE2r5mdo2K7m82luIQ7DWKRWEbmuMJs1vYfcVU66X9Z71qXa PNoEx9u5541N+8mxN2BMTnhkZrE7SsqWPFA40AC4twNRPQBbFXXlc78rS CM9qSL5f97u0s8N1yfQfo++3RwCKi63QjmZCEh3kGkvi7hmJEgO2JKbMR I0gOwx4Ox6dVFzaxkwbVUlgSILpBptR92LorKExqnHo0QjCOJMVEhVgt3 A==; From: Peter Kjellerstedt To: Subject: [PATCH 1/2] libseccomp: Correct LIC_FILES_CHKSUM Date: Fri, 3 Jun 2022 02:06:48 +0200 Message-ID: <20220603000649.24493-1-pkj@axis.com> X-Mailer: git-send-email 2.21.3 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 ; Fri, 03 Jun 2022 00:07:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/166505 Previously, only the first line of the LICENSE file was included, which only covered the license name and thus would not detect a change to the version (or anything else for that matter). Signed-off-by: Peter Kjellerstedt --- meta/recipes-support/libseccomp/libseccomp_2.5.4.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-support/libseccomp/libseccomp_2.5.4.bb b/meta/recipes-support/libseccomp/libseccomp_2.5.4.bb index 731d9ae08d..e89b8f7f4b 100644 --- a/meta/recipes-support/libseccomp/libseccomp_2.5.4.bb +++ b/meta/recipes-support/libseccomp/libseccomp_2.5.4.bb @@ -3,7 +3,7 @@ DESCRIPTION = "The libseccomp library provides and easy to use, platform indepen HOMEPAGE = "https://github.com/seccomp/libseccomp" SECTION = "security" LICENSE = "LGPL-2.1-only" -LIC_FILES_CHKSUM = "file://LICENSE;beginline=0;endline=1;md5=8eac08d22113880357ceb8e7c37f989f" +LIC_FILES_CHKSUM = "file://LICENSE;md5=7c13b3376cea0ce68d2d2da0a1b3a72c" DEPENDS += "gperf-native"