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 4ZGWbZ61cxz333c for ; Mon, 17 Mar 2025 10:36:10 +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 "R10" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4ZGWbW1Tddz2yn7 for ; Mon, 17 Mar 2025 10:36:07 +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 4ZGWbV5tn2z2QH; Mon, 17 Mar 2025 10:36:06 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1742207766; 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=GN+Si0DgohQ2Fp34Nq3+jyeZYnvTqi2z7O2bMy/6uRM=; b=Pgj4rQD4d1kGbXI2IDZtXCnZ96N0KWUQiqNAkE0JzjGQzYv399HEtvfyR42dYXFJbWgTkh MdvclmFwbbJMDICA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1742207766; 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=GN+Si0DgohQ2Fp34Nq3+jyeZYnvTqi2z7O2bMy/6uRM=; b=iwxRGc2wJUFObS4dlabmm5Qa4x16QGuK4WZWqp/YPb/msrsvjZfyDex/2udNWB//HasPBF //4EM82KWc/Oc6ERw5eLLIDkozHqHLCL9iJazOBFYnhsbgaQTW0c0gAsDhYgMPfU7KrIrz Ra99rQ5YIOUVTyNnR8MmlM5nYqn5yTPjdgGM2CIHryxAqGVsbigWjmFYBd6WX9IiETWRJm b2U5MX0peGeUl36cooRkWVuColFjbqNYGX+w1apbzTaGsl9DMxGu5E2u4zGspShTCHMj2o Z2KD4fip+pOKaA7bjvp0JPYepCGc/g1h9mW+JKOZ50HWke+E4myseAeyfOUW1w== 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] perl: uncomment the json entrries in the rootfile From: Michael Tremer In-Reply-To: <20250315204531.2294243-1-adolf.belka@ipfire.org> Date: Mon, 17 Mar 2025 10:36:06 +0000 Cc: development@lists.ipfire.org, ummeegge Content-Transfer-Encoding: quoted-printable Message-Id: References: <20250315204531.2294243-1-adolf.belka@ipfire.org> To: Adolf Belka Thank you. I merged this one straight into master. > On 15 Mar 2025, at 20:45, Adolf Belka wrote: >=20 > - Back in Sept 2024 I supplied a patch to remove certain perl modules = as they were now > available in the core perl package. > - The perl-json was one of these modules but unfortunately I missed to = uncomment the json > entries in the perl rootfile so they have been unavailable to samba = since then. > - This patch corrects that situation. >=20 > Suggested-by: ummeegge > Signed-off-by: Adolf Belka > --- > config/rootfiles/common/perl | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) >=20 > diff --git a/config/rootfiles/common/perl = b/config/rootfiles/common/perl > index d4ceb7083..91517941c 100644 > --- a/config/rootfiles/common/perl > +++ b/config/rootfiles/common/perl > @@ -313,9 +313,9 @@ usr/lib/perl5/5.36.0/IPC/Open2.pm > usr/lib/perl5/5.36.0/IPC/Open3.pm > #usr/lib/perl5/5.36.0/Internals.pod > #usr/lib/perl5/5.36.0/JSON > -#usr/lib/perl5/5.36.0/JSON/PP > -#usr/lib/perl5/5.36.0/JSON/PP.pm > -#usr/lib/perl5/5.36.0/JSON/PP/Boolean.pm > +usr/lib/perl5/5.36.0/JSON/PP > +usr/lib/perl5/5.36.0/JSON/PP.pm > +usr/lib/perl5/5.36.0/JSON/PP/Boolean.pm > #usr/lib/perl5/5.36.0/Locale > #usr/lib/perl5/5.36.0/Locale/Maketext > #usr/lib/perl5/5.36.0/Locale/Maketext.pm > --=20 > 2.48.1 >=20 >=20