unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Efraim Flashner <efraim@flashner.co.il>
To: "Paul A. Patience" <paul@apatience.com>
Cc: 55179-done@debbugs.gnu.org, brown121407@posteo.ro
Subject: bug#55179: [WIP PATCH 00/30] gnu: rakudo: Update to 2022.04 and packages too.
Date: Mon, 4 Mar 2024 11:54:14 +0200	[thread overview]
Message-ID: <ZeWaRl0LG4xbiunG@3900XT> (raw)
In-Reply-To: <20220429051428.372844-1-paul@apatience.com>

[-- Attachment #1: Type: text/plain, Size: 4790 bytes --]

Given that it's been almost 2 years I've gone ahead and pushed the
patches.

Looking at some sources upstream, to the best of my understanding
PERL6LIB should be changed to RAKULIB, but the %out/share/perl6 path
should stay, which doesn't make a lot of sense to me. It wasn't clear if
%out/share/perl6 was on purpose or because it was already in use and not
worth trying to change.

On Fri, Apr 29, 2022 at 05:14:38AM +0000, Paul A. Patience wrote:
> This patch series updates Rakudo to the latest version.
> It also updates all the packages in gnu/packages/perl6.scm to reflect the name
> change from Perl 6 to Raku, and also updates all the packages for which newer
> versions are available.
> 
> The reason this is a WIP is the following:
> 
> --8<---------------cut here---------------start------------->8---
> $ raku -MFormat::Lisp
> ===SORRY!=== Error while compiling:
> Type check failed in binding to parameter '$address'; expected Str but got Any (Any)
> --8<---------------cut here---------------end--------------->8---
> 
> Besides for that (admittedly major) issue, Raku runs fine.
> 
> Some other minor issues and comments:
> 
> • Building Rakudo results in warnings about bogus entries in RUNPATH, which I
>   don't know how to address:
> 
> --8<---------------cut here---------------start------------->8---
> /gnu/store/j4swlyclrwf2sw334lxpf00ll2d0lw36-rakudo-2022.04/bin/raku: warning: RUNPATH contains bogus entries: ("//gnu/store/1w61hypzwmvxw5fpbnv5kx037qbw216k-moarvm-2022.04/lib")
> --8<---------------cut here---------------end--------------->8---

I tracked this down to moarvm but I didn't check further than that to
see if I could do anything about it.

> • I was unaware of bug#46352 [1] when I started updating Rakudo, and thus my
>   efforts were completely independent of Alexandru-Sergiu Marton's.
>   The only relevant difference between our patch series is that mine does not
>   package dyncall.
>   Perhaps it should.
> 
> • In a future patch series, we should rename perl6.scm to raku.scm and all the
>   perl6- prefixes to raku-, but note that perl6-tap-harness must be renamed to
>   raku-tap-harness6 to reflect the new upstream name.
>   The Rakudo build system also needs to be updated, because the prove6 script
>   no longer exists.
>   The documentation also needs to be updated.
> 
> • The PERL6LIB environment variable is deprecated in favor of RAKUDOLIB and
>   RAKULIB, but I don't know what that means for native-search-paths.
>   But dropping support for PERL6LIB can (and probably should) wait a while.
> 
> In conclusion, I'm going to try debugging the module compilation issues, but
> keeping in mind that I decided to update Rakudo because I was interested in
> learning some form of Perl (I didn't know the packaging rabbit hole I would be
> descending into :)), I don't know how much success I will have.
> I would appreciate any help or pointers.
> 
> Best regards,
> Paul
> 
> [1]: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=46352
> 
> Paul A. Patience (30):
>   gnu: moarvm: Remove trailing boolean.
>   gnu: nqp: Remove trailing booleans.
>   gnu: rakudo: Remove trailing booleans.
>   gnu: moarvm: Update to 2022.04.
>   gnu: Add nqp-configure.
>   gnu: nqp: Update to 2022.04.
>   gnu: rakudo: Update to 2022.04.
>   gnu: perl6-tap-harness: Update to 0.3.5.
>   gnu: perl6-zef: Update to 0.13.8.
>   gnu: perl6-terminal-ansicolor: Perl -> Raku.
>   gnu: perl6-grammar-debugger: Perl -> Raku.
>   gnu: perl6-grammar-profiler-simple: Perl -> Raku.
>   gnu: perl6-json: Perl -> Raku.
>   gnu: perl6-json-fast: Update to 0.17.
>   gnu: Add perl6-json-optin.
>   gnu: perl6-json-name: Update to 0.0.6.
>   gnu: perl6-json-marshal: Update to 0.0.23.
>   gnu: perl6-json-unmarshal: Reindent.
>   gnu: perl6-json-class: Update to 0.0.18.
>   gnu: perl6-license-spdx: Update to 3.16.0.
>   gnu: perl6-meta6: Update to 0.0.26.
>   gnu: perl6-mime-base64: Update to 1.2.3.
>   gnu: perl6-oo-monitors: Update to 1.1.1.
>   gnu: perl6-xml-writer: Perl -> Raku.
>   gnu: perl6-svg: Perl -> Raku.
>   gnu: perl6-svg-plot: Perl -> Raku.
>   gnu: perl6-uri: Update to 0.3.5.
>   gnu: perl6-test-meta: Update to 0.0.17.
>   gnu: perl6-test-mock: Update to 1.5-0.1130427.
>   gnu: Add perl6-format-lisp.
> 
>  gnu/packages/perl6.scm             | 906 ++++++++++++++++-------------
>  guix/build/rakudo-build-system.scm |   8 +-
>  2 files changed, 515 insertions(+), 399 deletions(-)
> 
> --
> 2.36.0
> 
> 
> 
> 
> 

