From patchwork Mon Feb 21 18:43:18 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 5215 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 4K2WRT2WB6z3xgb for ; Mon, 21 Feb 2022 18:44:05 +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 4K2WQz2bn6z5XH; Mon, 21 Feb 2022 18:43:39 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4K2WQy3TWVz32MY; Mon, 21 Feb 2022 18:43:38 +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 4K2WQt4wSnz2ytv for ; Mon, 21 Feb 2022 18:43:34 +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 4K2WQr1RPZz5Vg; Mon, 21 Feb 2022 18:43:32 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1645469012; 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=sBwNcX0RDNV97/fKtfH+R4PS6lC28AZ0dOBHS6IVnfZzAnIdc7HeqCiCZueHBfTMJzZdBA zA2VfQ5E0lXsy+Cw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1645469012; 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=uzJzTSqoBOTX+ed9kM0G3FEK/RRQPm2/1D+XDIHo0FVypk1jcpGmc2g/4qRAxiw1FyvQ5B HnFd33ke4vgk5L3plVnJw4pKrroL+PUWch4TuOeNMI4ofb+gm1/BAYn2CHmsHYpIqLHlCP wbaytZJ23u3GmX0lEF9wKuEfi/Rc9k/jigy63rzgmlpcjzzm4D1Ookok5pMn4SFW33UXiH s+sJa2uSex868V/jcEQEy0wVAeg6OAGbA4ZJPOa+vpr6JKw78us4q5N1Ej0UGG4lYLJcsV aKQQR2A/5sWzCRVukUfUGCsP8PM7KJsC7ZPhmtXnw6Pp2V6Us8zAqNtXCCwZkg== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 27/27] oci-cli: Depend on python3-jmespath Date: Mon, 21 Feb 2022 18:43:18 +0000 Message-Id: <20220221184318.1158749-27-michael.tremer@ipfire.org> In-Reply-To: <20220221184318.1158749-1-michael.tremer@ipfire.org> References: <20220221184318.1158749-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