From patchwork Tue Feb 22 17:19:10 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 5274 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) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4K35WB5DPWz3xgY for ; Tue, 22 Feb 2022 17:19:18 +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) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4K35W86zM0z5VQ; Tue, 22 Feb 2022 17:19:16 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4K35W85TbDz2yXK; Tue, 22 Feb 2022 17:19:16 +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) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4K35W818Xgz2xSN for ; Tue, 22 Feb 2022 17:19:16 +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 4K35W729yfz29H; Tue, 22 Feb 2022 17:19:15 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1645550355; 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; bh=aBiwHYfGwt0h8ozgcTWSNvnWHpkywl7eE3g5KM06iE4=; b=wi6sLuxVQsfd6/olPg+oamdPo9QRGio/cre34VtBpzBcuAHlrk1HWHOxqMnpght7/yqogA sNody78xcMhmoGDQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1645550355; 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; bh=aBiwHYfGwt0h8ozgcTWSNvnWHpkywl7eE3g5KM06iE4=; b=ovQ+mu1Y/ZI4jspX4F184aL+433rSldibHtACFWPi1vrFl4g0LqBF+rxFVupPVYhymM+PQ IgsP8yZ0eaaYFa2g5UgP43chACcqdK3bAxx1H5pU8TmmgdR754V62CEqtF7u28VcsOGJoj SKg5xCoCSVyTgXDfGk3lDX/DM0i/uQAGElRWpgIWjX90t05EnimUpOdrCu9nxQwfdrvbJS bg6tlihoAKmyCZgn5aBQEwLANYbSdJzv1bQS3gcBEMqrdg7tIqp8CcCKSn2ju9mQVjceAN ROfyDWSbeqXhznEP/4urx34SMcq+ClLX8/XWsxP2wgnPRNWFtUSYijhpbT0tWA== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] oci-python-sdk: Depend on python3-certifi Date: Tue, 22 Feb 2022 17:19:10 +0000 Message-Id: <20220222171910.1224546-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-python-sdk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/oci-python-sdk b/lfs/oci-python-sdk index 988e5a3bb..817723fe6 100644 --- a/lfs/oci-python-sdk +++ b/lfs/oci-python-sdk @@ -34,8 +34,8 @@ TARGET = $(DIR_INFO)/$(THISAPP) PROG = oci-python-sdk PAK_VER = 1 -DEPS = python3-click python3-circuitbreaker python3-cryptography \ - python3-dateutil python3-pytz python3-six +DEPS = python3-certifi python3-click python3-circuitbreaker \ + python3-cryptography python3-dateutil python3-pytz python3-six ############################################################################### # Top-level Rules