https://bugzilla.redhat.com/show_bug.cgi?id=2494179
--- Comment #3 from Miro HronĨok <[email protected]> --- The yarn.js file is a vendored bundled distribution of Yarn (https://github.com/yarnpkg/yarn), which includes third-party code which should liekly be provided in bundled() as well. I wonder how tedious that would be :/ Itelf, it claims to be BSD-2-Clause: {name:"@yarnpkg/cli",version:"3.5.0",license:"BSD-2-Clause"... THIRD_PARTY_LICENSES/yarn.js.LICENSE.txt only lists licenses of software bundled in yarn, but does not list the license of yarn :/ (perhaps this shall be fixed upstream?) There's also {"@yarnpkg/core":"workspace:^","@yarnpkg/fslib":"workspace:^","@yarnpkg/libzip":"workspace:^","@yarnpkg/parsers":"workspace:^","@yarnpkg/plugin-compat":"workspace:^","@yarnpkg/plugin-dlx":"workspace:^","@yarnpkg/plugin-essentials":"workspace:^","@yarnpkg/plugin-file":"workspace:^","@yarnpkg/plugin-git":"workspace:^","@yarnpkg/plugin-github":"workspace:^","@yarnpkg/plugin-http":"workspace:^","@yarnpkg/plugin-init":"workspace:^","@yarnpkg/plugin-link":"workspace:^","@yarnpkg/plugin-nm":"workspace:^","@yarnpkg/plugin-npm":"workspace:^","@yarnpkg/plugin-npm-cli":"workspace:^","@yarnpkg/plugin-pack":"workspace:^","@yarnpkg/plugin-patch":"workspace:^","@yarnpkg/plugin-pnp":"workspace:^","@yarnpkg/plugin-pnpm":"workspace:^","@yarnpkg/plugin-workspace-tools":"workspace:^","@yarnpkg/shell":"workspace:^",chalk:"^3.0.0","ci-info":"^3.2.0",clipanion:"3.2.0-rc.4",semver:"^7.1.2",tslib:"^1.13.0",typanion:"^3.3.0",yup:"^0.32.9"} And those likely have licenses of their own. echo '{"@yarnpkg/core":"workspace:^","@yarnpkg/fslib":"workspace:^","@yarnpkg/libzip":"workspace:^","@yarnpkg/p arsers":"workspace:^","@yarnpkg/plugin-compat":"workspace:^","@yarnpkg/plugin-dlx":"workspace:^","@yarnpkg/plug in-essentials":"workspace:^","@yarnpkg/plugin-file":"workspace:^","@yarnpkg/plugin-git":"workspace:^","@yarnpkg /plugin-github":"workspace:^","@yarnpkg/plugin-http":"workspace:^","@yarnpkg/plugin-init":"workspace:^","@yarnp kg/plugin-link":"workspace:^","@yarnpkg/plugin-nm":"workspace:^","@yarnpkg/plugin-npm":"workspace:^","@yarnpkg/ plugin-npm-cli":"workspace:^","@yarnpkg/plugin-pack":"workspace:^","@yarnpkg/plugin-patch":"workspace:^","@yarn pkg/plugin-pnp":"workspace:^","@yarnpkg/plugin-pnpm":"workspace:^","@yarnpkg/plugin-workspace-tools":"workspace :^","@yarnpkg/shell":"workspace:^","chalk":"^3.0.0","ci-info":"^3.2.0","clipanion":"3.2.0-rc.4","semver":"^7.1. 2","tslib":"^1.13.0","typanion":"^3.3.0","yup":"^0.32.9"}' \ | jq -r 'keys[]' \ | while read pkg; do printf '%-45s %s\n' "$pkg" "$(npm view "$pkg" license 2>/dev/null || echo 'NOT FOUND')" done @yarnpkg/core BSD-2-Clause @yarnpkg/fslib BSD-2-Clause @yarnpkg/libzip BSD-2-Clause @yarnpkg/parsers BSD-2-Clause @yarnpkg/plugin-compat BSD-2-Clause @yarnpkg/plugin-dlx BSD-2-Clause @yarnpkg/plugin-essentials BSD-2-Clause @yarnpkg/plugin-file BSD-2-Clause @yarnpkg/plugin-git BSD-2-Clause @yarnpkg/plugin-github BSD-2-Clause @yarnpkg/plugin-http BSD-2-Clause @yarnpkg/plugin-init BSD-2-Clause @yarnpkg/plugin-link BSD-2-Clause @yarnpkg/plugin-nm BSD-2-Clause @yarnpkg/plugin-npm BSD-2-Clause @yarnpkg/plugin-npm-cli BSD-2-Clause @yarnpkg/plugin-pack BSD-2-Clause @yarnpkg/plugin-patch BSD-2-Clause @yarnpkg/plugin-pnp BSD-2-Clause @yarnpkg/plugin-pnpm BSD-2-Clause @yarnpkg/plugin-workspace-tools BSD-2-Clause @yarnpkg/shell BSD-2-Clause chalk MIT ci-info MIT clipanion MIT semver ISC tslib 0BSD typanion MIT yup MIT -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component https://bugzilla.redhat.com/show_bug.cgi?id=2494179 Report this comment as SPAM: https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla&format=report-spam&short_desc=Report%20of%20Bug%202494179%23c3 -- _______________________________________________ package-review mailing list -- [email protected] To unsubscribe send an email to [email protected] Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/[email protected] Do not reply to spam, report it: https://forge.fedoraproject.org/infra/tickets/issues/new
