[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[groff] 01/01: Import change in perl 5.40.
From: |
Deri James |
Subject: |
[groff] 01/01: Import change in perl 5.40. |
Date: |
Sat, 2 Nov 2024 12:34:53 -0400 (EDT) |
deri pushed a commit to branch master
in repository groff.
commit 357028ed317bea293e268ed3ae77421004b87a5e
Author: Deri James <deri@chuzzlewit.myzen.co.uk>
AuthorDate: Sat Nov 2 16:33:49 2024 +0000
Import change in perl 5.40.
See <https://perldoc.perl.org/perl5400delta#Calling-the-import-
method-of-an-unknown-package-produces-a-warning>.
* src/devices/gropdf/pdfmom.pl:
* src/devices/gropdf/gropdf.pl:
* src/utils/afmtodit/afmtodit.pl: Warning issued for unknown method
fixed.
Thanks to Bjarni Gislason for the report, see
<https://lists.gnu.org/archive/html/groff/2024-10/msg00130.html>
---
ChangeLog | 15 +++++++++++++++
src/devices/gropdf/gropdf.pl | 2 +-
src/devices/gropdf/pdfmom.pl | 2 +-
src/utils/afmtodit/afmtodit.pl | 2 +-
4 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 15b1496b8..38c312eeb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+2024-11-02 Deri James <deri@chuzzlewit.myzen.co.uk>
+
+ Import change in perl 5.40.
+
+ See <https://perldoc.perl.org/perl5400delta#Calling-the-import-
+ method-of-an-unknown-package-produces-a-warning>.
+
+ * src/devices/gropdf/pdfmom.pl:
+ * src/devices/gropdf/gropdf.pl:
+ * src/utils/afmtodit/afmtodit.pl: Warning issued for unknown method
+ fixed.
+
+ Thanks to Bjarni Gislason for the report, see
+ <https://lists.gnu.org/archive/html/groff/2024-10/msg00130.html>
+
2024-10-28 G. Branden Robinson <g.branden.robinson@gmail.com>
Deprecate rather than withdrawing support for AT&T font names,
diff --git a/src/devices/gropdf/gropdf.pl b/src/devices/gropdf/gropdf.pl
index 45408ee55..64a453a7b 100644
--- a/src/devices/gropdf/gropdf.pl
+++ b/src/devices/gropdf/gropdf.pl
@@ -26,7 +26,7 @@ require 5.8.0;
use Getopt::Long qw(:config bundling);
use Encode qw(encode);
use POSIX qw(mktime);
-use File::Spec qw(splitpath);
+use File::Spec;
use constant
{
diff --git a/src/devices/gropdf/pdfmom.pl b/src/devices/gropdf/pdfmom.pl
index 5806fba9b..ec9bf101f 100644
--- a/src/devices/gropdf/pdfmom.pl
+++ b/src/devices/gropdf/pdfmom.pl
@@ -24,7 +24,7 @@
use strict;
use warnings;
-use File::Spec qw/splitpath/;
+use File::Spec;
use File::Temp qw/tempfile/;
my @cmd;
diff --git a/src/utils/afmtodit/afmtodit.pl b/src/utils/afmtodit/afmtodit.pl
index 343df6125..519fb8df9 100644
--- a/src/utils/afmtodit/afmtodit.pl
+++ b/src/utils/afmtodit/afmtodit.pl
@@ -22,7 +22,7 @@ use strict;
@afmtodit.tables@
-use File::Spec qw(splitpath);
+use File::Spec;
(undef,undef,my $prog)=File::Spec->splitpath($0);
my $groff_sys_fontdir = "@FONTDIR@";
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [groff] 01/01: Import change in perl 5.40.,
Deri James <=