From unknown Sun Aug 17 00:56:55 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#63070 <63070@debbugs.gnu.org> To: bug#63070 <63070@debbugs.gnu.org> Subject: Status: [PATCH] gnu: biber: Fix build with new Perl. Reply-To: bug#63070 <63070@debbugs.gnu.org> Date: Sun, 17 Aug 2025 07:56:55 +0000 retitle 63070 [PATCH] gnu: biber: Fix build with new Perl. reassign 63070 guix-patches submitter 63070 Josselin Poiret severity 63070 normal tag 63070 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 25 12:18:49 2023 Received: (at submit) by debbugs.gnu.org; 25 Apr 2023 16:18:49 +0000 Received: from localhost ([127.0.0.1]:53434 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1prLNM-0003WB-Tk for submit@debbugs.gnu.org; Tue, 25 Apr 2023 12:18:48 -0400 Received: from lists.gnu.org ([209.51.188.17]:37608) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1prLNH-0003Vu-Is for submit@debbugs.gnu.org; Tue, 25 Apr 2023 12:18:43 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1prLNG-0004bu-TA for guix-patches@gnu.org; Tue, 25 Apr 2023 12:18:38 -0400 Received: from jpoiret.xyz ([206.189.101.64]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1prLNB-0004uM-VF for guix-patches@gnu.org; Tue, 25 Apr 2023 12:18:38 -0400 Received: from authenticated-user (jpoiret.xyz [206.189.101.64]) by jpoiret.xyz (Postfix) with ESMTPA id 555EE184F2B; Tue, 25 Apr 2023 16:18:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=jpoiret.xyz; s=dkim; t=1682439511; 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=gEnJvs2o9vEQ3/xJRtWBItD4fvZK+c1Q33oraMIlCao=; b=vDujuF7X3feg25OhbvmC2WGt6hy13d6+DgbexKu2hBVhqGSkxwnnVvVFEyfCpEwOSTdsA+ IZxZkP6IYpFp59J+9OKPgJCbxm3JhpYwlK8dN79kcjAtKgu32jJHB1otBVPRNAhZEeN4wm PBoKujd6Z2ddex/u04MFVHP9G1iIE1BnAMb+4/6B6qFYMUYY2li6jjm4tImHGrDflOWBkR ck5CDis7s/IsgVWbpRkTy05cr0EuGrSRunb4QpEpvOkKATrtfj3qgYVPcMfeNfEU9mdVCK /ggQrPxtNBN1yvcow0vBiJyYz025swUttds1BFSGMOByeA2lcTwLiTsCZYp5fg== From: Josselin Poiret To: guix-patches@gnu.org Subject: [PATCH] gnu: biber: Fix build with new Perl. Date: Tue, 25 Apr 2023 18:18:30 +0200 Message-Id: <7983a6e0e6aab37e0a449d061d8377b3d9fb9bbf.1682439510.git.dev@jpoiret.xyz> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spamd-Bar: ++++ Authentication-Results: jpoiret.xyz; auth=pass smtp.auth=jpoiret@jpoiret.xyz smtp.mailfrom=dev@jpoiret.xyz X-Spam-Level: **** Received-SPF: pass client-ip=206.189.101.64; envelope-from=dev@jpoiret.xyz; helo=jpoiret.xyz X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.6 (/) X-Debbugs-Envelope-To: submit Cc: Josselin Poiret X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/packages/patches/biber-adapt-perl-5.36.patch: Backport patch from upstream's 760e6e4ec08a3097f7e6136331541a7b8c1c9df7. * gnu/packages/tex.scm (biber): Use it. * gnu/local.mk (dist_patch_DATA): Register it. --- gnu/local.mk | 1 + .../patches/biber-adapt-perl-5.36.patch | 40 +++++++++++++++++++ gnu/packages/tex.scm | 3 +- 3 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/biber-adapt-perl-5.36.patch diff --git a/gnu/local.mk b/gnu/local.mk index 66dd240ba9..a714734bca 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -944,6 +944,7 @@ dist_patch_DATA = \ %D%/packages/patches/bsd-games-stdio.h.patch \ %D%/packages/patches/beancount-disable-googleapis-fonts.patch \ %D%/packages/patches/beignet-correct-file-names.patch \ + %D%/packages/patches/biber-adapt-perl-5.36.patch \ %D%/packages/patches/bidiv-update-fribidi.patch \ %D%/packages/patches/binutils-boot-2.20.1a.patch \ %D%/packages/patches/binutils-loongson-workaround.patch \ diff --git a/gnu/packages/patches/biber-adapt-perl-5.36.patch b/gnu/packages/patches/biber-adapt-perl-5.36.patch new file mode 100644 index 0000000000..895813c1f2 --- /dev/null +++ b/gnu/packages/patches/biber-adapt-perl-5.36.patch @@ -0,0 +1,40 @@ +From d9e961710074d266ad6bdf395c98868d91952088 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +Date: Wed, 25 May 2022 12:41:59 +0200 +Subject: [PATCH] Adapt to Perl 5.36 + +A developmental release of Perl 5.36.0 fails to run tests with: + + $ perl -Ilib t/basic-misc.t + 1..72 + Can't modify undef operator in scalar assignment at lib/Biber/Section.pm line 433, near "undef;" + Compilation failed in require at lib/Biber.pm line 24. + BEGIN failed--compilation aborted at lib/Biber.pm line 24. + Compilation failed in require at t/basic-misc.t line 11. + BEGIN failed--compilation aborted at t/basic-misc.t line 11. + # Looks like your test exited with 255 before it could output anything. + +This is because of a missing semicolon between commands in +del_everykeys(). The new perl is more strict and raises a compile-time +error: + + $ perl -e '$a = undef $b = undef;' + Can't modify undef operator in scalar assignment at -e line 1, near "undef;" + Execution of -e aborted due to compilation errors. +--- + lib/Biber/Section.pm | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/Biber/Section.pm b/lib/Biber/Section.pm +index 03ed69a51..a78942f57 100644 +--- a/lib/Biber/Section.pm ++++ b/lib/Biber/Section.pm +@@ -429,7 +429,7 @@ sub add_everykey { + + sub del_everykeys { + my $self = shift; +- $self->{everykey} = undef ++ $self->{everykey} = undef; + $self->{everykey_lc} = undef; + return; + } diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 79c791c89d..a2f1de4e35 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -8832,7 +8832,8 @@ (define-public biber (file-name (git-file-name name version)) (sha256 (base32 - "0586q8y1f2k23mvb02ccm3qsb35cwskafksixsjaih7a7xcf5gxx")))) + "0586q8y1f2k23mvb02ccm3qsb35cwskafksixsjaih7a7xcf5gxx")) + (patches (search-patches "biber-adapt-perl-5.36.patch")))) (build-system perl-build-system) (arguments `(#:phases base-commit: 3a37e3ecd8ae0bcc0e5d00393fa9365d611bcb71 -- 2.39.2 From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 25 12:46:20 2023 Received: (at 63070-done) by debbugs.gnu.org; 25 Apr 2023 16:46:21 +0000 Received: from localhost ([127.0.0.1]:53457 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1prLo4-0004ER-Oe for submit@debbugs.gnu.org; Tue, 25 Apr 2023 12:46:20 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:57546) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1prLo2-0004EC-Iu for 63070-done@debbugs.gnu.org; Tue, 25 Apr 2023 12:46:19 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 47C041BCD; Tue, 25 Apr 2023 18:46:12 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at hera.aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ProZwrekJBQW; Tue, 25 Apr 2023 18:46:11 +0200 (CEST) Received: from jurong (unknown [IPv6:2001:861:c4:f2f0::c64]) by hera.aquilenet.fr (Postfix) with ESMTPSA id B466C637; Tue, 25 Apr 2023 18:46:11 +0200 (CEST) Date: Tue, 25 Apr 2023 18:46:10 +0200 From: Andreas Enge To: 63070-done@debbugs.gnu.org Subject: Close Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 63070-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Pushed, thanks! Andreas From unknown Sun Aug 17 00:56:55 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 24 May 2023 11:24:08 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator