From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 11 Mar 2024 08:44:00 +0100 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1rjaKG-000jSj-06 for lore@lore.pengutronix.de; Mon, 11 Mar 2024 08:44:00 +0100 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1rjaKF-0007PY-Rx; Mon, 11 Mar 2024 08:43:59 +0100 Received: from mail.cab.de ([213.144.1.196]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1rjaJk-00070p-4v for ptxdist@pengutronix.de; Mon, 11 Mar 2024 08:43:28 +0100 X-cab-MailScanner-Watermark: 1710747806.26677@qy7cuhO1FupFx0y+u61mkw X-cab-MailScanner-From: m.heidelberg@cab.de X-cab-MailScanner: Found to be clean X-cab-MailScanner-ID: 1CC0F12011C.A873C X-cab-MailScanner-Information: Please contact it@cab.de for more information Received: from Adranos.cab.de (unknown [10.10.1.54]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.cab.de (Postfix) with ESMTPS id 1CC0F12011C for ; Mon, 11 Mar 2024 08:43:25 +0100 (CET) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.cab.de 1CC0F12011C Authentication-Results: vulcanos.cab.de; dmarc=none (p=none dis=none) header.from=cab.de Authentication-Results: vulcanos.cab.de; spf=none smtp.mailfrom=M.Heidelberg@cab.de DKIM-Filter: OpenDKIM Filter v2.11.0 mail.cab.de 1CC0F12011C Received: from KAN23-025.cab.de (10.10.3.158) by Adranos.cab.de (10.10.1.54) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.4; Mon, 11 Mar 2024 08:43:23 +0100 From: Markus Heidelberg To: Date: Mon, 11 Mar 2024 08:43:06 +0100 Message-ID: <20240311074308.34315-2-m.heidelberg@cab.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240311074308.34315-1-m.heidelberg@cab.de> References: <20240311074308.34315-1-m.heidelberg@cab.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Originating-IP: [10.10.3.158] X-ClientProxiedBy: Adranos.cab.de (10.10.1.54) To Adranos.cab.de (10.10.1.54) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.whiteo.stw.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-1.6 required=4.0 tests=AWL,BAYES_00,SPF_HELO_PASS, SPF_PASS,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.2 Subject: [ptxdist] [PATCH 1/3] host-nettle: new package X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Markus Heidelberg Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Will be needed for host-gnutls. Signed-off-by: Markus Heidelberg --- There are several configure options not set in the target nettle package yet. Is it common procedure to amend them there as well? I don't use/need the target package myself, though. rules/host-nettle.in | 5 +++++ rules/host-nettle.make | 45 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 rules/host-nettle.in create mode 100644 rules/host-nettle.make diff --git a/rules/host-nettle.in b/rules/host-nettle.in new file mode 100644 index 000000000..fc2d7f165 --- /dev/null +++ b/rules/host-nettle.in @@ -0,0 +1,5 @@ +## SECTION=hosttools_noprompt + +config HOST_NETTLE + tristate + default y if ALLYES diff --git a/rules/host-nettle.make b/rules/host-nettle.make new file mode 100644 index 000000000..61e48b552 --- /dev/null +++ b/rules/host-nettle.make @@ -0,0 +1,45 @@ +# -*-makefile-*- +# +# Copyright (C) 2024 by Markus Heidelberg +# +# For further information about the PTXdist project and license conditions +# see the README file. +# + +# +# We provide this package +# +HOST_PACKAGES-$(PTXCONF_HOST_NETTLE) += host-nettle + +# ---------------------------------------------------------------------------- +# Prepare +# ---------------------------------------------------------------------------- + +# +# autoconf +# +HOST_NETTLE_CONF_TOOL := autoconf +HOST_NETTLE_CONF_OPT := \ + $(HOST_AUTOCONF) \ + --enable-public-key \ + --enable-assembler \ + --disable-static \ + --enable-shared \ + --disable-openssl \ + --disable-gcov \ + --disable-documentation \ + --disable-fat \ + --disable-arm-neon \ + --disable-arm64-crypto \ + --disable-x86-aesni \ + --disable-x86-sha-ni \ + --disable-x86-pclmul \ + --disable-power-crypto-ext \ + --disable-power-altivec \ + --disable-s390x-vf \ + --disable-s390x-msa \ + --enable-mini-gmp \ + --without-include-path \ + --without-lib-path + +# vim: syntax=make -- 2.34.1