user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
* [PATCH] doc: technical/whyperl: update w/ (good) news from PSC
@ 2021-04-13 19:29 Eric Wong
  2021-04-13 19:44 ` upcoming perl v5.12 requirement Eric Wong
  0 siblings, 1 reply; 6+ messages in thread
From: Eric Wong @ 2021-04-13 19:29 UTC (permalink / raw)
  To: meta

It looks like stability and compatibility will prevail, after all.
---
 Documentation/technical/whyperl.txt | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/Documentation/technical/whyperl.txt b/Documentation/technical/whyperl.txt
index de6f912a..fbe2e1b1 100644
--- a/Documentation/technical/whyperl.txt
+++ b/Documentation/technical/whyperl.txt
@@ -66,9 +66,11 @@ Good Things
   Perl had fewer breaking changes than Python or Ruby; we
   expect that trend to continue given the inertia of Perl 5.
 
-  Note: this document was written before the Perl 7 announcement.
-  We'll continue to monitor and adapt to the situation around
-  what distros are doing in regard to maintaining compatibility.
+  As of April 2021, the Perl Steering Committee has confirmed
+  Perl 7 will require `use v7.0' and existing code should
+  continue working unchanged:
+  https://nntp.perl.org/group/perl.perl5.porters/259789
+  <CAMvkq_SyTKZD=1=mHXwyzVYYDQb8Go0N0TuE5ZATYe_M4BCm-g@mail.gmail.com>
 
 * Built for text processing
 

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* upcoming perl v5.12 requirement...
  2021-04-13 19:29 [PATCH] doc: technical/whyperl: update w/ (good) news from PSC Eric Wong
@ 2021-04-13 19:44 ` Eric Wong
  2021-04-13 21:17   ` Konstantin Ryabitsev
  2021-11-08 18:38   ` Eric Wong
  0 siblings, 2 replies; 6+ messages in thread
From: Eric Wong @ 2021-04-13 19:44 UTC (permalink / raw)
  To: meta

On a side note, I'm strongly considering moving to Perl 5.12
after public-inbox 1.7 is released.  perl 5.12.4 will be a
decade old in a few months (however 5.12.5 was Nov 2012).

It seems the various 5.12.x releases had fewer breaking bugfixes
than 5.10.0 => 5.10.1, so "use v5.12" should be fine.

The main reason I want 5.12 is it enables strict implicitly,
reducing syscalls and startup time:

  strace -c perl -Mstrict -e exit # 208 syscalls
  strace -c perl -Mv5.12 -e exit  # 186 syscalls

It also allows "delete local" and some other things, but
I'm not yet sure about the "unicode_strings" feature bit...

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: upcoming perl v5.12 requirement...
  2021-04-13 19:44 ` upcoming perl v5.12 requirement Eric Wong
@ 2021-04-13 21:17   ` Konstantin Ryabitsev
  2021-04-14  0:25     ` Eric Wong
  2021-11-08 18:38   ` Eric Wong
  1 sibling, 1 reply; 6+ messages in thread
From: Konstantin Ryabitsev @ 2021-04-13 21:17 UTC (permalink / raw)
  To: Eric Wong; +Cc: meta

On Tue, Apr 13, 2021 at 03:44:35PM -0400, Eric Wong wrote:
> On a side note, I'm strongly considering moving to Perl 5.12
> after public-inbox 1.7 is released.  perl 5.12.4 will be a
> decade old in a few months (however 5.12.5 was Nov 2012).

As long as we can set the low bar at 5.16, I'm good with that. Lore will
eventually roll onto newer platforms than CentOS7, but there's still a lot of
yak left to shave before that happens. :)

-K

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: upcoming perl v5.12 requirement...
  2021-04-13 21:17   ` Konstantin Ryabitsev
@ 2021-04-14  0:25     ` Eric Wong
  0 siblings, 0 replies; 6+ messages in thread
From: Eric Wong @ 2021-04-14  0:25 UTC (permalink / raw)
  To: meta

Konstantin Ryabitsev <konstantin@linuxfoundation.org> wrote:
> On Tue, Apr 13, 2021 at 03:44:35PM -0400, Eric Wong wrote:
> > On a side note, I'm strongly considering moving to Perl 5.12
> > after public-inbox 1.7 is released.  perl 5.12.4 will be a
> > decade old in a few months (however 5.12.5 was Nov 2012).
> 
> As long as we can set the low bar at 5.16, I'm good with that. Lore will
> eventually roll onto newer platforms than CentOS7, but there's still a lot of
> yak left to shave before that happens. :)

No problem.  The Perl requirement will crawl forward as slowly as
enterprise/LTS distros go.  I have no plans to skip 5.14, either
(haven't started looking at perl514*delta, and won't until we're
on 5.12).

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: upcoming perl v5.12 requirement...
  2021-04-13 19:44 ` upcoming perl v5.12 requirement Eric Wong
  2021-04-13 21:17   ` Konstantin Ryabitsev
@ 2021-11-08 18:38   ` Eric Wong
  2022-02-13 10:18     ` Eric Wong
  1 sibling, 1 reply; 6+ messages in thread
From: Eric Wong @ 2021-11-08 18:38 UTC (permalink / raw)
  To: meta

Eric Wong <e@80x24.org> wrote:
> On a side note, I'm strongly considering moving to Perl 5.12
> after public-inbox 1.7 is released.  perl 5.12.4 will be a
> decade old in a few months (however 5.12.5 was Nov 2012).
> 
> It seems the various 5.12.x releases had fewer breaking bugfixes
> than 5.10.0 => 5.10.1, so "use v5.12" should be fine.
> 
> The main reason I want 5.12 is it enables strict implicitly,
> reducing syscalls and startup time:
> 
>   strace -c perl -Mstrict -e exit # 208 syscalls
>   strace -c perl -Mv5.12 -e exit  # 186 syscalls

Unfortunately, that makes no difference for anything which uses
modules in the Perl stdlib or any 3rd-party modules.  Even if we
relied on v5.12 for strict, all external dependencies we load
"use strict" and they remain Perl 5.8 (if not 5.6) compliant.

> It also allows "delete local" and some other things, but

That's nice, as is //a for ASCII-only matches.

> I'm not yet sure about the "unicode_strings" feature bit...

This requires much care on our part, unfortunately.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: upcoming perl v5.12 requirement...
  2021-11-08 18:38   ` Eric Wong
@ 2022-02-13 10:18     ` Eric Wong
  0 siblings, 0 replies; 6+ messages in thread
From: Eric Wong @ 2022-02-13 10:18 UTC (permalink / raw)
  To: meta

Eric Wong <e@80x24.org> wrote:
> That's nice, as is //a for ASCII-only matches.

No, //a is actually Perl 5.14+

> > I'm not yet sure about the "unicode_strings" feature bit...
> 
> This requires much care on our part, unfortunately.

Yeah, unicode_strings is why I won't bother switching existing
<= 5.10.1 codebases to 5.12+.  Way too many gotchas and
potential bugs with that.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-02-13 10:18 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-13 19:29 [PATCH] doc: technical/whyperl: update w/ (good) news from PSC Eric Wong
2021-04-13 19:44 ` upcoming perl v5.12 requirement Eric Wong
2021-04-13 21:17   ` Konstantin Ryabitsev
2021-04-14  0:25     ` Eric Wong
2021-11-08 18:38   ` Eric Wong
2022-02-13 10:18     ` Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).