From patchwork Mon Feb 19 21:47:54 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Derek Straka X-Patchwork-Id: 39750 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 9CACEC54787 for ; Mon, 19 Feb 2024 21:48:17 +0000 (UTC) Received: from mail-oi1-f177.google.com (mail-oi1-f177.google.com [209.85.167.177]) by mx.groups.io with SMTP id smtpd.web11.1102.1708379294435114787 for ; Mon, 19 Feb 2024 13:48:14 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: gmail.com, ip: 209.85.167.177, mailfrom: straka.derek@gmail.com) Received: by mail-oi1-f177.google.com with SMTP id 5614622812f47-3c15dd2a1fdso831359b6e.2 for ; Mon, 19 Feb 2024 13:48:14 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1708379293; x=1708984093; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=dwFx6zzPRWGVnSDP5o0DO0ks6dXM8tlxmfdgaukXvps=; b=fJa2iracUzBjl/nJZD2am2bM0Zl7NWtx3TQCYVoLx5UdadblaqifiP8XhewxrAIP5f 0ZAKTDaaTAJGXboB1oF+woOCGIPB6ZKUbBTWPB+eH6M9J9r3UVjhvPdoSLaqi0aGH5RT 1O6iX4DbNGzWkhN6IAeDkgA7ND46s9vbuYYbX2rIdrkSmU01i3bUJiOnaZ6Zr5vAGbDp DC7M9gPuQ2Lr85YCL4iTevQ1Vv5rSv0UhHXbnWbs0IhiY41x9fE/e6jL0V5v5FcudAKS g4jBloaAG7GimFVffOPEa4Xqn9r/0wuEzNh0zKlOJujzsGmKZhzuIDR6zvJVjsVdduVn QZaA== X-Gm-Message-State: AOJu0YwTBYREshONxFAK5I5R5URyQyIE2h7vkBGpmWqGZWbMKHNklgLM HP2lfw3pJA9QLsU40UMniAEgZZwWgzoGDdXUxGUTBiPcWr5rlK0ruk0vd3pqpXM= X-Google-Smtp-Source: AGHT+IGyekvjEzCf9IRloW7ED7R/1/9046gmN5mt15SMHfvbzAdAwHZbWHQCnGQC3oTaLeDBXKQihQ== X-Received: by 2002:a05:6808:180c:b0:3c1:5440:f2e1 with SMTP id bh12-20020a056808180c00b003c15440f2e1mr6599683oib.41.1708379292755; Mon, 19 Feb 2024 13:48:12 -0800 (PST) Received: from sparta.internal.asterius.io (c-73-228-213-122.hsd1.mn.comcast.net. [73.228.213.122]) by smtp.gmail.com with ESMTPSA id bw10-20020a056808244a00b003c03fde4611sm994747oib.2.2024.02.19.13.48.11 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 19 Feb 2024 13:48:12 -0800 (PST) From: Derek Straka To: openembedded-devel@lists.openembedded.org Cc: Derek Straka Subject: [meta-python][PATCH 1/8] python3-trustme: add runtime dependency for tests and re-add to ptest Date: Mon, 19 Feb 2024 21:47:54 +0000 Message-Id: <20240219214801.1514843-1-derek@asterius.io> X-Mailer: git-send-email 2.34.1 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 ; Mon, 19 Feb 2024 21:48:17 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/108886 Signed-off-by: Derek Straka --- meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +- meta-python/recipes-devtools/python/python3-trustme_1.1.0.bb | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc b/meta-python/conf/include/ptest-packagelists-meta-python.inc index 598548262..51fcdd2b2 100644 --- a/meta-python/conf/include/ptest-packagelists-meta-python.inc +++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc @@ -50,6 +50,7 @@ PTESTS_FAST_META_PYTHON = "\ python3-soupsieve \ python3-sqlparse \ python3-tomlkit \ + python3-trustme \ python3-ujson \ python3-u-msgpack-python \ python3-unidiff \ @@ -83,7 +84,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\ python3-pyzmq \ python3-scrypt \ python3-service-identity \ - python3-trustme \ python3-typeguard \ python3-whoosh \ python3-xlrd \ diff --git a/meta-python/recipes-devtools/python/python3-trustme_1.1.0.bb b/meta-python/recipes-devtools/python/python3-trustme_1.1.0.bb index ac03bce2b..21161a0e0 100644 --- a/meta-python/recipes-devtools/python/python3-trustme_1.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-trustme_1.1.0.bb @@ -20,6 +20,7 @@ RDEPENDS:${PN} += " \ " RDEPENDS:${PN}-ptest += " \ + python3-pyopenssl \ python3-pyasn1-modules \ python3-pytest \ python3-service-identity \ From patchwork Mon Feb 19 21:47:55 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Derek Straka X-Patchwork-Id: 39752 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 AC214C48BC3 for ; Mon, 19 Feb 2024 21:48:17 +0000 (UTC) Received: from mail-oi1-f176.google.com (mail-oi1-f176.google.com [209.85.167.176]) by mx.groups.io with SMTP id smtpd.web11.1103.1708379295532915444 for ; Mon, 19 Feb 2024 13:48:15 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: gmail.com, ip: 209.85.167.176, mailfrom: straka.derek@gmail.com) Received: by mail-oi1-f176.google.com with SMTP id 5614622812f47-3c02adddb8eso4238830b6e.0 for ; Mon, 19 Feb 2024 13:48:15 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1708379294; x=1708984094; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=lLC+uFDoMWxbphiroWrQ7BPimc3TCebku0eapL2rhAw=; b=vD4NAt9YdC1k+d/AXf7zm+/QRwZBDuf7PABr+8neVkzylsHaiamD4Q1h1vPH2vNLmU veDEPuGhXF35K1WCCjwZrmFeFbVzgglaOWRrHtUGPwSjcNniTfKIlOvZWw91hROS+99W as2IrqeW3epK8Jsl8o+lM+wLRtr57aT3PVeJSa1yKKJsKbjg7ylWQ8rsyt4fcgvo6S/v A/eoy7iF1Ct/dkmDS35OEPGOb32TSFZo1an8DeeHu13E58mo0Q+SCIyOO8rskY8AAFlY lgG/3CokJDpmCLzyIiLz8mY/rxWWprw4CpYy+EBV2dpSBi//rMYUifWVI4PixyOwlBE0 DB1g== X-Gm-Message-State: AOJu0YwSmb27/Mgc7a5wLyavwItPTJupMKrU9GM8pNrpjEen9ynRlys0 pvyh79HwiH7IcL3qOrCOmLmBzHVMKg8RP5OgjnD+qZL9bPedTchCOd07n/k8vpk= X-Google-Smtp-Source: AGHT+IE3XI1tMXqUdC+xV2acTEIFkiYuXOQZnkrG1/2dN8rprQxeOvf1WcRNOUiaiJnAxmP1/rrmpA== X-Received: by 2002:a05:6808:10cd:b0:3c1:3527:bcf4 with SMTP id s13-20020a05680810cd00b003c13527bcf4mr19536314ois.2.1708379294342; Mon, 19 Feb 2024 13:48:14 -0800 (PST) Received: from sparta.internal.asterius.io (c-73-228-213-122.hsd1.mn.comcast.net. [73.228.213.122]) by smtp.gmail.com with ESMTPSA id bw10-20020a056808244a00b003c03fde4611sm994747oib.2.2024.02.19.13.48.12 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 19 Feb 2024 13:48:13 -0800 (PST) From: Derek Straka To: openembedded-devel@lists.openembedded.org Cc: Derek Straka Subject: [meta-python][PATCH 2/8] python3-msgpack: re-add working ptest Date: Mon, 19 Feb 2024 21:47:55 +0000 Message-Id: <20240219214801.1514843-2-derek@asterius.io> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240219214801.1514843-1-derek@asterius.io> References: <20240219214801.1514843-1-derek@asterius.io> 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 ; Mon, 19 Feb 2024 21:48:17 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/108887 Signed-off-by: Derek Straka --- meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc b/meta-python/conf/include/ptest-packagelists-meta-python.inc index 51fcdd2b2..09fd7eb25 100644 --- a/meta-python/conf/include/ptest-packagelists-meta-python.inc +++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc @@ -23,6 +23,7 @@ PTESTS_FAST_META_PYTHON = "\ python3-intervals \ python3-ipy \ python3-iso3166 \ + python3-msgpack \ python3-multidict \ python3-parse-type \ python3-platformdirs \ @@ -75,7 +76,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\ python3-jdcal \ python3-jsmin \ python3-license-expression \ - python3-msgpack \ python3-ordered-set \ python3-parse \ python3-pillow \ From patchwork Mon Feb 19 21:47:56 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Derek Straka X-Patchwork-Id: 39751 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 9A3A5C48BF8 for ; Mon, 19 Feb 2024 21:48:17 +0000 (UTC) Received: from mail-oi1-f179.google.com (mail-oi1-f179.google.com [209.85.167.179]) by mx.groups.io with SMTP id smtpd.web10.1125.1708379297003890774 for ; Mon, 19 Feb 2024 13:48:17 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: gmail.com, ip: 209.85.167.179, mailfrom: straka.derek@gmail.com) Received: by mail-oi1-f179.google.com with SMTP id 5614622812f47-3bba0ac2e88so3571948b6e.0 for ; Mon, 19 Feb 2024 13:48:16 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1708379295; x=1708984095; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=HZfo/xLmW0JC5V61MVDNoRCFGcVHQv9nHOO9zlIrZJ8=; b=CCXgobdB5A+0E+txDb0CYi3ssoA/fCYhBnmDDD1dF9z6y+jx2B3UXfXcIzy27iCxaf zkAQHQlCgABcp7SxBX5cF9sUWjJQsUpjUFgXsBqE5UwRYxqUg1wdR8QaZyWD3/HCSGQN zQnfCQcPaZi5oLq6cZsLCV4TiK8s6RCmei2SgSU0ppzr2Xxs/56G/ik17h6ecC5UEXsi 9/guGB/lfMHlakITYVacoBmGxJJ9lGZ69ZQ2HAu1w2a+JK0EkN3KDiPe80066Vd2WZdu nRsOW7jctFfANlOlE4Gi4rj3bIBM6O5ElHfEWjYRhuLzsphk6MPiaTzQhHAkchdMCTvx AWRQ== X-Gm-Message-State: AOJu0YzDKiItKajwo0mn8+NcV+d5QGR57y01JeQJzl/3fAfBWJiHkSq7 ZCSwqIfJ5ZjJje1qk9uEou8PQjvy5i6qJc04lALIvNSN1Bka402Y7j3oJx2Opnw= X-Google-Smtp-Source: AGHT+IGcu3S9a6nbI8BEx4ObmW+NVGbtYIhy62/Wzx0f+0oaf0qeKKy2Fh2w4Bg4oQdGVekfwYAf9g== X-Received: by 2002:a05:6808:238a:b0:3c1:5d21:275 with SMTP id bp10-20020a056808238a00b003c15d210275mr1269435oib.14.1708379295401; Mon, 19 Feb 2024 13:48:15 -0800 (PST) Received: from sparta.internal.asterius.io (c-73-228-213-122.hsd1.mn.comcast.net. [73.228.213.122]) by smtp.gmail.com with ESMTPSA id bw10-20020a056808244a00b003c03fde4611sm994747oib.2.2024.02.19.13.48.14 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 19 Feb 2024 13:48:14 -0800 (PST) From: Derek Straka To: openembedded-devel@lists.openembedded.org Cc: Derek Straka Subject: [meta-python][PATCH 3/8] python3-jsmin: re-add functional ptests Date: Mon, 19 Feb 2024 21:47:56 +0000 Message-Id: <20240219214801.1514843-3-derek@asterius.io> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240219214801.1514843-1-derek@asterius.io> References: <20240219214801.1514843-1-derek@asterius.io> 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 ; Mon, 19 Feb 2024 21:48:17 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/108888 Supress warnings about syntax for the tests Signed-off-by: Derek Straka --- meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +- meta-python/recipes-devtools/python/python3-jsmin/run-ptest | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc b/meta-python/conf/include/ptest-packagelists-meta-python.inc index 09fd7eb25..98ebdd07a 100644 --- a/meta-python/conf/include/ptest-packagelists-meta-python.inc +++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc @@ -23,6 +23,7 @@ PTESTS_FAST_META_PYTHON = "\ python3-intervals \ python3-ipy \ python3-iso3166 \ + python3-jsmin \ python3-msgpack \ python3-multidict \ python3-parse-type \ @@ -74,7 +75,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\ python3-gunicorn \ python3-inotify \ python3-jdcal \ - python3-jsmin \ python3-license-expression \ python3-ordered-set \ python3-parse \ diff --git a/meta-python/recipes-devtools/python/python3-jsmin/run-ptest b/meta-python/recipes-devtools/python/python3-jsmin/run-ptest index cbcfffda5..2f04130b9 100644 --- a/meta-python/recipes-devtools/python/python3-jsmin/run-ptest +++ b/meta-python/recipes-devtools/python/python3-jsmin/run-ptest @@ -1,3 +1,3 @@ #!/bin/sh -python3 test.py +python3 -W ignore test.py From patchwork Mon Feb 19 21:47:57 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Derek Straka X-Patchwork-Id: 39757 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 80422C48BF8 for ; Mon, 19 Feb 2024 21:48:27 +0000 (UTC) Received: from mail-oi1-f177.google.com (mail-oi1-f177.google.com [209.85.167.177]) by mx.groups.io with SMTP id smtpd.web11.1107.1708379298483532050 for ; Mon, 19 Feb 2024 13:48:18 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: gmail.com, ip: 209.85.167.177, mailfrom: straka.derek@gmail.com) Received: by mail-oi1-f177.google.com with SMTP id 5614622812f47-3c03d6e5e56so4991170b6e.1 for ; Mon, 19 Feb 2024 13:48:18 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1708379297; x=1708984097; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=INXYr/9EVmtKwZ/eBhVwPG+q7261JIsOtEWxj1/Qxaw=; b=Gux7o2nu8b/kfg207BxFYOWnGPiXPqehy0krTNj38DIe3IIeN2GoHjGuBuGrC/kIJE hOVgk+FHlGmJkvOs0Dk6AEPvvcBQu3dv2LbOCOX+Fco5BgiGyQcH4w8LxJM0Ub6n9FVb ezkDlxCgJb3caWDexhVezsXDC0zD/mSPdqNS3ztKeByB/KFrKL4GT9FfLZW88Is5FYlp zWlm5wAzCLDMbpx6VmCoB9sEqPXhLBIRmlSHsQCo6kMaBm5wZSUHIgiNc3iBxqguEeua 1XlrIMz2KpD+6aDXJE/vjCv1pQlto3qvNUdh3qOYTTRZ/sjAu3KJ+x7kJsFBOe0gvX5d vEUQ== X-Gm-Message-State: AOJu0YxFgWXv0y97RJfH5dxJws3PUGi19Lx4udPPGm2Kxb3zAiBZhjlU djj3c1IRZLoue66WhvMVd8z2cfkNghSqksgKUzKy6TYMcHEXPrcxJZGd+uQq7l4= X-Google-Smtp-Source: AGHT+IE10tPCNk1/CXfS7AStb10twusARc1zK4invTtZbVYngN+tsZddLtVNV6Ql7FFYtphNEl8zLQ== X-Received: by 2002:a05:6808:30a5:b0:3c1:5d1b:a6a8 with SMTP id bl37-20020a05680830a500b003c15d1ba6a8mr3553735oib.6.1708379296929; Mon, 19 Feb 2024 13:48:16 -0800 (PST) Received: from sparta.internal.asterius.io (c-73-228-213-122.hsd1.mn.comcast.net. [73.228.213.122]) by smtp.gmail.com with ESMTPSA id bw10-20020a056808244a00b003c03fde4611sm994747oib.2.2024.02.19.13.48.15 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 19 Feb 2024 13:48:15 -0800 (PST) From: Derek Straka To: openembedded-devel@lists.openembedded.org Cc: Derek Straka Subject: [meta-python][PATCH 4/8] python3-parse: add back working ptests Date: Mon, 19 Feb 2024 21:47:57 +0000 Message-Id: <20240219214801.1514843-4-derek@asterius.io> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240219214801.1514843-1-derek@asterius.io> References: <20240219214801.1514843-1-derek@asterius.io> 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 ; Mon, 19 Feb 2024 21:48:27 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/108889 Signed-off-by: Derek Straka --- meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc b/meta-python/conf/include/ptest-packagelists-meta-python.inc index 98ebdd07a..ea6284264 100644 --- a/meta-python/conf/include/ptest-packagelists-meta-python.inc +++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc @@ -26,6 +26,7 @@ PTESTS_FAST_META_PYTHON = "\ python3-jsmin \ python3-msgpack \ python3-multidict \ + python3-parse \ python3-parse-type \ python3-platformdirs \ python3-polyline \ @@ -77,7 +78,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\ python3-jdcal \ python3-license-expression \ python3-ordered-set \ - python3-parse \ python3-pillow \ python3-pint \ python3-pytest-lazy-fixture \ From patchwork Mon Feb 19 21:47:58 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Derek Straka X-Patchwork-Id: 39756 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 9B9E3C54788 for ; Mon, 19 Feb 2024 21:48:27 +0000 (UTC) Received: from mail-oi1-f182.google.com (mail-oi1-f182.google.com [209.85.167.182]) by mx.groups.io with SMTP id smtpd.web10.1127.1708379299431968709 for ; Mon, 19 Feb 2024 13:48:19 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: gmail.com, ip: 209.85.167.182, mailfrom: straka.derek@gmail.com) Received: by mail-oi1-f182.google.com with SMTP id 5614622812f47-3bbd6ea06f5so2414930b6e.1 for ; Mon, 19 Feb 2024 13:48:19 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1708379298; x=1708984098; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=A1VavxrAyaipWql3KIUyTubMVi4+o61bFph8jYWN/9k=; b=qeQY0fAjq0cEiu7V/ZcYWUjhWSkZusqxs3Mwm645o+yoL309fPbY3xa0uLGHclwope 8G33mQi/EvjNUaMSWELTBpjIWOhdfpsF+/1SQiDjEFtORsmbOQkgqL7oiHTRJd5Fl9BZ jQt/SiyNQmJZmVMppGXIFkcoWFMHJJrMuGwV80zEiy/IsyaeCMUbTf7LZuLUNxWOPRpH ohMy/7GRYlRgGfqXTv/0tA3ck9BWTa6FpkeBJZgx+ceYeHH0n8QFXMyhDHAwhuZnIHjs jR25e+dYXi/ASVKvgcvza/Hots/pSkbv/Xpl3yC/f0biVq/8bfW+BccuRJ9VsNprCbqx Ulng== X-Gm-Message-State: AOJu0Yzs+t0x6jdy0AoFrrk4s8mOAB903PYNwIYCfmfP+wf5ai/Kk6Nz kaNnknvRu55uaqsKVFNpN3Hw1QQsK1Y3VB2WZ+4eSnA/ovvfTn2L5Sa8qworo1g= X-Google-Smtp-Source: AGHT+IEd1OdUH6QjPojWwxEnJh5mUqAAgZEGuDDmAB2QhXeOPH6EPvzMjQ3ZBY+lIVqaU+Pnn4Rfnw== X-Received: by 2002:a05:6808:10ca:b0:3c1:348b:d762 with SMTP id s10-20020a05680810ca00b003c1348bd762mr6254810ois.16.1708379298355; Mon, 19 Feb 2024 13:48:18 -0800 (PST) Received: from sparta.internal.asterius.io (c-73-228-213-122.hsd1.mn.comcast.net. [73.228.213.122]) by smtp.gmail.com with ESMTPSA id bw10-20020a056808244a00b003c03fde4611sm994747oib.2.2024.02.19.13.48.17 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 19 Feb 2024 13:48:17 -0800 (PST) From: Derek Straka To: openembedded-devel@lists.openembedded.org Cc: Derek Straka Subject: [meta-python][PATCH 5/8] python3-jdcal: re-add functional ptests Date: Mon, 19 Feb 2024 21:47:58 +0000 Message-Id: <20240219214801.1514843-5-derek@asterius.io> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240219214801.1514843-1-derek@asterius.io> References: <20240219214801.1514843-1-derek@asterius.io> 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 ; Mon, 19 Feb 2024 21:48:27 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/108890 Signed-off-by: Derek Straka --- meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc b/meta-python/conf/include/ptest-packagelists-meta-python.inc index ea6284264..7fa96a495 100644 --- a/meta-python/conf/include/ptest-packagelists-meta-python.inc +++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc @@ -23,6 +23,7 @@ PTESTS_FAST_META_PYTHON = "\ python3-intervals \ python3-ipy \ python3-iso3166 \ + python3-jdcal \ python3-jsmin \ python3-msgpack \ python3-multidict \ @@ -75,7 +76,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\ python3-gpiod \ python3-gunicorn \ python3-inotify \ - python3-jdcal \ python3-license-expression \ python3-ordered-set \ python3-pillow \ From patchwork Mon Feb 19 21:47:59 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Derek Straka X-Patchwork-Id: 39755 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 8E7F8C5478A for ; Mon, 19 Feb 2024 21:48:27 +0000 (UTC) Received: from mail-oi1-f179.google.com (mail-oi1-f179.google.com [209.85.167.179]) by mx.groups.io with SMTP id smtpd.web11.1109.1708379300874475925 for ; Mon, 19 Feb 2024 13:48:20 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: gmail.com, ip: 209.85.167.179, mailfrom: straka.derek@gmail.com) Received: by mail-oi1-f179.google.com with SMTP id 5614622812f47-3bb9b28acb4so3373361b6e.2 for ; Mon, 19 Feb 2024 13:48:20 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1708379299; x=1708984099; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=7sW/Z3+9tqzusqw/UUnpDHie5nPflzxby1vy0JqVhrE=; b=dL8fq3vVyhc7I0YZxsuCdsc3vXUE2bLGMYZJdmTQxul7wQS4s25F52sPoNgpVBd+gC ZWC0zH7ejMngBvYg02qLHwVXCUS3mXthDLh3BzGDlvcVqQ8Gn2NcaSOZ3cRH8bOzlsNN mfSpn1jm6a857kyFAQV5mdHDhTWv3rFBW8buSC2lXwdHFy5Uhmn7Qg4VDM37WMPnuv03 A1JqP1xAqtEf91avzA1VXcoGpPjRW+9HlWRgIkqBb7M6qVP9tVZUQWUKDbUwAhfaNcuS oGXni3lDU68zeSFTC4nbfCBs6ovnV4j7PISZ2rO67D3PXVuouhWojVhwlFpYta4tqoa1 ODLg== X-Gm-Message-State: AOJu0Yxg+wRvwk+Q80M/+AmaqU8raPXns2naiKTpA8vMabTNCkRiaZiN mqLR1HM9RIYyhs0C+Wrzw/74tm3eHhEcIykmPcj4j+k4bmHD8nV55jwxXnyuhhE= X-Google-Smtp-Source: AGHT+IHdsvgJQaaSUuRm+MOqtQq8KuJeRssSMztKcYEqAOpYDi7wESL8xf+nXlYgBYYgvi7ptm/cDA== X-Received: by 2002:a05:6808:d47:b0:3c1:55ad:2cd9 with SMTP id w7-20020a0568080d4700b003c155ad2cd9mr4887400oik.51.1708379299361; Mon, 19 Feb 2024 13:48:19 -0800 (PST) Received: from sparta.internal.asterius.io (c-73-228-213-122.hsd1.mn.comcast.net. [73.228.213.122]) by smtp.gmail.com with ESMTPSA id bw10-20020a056808244a00b003c03fde4611sm994747oib.2.2024.02.19.13.48.18 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 19 Feb 2024 13:48:18 -0800 (PST) From: Derek Straka To: openembedded-devel@lists.openembedded.org Cc: Derek Straka Subject: [meta-python][PATCH 6/8] python3-gunicorn: re-enable working ptests for the package Date: Mon, 19 Feb 2024 21:47:59 +0000 Message-Id: <20240219214801.1514843-6-derek@asterius.io> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240219214801.1514843-1-derek@asterius.io> References: <20240219214801.1514843-1-derek@asterius.io> 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 ; Mon, 19 Feb 2024 21:48:27 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/108891 Signed-off-by: Derek Straka --- meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc b/meta-python/conf/include/ptest-packagelists-meta-python.inc index 7fa96a495..2733280e6 100644 --- a/meta-python/conf/include/ptest-packagelists-meta-python.inc +++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc @@ -18,6 +18,7 @@ PTESTS_FAST_META_PYTHON = "\ python3-dominate \ python3-execnet \ python3-geojson \ + python3-gunicorn \ python3-html2text \ python3-inflection \ python3-intervals \ @@ -74,7 +75,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\ python3-dnspython \ python3-fastjsonschema \ python3-gpiod \ - python3-gunicorn \ python3-inotify \ python3-license-expression \ python3-ordered-set \ From patchwork Mon Feb 19 21:48:00 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Derek Straka X-Patchwork-Id: 39754 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 88C8CC54787 for ; Mon, 19 Feb 2024 21:48:27 +0000 (UTC) Received: from mail-oi1-f181.google.com (mail-oi1-f181.google.com [209.85.167.181]) by mx.groups.io with SMTP id smtpd.web11.1110.1708379302273768681 for ; Mon, 19 Feb 2024 13:48:22 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: gmail.com, ip: 209.85.167.181, mailfrom: straka.derek@gmail.com) Received: by mail-oi1-f181.google.com with SMTP id 5614622812f47-3c02b993a5aso2867447b6e.1 for ; Mon, 19 Feb 2024 13:48:22 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1708379301; x=1708984101; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=gf8kUIwpOWtHu/MeERXYxUQFQk3h+Lvx5iZsgXr8dsQ=; b=Ai20JqbclTD7Blt46awjAIopqBXaQans/4IYG7AlxsOU0NkA/nNzNnr0fkXKn+EQeA n+E1Qmh7xzHylP26F/Wy7mgbRlDJhWzYhlEP6ecyfozgAd66/v6sSMcQ3E3bkUEs9EhT MayrUx/rLUElb7zl/lvupwB15etiQuXL2IEvLzmKtYNlJrSzdpWWWwVJdehj8NkPWll1 JCR0jMd3OmVAmdtuGH25/IZYZXH1jrtfGMfq2KrUMRpdgg63tJ2AZDK6XqN2fwSDS6ji YvUuM9+D/v0cz1BLvxgutHppxjGoIqm1QyvFRN8LRMkviZ8q2VpdePwi+UMJ5ZtARp4g n1GA== X-Gm-Message-State: AOJu0Yw+w+jyDX5zKsb6p8t922IPzvzZpRbdy2LrzSOxCjzQGOGYnpnr 3U/+bb1WEkfydlzPqc7TvujS60bCqXYiJT6WY7/CAXHv8twyrj6zEKsKKzoMgKo= X-Google-Smtp-Source: AGHT+IGG8rHGQc9DMB4AxEleN5PTBzFEThEDOQmA/EgbfzX4l8GqmmzVxKqgN2zJWieULk8Ex933Uw== X-Received: by 2002:a05:6808:2e87:b0:3c1:41fc:d012 with SMTP id gt7-20020a0568082e8700b003c141fcd012mr13910548oib.34.1708379300760; Mon, 19 Feb 2024 13:48:20 -0800 (PST) Received: from sparta.internal.asterius.io (c-73-228-213-122.hsd1.mn.comcast.net. [73.228.213.122]) by smtp.gmail.com with ESMTPSA id bw10-20020a056808244a00b003c03fde4611sm994747oib.2.2024.02.19.13.48.19 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 19 Feb 2024 13:48:19 -0800 (PST) From: Derek Straka To: openembedded-devel@lists.openembedded.org Cc: Derek Straka Subject: [meta-python][PATCH 7/8] python-inotify: re-enable working ptests for the package Date: Mon, 19 Feb 2024 21:48:00 +0000 Message-Id: <20240219214801.1514843-7-derek@asterius.io> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240219214801.1514843-1-derek@asterius.io> References: <20240219214801.1514843-1-derek@asterius.io> 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 ; Mon, 19 Feb 2024 21:48:27 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/108892 Signed-off-by: Derek Straka --- meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc b/meta-python/conf/include/ptest-packagelists-meta-python.inc index 2733280e6..5e4e5d45a 100644 --- a/meta-python/conf/include/ptest-packagelists-meta-python.inc +++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc @@ -21,6 +21,7 @@ PTESTS_FAST_META_PYTHON = "\ python3-gunicorn \ python3-html2text \ python3-inflection \ + python3-inotify \ python3-intervals \ python3-ipy \ python3-iso3166 \ @@ -75,7 +76,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\ python3-dnspython \ python3-fastjsonschema \ python3-gpiod \ - python3-inotify \ python3-license-expression \ python3-ordered-set \ python3-pillow \ From patchwork Mon Feb 19 21:48:01 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Derek Straka X-Patchwork-Id: 39753 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 7922BC48BC3 for ; Mon, 19 Feb 2024 21:48:27 +0000 (UTC) Received: from mail-oi1-f179.google.com (mail-oi1-f179.google.com [209.85.167.179]) by mx.groups.io with SMTP id smtpd.web10.1130.1708379303891604090 for ; Mon, 19 Feb 2024 13:48:23 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: gmail.com, ip: 209.85.167.179, mailfrom: straka.derek@gmail.com) Received: by mail-oi1-f179.google.com with SMTP id 5614622812f47-3c031a077d5so3035923b6e.0 for ; Mon, 19 Feb 2024 13:48:23 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1708379302; x=1708984102; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=JnYNBVHV4Y2AhYGHZWj0oBYIh+6kIimauMvgyqWijo8=; b=GiY/6QHj34EtyaCVCx0mtGCUXBkBXrf1fb5oKe6RLWhpEyuQ99t4JHbSvqJGVOH9j5 j1XMOU2fssY4qOmvaH1gMVkkhZPB4zdfeNKVjhb10RrGsDCDvYLFoI6BOnk5ue1WhrTZ vbsUh93GroTm9kOK0+PZjtDliIrJ++dcweiA7UwxdJm/+ntdnFIIMwbTf3HsulqNpIgd eS0EBRojq8vPGWexSUin9VVfqlEZ5UewJuve7fmHXozdbZfOIMjylBnR/VzqERprswa/ 7YFtoXzqBoT5+sAyGF+oAD1C0ttdnioFXlPOMJM279Ua6G9KHPxrlSOCpPWLiEUhpNkQ dG5Q== X-Gm-Message-State: AOJu0YzKb5ukJEiEOLCoHrsGsHI6GlOjyH7VLCSbx6SxRPgpeWOrShkh b38i8YuPh3bnt0LHIcZ4w1rTinDXApm8czzBncvmrgBC2pEBjEvrCVcobX7CrSA= X-Google-Smtp-Source: AGHT+IHPAtUd/brmIghsrDgg73e/KivyD1ydUCow/h6+MCZqITUspwwD2RKUxNA2JkWI07Eh0bY9hw== X-Received: by 2002:a05:6808:1928:b0:3c1:35de:8440 with SMTP id bf40-20020a056808192800b003c135de8440mr16391360oib.47.1708379302150; Mon, 19 Feb 2024 13:48:22 -0800 (PST) Received: from sparta.internal.asterius.io (c-73-228-213-122.hsd1.mn.comcast.net. [73.228.213.122]) by smtp.gmail.com with ESMTPSA id bw10-20020a056808244a00b003c03fde4611sm994747oib.2.2024.02.19.13.48.20 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 19 Feb 2024 13:48:21 -0800 (PST) From: Derek Straka To: openembedded-devel@lists.openembedded.org Cc: Derek Straka Subject: [meta-python][PATCH 8/8] python3-license-expression: re-enable passing ptests for the package Date: Mon, 19 Feb 2024 21:48:01 +0000 Message-Id: <20240219214801.1514843-8-derek@asterius.io> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240219214801.1514843-1-derek@asterius.io> References: <20240219214801.1514843-1-derek@asterius.io> 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 ; Mon, 19 Feb 2024 21:48:27 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/108893 Signed-off-by: Derek Straka --- meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc b/meta-python/conf/include/ptest-packagelists-meta-python.inc index 5e4e5d45a..fe8f07c85 100644 --- a/meta-python/conf/include/ptest-packagelists-meta-python.inc +++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc @@ -27,6 +27,7 @@ PTESTS_FAST_META_PYTHON = "\ python3-iso3166 \ python3-jdcal \ python3-jsmin \ + python3-license-expression \ python3-msgpack \ python3-multidict \ python3-parse \ @@ -76,7 +77,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\ python3-dnspython \ python3-fastjsonschema \ python3-gpiod \ - python3-license-expression \ python3-ordered-set \ python3-pillow \ python3-pint \