From patchwork Fri Dec 8 15:20:54 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexandre Belloni X-Patchwork-Id: 35973 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 44CF1C4167B for ; Fri, 8 Dec 2023 15:21:05 +0000 (UTC) Received: from relay7-d.mail.gandi.net (relay7-d.mail.gandi.net [217.70.183.200]) by mx.groups.io with SMTP id smtpd.web10.38352.1702048858580097425 for ; Fri, 08 Dec 2023 07:20:58 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@bootlin.com header.s=gm1 header.b=NhV5FJM5; spf=pass (domain: bootlin.com, ip: 217.70.183.200, mailfrom: alexandre.belloni@bootlin.com) Received: by mail.gandi.net (Postfix) with ESMTPSA id AD06320008; Fri, 8 Dec 2023 15:20:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1702048856; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=GB0pdlH68mbqeU2c4gwPbTpn/rup0TzONeSbQdw6G1o=; b=NhV5FJM5JY0Gc2LWlyqUj3dtig4Z7zK75ul93kfcBa5HKEQyNsbnKvri+eQkzUIB0IDQIs dV/8HfanUKGGP22LClfOX6EKAdjy4R4Q/jTbWlwJYplmMNMu65TxNjw75BYMzwoEWOqps9 qzVkcKFhho4rl9dqZkpjsTfhl+CwazNGSFc1C3wsOGAYrGp+08ISu3VuA5IVPDfqowhcCX SLozlzZHk14rqQLgosE3nqzCr+qhIBVgea8TmXL6z/lkDAlNhYY2BR0dteAB2VuuPw34+M jHr8xbqEsiqm/hcSlUXH158SKJ/d7pb/HuZa7NICQ30KHNfa4I4cELbv4opBHA== From: alexandre.belloni@bootlin.com To: openembedded-core@lists.openembedded.org Cc: Alexandre Belloni Subject: [PATCH] oeqa/selftest/recipetool: stop looking for md5sum Date: Fri, 8 Dec 2023 16:20:54 +0100 Message-ID: <20231208152054.850219-1-alexandre.belloni@bootlin.com> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 X-GND-Sasl: alexandre.belloni@bootlin.com 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, 08 Dec 2023 15:21:05 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/192078 From: Alexandre Belloni The md5sum is no longer generated by recipetool, stop expecting it. Signed-off-by: Alexandre Belloni --- meta/lib/oeqa/selftest/cases/recipetool.py | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/lib/oeqa/selftest/cases/recipetool.py b/meta/lib/oeqa/selftest/cases/recipetool.py index 08da029e6eb9..d10d61bc5b07 100644 --- a/meta/lib/oeqa/selftest/cases/recipetool.py +++ b/meta/lib/oeqa/selftest/cases/recipetool.py @@ -470,7 +470,6 @@ class RecipetoolCreateTests(RecipetoolBase): checkvars['LICENSE'] = set(['MIT']) checkvars['LIC_FILES_CHKSUM'] = 'file://LICENSE;md5=16a934f165e8c3245f241e77d401bb88' checkvars['SRC_URI'] = 'https://files.pythonhosted.org/packages/84/30/80932401906eaf787f2e9bd86dc458f1d2e75b064b4c187341f29516945c/python-magic-${PV}.tar.gz' - checkvars['SRC_URI[md5sum]'] = 'e384c95a47218f66c6501cd6dd45ff59' checkvars['SRC_URI[sha256sum]'] = 'f3765c0f582d2dfc72c15f3b5a82aecfae9498bd29ca840d72f37d7bd38bfcd5' inherits = ['setuptools3'] self._test_recipe_contents(recipefile, checkvars, inherits)