-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

      parent reply	other threads:[~2024-03-04  9:56 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-29  5:14 [bug#55179] [WIP PATCH 00/30] gnu: rakudo: Update to 2022.04 and packages too Paul A. Patience
2022-04-29  5:17 ` [bug#55179] [WIP PATCH 01/30] gnu: moarvm: Remove trailing boolean Paul A. Patience
2022-04-29  5:17   ` [bug#55179] [WIP PATCH 02/30] gnu: nqp: Remove trailing booleans Paul A. Patience
2022-04-29  5:17   ` [bug#55179] [WIP PATCH 03/30] gnu: rakudo: " Paul A. Patience
2022-04-29  5:17   ` [bug#55179] [WIP PATCH 04/30] gnu: moarvm: Update to 2022.04 Paul A. Patience
2022-04-29  5:17   ` [bug#55179] [WIP PATCH 05/30] gnu: Add nqp-configure Paul A. Patience
2022-04-29  5:17   ` [bug#55179] [WIP PATCH 06/30] gnu: nqp: Update to 2022.04 Paul A. Patience
2022-04-29  5:17   ` [bug#55179] [WIP PATCH 07/30] gnu: rakudo: " Paul A. Patience
2022-04-29  5:17   ` [bug#55179] [WIP PATCH 08/30] gnu: perl6-tap-harness: Update to 0.3.5 Paul A. Patience
2022-04-29  5:17   ` [bug#55179] [WIP PATCH 09/30] gnu: perl6-zef: Update to 0.13.8 Paul A. Patience
2022-04-29  5:18   ` [bug#55179] [WIP PATCH 10/30] gnu: perl6-terminal-ansicolor: Perl -> Raku Paul A. Patience
2022-04-29  5:18   ` [bug#55179] [WIP PATCH 11/30] gnu: perl6-grammar-debugger: " Paul A. Patience
2022-04-29  5:18   ` [bug#55179] [WIP PATCH 12/30] gnu: perl6-grammar-profiler-simple: " Paul A. Patience
2022-04-29  5:18   ` [bug#55179] [WIP PATCH 13/30] gnu: perl6-json: " Paul A. Patience
2022-04-29  5:18   ` [bug#55179] [WIP PATCH 14/30] gnu: perl6-json-fast: Update to 0.17 Paul A. Patience
2022-04-29  5:18   ` [bug#55179] [WIP PATCH 15/30] gnu: Add perl6-json-optin Paul A. Patience
2022-04-29  5:18   ` [bug#55179] [WIP PATCH 16/30] gnu: perl6-json-name: Update to 0.0.6 Paul A. Patience
2022-04-29  5:18   ` [bug#55179] [WIP PATCH 17/30] gnu: perl6-json-marshal: Update to 0.0.23 Paul A. Patience
2022-04-29  5:18   ` [bug#55179] [WIP PATCH 18/30] gnu: perl6-json-unmarshal: Reindent Paul A. Patience
2022-04-29  5:18   ` [bug#55179] [WIP PATCH 19/30] gnu: perl6-json-class: Update to 0.0.18 Paul A. Patience
2022-04-29  5:18   ` [bug#55179] [WIP PATCH 20/30] gnu: perl6-license-spdx: Update to 3.16.0 Paul A. Patience
2022-04-29  5:19   ` [bug#55179] [WIP PATCH 21/30] gnu: perl6-meta6: Update to 0.0.26 Paul A. Patience
2022-04-29  5:19   ` [bug#55179] [WIP PATCH 22/30] gnu: perl6-mime-base64: Update to 1.2.3 Paul A. Patience
2022-04-29  5:19   ` [bug#55179] [WIP PATCH 23/30] gnu: perl6-oo-monitors: Update to 1.1.1 Paul A. Patience
2022-04-29  5:19   ` [bug#55179] [WIP PATCH 24/30] gnu: perl6-xml-writer: Perl -> Raku Paul A. Patience
2022-04-29  5:19   ` [bug#55179] [WIP PATCH 25/30] gnu: perl6-svg: " Paul A. Patience
2022-04-29  5:19   ` [bug#55179] [WIP PATCH 26/30] gnu: perl6-svg-plot: " Paul A. Patience
2022-04-29  5:19   ` [bug#55179] [WIP PATCH 27/30] gnu: perl6-uri: Update to 0.3.5 Paul A. Patience
2022-04-29  5:19   ` [bug#55179] [WIP PATCH 28/30] gnu: perl6-test-meta: Update to 0.0.17 Paul A. Patience
2022-04-29  5:19   ` [bug#55179] [WIP PATCH 29/30] gnu: perl6-test-mock: Update to 1.5-0.1130427 Paul A. Patience
2022-04-29  5:19   ` [bug#55179] [WIP PATCH 30/30] gnu: Add perl6-format-lisp Paul A. Patience
2024-03-04  9:54 ` Efraim Flashner [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ZeWaRl0LG4xbiunG@3900XT \
    --to=efraim@flashner.co.il \
    --cc=55179-done@debbugs.gnu.org \
    --cc=brown121407@posteo.ro \
    --cc=paul@apatience.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.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).