From d9f9ddd177a57110d9c67ea438436c3160f8e429 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Tue, 18 Jun 2024 16:13:35 -0400 Subject: kuksa-client: Upgrade to 0.4.3 Upgrade kuksa-client to 0.4.3 release. One of our local patches has been dropped as it is no longer applicable, and a new one has been added to allow building with the version of python3-grpcio-tools available in YP scarthgap. Bug-AGL: SPEC-5179 Change-Id: I6fb3ff8cd63cec924dc4180ac4f44d3ac0c1996f Signed-off-by: Scott Murray Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl-demo/+/30001 Tested-by: Jenkins Job builder account ci-image-build: Jenkins Job builder account ci-image-boot-test: Jenkins Job builder account --- ...-kuksa-client-Update-cmd2-completer-usage.patch | 30 +++++++++++----------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'recipes-connectivity/kuksa-val/kuksa-client/0001-kuksa-client-Update-cmd2-completer-usage.patch') diff --git a/recipes-connectivity/kuksa-val/kuksa-client/0001-kuksa-client-Update-cmd2-completer-usage.patch b/recipes-connectivity/kuksa-val/kuksa-client/0001-kuksa-client-Update-cmd2-completer-usage.patch index e32e5c469..3f5527384 100644 --- a/recipes-connectivity/kuksa-val/kuksa-client/0001-kuksa-client-Update-cmd2-completer-usage.patch +++ b/recipes-connectivity/kuksa-val/kuksa-client/0001-kuksa-client-Update-cmd2-completer-usage.patch @@ -1,4 +1,4 @@ -From 89aa41f52d5946796ad8dea587cd848aef71c8c0 Mon Sep 17 00:00:00 2001 +From acb2bbff3de6e9f0bafb8b96a339820a9ddfadca Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Mon, 27 Nov 2023 15:31:02 -0500 Subject: [PATCH 1/2] kuksa-client: Update cmd2 completer usage @@ -14,7 +14,7 @@ Signed-off-by: Scott Murray 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/kuksa-client/kuksa_client/__main__.py b/kuksa-client/kuksa_client/__main__.py -index 032410b..1d2d1fc 100755 +index 2b29623..7061ec1 100755 --- a/kuksa-client/kuksa_client/__main__.py +++ b/kuksa-client/kuksa_client/__main__.py @@ -36,7 +36,6 @@ from cmd2 import CompletionItem @@ -24,8 +24,8 @@ index 032410b..1d2d1fc 100755 -from cmd2.utils import basic_complete from urllib.parse import urlparse - from kuksa_client import kuksa_server_certificates -@@ -156,7 +155,7 @@ class TestClient(Cmd): + from kuksa_client import KuksaClientThread +@@ -151,7 +150,7 @@ class TestClient(Cmd): self.pathCompletionItems = [] for sub_id in self.subscribeIds: self.pathCompletionItems.append(CompletionItem(sub_id)) @@ -33,8 +33,8 @@ index 032410b..1d2d1fc 100755 + return Cmd.basic_complete(self, text, line, begidx, endidx, self.pathCompletionItems) COMM_SETUP_COMMANDS = "Communication Set-up Commands" - VSS_COMMANDS = "Kuksa Interaction Commands" -@@ -171,19 +170,19 @@ class TestClient(Cmd): + VSS_COMMANDS = "Kuksa Interaction Commands (Supported by both KUKSA Databroker and KUKSA Server)" +@@ -167,19 +166,19 @@ class TestClient(Cmd): ap_disconnect = argparse.ArgumentParser() ap_authorize = argparse.ArgumentParser() @@ -57,7 +57,7 @@ index 032410b..1d2d1fc 100755 ) ap_setValue.add_argument("Value", nargs="+", help="Value to be set") ap_setValue.add_argument( -@@ -203,7 +202,7 @@ class TestClient(Cmd): +@@ -199,7 +198,7 @@ class TestClient(Cmd): ap_getValue = argparse.ArgumentParser() ap_getValue.add_argument( @@ -66,7 +66,7 @@ index 032410b..1d2d1fc 100755 ) ap_getValue.add_argument( "-a", "--attribute", help="Attribute to be get", default="value" -@@ -214,7 +213,7 @@ class TestClient(Cmd): +@@ -210,7 +209,7 @@ class TestClient(Cmd): "Path", help="Path whose value is to be read", nargs="+", @@ -75,7 +75,7 @@ index 032410b..1d2d1fc 100755 ) ap_getValues.add_argument( "-a", "--attribute", help="Attribute to be get", default="value" -@@ -224,7 +223,7 @@ class TestClient(Cmd): +@@ -220,7 +219,7 @@ class TestClient(Cmd): ap_setTargetValue.add_argument( "Path", help="Path whose target value to be set", @@ -84,7 +84,7 @@ index 032410b..1d2d1fc 100755 ) ap_setTargetValue.add_argument("Value", help="Value to be set") -@@ -240,7 +239,7 @@ class TestClient(Cmd): +@@ -236,7 +235,7 @@ class TestClient(Cmd): ap_getTargetValue.add_argument( "Path", help="Path whose target value is to be read", @@ -93,7 +93,7 @@ index 032410b..1d2d1fc 100755 ) ap_getTargetValues = argparse.ArgumentParser() -@@ -248,12 +247,12 @@ class TestClient(Cmd): +@@ -244,12 +243,12 @@ class TestClient(Cmd): "Path", help="Path whose target value is to be read", nargs="+", @@ -108,7 +108,7 @@ index 032410b..1d2d1fc 100755 ) ap_subscribe.add_argument( "-a", "--attribute", help="Attribute to subscribe to", default="value" -@@ -268,7 +267,7 @@ class TestClient(Cmd): +@@ -264,7 +263,7 @@ class TestClient(Cmd): ap_subscribeMultiple = argparse.ArgumentParser() ap_subscribeMultiple.add_argument( @@ -117,7 +117,7 @@ index 032410b..1d2d1fc 100755 ) ap_subscribeMultiple.add_argument( "-a", "--attribute", help="Attribute to subscribe to", default="value" -@@ -284,18 +283,18 @@ class TestClient(Cmd): +@@ -280,18 +279,18 @@ class TestClient(Cmd): ap_unsubscribe.add_argument( "SubscribeId", help="Corresponding subscription Id", @@ -139,7 +139,7 @@ index 032410b..1d2d1fc 100755 ) ap_updateMetaData.add_argument( "Json", -@@ -304,14 +303,14 @@ class TestClient(Cmd): +@@ -300,14 +299,14 @@ class TestClient(Cmd): ) ap_updateVSSTree = argparse.ArgumentParser() @@ -157,5 +157,5 @@ index 032410b..1d2d1fc 100755 # Constructor, request names after protocol to avoid errors -- -2.42.0 +2.44.0 -- cgit 1.2.3-korg