From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 07 Sep 2022 15:21:55 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1oVv06-009dIR-61 for lore@lore.pengutronix.de; Wed, 07 Sep 2022 15:21:55 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1oVv07-0006Jw-63; Wed, 07 Sep 2022 15:21:55 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oVuzg-0006Io-Jr; Wed, 07 Sep 2022 15:21:28 +0200 Received: from [2a0a:edc0:0:1101:1d::ac] (helo=dude04.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1oVuze-004RwZ-0s; Wed, 07 Sep 2022 15:21:27 +0200 Received: from ore by dude04.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1oVuzf-009qBI-25; Wed, 07 Sep 2022 15:21:27 +0200 From: Oleksij Rempel To: ptxdist@pengutronix.de Date: Wed, 7 Sep 2022 15:21:21 +0200 Message-Id: <20220907132125.2345487-1-o.rempel@pengutronix.de> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH v1 1/5] add host gc 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: Oleksij Rempel 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.ext.pengutronix.de); SAEximRunCond expanded to false This package is needed by guile tools Signed-off-by: Oleksij Rempel --- rules/host-gc.in | 4 ++++ rules/host-gc.make | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 rules/host-gc.in create mode 100644 rules/host-gc.make diff --git a/rules/host-gc.in b/rules/host-gc.in new file mode 100644 index 000000000..2dda15c91 --- /dev/null +++ b/rules/host-gc.in @@ -0,0 +1,4 @@ +## SECTION=hosttools_noprompt_ptx + +config HOST_GC + bool diff --git a/rules/host-gc.make b/rules/host-gc.make new file mode 100644 index 000000000..888bfe244 --- /dev/null +++ b/rules/host-gc.make @@ -0,0 +1,32 @@ +# -*-makefile-*- +# +# Copyright (C) 2022 by Marc Kleine-Budde +# +# For further information about the PTXdist project and license conditions +# see the README file. +# + +# +# We provide this package +# +HOST_PACKAGES-$(PTXCONF_HOST_GC) += host-gc + +# +# Paths and names +# +HOST_GC_VERSION := 8.2.2 +HOST_GC_MD5 := 787177b1b15aa19ffa0d61d8f508b69d +HOST_GC := gc-$(HOST_GC_VERSION) +HOST_GC_SUFFIX := tar.gz +HOST_GC_URL := https://www.hboehm.info/gc/gc_source/$(HOST_GC).$(HOST_GC_SUFFIX) +HOST_GC_SOURCE := $(SRCDIR)/$(HOST_GC).$(HOST_GC_SUFFIX) +HOST_GC_DIR := $(HOST_BUILDDIR)/$(HOST_GC) +HOST_GC_LICENSE := unknown + +# ---------------------------------------------------------------------------- +# Prepare +# ---------------------------------------------------------------------------- + +HOST_GC_CONF_TOOL := autoconf + +# vim: syntax=make -- 2.30.2