Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] rakudo: update to 2020.05.
@ 2020-05-17 12:26 atweiden
  2020-05-18 11:42 ` [PR PATCH] [Merged]: " Piraty
  0 siblings, 1 reply; 2+ messages in thread
From: atweiden @ 2020-05-17 12:26 UTC (permalink / raw)
  To: ml

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

There is a new pull request by atweiden against master on the void-packages repository

https://github.com/atweiden/void-packages raku
https://github.com/void-linux/void-packages/pull/22041

rakudo: update to 2020.05.


A patch file from https://github.com/void-linux/void-packages/pull/22041.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-raku-22041.patch --]
[-- Type: text/x-diff, Size: 5268 bytes --]

From 82aac38d3dd39a282a10182470d2ecf2d0f4b7f1 Mon Sep 17 00:00:00 2001
From: Andy Weidenbaum <archbaum@gmail.com>
Date: Sun, 17 May 2020 22:24:06 +1000
Subject: [PATCH 1/4] build_style/raku-dist.sh: RAKULIB=lib

---
 common/build-style/raku-dist.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/build-style/raku-dist.sh b/common/build-style/raku-dist.sh
index 5889b1a534b..3b1f28d6421 100644
--- a/common/build-style/raku-dist.sh
+++ b/common/build-style/raku-dist.sh
@@ -3,7 +3,7 @@
 #
 
 do_check() {
-	PERL6LIB=lib prove -r -e raku t/
+	RAKULIB=lib prove -r -e raku t/
 }
 
 do_install() {

From 3ac0510c28e9ba49a59750157703b92e4fca8f63 Mon Sep 17 00:00:00 2001
From: Andy Weidenbaum <archbaum@gmail.com>
Date: Sun, 17 May 2020 22:15:28 +1000
Subject: [PATCH 2/4] MoarVM: update to 2020.05.

---
 srcpkgs/MoarVM/template | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/MoarVM/template b/srcpkgs/MoarVM/template
index 22f53bc586b..5fb8f09608a 100644
--- a/srcpkgs/MoarVM/template
+++ b/srcpkgs/MoarVM/template
@@ -1,18 +1,20 @@
 # Template file for 'MoarVM'
 pkgname=MoarVM
-version=2020.01.1
-revision=2
+version=2020.05
+revision=1
 build_style=configure
 configure_script="perl Configure.pl"
-configure_args="--prefix=/usr --has-libatomic_ops --has-libffi --has-libuv"
+configure_args="--prefix=/usr --has-libatomic_ops --has-libffi
+ --has-libtommath --has-libuv"
 hostmakedepends="perl"
-makedepends="libatomic_ops-devel libffi-devel libuv-devel libzstd-devel"
+makedepends="libatomic_ops-devel libffi-devel libtommath-devel libuv-devel
+ libzstd-devel"
 short_desc="VM with adaptive optimization and JIT compilation, built for Rakudo"
 maintainer="Andy Weidenbaum <archbaum@gmail.com>"
 license="Artistic-2.0"
 homepage="https://moarvm.org"
 changelog="https://github.com/MoarVM/MoarVM/raw/master/docs/ChangeLog"
 distfiles="https://moarvm.org/releases/MoarVM-${version}.tar.gz"
-checksum=dcb61e44a098e8375c385eb9d52bd6394255a388697b2f6a52d88e6cf4a53587
+checksum=9368d2c691ea8710459a48c323915df6648c4a67d2ce24c27fc74f6b084a824b
 nocross=yes
 shlib_provides="libmoar.so"

From 646d0cdd133621b93e905eed763e5374d0d5640a Mon Sep 17 00:00:00 2001
From: Andy Weidenbaum <archbaum@gmail.com>
Date: Sun, 17 May 2020 22:19:14 +1000
Subject: [PATCH 3/4] nqp: update to 2020.05.

---
 srcpkgs/nqp/template | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/nqp/template b/srcpkgs/nqp/template
index 537c7a18e27..e7b3dd12aa2 100644
--- a/srcpkgs/nqp/template
+++ b/srcpkgs/nqp/template
@@ -1,18 +1,19 @@
 # Template file for 'nqp'
 pkgname=nqp
-version=2020.01
-revision=2
+version=2020.05
+revision=1
 build_style=configure
 make_check_target=test
 configure_script="perl Configure.pl"
 configure_args="--prefix=/usr --backends=moar"
-hostmakedepends="perl"
-makedepends="MoarVM libatomic_ops-devel libffi-devel libuv-devel"
-depends="MoarVM-${version}.1_${revision}"
+hostmakedepends="git perl"
+makedepends="MoarVM libatomic_ops-devel libffi-devel libtommath-devel
+ libuv-devel"
+depends="MoarVM-${version}_${revision}"
 short_desc="Lightweight Raku-like environment for virtual machines"
 maintainer="Andy Weidenbaum <archbaum@gmail.com>"
 license="Artistic-2.0"
-homepage="https://github.com/perl6/nqp"
+homepage="https://github.com/Raku/nqp"
 distfiles="https://rakudo.org/dl/nqp/${pkgname}-${version}.tar.gz"
-checksum=4ccc9c194322c73f4c8ba681e277231479fcc2307642eeeb0f7caa149332965b
+checksum=291b92d9db968a691195adb1c9533edc1076d12d6617d6d931e40595e906b577
 nocross=yes

From 6aa981e8e9a1260e1af422f59768a2b5a8e8e869 Mon Sep 17 00:00:00 2001
From: Andy Weidenbaum <archbaum@gmail.com>
Date: Sun, 17 May 2020 22:21:52 +1000
Subject: [PATCH 4/4] rakudo: update to 2020.05.

---
 srcpkgs/rakudo/template | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/rakudo/template b/srcpkgs/rakudo/template
index fa35939edcb..e1b75a37ede 100644
--- a/srcpkgs/rakudo/template
+++ b/srcpkgs/rakudo/template
@@ -1,7 +1,7 @@
 # Template file for 'rakudo'
 pkgname=rakudo
-version=2020.01
-revision=2
+version=2020.05
+revision=1
 build_style=configure
 make_check_target=test
 make_install_args="RAKUDO_LOG_PRECOMP=1 RAKUDO_RERESOLVE_DEPENDENCIES=0"
@@ -22,8 +22,9 @@ make_dirs="
  /usr/lib/raku/vendor/resources 0755 root root
  /usr/lib/raku/vendor/short 0755 root root
  /usr/lib/raku/vendor/sources 0755 root root"
-hostmakedepends="perl"
-makedepends="libatomic_ops-devel libffi-devel libuv-devel libzstd-devel nqp"
+hostmakedepends="git perl"
+makedepends="libatomic_ops-devel libffi-devel libtommath-devel libuv-devel
+ libzstd-devel nqp"
 depends="nqp-${version}_${revision}"
 short_desc="Mature, production-ready implementation of the Raku language"
 maintainer="Andy Weidenbaum <archbaum@gmail.com>"
@@ -31,7 +32,7 @@ license="Artistic-2.0"
 homepage="https://rakudo.org"
 changelog="https://github.com/rakudo/rakudo/raw/master/docs/ChangeLog"
 distfiles="https://rakudo.org/dl/rakudo/${pkgname}-${version}.tar.gz"
-checksum=2e02fcfca2f79ec6bd2dc0f0840ae108ec76f030f3080aa47f23f80f92b6c3b0
+checksum=86d1986c9a5ad1c7fe0f8875f16830cd3c4e84a3a3e05ee7e01e5234432aa121
 nocross=yes
 provides="raku-${version}_${revision}"
 

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

* Re: [PR PATCH] [Merged]: rakudo: update to 2020.05.
  2020-05-17 12:26 [PR PATCH] rakudo: update to 2020.05 atweiden
@ 2020-05-18 11:42 ` Piraty
  0 siblings, 0 replies; 2+ messages in thread
From: Piraty @ 2020-05-18 11:42 UTC (permalink / raw)
  To: ml

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

There's a merged pull request on the void-packages repository

rakudo: update to 2020.05.
https://github.com/void-linux/void-packages/pull/22041

Description:


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

end of thread, other threads:[~2020-05-18 11:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-17 12:26 [PR PATCH] rakudo: update to 2020.05 atweiden
2020-05-18 11:42 ` [PR PATCH] [Merged]: " Piraty

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 NNTP newsgroup(s).