rules_license icon indicating copy to clipboard operation
rules_license copied to clipboard

Results 55 rules_license issues
Sort by recently updated
recently updated
newest added

## Expected Behavior When running `bazel build //examples/sboms:write_sbom_sbom`, the resulting JSON should look as follows: ```json [ { "top_level_target": "//tools:write_sbom", "dependencies": [ { "target_under_license": "//tools:write_sbom", "licenses": [ "//:license" ] }...

bug
P2

## The JSON output produced by [`gather_licenses_info_and_write`](https://github.com/bazelbuild/rules_license/blob/main/rules/gather_licenses_info.bzl#L94) includes unnexpected dependencies and licenses. ## Actual Behavior There should be a way to filter these targets out ## Steps to Reproduce the...

bug
P2

The License json object is like: ```json [ { "top_level_target": "//target:target", "dependencies": [ { "target_under_license": "@com_github_fmtlib_fmt//:lib", "licenses": [ "@com_github_fmtlib_fmt//:license" ] } ], "licenses": [ { "label": "@com_github_fmtlib_fmt//:license", "rule": "@com_github_fmtlib_fmt//:license", "license_kinds":...

bug
P2

## Expected Behavior Custom starlark rules should be able to return a `LicensesInfo` provider in the event that they need to customize how licenses propagate. For example, some rules may...

question
P2

There are too many things in the `rules` package. The expected use case is that everyone is going to by declaring a `license` rule, but fewer people will be using...

P2
internal_cleanup

The current meeting is last Monday of the month at 11am Easter time. That is inconvenient for people in Europe and for those in California. Let's see if we can...

- Tests should be less brittle than exact file matching. - It should be easy to rewrite them when vendoring in to your code base. Towards the second point, we...

internal_cleanup

## Expected Behavior `LicensesInfo` / `LicenseInfo` will be collected by reviewing all attributes of objects passed in to the `gather_licenses_info` aspect. ## Actual Behavior The list of attributes that are...

I just wanted to move our requirements from a comment on a closed PR (https://github.com/bazelbuild/rules_license/pull/6#issuecomment-954722801) to the bugtracker: - it didn't collect through output file dependencies (fixed now) - we...

- pull information from (design)[https://docs.google.com/document/d/1uwBuhAoBNrw8tmFs-NxlssI6VRolidGYdYqagLqHWt8/edit#] - and from licenses/spdx/BUILD - Use case for just labeling your work - depend on the release and add `license()` rules - Use case for...

documentation
P2