Re: [PATCH v2 14/14] git-cvsexportcommit: port to SHA-256

4 messages, 3 authors, 2020-08-04 · open the first message on its own page

Re: [PATCH v2 14/14] git-cvsexportcommit: port to SHA-256

From: Andreas Schwab <hidden>
Date: 2020-08-03 18:37:33

On Jun 22 2020, brian m. carlson wrote:
quoted hunk
diff --git a/git-cvsexportcommit.perl b/git-cvsexportcommit.perl
index fc00d5946a..6483d792d3 100755
--- a/git-cvsexportcommit.perl
+++ b/git-cvsexportcommit.perl
@@ -22,6 +22,10 @@
 my $repo = Git->repository();
 $opt_w = $repo->config('cvsexportcommit.cvsdir') unless defined $opt_w;
 
+my $tmpdir = File::Temp->newdir;
File::Temp in perl 5.10 doesn't have the newdir method.

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510  2552 DF73 E780 A9DA AEC1
"And now for something completely different."

Re: [PATCH v2 14/14] git-cvsexportcommit: port to SHA-256

From: brian m. carlson <hidden>
Date: 2020-08-03 23:50:47

On 2020-08-03 at 18:37:27, Andreas Schwab wrote:
On Jun 22 2020, brian m. carlson wrote:
quoted
diff --git a/git-cvsexportcommit.perl b/git-cvsexportcommit.perl
index fc00d5946a..6483d792d3 100755
--- a/git-cvsexportcommit.perl
+++ b/git-cvsexportcommit.perl
@@ -22,6 +22,10 @@
 my $repo = Git->repository();
 $opt_w = $repo->config('cvsexportcommit.cvsdir') unless defined $opt_w;
 
+my $tmpdir = File::Temp->newdir;
File::Temp in perl 5.10 doesn't have the newdir method.
That method was added in File::Temp 0.19, which was added in 2007.  Does

  my $tmpdir = File::Temp::tempdir(CLEANUP => 1);

do the right thing on your Perl 5.10?  I no longer use CentOS 6 at work
and it won't run in Docker on modern Debian, so I can't test.  If so,
I'll send a patch.

For the record, I plan to propose that we drop support for Perl versions
earlier than 5.14 on December 2, since CentOS 6 will be dead at that
point.  I think a ten-year lifespan for an OS is quite generous and
we're still considering Perl 5.8.8, which nobody is publicly supporting
anymore.
-- 
brian m. carlson: Houston, Texas, US

Re: [PATCH v2 14/14] git-cvsexportcommit: port to SHA-256

From: Eric Wong <hidden>
Date: 2020-08-04 00:13:29

"brian m. carlson" [off-list ref] wrote:
On 2020-08-03 at 18:37:27, Andreas Schwab wrote:
quoted
On Jun 22 2020, brian m. carlson wrote:
quoted
diff --git a/git-cvsexportcommit.perl b/git-cvsexportcommit.perl
index fc00d5946a..6483d792d3 100755
--- a/git-cvsexportcommit.perl
+++ b/git-cvsexportcommit.perl
@@ -22,6 +22,10 @@
 my $repo = Git->repository();
 $opt_w = $repo->config('cvsexportcommit.cvsdir') unless defined $opt_w;
 
+my $tmpdir = File::Temp->newdir;
File::Temp in perl 5.10 doesn't have the newdir method.
That method was added in File::Temp 0.19, which was added in 2007.  Does
5.10.0 doesn't have ->newdir, but 5.10.1 does.  I figure nobody
used 5.10.0 anymore since 5.10.1 exists and (IIRC) fixed many
things wrong in 5.10.0.
  my $tmpdir = File::Temp::tempdir(CLEANUP => 1);

do the right thing on your Perl 5.10?  I no longer use CentOS 6 at work
and it won't run in Docker on modern Debian, so I can't test.  If so,
I'll send a patch.
I haven't touched CentOS 6 in several years, either.  I've been
testing public-inbox against 5.10.1 built using patches from
Devel::PatchPerl (libdevel-patchperl-perl in Debian)
For the record, I plan to propose that we drop support for Perl versions
earlier than 5.14 on December 2, since CentOS 6 will be dead at that
point.  I think a ten-year lifespan for an OS is quite generous and
we're still considering Perl 5.8.8, which nobody is publicly supporting
anymore.
That's probably fine.  I haven't looked at 5.12 and 5.14 changes
enough to comment, but just moving rom 5.8 to 5.10.1 last year
made my life considerably better (e.g. `//', `//=')

In any case, it's probably a good idea to put use "v5.$SOMETHING"
with Perl 7 on the way (and Perl 8 will probably break v5 code :<)

Re: [PATCH v2 14/14] git-cvsexportcommit: port to SHA-256

From: brian m. carlson <hidden>
Date: 2020-08-04 00:44:31

On 2020-08-04 at 00:13:26, Eric Wong wrote:
"brian m. carlson" [off-list ref] wrote:
quoted
On 2020-08-03 at 18:37:27, Andreas Schwab wrote:
quoted
On Jun 22 2020, brian m. carlson wrote:
quoted
diff --git a/git-cvsexportcommit.perl b/git-cvsexportcommit.perl
index fc00d5946a..6483d792d3 100755
--- a/git-cvsexportcommit.perl
+++ b/git-cvsexportcommit.perl
@@ -22,6 +22,10 @@
 my $repo = Git->repository();
 $opt_w = $repo->config('cvsexportcommit.cvsdir') unless defined $opt_w;
 
+my $tmpdir = File::Temp->newdir;
File::Temp in perl 5.10 doesn't have the newdir method.
That method was added in File::Temp 0.19, which was added in 2007.  Does
5.10.0 doesn't have ->newdir, but 5.10.1 does.  I figure nobody
used 5.10.0 anymore since 5.10.1 exists and (IIRC) fixed many
things wrong in 5.10.0.
Technically we support 5.8.8, I believe, which means this probably does
need to be fixed.  I'll let Andreas verify the proposed solution works
for him, and then send a patch.
quoted
For the record, I plan to propose that we drop support for Perl versions
earlier than 5.14 on December 2, since CentOS 6 will be dead at that
point.  I think a ten-year lifespan for an OS is quite generous and
we're still considering Perl 5.8.8, which nobody is publicly supporting
anymore.
That's probably fine.  I haven't looked at 5.12 and 5.14 changes
enough to comment, but just moving rom 5.8 to 5.10.1 last year
made my life considerably better (e.g. `//', `//=')
5.14 has nice things like s///r:

   # 5.12
   # We have to make a copy since s/// modifies its left side.
   my $foo = $ARGV[0];
   $foo =~ s/a/b/;

   # 5.14
   # Now we have non-destructive substitution.
   my $foo = $ARGV[0] =~ s/a/b/r;
-- 
brian m. carlson: Houston, Texas, US
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help