Skip to content

Commit aae1d5c

Browse files
authored
Update to 5.40.1.0 (#79)
* Update to 5.40.1.0
1 parent db3ed56 commit aae1d5c

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

platforms.bzl

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
"""platforms.bzl defines metadata about the different relocatable-perl versions
22
"""
33

4+
unix_version = "5.40.1.0"
5+
46
platforms = [
57
struct(
68
os = "darwin",
79
cpu = "arm64",
8-
urls = ["https://github.com/skaji/relocatable-perl/releases/download/5.38.2.0/perl-darwin-arm64.tar.xz"],
9-
sha256 = "1a50fe40d8d61c875546ac00e8ade1d0093e1fdc7277ab008f37e3f43c0eef82",
10+
urls = ["https://github.com/skaji/relocatable-perl/releases/download/{}/perl-darwin-arm64.tar.xz".format(unix_version)],
11+
sha256 = "e58b98338bc52f352dc95310363ab6c725897557512b90b593c70ea357f1b2ab",
1012
strip_prefix = "perl-darwin-arm64",
1113
exec_compatible_with = [
1214
"@platforms//os:osx",
@@ -16,8 +18,8 @@ platforms = [
1618
struct(
1719
os = "darwin",
1820
cpu = "amd64",
19-
urls = ["https://github.com/skaji/relocatable-perl/releases/download/5.38.2.0/perl-darwin-amd64.tar.xz"],
20-
sha256 = "763245980b0b2a88111460d19aee08ce707045537ed7493c34a76868f495dd53",
21+
urls = ["https://github.com/skaji/relocatable-perl/releases/download/{}/perl-darwin-amd64.tar.xz".format(unix_version)],
22+
sha256 = "6e16d12f6a765cbb708ebcb6fe9c74f0d71e1d648bff0ff7b8d88134e54b736a",
2123
strip_prefix = "perl-darwin-amd64",
2224
exec_compatible_with = [
2325
"@platforms//os:osx",
@@ -27,8 +29,8 @@ platforms = [
2729
struct(
2830
os = "linux",
2931
cpu = "amd64",
30-
urls = ["https://github.com/skaji/relocatable-perl/releases/download/5.38.2.0/perl-linux-amd64.tar.xz"],
31-
sha256 = "0878db5752ba6ca4bed437392ceddbde05d0455f32a546f6f49f69b54a297ac2",
32+
urls = ["https://github.com/skaji/relocatable-perl/releases/download/{}/perl-linux-amd64.tar.xz".format(unix_version)],
33+
sha256 = "cd3216bd72fa4fe3b76fc7f4e2f1004d75e42495d515c09b53d79cba3700dd7b",
3234
strip_prefix = "perl-linux-amd64",
3335
exec_compatible_with = [
3436
"@platforms//os:linux",
@@ -38,8 +40,8 @@ platforms = [
3840
struct(
3941
os = "linux",
4042
cpu = "arm64",
41-
urls = ["https://github.com/skaji/relocatable-perl/releases/download/5.38.2.0/perl-linux-arm64.tar.xz"],
42-
sha256 = "d4cef73296f3b68960ad3149212df10c903676fbcbe24ad0913681bd5032cd05",
43+
urls = ["https://github.com/skaji/relocatable-perl/releases/download/{}/perl-linux-arm64.tar.xz".format(unix_version)],
44+
sha256 = "01b3beb5e5f806a5447e42246b440e54a96c314284a68be89ff2b980ba4a4ec1",
4345
strip_prefix = "perl-linux-arm64",
4446
exec_compatible_with = [
4547
"@platforms//os:linux",
@@ -50,10 +52,10 @@ platforms = [
5052
os = "windows",
5153
cpu = "x86_64",
5254
urls = [
53-
"https://mirror.bazel.build/strawberryperl.com/download/5.32.1.1/strawberry-perl-5.32.1.1-64bit.zip",
54-
"https://strawberryperl.com/download/5.32.1.1/strawberry-perl-5.32.1.1-64bit.zip",
55+
"https://github.com/StrawberryPerl/Perl-Dist-Strawberry/releases/download/SP_54001_64bit_UCRT/strawberry-perl-5.40.0.1-64bit-portable.zip",
56+
"https://mirror.bazel.build/github.com/StrawberryPerl/Perl-Dist-Strawberry/releases/download/SP_54001_64bit_UCRT/strawberry-perl-5.40.0.1-64bit-portable.zip",
5557
],
56-
sha256 = "aeb973da474f14210d3e1a1f942dcf779e2ae7e71e4c535e6c53ebabe632cc98",
58+
sha256 = "754f3e2a8e473dc68d1540c7802fb166a025f35ef18960c4564a31f8b5933907",
5759
strip_prefix = "",
5860
exec_compatible_with = [
5961
"@platforms//os:windows",

0 commit comments

Comments
 (0)