From patchwork Tue Jan 9 13:51:19 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 37536 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 CEE9EC46CD2 for ; Tue, 9 Jan 2024 13:52:10 +0000 (UTC) Received: from mail-ej1-f48.google.com (mail-ej1-f48.google.com [209.85.218.48]) by mx.groups.io with SMTP id smtpd.web11.16999.1704808321047474366 for ; Tue, 09 Jan 2024 05:52:01 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@konsulko.com header.s=google header.b=nS3U0EiQ; spf=pass (domain: konsulko.com, ip: 209.85.218.48, mailfrom: leon.anavi@konsulko.com) Received: by mail-ej1-f48.google.com with SMTP id a640c23a62f3a-a28f66dc7ffso699402866b.0 for ; Tue, 09 Jan 2024 05:52:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=konsulko.com; s=google; t=1704808319; x=1705413119; darn=lists.openembedded.org; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=Mp2SZHWr21YfHqXvWPzBzSgOtyPxI1NhNNqnreVWtmA=; b=nS3U0EiQtAbzDI2US4bWQosgS1Fbu0z6WjviQi429hxNI0D3gbqTzXi3tM8xjzE3yo tu2pjybol3blps+f/QpO6isKhZxgir7H38VUInLVX4Y4jYPUeyGBqj5dx0XzpBv1USi2 a46+z6k9FOFRiqcsNfTza3RYoeBCBaCzEGtTo= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1704808319; x=1705413119; 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=Mp2SZHWr21YfHqXvWPzBzSgOtyPxI1NhNNqnreVWtmA=; b=mP6Ukzfqg7ePzZHxEI2gz2N063QDLwO5Gxl4k6dPr05L24sJqA9mfbuVFfUNUds4uP psziG6batd0YCzn4g0BbEiQXTc1gK+qQql+w9oBA8zqUoS12+mslPb0/c/0l0qTQ1OQ9 FYa96I1bka2ejIRbE0XFWYVkyo7RI4QTtLrN2ocM6w/qvUDYKzNXVx5yRfDGdwU41ORC RXnS6pKMqjVZHUYEybFYUOklxZK3Z6OEWhgQkqkCZ3QXZBC/q85kldw5rXfxGX9j5fJK WEBsDNCz0gQ7x5v9WaCUs1b5XENJv0GXOLQFstW0hLdonOujNTmJJBewWisQ/eJWFVjK Fgeg== X-Gm-Message-State: AOJu0Yx3PXr0UcBu13HCThnfrgtqXC1cQWFmylaclq1I1+4EMppkeqwE KMaOEJVYV1UFyn6/Xw0Mizb3tKslwJXMBNeV802qqr+UtaQ= X-Google-Smtp-Source: AGHT+IE8RvnzDQ32/2z934C+bRMQJlr9SlC90jLvSVqei6QrcyXsmTmuuVohfHRkzSs2UnMFcmLnYQ== X-Received: by 2002:a17:906:c211:b0:a23:54aa:311b with SMTP id d17-20020a170906c21100b00a2354aa311bmr826357ejz.34.1704808318961; Tue, 09 Jan 2024 05:51:58 -0800 (PST) Received: from tone.k.g (lan.nucleusys.com. [92.247.61.126]) by smtp.gmail.com with ESMTPSA id h14-20020a170906590e00b00a26c2f13b73sm1084132ejq.143.2024.01.09.05.51.24 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 09 Jan 2024 05:51:26 -0800 (PST) From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 1/3] python3-webargs: Upgrade 8.3.0 -> 8.4.0 Date: Tue, 9 Jan 2024 15:51:19 +0200 Message-Id: <20240109135121.3460927-1-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.39.2 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 ; Tue, 09 Jan 2024 13:52:10 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/108193 Upgrade to version 8.4.0: - Add a new class attribute, empty_value to DelimitedList and DelimitedTuple, with a default of "". This controls the value deserialized when an empty string is seen. - The rule for default argument names has been made configurable by overriding the get_default_arg_name method. This is described in the argument passing documentation. - Drop support for Python 3.7, which is EOL. - Type annotations for FlaskParser have been improved. License-Update: Copyright year changes Signed-off-by: Leon Anavi --- .../python/python3-webargs_8.3.0.bb | 13 ------------- .../python/python3-webargs_8.4.0.bb | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 13 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-webargs_8.3.0.bb create mode 100644 meta-python/recipes-devtools/python/python3-webargs_8.4.0.bb diff --git a/meta-python/recipes-devtools/python/python3-webargs_8.3.0.bb b/meta-python/recipes-devtools/python/python3-webargs_8.3.0.bb deleted file mode 100644 index d8ce4ab40..000000000 --- a/meta-python/recipes-devtools/python/python3-webargs_8.3.0.bb +++ /dev/null @@ -1,13 +0,0 @@ -SUMMARY = "Declarative parsing and validation of HTTP request objects, with built-in support for popular web frameworks." -HOMEPAGE = "https://github.com/marshmallow-code/webargs" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=c3ff8567ef1f2a8cf223f30ac5a6f094" - -inherit pypi setuptools3 - -SRC_URI[sha256sum] = "cab207941b0686c4d086c823632ddcd4343151644341a32fcf50b8eaa71e31c7" - -RDEPENDS:${PN} += "\ - python3-marshmallow \ - python3-packaging \ - " diff --git a/meta-python/recipes-devtools/python/python3-webargs_8.4.0.bb b/meta-python/recipes-devtools/python/python3-webargs_8.4.0.bb new file mode 100644 index 000000000..ea830807c --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-webargs_8.4.0.bb @@ -0,0 +1,17 @@ +SUMMARY = "Declarative parsing and validation of HTTP request objects, with built-in support for popular web frameworks." +HOMEPAGE = "https://github.com/marshmallow-code/webargs" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=dfbd4ae0074716275fc229c775723e8f" + +inherit pypi setuptools3 + +SRC_URI[sha256sum] = "ea99368214a4ce613924be99d71db58c269631e95eff4fa09b7354e52dc006a5" + +RDEPENDS:${PN} += "\ + ${PYTHON_PN}-marshmallow \ + ${PYTHON_PN}-packaging \ + ${PYTHON_PN}-core \ + ${PYTHON_PN}-json \ + ${PYTHON_PN}-asyncio \ + ${PYTHON_PN}-logging \ +" From patchwork Tue Jan 9 13:51:20 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 37537 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 D5440C47073 for ; Tue, 9 Jan 2024 13:53:20 +0000 (UTC) Received: from mail-ej1-f45.google.com (mail-ej1-f45.google.com [209.85.218.45]) by mx.groups.io with SMTP id smtpd.web11.17019.1704808390809522341 for ; Tue, 09 Jan 2024 05:53:11 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@konsulko.com header.s=google header.b=khcvX2ul; spf=pass (domain: konsulko.com, ip: 209.85.218.45, mailfrom: leon.anavi@konsulko.com) Received: by mail-ej1-f45.google.com with SMTP id a640c23a62f3a-a28e31563ebso309157266b.2 for ; Tue, 09 Jan 2024 05:53:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=konsulko.com; s=google; t=1704808389; x=1705413189; darn=lists.openembedded.org; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=C8FbgqwpewryFWSfdn4dKFXejex62FzZfjkwd5zqM0M=; b=khcvX2ulHEepLeSJ8fI5ZgPULsOjls2h6MhdZm/AYFa2HUsAfnyITVt0OTymcUCZz4 JwHrJeqN3+LRmLi+jPkclhNDPOVKrnJlgsXtAaek8beMVf6WkpK98K0ksJapJh95Pn1e gBOoPuNwyYS/2qQnSq+s+MJWPMBkVyB+kEvGo= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1704808389; x=1705413189; 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=C8FbgqwpewryFWSfdn4dKFXejex62FzZfjkwd5zqM0M=; b=rCb+BeXaPwnKNfk6Wg4+EujfydOFZOzx8frJMk+dWswk/jFj7TjV/3UhvhiiqS+xDc 1pgGJPICYfzF6sauptilBBlnt4ZXzG3MjvBjAxo1y1TXC0oJ56TeZUwVYLefg8Fww4dV gAq2/ZyRCj8e4ySxXkPJCHb19ioe+GQHFWUb/8pIaDU/iS4NEpZxwz2lVLw3tpmmFmma vEX+AUAXzsRdDT3tEA8ygVnJJrgT1uPPhujB2QyCd4KwFsLYeDFb9yZCz2/mvJdsj9iY Ud9QQB6OnxuZBxcCWLWH+CXneCVFH8iVnI1B2Fb+fuc9Qc/Odq4LuLvlj5xWlB0dol9O CaPg== X-Gm-Message-State: AOJu0YydmAfMMjugLrA80ieOtAoJbZdKp+8xlJjjpzsD4IF/hOdngttn nTlBew8ObAKbgZQR7SBOqgklfEPefgBAQkaxdDoVWKz3xFo= X-Google-Smtp-Source: AGHT+IEMHKjgElSQmoNS7ggpFY/7qdfO35N4V21XxjHN6DP8W2e3LX05Gs6EJEnqkPhz4pgUwx678Q== X-Received: by 2002:a17:907:7e8e:b0:a27:9bb7:622c with SMTP id qb14-20020a1709077e8e00b00a279bb7622cmr633043ejc.63.1704808388145; Tue, 09 Jan 2024 05:53:08 -0800 (PST) Received: from tone.k.g (lan.nucleusys.com. [92.247.61.126]) by smtp.gmail.com with ESMTPSA id h14-20020a170906590e00b00a26c2f13b73sm1084132ejq.143.2024.01.09.05.51.59 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 09 Jan 2024 05:52:17 -0800 (PST) From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 2/3] python3-wtforms: Upgrade 3.1.1 -> 3.1.2 Date: Tue, 9 Jan 2024 15:51:20 +0200 Message-Id: <20240109135121.3460927-2-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240109135121.3460927-1-leon.anavi@konsulko.com> References: <20240109135121.3460927-1-leon.anavi@konsulko.com> 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 ; Tue, 09 Jan 2024 13:53:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/108194 Upgrade to version 3.1.2: - Fix SelectMultipleField value coercion on validation. Signed-off-by: Leon Anavi --- .../{python3-wtforms_3.1.1.bb => python3-wtforms_3.1.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-wtforms_3.1.1.bb => python3-wtforms_3.1.2.bb} (87%) diff --git a/meta-python/recipes-devtools/python/python3-wtforms_3.1.1.bb b/meta-python/recipes-devtools/python/python3-wtforms_3.1.2.bb similarity index 87% rename from meta-python/recipes-devtools/python/python3-wtforms_3.1.1.bb rename to meta-python/recipes-devtools/python/python3-wtforms_3.1.2.bb index b57c31100..1459538ea 100644 --- a/meta-python/recipes-devtools/python/python3-wtforms_3.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-wtforms_3.1.2.bb @@ -5,7 +5,7 @@ LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=17ed54aa95f4a6cd0d7a4747d14b64d0" -SRC_URI[sha256sum] = "5e51df8af9a60f6beead75efa10975e97768825a82146a65c7cbf5b915990620" +SRC_URI[sha256sum] = "f8d76180d7239c94c6322f7990ae1216dae3659b7aa1cee94b6318bdffb474b9" UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/WTForms" UPSTREAM_CHECK_REGEX = "/WTForms/(?P(\d+[\.\-_]*)+)" From patchwork Tue Jan 9 13:51:21 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 37538 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 D650FC4707C for ; Tue, 9 Jan 2024 13:53:20 +0000 (UTC) Received: from mail-ej1-f44.google.com (mail-ej1-f44.google.com [209.85.218.44]) by mx.groups.io with SMTP id smtpd.web10.17176.1704808392155192181 for ; Tue, 09 Jan 2024 05:53:12 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@konsulko.com header.s=google header.b=kr3q7zZy; spf=pass (domain: konsulko.com, ip: 209.85.218.44, mailfrom: leon.anavi@konsulko.com) Received: by mail-ej1-f44.google.com with SMTP id a640c23a62f3a-a28bd9ca247so305131166b.1 for ; Tue, 09 Jan 2024 05:53:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=konsulko.com; s=google; t=1704808390; x=1705413190; darn=lists.openembedded.org; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=FOF0bgkMtYMyfz3XTmr1SluWetaRTPU/SQt5fOJg24E=; b=kr3q7zZyGHbduO4MlmWB1Hd+7t1r+9boXZn7LQpBTrWa6FMJwq4+1EU6cGjYAfbkH2 +AZxlQfabAYJIqEQsReHlOSHr1rMtxQo1adZetPC2IWrg3AEGX0WgiLo5dpoAxYTOFV4 H7yP1e0Lz+1sxP9RbECZHwAxUx4TCZ88Zh11Q= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1704808390; x=1705413190; 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=FOF0bgkMtYMyfz3XTmr1SluWetaRTPU/SQt5fOJg24E=; b=TxZglKFJafB+nt0IA6fgmMRN3/2iYK84uxTt7l3BgfPolXaKTnVns38cZsUJ2oO0Tr g3ufis1hzZcwLlX/Ya8ic99UJxL7D4e8TZ27rT+Q/8CguKFYHTNEchsirWIM9shKH6pg JLKX+5/ba9wIHdrlp+cmutHLlFzuFbJyr7zxy83W2JkMZhsN5aBDESNUQyaHzWNDOm5F TgzQxELSYUYU8ar0gkTUO6UjVee8I/mwwGNkfDPotcmkmkNBJ7jHDViH7NbswZWGvFet bavbBhxcv6JpiA8eZ0ij0jR/TmF01Z0MxDAYlKFfNw8fNvvAt9TjLRaekov9Bgc0RF5+ iVgA== X-Gm-Message-State: AOJu0Yw8zJRW14Kza1OhzqDZLhPSW8Pd43aQB9DbQOHro7108bz78j0+ SmJWoWudDzuAws7vKxvUjl6NGEdz6vuCWmJl19ETBjXalyo= X-Google-Smtp-Source: AGHT+IFdnN2A6yvJB0ijuB9EULhsF88caE8ZDZJFZItZ+gE2fIbn6Iaz8JOJhVZKUbIJ9QRg1b4NaQ== X-Received: by 2002:a17:906:1d8:b0:a28:c1a0:dc61 with SMTP id 24-20020a17090601d800b00a28c1a0dc61mr494093ejj.28.1704808389413; Tue, 09 Jan 2024 05:53:09 -0800 (PST) Received: from tone.k.g (lan.nucleusys.com. [92.247.61.126]) by smtp.gmail.com with ESMTPSA id h14-20020a170906590e00b00a26c2f13b73sm1084132ejq.143.2024.01.09.05.53.08 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 09 Jan 2024 05:53:08 -0800 (PST) From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 3/3] python3-kivy: Upgrade 2.2.1 -> 2.3.0 Date: Tue, 9 Jan 2024 15:51:21 +0200 Message-Id: <20240109135121.3460927-3-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240109135121.3460927-1-leon.anavi@konsulko.com> References: <20240109135121.3460927-1-leon.anavi@konsulko.com> 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 ; Tue, 09 Jan 2024 13:53:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/108195 Upgrade to version 2.3.0: - core-providers (audio): removes deprecated status property - core-providers (audio): removes deprecated filename property - core-providers (window): Removes deprecated toggle_fullscreen method - Add graphics with antialiasing: SmoothRectangle, SmoothEllipse, SmoothRoundedRectangle, SmoothQuad and SmoothTriangle - Linux dependencies: Build libpng16 for freetype so can render colored emoji - Remove the extra position added to undo list while using Shift key - macOS dependencies: Build libpng16 for freetype, so can render colored emoji - Honour multiline=True/False while pasting, Fix Scroll after backspace and undo. - Added spanish layout json for the vkeyboard - Pillow text provider: use get_bbox when get_size is not available. Allows latest versions of pillow to work along with older ones. License-Update: Copyright year changes Signed-off-by: Leon Anavi --- .../python/{python3-kivy_2.2.1.bb => python3-kivy_2.3.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-kivy_2.2.1.bb => python3-kivy_2.3.0.bb} (93%) diff --git a/meta-python/recipes-devtools/python/python3-kivy_2.2.1.bb b/meta-python/recipes-devtools/python/python3-kivy_2.3.0.bb similarity index 93% rename from meta-python/recipes-devtools/python/python3-kivy_2.2.1.bb rename to meta-python/recipes-devtools/python/python3-kivy_2.3.0.bb index a72ee14f6..9e791c6e7 100644 --- a/meta-python/recipes-devtools/python/python3-kivy_2.2.1.bb +++ b/meta-python/recipes-devtools/python/python3-kivy_2.3.0.bb @@ -2,7 +2,7 @@ SUMMARY = "Open source Python library for rapid development of applications \ that make use of innovative user interfaces, such as multi-touch apps." HOMEPAGE = "https://kivy.org/" LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=ed5cd0f2cfda42852c332e3b88c85fea" +LIC_FILES_CHKSUM = "file://LICENSE;md5=6d3bc49400e35d5a2279d14c40dcfb09" inherit setuptools3 pkgconfig features_check PIP_INSTALL_PACKAGE = "Kivy" @@ -15,7 +15,7 @@ SRC_URI = "git://github.com/kivy/kivy.git;protocol=https;branch=stable \ file://0001-add-support-for-glesv2.patch \ " -SRCREV = "344768bfefd2e8f5302cc9dfb8ca41991ce6f7e7" +SRCREV = "9ef218027178115a66b417ae34b21f488bdd3617" S = "${WORKDIR}/git"