From a817091ad0a15c2bd3fc30548aac1e5831c27195 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurenz=20Altenm=C3=BCller?= Date: Fri, 16 Aug 2024 16:32:22 +0200 Subject: [PATCH 1/4] Update rules_perl w/ includes attr patch --- modules/rules_perl/0.2.3.bcr.1/MODULE.bazel | 30 ++ .../0.2.3.bcr.1/patches/includes_attr.patch | 361 ++++++++++++++++++ .../patches/module_dot_bazel_version.patch | 12 + modules/rules_perl/0.2.3.bcr.1/presubmit.yml | 22 ++ modules/rules_perl/0.2.3.bcr.1/source.json | 10 + modules/rules_perl/metadata.json | 7 +- 6 files changed, 439 insertions(+), 3 deletions(-) create mode 100644 modules/rules_perl/0.2.3.bcr.1/MODULE.bazel create mode 100644 modules/rules_perl/0.2.3.bcr.1/patches/includes_attr.patch create mode 100644 modules/rules_perl/0.2.3.bcr.1/patches/module_dot_bazel_version.patch create mode 100644 modules/rules_perl/0.2.3.bcr.1/presubmit.yml create mode 100644 modules/rules_perl/0.2.3.bcr.1/source.json diff --git a/modules/rules_perl/0.2.3.bcr.1/MODULE.bazel b/modules/rules_perl/0.2.3.bcr.1/MODULE.bazel new file mode 100644 index 00000000000..19dba078f07 --- /dev/null +++ b/modules/rules_perl/0.2.3.bcr.1/MODULE.bazel @@ -0,0 +1,30 @@ +""" +Perl rules +""" + +module( + name = "rules_perl", + version = "0.2.3.bcr.1", +) + +bazel_dep(name = "platforms", version = "0.0.6") +bazel_dep(name = "bazel_skylib", version = "1.4.2") +bazel_dep(name = "rules_cc", version = "0.0.8") + +repos = use_extension("@rules_perl//perl:extensions.bzl", "perl_repositories") +use_repo( + repos, + "perl_darwin_amd64", + "perl_darwin_arm64", + "perl_linux_amd64", + "perl_linux_arm64", + "perl_windows_x86_64", +) + +register_toolchains( + "@rules_perl//:perl_darwin_arm64_toolchain", + "@rules_perl//:perl_darwin_amd64_toolchain", + "@rules_perl//:perl_linux_amd64_toolchain", + "@rules_perl//:perl_linux_arm64_toolchain", + "@rules_perl//:perl_windows_x86_64_toolchain", +) diff --git a/modules/rules_perl/0.2.3.bcr.1/patches/includes_attr.patch b/modules/rules_perl/0.2.3.bcr.1/patches/includes_attr.patch new file mode 100644 index 00000000000..744c0525c8e --- /dev/null +++ b/modules/rules_perl/0.2.3.bcr.1/patches/includes_attr.patch @@ -0,0 +1,361 @@ +From d46c04f998def9cc5def26502d96a78ad50153ea Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Laurenz=20Altenm=C3=BCller?= + +Date: Fri, 26 Jul 2024 00:28:51 +0200 +Subject: [PATCH 1/3] Automate PERL5LIB + +--- + README.md | 6 +++++ + examples/cpan/BUILD | 2 +- + examples/cpan_remote/BUILD | 3 --- + examples/cpan_remote/fcgi.BUILD | 4 ++++ + examples/external_module/BUILD | 6 ----- + perl/binary_wrapper.tpl | 2 ++ + perl/perl.bzl | 39 +++++++++++++++++++++++++++++++++ + 7 files changed, 52 insertions(+), 10 deletions(-) + +diff --git a/README.md b/README.md +index db22f5e..f276ef0 100644 +--- a/README.md ++++ b/README.md +@@ -95,3 +95,9 @@ Now you can specify it as a dependency to any script that requires that module: + ``` + + **NOTE**: at this time you need to provide the directory that Perl needs to add to @INC. ++ ++### Automatic PERL5LIB ++ ++`perl_binary` (and `perl_test`) sets up the `PERL5LIB` environment variable with values for `perl_library` dependencies. ++By default this will be each perl_library's "lib" directory if present in source paths, otherwise the package dir. ++You can override this with the `perl5lib_paths` attribute. +diff --git a/examples/cpan/BUILD b/examples/cpan/BUILD +index e3b1bc4..55074d0 100644 +--- a/examples/cpan/BUILD ++++ b/examples/cpan/BUILD +@@ -49,7 +49,7 @@ perl_xs( + name = "IOTtyXS", + srcs = ["auto/IO/Tty/Tty.xs"], + defines = [ +- "HAVE_DEV_PTMX", ++ # "HAVE_DEV_PTMX", + "HAVE_GETPT", + "HAVE_GRANTPT", + "HAVE_POSIX_OPENPT", +diff --git a/examples/cpan_remote/BUILD b/examples/cpan_remote/BUILD +index 08be70a..40feff6 100644 +--- a/examples/cpan_remote/BUILD ++++ b/examples/cpan_remote/BUILD +@@ -19,8 +19,5 @@ package(default_visibility = ["//visibility:public"]) + perl_test( + name = "fcgi_import_test", + srcs = ["fcgi_import_test.t"], +- env = { +- "PERL5LIB": "../fcgi/lib:../fcgi/arch", +- }, + deps = ["@fcgi//:FCGI"], + ) +diff --git a/examples/cpan_remote/fcgi.BUILD b/examples/cpan_remote/fcgi.BUILD +index d59bf83..dc9ca23 100644 +--- a/examples/cpan_remote/fcgi.BUILD ++++ b/examples/cpan_remote/fcgi.BUILD +@@ -20,6 +20,10 @@ perl_library( + "lib/FCGI.pm", + ":FCGIXS", + ], ++ perl5lib_paths = [ ++ "arch", ++ "lib", ++ ], + visibility = ["//visibility:public"], + ) + +diff --git a/examples/external_module/BUILD b/examples/external_module/BUILD +index fbf52f9..ce10cea 100644 +--- a/examples/external_module/BUILD ++++ b/examples/external_module/BUILD +@@ -22,17 +22,11 @@ package(default_visibility = ["//visibility:public"]) + perl_test( + name = "pure_perl", + srcs = ["pure_perl.t"], +- env = { +- "PERL5LIB": "examples/cpan/Test-Mock-Simple-0.10/lib", +- }, + deps = ["//examples/cpan:TestMockSimple"], + ) + + perl_test( + name = "complex_deps", + srcs = ["complex_deps.t"], +- env = { +- "PERL5LIB": "examples/cpan", +- }, + deps = ["//examples/cpan:IOTty"], + ) +diff --git a/perl/binary_wrapper.tpl b/perl/binary_wrapper.tpl +index 035523a..f1cb98d 100644 +--- a/perl/binary_wrapper.tpl ++++ b/perl/binary_wrapper.tpl +@@ -11,4 +11,6 @@ else + exit 1 + fi + ++export PERL5LIB="$PERL5LIB{PERL5LIB}" ++ + {env_vars} $PATH_PREFIX{interpreter} -I${PATH_PREFIX} ${PATH_PREFIX}{main} "$@" +diff --git a/perl/perl.bzl b/perl/perl.bzl +index 574d6a2..2bb67e0 100644 +--- a/perl/perl.bzl ++++ b/perl/perl.bzl +@@ -23,6 +23,7 @@ PerlLibrary = provider( + doc = "A provider containing components of a `perl_library`", + fields = [ + "transitive_perl_sources", ++ "perl5lib_paths", + ], + ) + +@@ -99,6 +100,32 @@ def transitive_deps(ctx, extra_files = [], extra_deps = []): + files = files, + ) + ++def _perl5lib_paths(ctx): ++ """Calculate the PERL5LIB paths for a perl_library rule's srcs. ++ ++ Examples for perl5lib_paths ["lib"] (=default) (srcs -> perl5lib_paths): ++ * ["lib/Foo/Bar.pm", "lib/Foo/lib/Baz.pm"] -> ["lib"] ++ * ["Module-1.0/lib/Foo/Bar.pm"] -> ["Module-1.0/lib"] ++ * ["src/Foo.pm","Bar.pm"] -> ["."] ++ * ["src/Foo.pm","bar/lib/Bar.pm"] -> [".", "bar/lib"] ++ * ["@cpan_foo"] -> ["external/cpan_foo"] (WORKSPACE) ++ * ["@cpan_foo"] -> ["external/lcov~~_repo_rules~cpan_foo"] (Bzlmod) ++ * ["@cpan_foo//:lib/Foo.pm"] -> ["external/cpan_foo/lib"] (WORKSPACE) ++ * ["@cpan_foo//:lib/Foo.pm"] -> ["external/lcov~~_repo_rules~cpan_foo/lib"] (Bzlmod) ++ """ ++ perl5lib_paths = [] ++ for path in [src.short_path for src in ctx.files.srcs]: ++ libdir_for_src = None ++ for libdir in ctx.attr.perl5lib_paths: ++ path_parts = path.split("/") ++ if libdir in path_parts: ++ libdir_for_src = "/".join(path_parts[:path_parts.index(libdir) + 1]) ++ break ++ if not libdir_for_src: ++ libdir_for_src = (ctx.label.workspace_root or ".") + "/" + ctx.label.package ++ perl5lib_paths.append(libdir_for_src) ++ return depset(direct = perl5lib_paths).to_list() ++ + def _perl_library_implementation(ctx): + transitive_sources = transitive_deps(ctx) + return [ +@@ -107,9 +134,16 @@ def _perl_library_implementation(ctx): + ), + PerlLibrary( + transitive_perl_sources = transitive_sources.srcs, ++ perl5lib_paths = _perl5lib_paths(ctx), + ), + ] + ++def sum(items, initial): ++ result = initial ++ for item in items: ++ result += item ++ return result ++ + def _perl_binary_implementation(ctx): + toolchain = ctx.toolchains["@rules_perl//perl:toolchain_type"].perl_runtime + interpreter = toolchain.interpreter +@@ -120,10 +154,14 @@ def _perl_binary_implementation(ctx): + if main == None: + main = _get_main_from_sources(ctx) + ++ perl5lib_paths = sum([dep[PerlLibrary].perl5lib_paths for dep in ctx.attr.deps], []) ++ perl5lib_paths_str = ":" + ":".join(perl5lib_paths) if perl5lib_paths else "" ++ + ctx.actions.expand_template( + template = ctx.file._wrapper_template, + output = ctx.outputs.executable, + substitutions = { ++ "{PERL5LIB}": perl5lib_paths_str, + "{env_vars}": _env_vars(ctx), + "{interpreter}": interpreter.short_path, + "{main}": main.short_path, +@@ -273,6 +311,7 @@ perl_library = rule( + attrs = { + "data": _perl_data_attr, + "deps": _perl_deps_attr, ++ "perl5lib_paths": attr.string_list(default = ["lib"]), + "srcs": _perl_srcs_attr, + }, + implementation = _perl_library_implementation, + +From 973efb79defe0c417aa9655ac24a09148d599e9e Mon Sep 17 00:00:00 2001 +From: Laurenz +Date: Sun, 4 Aug 2024 10:26:27 +0200 +Subject: [PATCH 2/3] include transitive perl5lib_paths + +--- + perl/perl.bzl | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +diff --git a/perl/perl.bzl b/perl/perl.bzl +index 2bb67e0..0505ea1 100644 +--- a/perl/perl.bzl ++++ b/perl/perl.bzl +@@ -124,7 +124,10 @@ def _perl5lib_paths(ctx): + if not libdir_for_src: + libdir_for_src = (ctx.label.workspace_root or ".") + "/" + ctx.label.package + perl5lib_paths.append(libdir_for_src) +- return depset(direct = perl5lib_paths).to_list() ++ for dep in ctx.attr.deps: ++ perl5lib_paths.extend(dep[PerlLibrary].perl5lib_paths) ++ perl5lib_paths = depset(direct = perl5lib_paths).to_list() ++ return perl5lib_paths + + def _perl_library_implementation(ctx): + transitive_sources = transitive_deps(ctx) + +From 76a9442030d885e0adc370b9a8cca749c8d19187 Mon Sep 17 00:00:00 2001 +From: Laurenz +Date: Wed, 7 Aug 2024 23:13:06 +0200 +Subject: [PATCH 3/3] Simplify to using `includes` + +--- + README.md | 7 +++-- + examples/cpan/BUILD | 1 + + examples/cpan_remote/fcgi.BUILD | 2 +- + perl/perl.bzl | 47 ++++++++++----------------------- + 4 files changed, 19 insertions(+), 38 deletions(-) + +diff --git a/README.md b/README.md +index f276ef0..dc69b55 100644 +--- a/README.md ++++ b/README.md +@@ -96,8 +96,7 @@ Now you can specify it as a dependency to any script that requires that module: + + **NOTE**: at this time you need to provide the directory that Perl needs to add to @INC. + +-### Automatic PERL5LIB ++### PERL5LIB includes + +-`perl_binary` (and `perl_test`) sets up the `PERL5LIB` environment variable with values for `perl_library` dependencies. +-By default this will be each perl_library's "lib" directory if present in source paths, otherwise the package dir. +-You can override this with the `perl5lib_paths` attribute. ++`perl_binary` (and `perl_test`) sets up the `PERL5LIB` environment variable with values for all `perl_library` dep's `includes`. ++The default includes are `[".", "lib"]`. +diff --git a/examples/cpan/BUILD b/examples/cpan/BUILD +index 55074d0..db5c3f7 100644 +--- a/examples/cpan/BUILD ++++ b/examples/cpan/BUILD +@@ -20,6 +20,7 @@ package(default_visibility = ["//visibility:public"]) + perl_library( + name = "TestMockSimple", + srcs = ["Test-Mock-Simple-0.10/lib/Test/Mock/Simple.pm"], ++ includes = ["Test-Mock-Simple-0.10/lib"], + ) + + # Better example of module placement with dependence +diff --git a/examples/cpan_remote/fcgi.BUILD b/examples/cpan_remote/fcgi.BUILD +index dc9ca23..cb9b5e5 100644 +--- a/examples/cpan_remote/fcgi.BUILD ++++ b/examples/cpan_remote/fcgi.BUILD +@@ -20,7 +20,7 @@ perl_library( + "lib/FCGI.pm", + ":FCGIXS", + ], +- perl5lib_paths = [ ++ includes = [ + "arch", + "lib", + ], +diff --git a/perl/perl.bzl b/perl/perl.bzl +index 0505ea1..5115402 100644 +--- a/perl/perl.bzl ++++ b/perl/perl.bzl +@@ -23,7 +23,7 @@ PerlLibrary = provider( + doc = "A provider containing components of a `perl_library`", + fields = [ + "transitive_perl_sources", +- "perl5lib_paths", ++ "includes", + ], + ) + +@@ -100,34 +100,15 @@ def transitive_deps(ctx, extra_files = [], extra_deps = []): + files = files, + ) + +-def _perl5lib_paths(ctx): +- """Calculate the PERL5LIB paths for a perl_library rule's srcs. +- +- Examples for perl5lib_paths ["lib"] (=default) (srcs -> perl5lib_paths): +- * ["lib/Foo/Bar.pm", "lib/Foo/lib/Baz.pm"] -> ["lib"] +- * ["Module-1.0/lib/Foo/Bar.pm"] -> ["Module-1.0/lib"] +- * ["src/Foo.pm","Bar.pm"] -> ["."] +- * ["src/Foo.pm","bar/lib/Bar.pm"] -> [".", "bar/lib"] +- * ["@cpan_foo"] -> ["external/cpan_foo"] (WORKSPACE) +- * ["@cpan_foo"] -> ["external/lcov~~_repo_rules~cpan_foo"] (Bzlmod) +- * ["@cpan_foo//:lib/Foo.pm"] -> ["external/cpan_foo/lib"] (WORKSPACE) +- * ["@cpan_foo//:lib/Foo.pm"] -> ["external/lcov~~_repo_rules~cpan_foo/lib"] (Bzlmod) +- """ +- perl5lib_paths = [] +- for path in [src.short_path for src in ctx.files.srcs]: +- libdir_for_src = None +- for libdir in ctx.attr.perl5lib_paths: +- path_parts = path.split("/") +- if libdir in path_parts: +- libdir_for_src = "/".join(path_parts[:path_parts.index(libdir) + 1]) +- break +- if not libdir_for_src: +- libdir_for_src = (ctx.label.workspace_root or ".") + "/" + ctx.label.package +- perl5lib_paths.append(libdir_for_src) ++def _include_paths(ctx): ++ """Calculate the PERL5LIB paths for a perl_library rule's includes.""" ++ package_root = (ctx.label.workspace_root + "/" + ctx.label.package).strip("/") or "." ++ include_paths = [package_root] if "." in ctx.attr.includes else [] ++ include_paths.extend([package_root + "/" + include for include in ctx.attr.includes if include != "."]) + for dep in ctx.attr.deps: +- perl5lib_paths.extend(dep[PerlLibrary].perl5lib_paths) +- perl5lib_paths = depset(direct = perl5lib_paths).to_list() +- return perl5lib_paths ++ include_paths.extend(dep[PerlLibrary].includes) ++ include_paths = depset(direct = include_paths).to_list() ++ return include_paths + + def _perl_library_implementation(ctx): + transitive_sources = transitive_deps(ctx) +@@ -137,7 +118,7 @@ def _perl_library_implementation(ctx): + ), + PerlLibrary( + transitive_perl_sources = transitive_sources.srcs, +- perl5lib_paths = _perl5lib_paths(ctx), ++ includes = _include_paths(ctx), + ), + ] + +@@ -157,14 +138,14 @@ def _perl_binary_implementation(ctx): + if main == None: + main = _get_main_from_sources(ctx) + +- perl5lib_paths = sum([dep[PerlLibrary].perl5lib_paths for dep in ctx.attr.deps], []) +- perl5lib_paths_str = ":" + ":".join(perl5lib_paths) if perl5lib_paths else "" ++ include_paths = sum([dep[PerlLibrary].includes for dep in ctx.attr.deps], []) ++ perl5lib = ":" + ":".join(include_paths) if include_paths else "" + + ctx.actions.expand_template( + template = ctx.file._wrapper_template, + output = ctx.outputs.executable, + substitutions = { +- "{PERL5LIB}": perl5lib_paths_str, ++ "{PERL5LIB}": perl5lib, + "{env_vars}": _env_vars(ctx), + "{interpreter}": interpreter.short_path, + "{main}": main.short_path, +@@ -314,7 +295,7 @@ perl_library = rule( + attrs = { + "data": _perl_data_attr, + "deps": _perl_deps_attr, +- "perl5lib_paths": attr.string_list(default = ["lib"]), ++ "includes": attr.string_list(default = [".", "lib"]), + "srcs": _perl_srcs_attr, + }, + implementation = _perl_library_implementation, diff --git a/modules/rules_perl/0.2.3.bcr.1/patches/module_dot_bazel_version.patch b/modules/rules_perl/0.2.3.bcr.1/patches/module_dot_bazel_version.patch new file mode 100644 index 00000000000..7d4d87c5984 --- /dev/null +++ b/modules/rules_perl/0.2.3.bcr.1/patches/module_dot_bazel_version.patch @@ -0,0 +1,12 @@ +diff --git a/MODULE.bazel b/MODULE.bazel +--- a/MODULE.bazel ++++ b/MODULE.bazel +@@ -4,7 +4,7 @@ Perl rules + + module( + name = "rules_perl", +- version = "0.1.0", ++ version = "0.2.3.bcr.1", + ) + + bazel_dep(name = "platforms", version = "0.0.6") diff --git a/modules/rules_perl/0.2.3.bcr.1/presubmit.yml b/modules/rules_perl/0.2.3.bcr.1/presubmit.yml new file mode 100644 index 00000000000..64ef86d1994 --- /dev/null +++ b/modules/rules_perl/0.2.3.bcr.1/presubmit.yml @@ -0,0 +1,22 @@ +# Copyright 2024 The Bazel Authors. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +matrix: + platform: ["debian11", "macos", "ubuntu2004"] +tasks: + verify_targets: + name: Verify build targets + platform: ${{ platform }} + test_targets: + - '@rules_perl//test/...' diff --git a/modules/rules_perl/0.2.3.bcr.1/source.json b/modules/rules_perl/0.2.3.bcr.1/source.json new file mode 100644 index 00000000000..2e9eedba97a --- /dev/null +++ b/modules/rules_perl/0.2.3.bcr.1/source.json @@ -0,0 +1,10 @@ +{ + "integrity": "sha256-/MKmI3saQLo9rV/xeGMTB6OryJJHAqTqTQSUS1pJiq0=", + "strip_prefix": "rules_perl-0.2.3", + "url": "https://github.com/bazelbuild/rules_perl/archive/refs/tags/0.2.3.zip", + "patches": { + "module_dot_bazel_version.patch": "sha256-Y0BrkWPmdnM0kl5km1XIZaCG6W6Xrw7ikSW1gG5xVZk=", + "includes_attr.patch": "sha256-API7sgc2Q8dC1tdZmX/ac+CHOdpXL17uP04y/e9QS8o=" + }, + "patch_strip": 1 +} diff --git a/modules/rules_perl/metadata.json b/modules/rules_perl/metadata.json index 8dd33cb26ad..8a8d1334f8a 100644 --- a/modules/rules_perl/metadata.json +++ b/modules/rules_perl/metadata.json @@ -2,14 +2,15 @@ "homepage": "https://github.com/bazelbuild/rules_perl", "maintainers": [ { - "name": "Morten Mjelva", - "github": "mortenmj" + "github": "mortenmj", + "name": "Morten Mjelva" } ], "repository": [ "github:bazelbuild/rules_perl" ], "versions": [ - "0.2.0" + "0.2.0", + "0.2.3.bcr.1" ] } From ca17db526c83a5d62f22deced06bc3cd996b5f36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurenz=20Altenm=C3=BCller?= Date: Fri, 16 Aug 2024 17:39:42 +0200 Subject: [PATCH 2/4] update checked-in MODULE.bazel --- modules/rules_perl/0.2.3.bcr.1/MODULE.bazel | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/rules_perl/0.2.3.bcr.1/MODULE.bazel b/modules/rules_perl/0.2.3.bcr.1/MODULE.bazel index 19dba078f07..053a736e7f4 100644 --- a/modules/rules_perl/0.2.3.bcr.1/MODULE.bazel +++ b/modules/rules_perl/0.2.3.bcr.1/MODULE.bazel @@ -22,9 +22,9 @@ use_repo( ) register_toolchains( - "@rules_perl//:perl_darwin_arm64_toolchain", - "@rules_perl//:perl_darwin_amd64_toolchain", - "@rules_perl//:perl_linux_amd64_toolchain", - "@rules_perl//:perl_linux_arm64_toolchain", - "@rules_perl//:perl_windows_x86_64_toolchain", -) + "@rules_perl//perl:perl_darwin_arm64_toolchain", + "@rules_perl//perl:perl_darwin_amd64_toolchain", + "@rules_perl//perl:perl_linux_amd64_toolchain", + "@rules_perl//perl:perl_linux_arm64_toolchain", + "@rules_perl//perl:perl_windows_x86_64_toolchain", +) \ No newline at end of file From f82a3f4d2346c4945d910cb4605c3100318e31bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurenz=20Altenm=C3=BCller?= Date: Fri, 16 Aug 2024 17:43:12 +0200 Subject: [PATCH 3/4] update presubmit.yml --- modules/rules_perl/0.2.3.bcr.1/presubmit.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/rules_perl/0.2.3.bcr.1/presubmit.yml b/modules/rules_perl/0.2.3.bcr.1/presubmit.yml index 64ef86d1994..d83e8352c93 100644 --- a/modules/rules_perl/0.2.3.bcr.1/presubmit.yml +++ b/modules/rules_perl/0.2.3.bcr.1/presubmit.yml @@ -14,9 +14,11 @@ matrix: platform: ["debian11", "macos", "ubuntu2004"] + bazel: [6.x, 7.x] tasks: verify_targets: name: Verify build targets platform: ${{ platform }} + bazel: ${{ bazel }} test_targets: - '@rules_perl//test/...' From 817e90bf6e45f616f340e24eb08211b883d5a009 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurenz=20Altenm=C3=BCller?= Date: Sun, 18 Aug 2024 14:42:32 +0200 Subject: [PATCH 4/4] Add https://github.com/bazelbuild/rules_perl/pull/65 --- .../patches/data_dep_path_prefix.patch | 67 +++++++++++++++++++ modules/rules_perl/0.2.3.bcr.1/source.json | 3 +- 2 files changed, 69 insertions(+), 1 deletion(-) create mode 100644 modules/rules_perl/0.2.3.bcr.1/patches/data_dep_path_prefix.patch diff --git a/modules/rules_perl/0.2.3.bcr.1/patches/data_dep_path_prefix.patch b/modules/rules_perl/0.2.3.bcr.1/patches/data_dep_path_prefix.patch new file mode 100644 index 00000000000..7272bdfb2e1 --- /dev/null +++ b/modules/rules_perl/0.2.3.bcr.1/patches/data_dep_path_prefix.patch @@ -0,0 +1,67 @@ +From dd80f71045c8546874757f6605edae9997b795f8 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Laurenz=20Altenm=C3=BCller?= + +Date: Sun, 18 Aug 2024 14:29:26 +0200 +Subject: [PATCH] Set `PATH_PREFIX=./` instead of failing + +--- + perl/binary_wrapper.tpl | 3 +-- + test/data_dep/BUILD | 35 +++++++++++++++++++++++++++++++++++ + 2 files changed, 36 insertions(+), 2 deletions(-) + create mode 100644 test/data_dep/BUILD + +diff --git a/perl/binary_wrapper.tpl b/perl/binary_wrapper.tpl +index 035523a..292e370 100644 +--- a/perl/binary_wrapper.tpl ++++ b/perl/binary_wrapper.tpl +@@ -7,8 +7,7 @@ elif [ -s `dirname $0`/../../MANIFEST ]; then + elif [ -d $0.runfiles ]; then + PATH_PREFIX=`cd $0.runfiles; pwd`/{workspace_name}/ + else +- echo "WARNING: it does not look to be at the .runfiles directory" >&2 +- exit 1 ++ PATH_PREFIX=./ + fi + + {env_vars} $PATH_PREFIX{interpreter} -I${PATH_PREFIX} ${PATH_PREFIX}{main} "$@" +diff --git a/test/data_dep/BUILD b/test/data_dep/BUILD +new file mode 100644 +index 0000000..00fc8a3 +--- /dev/null ++++ b/test/data_dep/BUILD +@@ -0,0 +1,35 @@ ++genrule( ++ name = "gen_program_sh", ++ srcs = ["@genhtml//:genhtml_bin"], ++ outs = ["program.sh"], ++ cmd = """\ ++cat <<"EOF" >$@ ++#!/bin/bash ++set -euxo pipefail ++genhtml='$(rootpath @genhtml//:genhtml_bin)' ++test "$$("$$genhtml" --version)" == "genhtml: LCOV version 1.0" ++EOF ++""", ++) ++ ++sh_binary( ++ name = "program_bin", ++ srcs = ["program.sh"], ++ data = ["@genhtml//:genhtml_bin"], ++) ++ ++genrule( ++ name = "gen_program_test_sh", ++ srcs = [":program_bin"], ++ outs = ["program_test.sh"], ++ cmd = """\ ++echo '#!/bin/sh' >$@ ++echo 'exec env --ignore-environment test/data_dep/program_bin' >>$@ ++""", ++) ++ ++sh_test( ++ name = "program_test", ++ srcs = ["program_test.sh"], ++ data = [":program_bin"], ++) diff --git a/modules/rules_perl/0.2.3.bcr.1/source.json b/modules/rules_perl/0.2.3.bcr.1/source.json index 2e9eedba97a..c2d5d74cefd 100644 --- a/modules/rules_perl/0.2.3.bcr.1/source.json +++ b/modules/rules_perl/0.2.3.bcr.1/source.json @@ -4,7 +4,8 @@ "url": "https://github.com/bazelbuild/rules_perl/archive/refs/tags/0.2.3.zip", "patches": { "module_dot_bazel_version.patch": "sha256-Y0BrkWPmdnM0kl5km1XIZaCG6W6Xrw7ikSW1gG5xVZk=", - "includes_attr.patch": "sha256-API7sgc2Q8dC1tdZmX/ac+CHOdpXL17uP04y/e9QS8o=" + "includes_attr.patch": "sha256-API7sgc2Q8dC1tdZmX/ac+CHOdpXL17uP04y/e9QS8o=", + "data_dep_path_prefix.patch": "sha256-BCbvVi3eD8Qxhh9QvpLokgBzVyG+HD5jQPXlmxZPQeg=" }, "patch_strip": 1 }