From patchwork Mon Dec 18 17:08:58 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 36559 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 E07CEC35274 for ; Mon, 18 Dec 2023 17:09:16 +0000 (UTC) Received: from mail-ed1-f42.google.com (mail-ed1-f42.google.com [209.85.208.42]) by mx.groups.io with SMTP id smtpd.web10.48804.1702919353003938410 for ; Mon, 18 Dec 2023 09:09:13 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@konsulko.com header.s=google header.b=Ers/W67I; spf=pass (domain: konsulko.com, ip: 209.85.208.42, mailfrom: leon.anavi@konsulko.com) Received: by mail-ed1-f42.google.com with SMTP id 4fb4d7f45d1cf-550dd0e3304so4133686a12.1 for ; Mon, 18 Dec 2023 09:09:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=konsulko.com; s=google; t=1702919351; x=1703524151; 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=GTIH8nUG1CSvhu3DQRW8VyUSYr8wCdiozVpPwb8wHWs=; b=Ers/W67IDXaCMCPDKo6uq1KRTyQiJs68mzMotL476/qg6SdGjPyVHtbjCDnuNe2Js9 ItWl5l4sNz9hX6Zlk2RnYma+Sci87gVYVLWSrELnSl9XfqBYbz1dGYptVrGo1lu97phR LAB1x+OW2BinHPntnDN372+TYQVImvXXwERHk= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1702919351; x=1703524151; 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=GTIH8nUG1CSvhu3DQRW8VyUSYr8wCdiozVpPwb8wHWs=; b=HEIjI74UiZEmiHS/PTXmEGLJCy3gHW4wAIwHwp1rIVChuW4nwrvGL9K6Tg/EcseYzA yPaYt5U27wuJZ53X1MCGTVNbkJB3TdnzY8x4SEVTmkzWoMDW+nSvASyljBEPKyHGuN9V TaDrVFZFncndS6+NiIxG1ku0VW25rZWlT+Mx03V1RcvecN6sc8TN3pmqAVnq/LAzrpGT rauz9olUZ2iwNIDVMk3q17/tTav3G2t1DwUa03dkm0ju/FltUMYZfGq5luPHtyD8tBAy OBOUC10V4EFpiNyIrxJYgspqStapPSwpbhwP3VQJarMRDI0KrhsXFR7R04L31HySsZ9a F8KQ== X-Gm-Message-State: AOJu0YwWDzY3RrkSRkkcO/ur8oF56TmfYc+oPOpS2B+QmrMPFeI+OWVR K3zepIymgTIFz8vRFd9fWujj1Q/oo2IGjY+mUeQ= X-Google-Smtp-Source: AGHT+IHuGcJewgWwqG+6vRjESEv4VBvWVFy+Ev8huGoT1R2YqdVE3PbA/dAmBdhHjMv4QtK52gUgtw== X-Received: by 2002:a50:bae3:0:b0:553:4d8f:cdf2 with SMTP id x90-20020a50bae3000000b005534d8fcdf2mr1197944ede.53.1702919350313; Mon, 18 Dec 2023 09:09:10 -0800 (PST) Received: from tone.k.g (lan.nucleusys.com. [92.247.61.126]) by smtp.gmail.com with ESMTPSA id d12-20020a056402000c00b0055344b92fb6sm1380419edu.75.2023.12.18.09.09.09 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 18 Dec 2023 09:09:10 -0800 (PST) From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 1/4] python3-sdbus: upgrade 0.11.0 -> 0.11.1 Date: Mon, 18 Dec 2023 19:08:58 +0200 Message-Id: <20231218170901.1378254-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 ; Mon, 18 Dec 2023 17:09:16 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/107545 Upgrade to version 0.11.1: - Improved interface generator handling of multiple uppercase letters sequences. - Improved python formatting generated by interface code generator. - Added option --block to generate blocking interface code. - Fixed docstrings still being present even if python was configured with --without-doc-strings. - Fixed interface generator crashing when a rare write-only property is encountered. - Fixed async interfaces iterating over all members during initialization. - Fixed TypeError: Dbus type '\x00' is unknown being raised when trying to read from a message more than one time. - Fixed missing class body when generating code for interface without members. Signed-off-by: Leon Anavi --- .../{python3-sdbus_0.11.0.bb => python3-sdbus_0.11.1.bb} | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-sdbus_0.11.0.bb => python3-sdbus_0.11.1.bb} (64%) diff --git a/meta-python/recipes-devtools/python/python3-sdbus_0.11.0.bb b/meta-python/recipes-devtools/python/python3-sdbus_0.11.1.bb similarity index 64% rename from meta-python/recipes-devtools/python/python3-sdbus_0.11.0.bb rename to meta-python/recipes-devtools/python/python3-sdbus_0.11.1.bb index 6abdad0be..6372d3488 100644 --- a/meta-python/recipes-devtools/python/python3-sdbus_0.11.0.bb +++ b/meta-python/recipes-devtools/python/python3-sdbus_0.11.1.bb @@ -3,9 +3,15 @@ HOMEPAGE = "https://python-sdbus.readthedocs.io/en/latest/" LICENSE = "LGPL-2.1-or-later" LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e77986dc8e2ee22d44a7c863e96852ae" -SRC_URI[sha256sum] = "f86fbadae54fea6441ec2f27dc29daf085269d66c5d9df1a4fbc9474a24b91d0" +SRC_URI[sha256sum] = "adb97718ce996bb308520682c50b1a13e606d65a6edb1c1967a15d2e570cb3b7" REQUIRED_DISTRO_FEATURES = "systemd" DEPENDS += "systemd" +RDEPENDS:${PN} += " \ + ${PYTHON_PN}-asyncio \ + ${PYTHON_PN}-numbers \ + ${PYTHON_PN}-core \ +" + inherit pypi setuptools3 features_check pkgconfig