From patchwork Fri Aug 20 20:04:26 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 4636 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 4Grt0C1yNCz3xHv for ; Fri, 20 Aug 2021 20:04:59 +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 4Grt0B6YDgz6YN; Fri, 20 Aug 2021 20:04:58 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4Grt0B5xCqz2yXV; Fri, 20 Aug 2021 20:04: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 4Grt096zxzz2xR5 for ; Fri, 20 Aug 2021 20:04:57 +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 4Grt09212Gz2gW; Fri, 20 Aug 2021 20:04:57 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1629489897; 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=uN/1824q3voKs5aK0sSKjXaboOL15mZNCWOA6lW335M=; b=NSXT/hq29G0lYBNqn6TwlOSNlbs2MkJuWQJKF1RlArVfEdxa24mgU6H0csHKkniqfdZpyy ct/+vtTU5/mc6lDA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1629489897; 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=uN/1824q3voKs5aK0sSKjXaboOL15mZNCWOA6lW335M=; b=qCeo8e0piGgquLsIPVmDsiWfPNBK8q9MLicSrn7KzDJ0z5cQtIY0mdIcz53+y0MEFRhJ+l EQ13hziUEbbwhKs4VLuwqOpLmDEl4bs3pJxpSHif70WYoXb1SujViuwyMqJJ40SJX0w3CE D+bIpKslxxe88zLTAZDrfSJuhbpq1414GX2TJ/Oss5zyPiHxooMza1lRWOm+6160SBkSP8 vJFcZaZY9vN7W/ldMTZgaVkAgHgayP6+OzolgVAbzXcDvqL5B9QK8iuZoimE4JZGgTcHVv hKYnKDGpSEaXs00YcHHqm7LsUkQetIxIDxIdo6BoFIoi9lrChEjjWVCZQEtpAg== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 2/4] make.sh: Added p11-kit and libtasn1 for python3 based ca-certificates approach Date: Fri, 20 Aug 2021 22:04:26 +0200 Message-Id: <20210820200428.3535766-2-adolf.belka@ipfire.org> In-Reply-To: <20210820200428.3535766-1-adolf.belka@ipfire.org> References: <20210820200428.3535766-1-adolf.belka@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: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - p11-kit required for certs extraction in building of python3 compatible ca-certificates - p11-kit requires libtasn1 as a build dependency - p11-kit and libtasn1 added to make.sh Signed-off-by: Adolf Belka Reviewed-by: Michael Tremer --- make.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/make.sh b/make.sh index 0baf2050d..7608e1630 100755 --- a/make.sh +++ b/make.sh @@ -1234,6 +1234,8 @@ buildipfire() { lfsmake2 grub lfsmake2 efivar lfsmake2 efibootmgr + lfsmake2 libtasn1 + lfsmake2 p11-kit lfsmake2 ca-certificates lfsmake2 fireinfo lfsmake2 libnet