mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
biber: update to 2.19
This commit is contained in:
parent
412b33f650
commit
239ca68dfc
2 changed files with 3 additions and 44 deletions
|
@ -1,40 +0,0 @@
|
||||||
From d9e961710074d266ad6bdf395c98868d91952088 Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
|
||||||
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;
|
|
||||||
}
|
|
|
@ -1,8 +1,7 @@
|
||||||
# Template file for 'biber'
|
# Template file for 'biber'
|
||||||
pkgname=biber
|
pkgname=biber
|
||||||
reverts="2.18_1"
|
version=2.19
|
||||||
version=2.16
|
revision=1
|
||||||
revision=3
|
|
||||||
build_style=perl-ModuleBuild
|
build_style=perl-ModuleBuild
|
||||||
hostmakedepends="perl-Module-Build"
|
hostmakedepends="perl-Module-Build"
|
||||||
makedepends="perl-ExtUtils-LibBuilder"
|
makedepends="perl-ExtUtils-LibBuilder"
|
||||||
|
@ -54,4 +53,4 @@ license="Artistic-2.0"
|
||||||
homepage="http://biblatex-biber.sourceforge.net"
|
homepage="http://biblatex-biber.sourceforge.net"
|
||||||
changelog="https://raw.githubusercontent.com/plk/biber/dev/Changes"
|
changelog="https://raw.githubusercontent.com/plk/biber/dev/Changes"
|
||||||
distfiles="https://github.com/plk/biber/archive/v${version}.tar.gz"
|
distfiles="https://github.com/plk/biber/archive/v${version}.tar.gz"
|
||||||
checksum=57111ebc6d0d1933e55d3fe1a92f8ef57c602388ae83598a8073c8a77fd811e2
|
checksum=1c1266bc8adb1637c4c59e23c47d919c5a38da4e53544a3c22c21de4a68fc9fe
|
||||||
|
|
Loading…
Add table
Reference in a new issue