From patchwork Tue Feb 22 12:51:16 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 5254 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4K2zbG6wdtz3xgb for ; Tue, 22 Feb 2022 12:52:26 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4K2zZp043zz5Xx; Tue, 22 Feb 2022 12:52:02 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4K2zZk3DfRz32NB; Tue, 22 Feb 2022 12:51:58 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4K2zZh13Dpz30J5 for ; Tue, 22 Feb 2022 12:51:56 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4K2zZg62wNz2RB; Tue, 22 Feb 2022 12:51:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1645534315; 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: in-reply-to:in-reply-to:references:references; bh=kPN9+93NBXosOEBlccZA3odbVJ7edCizf4g2Ar68tuA=; b=hLak/GANZIgtAYMI+raqQoTzdluDcsJT5hvU736C5ezR9m0mbxhPAs8ymQR7Pc8wDpx/RK ZeMYAcF+lB7ZMHirHM/T4XiGeytWzFXSjMOabAqtp82zyhyid2SMEe2QzQWnRNV/UNfkKs IDBY60X2HEF46QNbP65jjx4x6dcBvYb0E3ufpIucVKW0LHLR6Ta6wiv+Yplibv0Wvl7ylD die3lTM/z0zMkXxt11ohCmI3yodnQf43SXy4lI54gBAM3MVZLlWgIK6q1iVzZVY6yIIdF2 21F/0vRcpNQW9tghBJMoxVqlGr9oBtYNj7JQilhiBmLJzsE08AOoBc07OUBfuw== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1645534315; 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: in-reply-to:in-reply-to:references:references; bh=kPN9+93NBXosOEBlccZA3odbVJ7edCizf4g2Ar68tuA=; b=8oKkL9A1wkqKeglkRFhImi3EkkxcG0Dcb05JHZRrmB/SD7VGYuxCQ/L0c9yX71sKQdXO4G CFGrcYWCj2oaUQAA== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 31/50] oci-cli: Depend on python3-jmespath Date: Tue, 22 Feb 2022 12:51:16 +0000 Message-Id: <20220222125135.1211290-32-michael.tremer@ipfire.org> In-Reply-To: <20220222125135.1211290-1-michael.tremer@ipfire.org> References: <20220222125135.1211290-1-michael.tremer@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Tremer Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Signed-off-by: Michael Tremer --- lfs/oci-cli | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lfs/oci-cli b/lfs/oci-cli index a275b3f08..54beed41a 100644 --- a/lfs/oci-cli +++ b/lfs/oci-cli @@ -34,7 +34,8 @@ TARGET = $(DIR_INFO)/$(THISAPP) PROG = oci-cli PAK_VER = 1 -DEPS = oci-python-sdk python3-arrow python3-six python3-terminaltables +DEPS = oci-python-sdk python3-arrow python3-jmespath python3-six \ + python3-terminaltables ############################################################################### # Top-level Rules