* [gentoo-commits] repo/gentoo:master commit in: dev-tex/biber/files/
@ 2017-03-16 19:45 Manuel Rüger
0 siblings, 0 replies; 4+ messages in thread
From: Manuel Rüger @ 2017-03-16 19:45 UTC (permalink / raw
To: gentoo-commits
commit: ea6d80b2229b1937bc0b634f13e73bb1b0edb6a0
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 16 19:44:44 2017 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 19:44:44 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea6d80b2
dev-tex/biber: Drop old patch
Package-Manager: Portage-2.3.4, Repoman-2.3.2
.../biber/files/biber-2.1-drop-mozilla-ca.patch | 197 ---------------------
1 file changed, 197 deletions(-)
diff --git a/dev-tex/biber/files/biber-2.1-drop-mozilla-ca.patch b/dev-tex/biber/files/biber-2.1-drop-mozilla-ca.patch
deleted file mode 100644
index beaf0835666..00000000000
--- a/dev-tex/biber/files/biber-2.1-drop-mozilla-ca.patch
+++ /dev/null
@@ -1,197 +0,0 @@
-From 29a48e5da01acb1f5f35e3a47b04ec4db42e50b9 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Manuel=20R=C3=BCger?= <manuel@rueg.eu>
-Date: Sun, 31 May 2015 00:34:11 +0200
-Subject: [PATCH] Remove Mozilla::CA dependency.
-
-
-diff --git a/Build.PL b/Build.PL
-index 841af36..b43b5fe 100644
---- a/Build.PL
-+++ b/Build.PL
-@@ -53,7 +53,6 @@ my $builder = $class->new(
- 'List::AllUtils' => 0,
- 'List::MoreUtils' => 0,
- 'List::MoreUtils::XS' => 0,
-- 'Mozilla::CA' => '20141217',
- 'Regexp::Common' => 0,
- 'Log::Log4perl' => 0,
- 'Unicode::Collate' => '1.12',
-diff --git a/bin/biber b/bin/biber
-index 80ebd39..c4f8897 100755
---- a/bin/biber
-+++ b/bin/biber
-@@ -72,7 +72,6 @@ GetOptions(
- 'sortfirstinits=s',
- 'sortlocale|l=s',
- 'sortupper=s',
-- 'ssl-nointernalca',
- 'ssl-noverify-host',
- 'tool',
- 'tool_align|tool-align', # legacy alias for output_align
-@@ -658,12 +657,6 @@ default sorting (B<--collate|-C>). When
- using B<--fastsort|-f>, your OS collation locale determines
- this and this option is ignored (default is true).
-
--=item B<--ssl-nointernalca>
--
--Don't try to use the default Mozilla CA certificates when using HTTPS to fetch remote data.
--This assumes that the user will set one of the perl LWP::UserAgent module environment variables
--to find the CA certs.
--
- =item B<--ssl-noverify-host>
-
- Turn off host verification when using HTTPS to fetch remote data sources.
-diff --git a/data/schemata/config.rnc b/data/schemata/config.rnc
-index 9f96fec..2863e14 100644
---- a/data/schemata/config.rnc
-+++ b/data/schemata/config.rnc
-@@ -77,7 +77,6 @@ start = element config {
- map+
- }+
- }? &
-- element ssl-nointernalca { "0" | "1" }? &
- element ssl-noverify-host { "0" | "1" }? &
- element tool { "0" | "1" }? &
- element tool_config { text }? &
-diff --git a/data/schemata/config.rng b/data/schemata/config.rng
-index 3bd7072..8ef9bee 100644
---- a/data/schemata/config.rng
-+++ b/data/schemata/config.rng
-@@ -352,14 +352,6 @@
- </element>
- </optional>
- <optional>
-- <element name="ssl-nointernalca">
-- <choice>
-- <value>0</value>
-- <value>1</value>
-- </choice>
-- </element>
-- </optional>
-- <optional>
- <element name="ssl-noverify-host">
- <choice>
- <value>0</value>
-diff --git a/lib/Biber/Input/file/biblatexml.pm b/lib/Biber/Input/file/biblatexml.pm
-index 4d1878b..8994c0f 100644
---- a/lib/Biber/Input/file/biblatexml.pm
-+++ b/lib/Biber/Input/file/biblatexml.pm
-@@ -97,19 +97,6 @@ sub extract_entries {
- else {
- if ($1) { # HTTPS
- # use IO::Socket::SSL qw(debug99); # useful for debugging SSL issues
-- # We have to explicitly set the cert path because otherwise the https module
-- # can't find the .pem when PAR::Packer'ed
-- # Have to explicitly try to require Mozilla::CA here to get it into %INC below
-- # It may, however, have been removed by some biber unpacked dists
-- if (not exists($ENV{PERL_LWP_SSL_CA_FILE}) and
-- not exists($ENV{PERL_LWP_SSL_CA_PATH}) and
-- not defined(Biber::Config->getoption('ssl-nointernalca')) and
-- eval {require Mozilla::CA}) {
-- # we assume that the default CA file is in .../Mozilla/CA/cacert.pem
-- (my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Mozilla/CA.pm"} );
-- $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/'
-- $ENV{PERL_LWP_SSL_CA_FILE} = File::Spec->catpath($vol, "$dir/CA", 'cacert.pem');
-- }
-
- # fallbacks for, e.g., linux
- unless (exists($ENV{PERL_LWP_SSL_CA_FILE})) {
-diff --git a/lib/Biber/Input/file/bibtex.pm b/lib/Biber/Input/file/bibtex.pm
-index 24b2772..c70e6e4 100644
---- a/lib/Biber/Input/file/bibtex.pm
-+++ b/lib/Biber/Input/file/bibtex.pm
-@@ -140,19 +140,6 @@ sub extract_entries {
- else {
- if ($1) { # HTTPS
- # use IO::Socket::SSL qw(debug99); # useful for debugging SSL issues
-- # We have to explicitly set the cert path because otherwise the https module
-- # can't find the .pem when PAR::Packer'ed
-- # Have to explicitly try to require Mozilla::CA here to get it into %INC below
-- # It may, however, have been removed by some biber unpacked dists
-- if (not exists($ENV{PERL_LWP_SSL_CA_FILE}) and
-- not exists($ENV{PERL_LWP_SSL_CA_PATH}) and
-- not defined(Biber::Config->getoption('ssl-nointernalca')) and
-- eval {require Mozilla::CA}) {
-- # we assume that the default CA file is in .../Mozilla/CA/cacert.pem
-- (my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Mozilla/CA.pm"} );
-- $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/'
-- $ENV{PERL_LWP_SSL_CA_FILE} = File::Spec->catpath($vol, "$dir/CA", 'cacert.pem');
-- }
-
- # fallbacks for, e.g., linux
- unless (exists($ENV{PERL_LWP_SSL_CA_FILE})) {
-diff --git a/lib/Biber/Input/file/endnotexml.pm b/lib/Biber/Input/file/endnotexml.pm
-index bf62a80..342b3b2 100644
---- a/lib/Biber/Input/file/endnotexml.pm
-+++ b/lib/Biber/Input/file/endnotexml.pm
-@@ -111,19 +111,6 @@ sub extract_entries {
- $logger->info("Data source '$source' is a remote EndNote XML datasource - fetching ...");
- if ($1) { # HTTPS
- # use IO::Socket::SSL qw(debug99); # useful for debugging SSL issues
-- # We have to explicitly set the cert path because otherwise the https module
-- # can't find the .pem when PAR::Packer'ed
-- # Have to explicitly try to require Mozilla::CA here to get it into %INC below
-- # It may, however, have been removed by some biber unpacked dists
-- if (not exists($ENV{PERL_LWP_SSL_CA_FILE}) and
-- not exists($ENV{PERL_LWP_SSL_CA_PATH}) and
-- not defined(Biber::Config->getoption('ssl-nointernalca')) and
-- eval {require Mozilla::CA}) {
-- # we assume that the default CA file is in .../Mozilla/CA/cacert.pem
-- (my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Mozilla/CA.pm"} );
-- $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/'
-- $ENV{PERL_LWP_SSL_CA_FILE} = File::Spec->catpath($vol, "$dir/CA", 'cacert.pem');
-- }
-
- # fallbacks for, e.g., linux
- unless (exists($ENV{PERL_LWP_SSL_CA_FILE})) {
-diff --git a/lib/Biber/Input/file/ris.pm b/lib/Biber/Input/file/ris.pm
-index bc389c2..56f8d93 100644
---- a/lib/Biber/Input/file/ris.pm
-+++ b/lib/Biber/Input/file/ris.pm
-@@ -110,19 +110,6 @@ sub extract_entries {
- else {
- if ($1) { # HTTPS
- # use IO::Socket::SSL qw(debug99); # useful for debugging SSL issues
-- # We have to explicitly set the cert path because otherwise the https module
-- # can't find the .pem when PAR::Packer'ed
-- # Have to explicitly try to require Mozilla::CA here to get it into %INC below
-- # It may, however, have been removed by some biber unpacked dists
-- if (not exists($ENV{PERL_LWP_SSL_CA_FILE}) and
-- not exists($ENV{PERL_LWP_SSL_CA_PATH}) and
-- not defined(Biber::Config->getoption('ssl-nointernalca')) and
-- eval {require Mozilla::CA}) {
-- # we assume that the default CA file is in .../Mozilla/CA/cacert.pem
-- (my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Mozilla/CA.pm"} );
-- $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/'
-- $ENV{PERL_LWP_SSL_CA_FILE} = File::Spec->catpath($vol, "$dir/CA", 'cacert.pem');
-- }
-
- # fallbacks for, e.g., linux
- unless (exists($ENV{PERL_LWP_SSL_CA_FILE})) {
-diff --git a/lib/Biber/Input/file/zoterordfxml.pm b/lib/Biber/Input/file/zoterordfxml.pm
-index 6dbb3f9..15bc3f6 100644
---- a/lib/Biber/Input/file/zoterordfxml.pm
-+++ b/lib/Biber/Input/file/zoterordfxml.pm
-@@ -123,19 +123,6 @@ sub extract_entries {
- $logger->info("Data source '$source' is a remote Zotero RDF/XML data source - fetching ...");
- if ($1) { # HTTPS
- # use IO::Socket::SSL qw(debug99); # useful for debugging SSL issues
-- # We have to explicitly set the cert path because otherwise the https module
-- # can't find the .pem when PAR::Packer'ed
-- # Have to explicitly try to require Mozilla::CA here to get it into %INC below
-- # It may, however, have been removed by some biber unpacked dists
-- if (not exists($ENV{PERL_LWP_SSL_CA_FILE}) and
-- not exists($ENV{PERL_LWP_SSL_CA_PATH}) and
-- not defined(Biber::Config->getoption('ssl-nointernalca')) and
-- eval {require Mozilla::CA}) {
-- # we assume that the default CA file is in .../Mozilla/CA/cacert.pem
-- (my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Mozilla/CA.pm"} );
-- $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/'
-- $ENV{PERL_LWP_SSL_CA_FILE} = File::Spec->catpath($vol, "$dir/CA", 'cacert.pem');
-- }
-
- # fallbacks for, e.g., linux
- unless (exists($ENV{PERL_LWP_SSL_CA_FILE})) {
---
-2.4.2
-
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-tex/biber/files/
@ 2019-05-19 0:19 Michael Palimaka
0 siblings, 0 replies; 4+ messages in thread
From: Michael Palimaka @ 2019-05-19 0:19 UTC (permalink / raw
To: gentoo-commits
commit: 1fcf01c24bc0966744db11b76db9f16deec4a75d
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri May 17 18:26:37 2019 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun May 19 00:19:14 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fcf01c2
dev-tex/biber: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/12033
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: Michael Palimaka <kensington <AT> gentoo.org>
.../biber/files/biber-2.4-drop-mozilla-ca.patch | 146 ---------------------
1 file changed, 146 deletions(-)
diff --git a/dev-tex/biber/files/biber-2.4-drop-mozilla-ca.patch b/dev-tex/biber/files/biber-2.4-drop-mozilla-ca.patch
deleted file mode 100644
index d4618a4cb99..00000000000
--- a/dev-tex/biber/files/biber-2.4-drop-mozilla-ca.patch
+++ /dev/null
@@ -1,146 +0,0 @@
-commit 09ac1811820c2d2b92f8de779f7c389f89dc6c16
-Author: Jason A. Donenfeld <Jason@zx2c4.com>
-Date: Sat Mar 12 02:54:35 2016 +0100
-
- Remove Mozilla::CA dependency
-
-diff --git a/Build.PL b/Build.PL
-index 6031458..8de2f2a 100644
---- a/Build.PL
-+++ b/Build.PL
-@@ -53,7 +53,6 @@ my $builder = $class->new(
- 'List::AllUtils' => 0,
- 'List::MoreUtils' => 0,
- 'List::MoreUtils::XS' => 0,
-- 'Mozilla::CA' => '20141217',
- 'Regexp::Common' => 0,
- 'Log::Log4perl' => 0,
- 'Unicode::Collate' => '1.14',
-diff --git a/bin/biber b/bin/biber
-index f9e28fb..8d614e5 100755
---- a/bin/biber
-+++ b/bin/biber
-@@ -78,7 +78,6 @@ GetOptions(
- 'sortgiveninits|sortfirstinits=s',
- 'sortlocale|l=s',
- 'sortupper=s',
-- 'ssl-nointernalca',
- 'ssl-noverify-host',
- 'strip_comments|strip-comments',
- 'tool',
-@@ -710,12 +709,6 @@ default sorting (B<--collate|-C>). When
- using B<--fastsort|-f>, your OS collation locale determines
- this and this option is ignored (default is true).
-
--=item B<--ssl-nointernalca>
--
--Don't try to use the default Mozilla CA certificates when using HTTPS to fetch remote data.
--This assumes that the user will set one of the perl LWP::UserAgent module environment variables
--to find the CA certs.
--
- =item B<--ssl-noverify-host>
-
- Turn off host verification when using HTTPS to fetch remote data sources.
-diff --git a/data/schemata/config.rnc b/data/schemata/config.rnc
-index 7baf386..f3d321e 100644
---- a/data/schemata/config.rnc
-+++ b/data/schemata/config.rnc
-@@ -79,7 +79,6 @@ start =
- map+
- }+
- }? &
-- element ssl-nointernalca { "0" | "1" }? &
- element ssl-noverify-host { "0" | "1" }? &
- element tool { "0" | "1" }? &
- element tool_config { text }? &
-diff --git a/data/schemata/config.rng b/data/schemata/config.rng
-index f11b38e..fff209a 100644
---- a/data/schemata/config.rng
-+++ b/data/schemata/config.rng
-@@ -353,14 +353,6 @@
- </element>
- </optional>
- <optional>
-- <element name="ssl-nointernalca">
-- <choice>
-- <value>0</value>
-- <value>1</value>
-- </choice>
-- </element>
-- </optional>
-- <optional>
- <element name="ssl-noverify-host">
- <choice>
- <value>0</value>
-diff --git a/lib/Biber/Input/file/biblatexml.pm b/lib/Biber/Input/file/biblatexml.pm
-index 8139cd4..14018da 100644
---- a/lib/Biber/Input/file/biblatexml.pm
-+++ b/lib/Biber/Input/file/biblatexml.pm
-@@ -115,19 +115,6 @@ sub extract_entries {
- else {
- if ($1) { # HTTPS
- # use IO::Socket::SSL qw(debug99); # useful for debugging SSL issues
-- # We have to explicitly set the cert path because otherwise the https module
-- # can't find the .pem when PAR::Packer'ed
-- # Have to explicitly try to require Mozilla::CA here to get it into %INC below
-- # It may, however, have been removed by some biber unpacked dists
-- if (not exists($ENV{PERL_LWP_SSL_CA_FILE}) and
-- not exists($ENV{PERL_LWP_SSL_CA_PATH}) and
-- not defined(Biber::Config->getoption('ssl-nointernalca')) and
-- eval {require Mozilla::CA}) {
-- # we assume that the default CA file is in .../Mozilla/CA/cacert.pem
-- (my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Mozilla/CA.pm"} );
-- $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/'
-- $ENV{PERL_LWP_SSL_CA_FILE} = File::Spec->catpath($vol, "$dir/CA", 'cacert.pem');
-- }
-
- # fallbacks for, e.g., linux
- unless (exists($ENV{PERL_LWP_SSL_CA_FILE})) {
-diff --git a/lib/Biber/Input/file/bibtex.pm b/lib/Biber/Input/file/bibtex.pm
-index 6cc365a..b41e946 100644
---- a/lib/Biber/Input/file/bibtex.pm
-+++ b/lib/Biber/Input/file/bibtex.pm
-@@ -138,19 +138,6 @@ sub extract_entries {
- else {
- if ($1) { # HTTPS
- # use IO::Socket::SSL qw(debug99); # useful for debugging SSL issues
-- # We have to explicitly set the cert path because otherwise the https module
-- # can't find the .pem when PAR::Packer'ed
-- # Have to explicitly try to require Mozilla::CA here to get it into %INC below
-- # It may, however, have been removed by some biber unpacked dists
-- if (not exists($ENV{PERL_LWP_SSL_CA_FILE}) and
-- not exists($ENV{PERL_LWP_SSL_CA_PATH}) and
-- not defined(Biber::Config->getoption('ssl-nointernalca')) and
-- eval {require Mozilla::CA}) {
-- # we assume that the default CA file is in .../Mozilla/CA/cacert.pem
-- (my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Mozilla/CA.pm"} );
-- $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/'
-- $ENV{PERL_LWP_SSL_CA_FILE} = File::Spec->catpath($vol, "$dir/CA", 'cacert.pem');
-- }
-
- # fallbacks for, e.g., linux
- unless (exists($ENV{PERL_LWP_SSL_CA_FILE})) {
-diff --git a/lib/Biber/Input/file/ris.pm b/lib/Biber/Input/file/ris.pm
-index 9814723..e849b95 100644
---- a/lib/Biber/Input/file/ris.pm
-+++ b/lib/Biber/Input/file/ris.pm
-@@ -109,19 +109,6 @@ sub extract_entries {
- else {
- if ($1) { # HTTPS
- # use IO::Socket::SSL qw(debug99); # useful for debugging SSL issues
-- # We have to explicitly set the cert path because otherwise the https module
-- # can't find the .pem when PAR::Packer'ed
-- # Have to explicitly try to require Mozilla::CA here to get it into %INC below
-- # It may, however, have been removed by some biber unpacked dists
-- if (not exists($ENV{PERL_LWP_SSL_CA_FILE}) and
-- not exists($ENV{PERL_LWP_SSL_CA_PATH}) and
-- not defined(Biber::Config->getoption('ssl-nointernalca')) and
-- eval {require Mozilla::CA}) {
-- # we assume that the default CA file is in .../Mozilla/CA/cacert.pem
-- (my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Mozilla/CA.pm"} );
-- $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/'
-- $ENV{PERL_LWP_SSL_CA_FILE} = File::Spec->catpath($vol, "$dir/CA", 'cacert.pem');
-- }
-
- # fallbacks for, e.g., linux
- unless (exists($ENV{PERL_LWP_SSL_CA_FILE})) {
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-tex/biber/files/
@ 2020-01-29 6:14 Joonas Niilola
0 siblings, 0 replies; 4+ messages in thread
From: Joonas Niilola @ 2020-01-29 6:14 UTC (permalink / raw
To: gentoo-commits
commit: a1216537eb2e39ee23959153bd909c8a730c2539
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Tue Jan 21 07:00:05 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Jan 29 06:14:04 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1216537
dev-tex/biber: remove unused patch
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14405
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
.../files/biber-2.5-unescaped-left-brace-in-regex.patch | 12 ------------
1 file changed, 12 deletions(-)
diff --git a/dev-tex/biber/files/biber-2.5-unescaped-left-brace-in-regex.patch b/dev-tex/biber/files/biber-2.5-unescaped-left-brace-in-regex.patch
deleted file mode 100644
index c84b6cdbbb9..00000000000
--- a/dev-tex/biber/files/biber-2.5-unescaped-left-brace-in-regex.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur ./lib/Biber/LaTeX/Recode.pm ./lib/Biber/LaTeX/Recode.pm
---- ./lib/Biber/LaTeX/Recode.pm 2018-07-25 21:20:25.961547631 +0200
-+++ ./lib/Biber/LaTeX/Recode.pm 2018-07-25 21:20:06.653779312 +0200
-@@ -292,7 +292,7 @@
- # Workaround perl's lack of variable-width negative look-behind -
- # Reverse string (and therefore some of the Re) and use variable width negative look-ahead
- $text = reverse $text;
-- $text =~ s/}(\pM+\pL){(?!\pL+\\)/$1/g;
-+ $text =~ s/}(\pM+\pL)\{(?!\pL+\\)/$1/g;
- $text = reverse $text;
- $logger->trace("String in latex_decode() now -> '$text'");
-
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-tex/biber/files/
@ 2024-12-12 17:03 Florian Schmaus
0 siblings, 0 replies; 4+ messages in thread
From: Florian Schmaus @ 2024-12-12 17:03 UTC (permalink / raw
To: gentoo-commits
commit: 75b3a263d09ee2a5d504cfef42991e73fa89dda3
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Wed Dec 11 18:43:15 2024 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Dec 12 16:56:30 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75b3a263
dev-tex/biber: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
.../files/biber-2.16-perl-5.36-semicolon.patch | 38 ----------------------
1 file changed, 38 deletions(-)
diff --git a/dev-tex/biber/files/biber-2.16-perl-5.36-semicolon.patch b/dev-tex/biber/files/biber-2.16-perl-5.36-semicolon.patch
deleted file mode 100644
index 655a4e8f73e9..000000000000
--- a/dev-tex/biber/files/biber-2.16-perl-5.36-semicolon.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-https://bugs.gentoo.org/850733
-https://github.com/plk/biber/commit/d9e961710074d266ad6bdf395c98868d91952088
-
-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.
---- 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;
- }
-
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-12-12 17:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-29 6:14 [gentoo-commits] repo/gentoo:master commit in: dev-tex/biber/files/ Joonas Niilola
-- strict thread matches above, loose matches on Subject: below --
2024-12-12 17:03 Florian Schmaus
2019-05-19 0:19 Michael Palimaka
2017-03-16 19:45 Manuel Rüger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox