From patchwork Wed Jul 9 12:09:49 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 8919 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 (secp384r1) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R11" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4bccHJ35gGz3wnc for ; Wed, 9 Jul 2025 12:10:04 +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 RSA-PSS (4096 bits) client-signature ECDSA (secp384r1)) (Client CN "mail02.haj.ipfire.org", Issuer "E6" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4bccHC2T6Rz6v4 for ; Wed, 9 Jul 2025 12:09:59 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4bccHC05Wyz34CH for ; Wed, 9 Jul 2025 12:09:59 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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 4bccH80BQqz2xSL for ; Wed, 9 Jul 2025 12:09:56 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4bccH71DyNz83; Wed, 9 Jul 2025 12:09:55 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1752062995; 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=F13OqqQhqQiWY+Lz30eVssYbDMiSVIun/XTxbmVPh44=; b=P7rE5ie+gru3disimY9QOKtXcGLzjP1STE+HxnRrq79djphx7auOxLEZMiuoOguEJcsPYM idTqKj97hkZxV9Cw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1752062995; 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=F13OqqQhqQiWY+Lz30eVssYbDMiSVIun/XTxbmVPh44=; b=RWg6PanUbylUTVy9thpxn2plJp9bywq/GOrwiv+rauQ2UMjM0ST//o4sHH0bzfuNmrqyRO wEVICU4dd6FAzbAPXuBweNGRMsScEUAeyRfvtzrWaSKuV2oEKNHTmnXq8WeIesVrrU7kka IHrY73811JZIw7VzSDh+EFU+neSASWgLDIBpr1uoZ3vzT3AjCrostYtElwCtCwpXOu7TU+ EpYo8pnr3SEs8dF6HXjOhCXy4Qq7P8TuO6qfsIGFbdmUcqEKFTSBKggx0MaPi9n1bHD6Ki m8/Ahvop+aDwz3oJFe3eueAec8c3sDE/Ej5RcvDTv2XAoRqw6WibHpDjsDuF4g== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 1/4] json-glib: Move to be built after glib has been built Date: Wed, 9 Jul 2025 14:09:49 +0200 Message-ID: <20250709120952.210031-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - 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. Signed-off-by: Adolf Belka --- lfs/json-glib | 3 --- make.sh | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) 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)) b2 : $(subst %,%_BLAKE2,$(objects)) -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 From patchwork Wed Jul 9 12:09:50 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 8916 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 (secp384r1) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R11" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4bccHJ2LZ8z3wmb for ; Wed, 9 Jul 2025 12:10:04 +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 RSA-PSS (4096 bits) client-signature ECDSA (secp384r1)) (Client CN "mail02.haj.ipfire.org", Issuer "E6" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4bccHC3T5tz6w1 for ; Wed, 9 Jul 2025 12:09:59 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4bccHC0RRSz34QQ for ; Wed, 9 Jul 2025 12:09:59 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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 4bccH80k5sz330w for ; Wed, 9 Jul 2025 12:09:56 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4bccH75nY8zlf; Wed, 9 Jul 2025 12:09:55 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1752062995; 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=BjtKv1+2PdVD6JiMc41jrqoBqJdWwUPRJYDwTXg7AS8=; b=kW0BP2YAWaskRTEe3IKXSzeOnBNVudmifeyokd6+l+MREXrwxmP7drgKICx2+uZvpA2sIK ua+xSLfSt6alBpDw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1752062995; 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=BjtKv1+2PdVD6JiMc41jrqoBqJdWwUPRJYDwTXg7AS8=; b=N0K3eoIdbikmPm0wF5IQ/v6nyNYETgcik6pWq6m5LujaUYOTnBrdkA3alz61GfrbKYqthc NeX422NaPVevZwJuwgkghbqvBMVZ9++6f9GfmypdzwdDhPZRvlYDrSa2O6b5GWN7/4QRsg OYukUTwNIM4H8OV/FSPW4fpi/5KTd6qGAx3YB6aBOAzgnaVu6xWOBAQ3150c8kyN7K31yS 9TybS6QZJoBjXGQlev2wsiT0VeR+eFK+M9ZVL9GCzetqkTfNw2PHrq+oKAqd2sDZUez6c5 fqiIbXqyBYi87VXbkJqpvNt+enJa7vOSNLyQxm6ejoAOAQLm6eaInfuDubwe+A== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 2/4] core197: Ship json-glib Date: Wed, 9 Jul 2025 14:09:50 +0200 Message-ID: <20250709120952.210031-2-adolf.belka@ipfire.org> In-Reply-To: <20250709120952.210031-1-adolf.belka@ipfire.org> References: <20250709120952.210031-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Signed-off-by: Adolf Belka --- config/rootfiles/core/197/filelists/json-glib | 1 + 1 file changed, 1 insertion(+) create mode 120000 config/rootfiles/core/197/filelists/json-glib diff --git a/config/rootfiles/core/197/filelists/json-glib b/config/rootfiles/core/197/filelists/json-glib new file mode 120000 index 000000000..04e13bd16 --- /dev/null +++ b/config/rootfiles/core/197/filelists/json-glib @@ -0,0 +1 @@ +../../../common/json-glib \ No newline at end of file From patchwork Wed Jul 9 12:09:51 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 8918 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 (secp384r1) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R11" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4bccHJ2vM2z3wnT for ; Wed, 9 Jul 2025 12:10:04 +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 RSA-PSS (4096 bits) client-signature ECDSA (secp384r1)) (Client CN "mail02.haj.ipfire.org", Issuer "E6" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4bccHC3kCSz6wn for ; Wed, 9 Jul 2025 12:09:59 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4bccHC1Sbfz34Jr for ; Wed, 9 Jul 2025 12:09:59 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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 4bccH81m8jz34Bn for ; Wed, 9 Jul 2025 12:09:56 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4bccH80LYPz83; Wed, 9 Jul 2025 12:09:56 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1752062996; 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=HcCEmnZsjE0/xp8N7qGMZmEPh1j5anOuQVkEIxPanQw=; b=B3P/RgvE6NAMTkQNSsxFm9FODOmfkz1P5I/h59ZQvaqY53H+aW9VqHBJQh7ifbumWgHn95 l72i1VwwLA5M+jBQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1752062996; 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=HcCEmnZsjE0/xp8N7qGMZmEPh1j5anOuQVkEIxPanQw=; b=toeaHNe5A+9XiYLWYgFhr/+j7lBRLPFObVNEbdNrfap88zmANx48+CNKY8NBkYRkDrN6TI 8FINBYNiUBSOs3p5J8JByirYsxCH8o86TVzmK+6Pv0xtfLBxZ24AlcGoFVj42GRJYiNlte WNHuDdIzIGWw3hs43/WqheR3X8Y4sxUQ+uke0RYiyC2pV0cg3RWiEe94QUxvou/s3E3gab PLh/EDxJ98hN7R2kMaI2PUDOfA1c0+tukMMziTeSf98Yy7fUY1kOuqTvIjKLm90lVF1v+J xk4mfffBxP3eU7C5b++LcsthdOhif8BnJ0G+BjhR46fxxyywMv4cGKJw9NPKoA== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 3/4] libtpms: Add dist to lfs file Date: Wed, 9 Jul 2025 14:09:51 +0200 Message-ID: <20250709120952.210031-3-adolf.belka@ipfire.org> In-Reply-To: <20250709120952.210031-1-adolf.belka@ipfire.org> References: <20250709120952.210031-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Signed-off-by: Adolf Belka --- lfs/libtpms | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lfs/libtpms b/lfs/libtpms index 1f87a236c..6116e9412 100644 --- a/lfs/libtpms +++ b/lfs/libtpms @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = libtpms -PAK_VER = 1 +PAK_VER = 2 DEPS = @@ -58,6 +58,9 @@ download :$(patsubst %,$(DIR_DL)/%,$(objects)) b2 : $(subst %,%_BLAKE2,$(objects)) +dist: + @$(PAK) + ############################################################################### # Downloading, checking, b2sum ############################################################################### From patchwork Wed Jul 9 12:09:52 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 8917 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 (secp384r1) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R11" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4bccHJ2kVGz3wnD for ; Wed, 9 Jul 2025 12:10:04 +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 RSA-PSS (4096 bits) client-signature ECDSA (secp384r1)) (Client CN "mail02.haj.ipfire.org", Issuer "E6" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4bccHC4qvWz6yv for ; Wed, 9 Jul 2025 12:09:59 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4bccHC2d8rz34P1 for ; Wed, 9 Jul 2025 12:09:59 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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 4bccH835F7z34NN for ; Wed, 9 Jul 2025 12:09:56 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4bccH81hCHzlf; Wed, 9 Jul 2025 12:09:56 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1752062996; 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=eyTE+vd6r2V/uA4O1P2HgqD9AKnUjOTwPw0QnCjSPYc=; b=4gcwxNTc0ZxQ60Rfdmn68TLGIJvg+1RRdQXqGC1H+sIFOFDV6iwJXBGMQN/0ZGHdqlNbWT Hls/wrYn3CRv21DQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1752062996; 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=eyTE+vd6r2V/uA4O1P2HgqD9AKnUjOTwPw0QnCjSPYc=; b=H77piFUkChh3jamozaFfxPDQH+SWcOkRUhOlbIR6yWyF35ysCJOpySqgUz9+2bpeWZAr0P CKGhHSwlJeDdXJXMmUAEn+FTHMXJfALWTlbGczM6lRW2MFnKaoFL1gPAqZKhO0EHiZsVB1 pUdmJ+NxUk/K0iQX80onLz0HI6KF1DAHi/jhj3IiDIY5sXHws+a6GqeCPZJdHaCc7ngPwz I29g+vukXcJz+lJOSPI4Nu2XPxoKCkL0ohda7uWyByZLZEkVkG4PKYIKl/paYMkxWMv5pW GDoH5g4pp9yo3C/NWL94nOy9DEhNKedYP8mOzypiJ9RZLbFqQEmGH8I+rlvsOA== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 4/4] swtpm: Add dist to lfs file Date: Wed, 9 Jul 2025 14:09:52 +0200 Message-ID: <20250709120952.210031-4-adolf.belka@ipfire.org> In-Reply-To: <20250709120952.210031-1-adolf.belka@ipfire.org> References: <20250709120952.210031-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Signed-off-by: Adolf Belka --- lfs/swtpm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lfs/swtpm b/lfs/swtpm index ccd09517e..1547610a2 100644 --- a/lfs/swtpm +++ b/lfs/swtpm @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = swtpm -PAK_VER = 1 +PAK_VER = 2 DEPS = libtpms @@ -58,6 +58,9 @@ download :$(patsubst %,$(DIR_DL)/%,$(objects)) b2 : $(subst %,%_BLAKE2,$(objects)) +dist: + @$(PAK) + ############################################################################### # Downloading, checking, b2sum ###############################################################################