From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4bd8bz4H0xz2ywd for ; Thu, 10 Jul 2025 09:26:23 +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 (secp384r1) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R11" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4bd8bw0cKRz2y97 for ; Thu, 10 Jul 2025 09:26:20 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4bd8bv34d6znl; Thu, 10 Jul 2025 09:26:19 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1752139579; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=xlnXOuy60OXT962JO4PK+pFtWSgrA+EwXlcl+ZqC/WI=; b=nq+MV6agMtEL9EBNqv3l+YsRiEYrxdpS7Kw9pcyOToM0JBFZhki+vVmYFYP313LrIeA3IM 6V34f6xFV/6pdBAg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1752139579; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=xlnXOuy60OXT962JO4PK+pFtWSgrA+EwXlcl+ZqC/WI=; b=N7LhybrLZh4g1UeX+CxDAnDWEvHrOR8An8HnQmfRIiBwQEpvR8aWd+qiedI1HnrI7gDPHi +dDNNTAXhUW/4/knIK33HJahMAfL8GmYXa4Fez8sXbAdlkMH2Ut/qgg8fwlMHbJNEWM96O xtHKIpP880Hf/g7elDMrKjRlbr6L2T/AAbVMvBfuRjhbeLbA9m9UZnPirl/zE2czThLTh8 o8AZQVnWIK8yIYPYWEpNEDuHIZMlvbi/90Pp95CAGBxF3S1opBeHMBVMCPmpewaKqGLsMf nGKv4pOZOK/vRNz4WDsgRNogIzHYLlgUZ2IElYW5DTKcqUEF+hamMT2rdoNWQQ== Content-Type: text/plain; charset=us-ascii Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: Mime-Version: 1.0 Subject: Re: [PATCH 1/4] json-glib: Move to be built after glib has been built From: Michael Tremer In-Reply-To: <20250709120952.210031-1-adolf.belka@ipfire.org> Date: Thu, 10 Jul 2025 11:26:19 +0200 Cc: development@lists.ipfire.org Content-Transfer-Encoding: quoted-printable Message-Id: <67D28A34-FED8-4032-8821-B21C16EBBB51@ipfire.org> References: <20250709120952.210031-1-adolf.belka@ipfire.org> To: Adolf Belka Thank you for fixing what I messed up :) -Michael > On 9 Jul 2025, at 14:09, Adolf Belka wrote: >=20 > - Shifted to build after glib is built and removed the dist entry that = is used for > addons. > - Checked the glib library and the libgio entries are uncommented so = that should be okay > - Checked build and this package then built with no problems but in = the addon package > build section libtpms failed to build as it was missing the dist = entry. Also the same > with swtpm so this is a patch set with the changes to those two = packages as well. > - Full build tested out and confirmed working on x86_64 with this = patch set applied. >=20 > Signed-off-by: Adolf Belka > --- > lfs/json-glib | 3 --- > make.sh | 2 +- > 2 files changed, 1 insertion(+), 4 deletions(-) >=20 > diff --git a/lfs/json-glib b/lfs/json-glib > index 00617cd93..f0ac3b942 100644 > --- a/lfs/json-glib > +++ b/lfs/json-glib > @@ -50,9 +50,6 @@ download :$(patsubst %,$(DIR_DL)/%,$(objects)) >=20 > b2 : $(subst %,%_BLAKE2,$(objects)) >=20 > -dist: > - @$(PAK) > - > = ##########################################################################= ##### > # Downloading, checking, b2sum > = ##########################################################################= ##### > diff --git a/make.sh b/make.sh > index 789d01540..dc1feb37a 100755 > --- a/make.sh > +++ b/make.sh > @@ -1514,7 +1514,6 @@ build_system() { > lfsmake2 libarchive > lfsmake2 cmake > lfsmake2 json-c > - lfsmake2 json-glib > lfsmake2 tcl > lfsmake2 python3-MarkupSafe > lfsmake2 python3-Jinja2 > @@ -1526,6 +1525,7 @@ build_system() { > lfsmake2 lvm2 > lfsmake2 multipath-tools > lfsmake2 glib > + lfsmake2 json-glib > lfsmake2 libgudev > lfsmake2 libgpg-error > lfsmake2 libgcrypt > --=20 > 2.50.0 >=20 >=20