Nicolas Nobelis
Nicolas Nobelis
As explained on the slack channel of ORT (https://ort-talk.slack.com/archives/C9NNJ54B1/p1663241492555069) We are running Scancode 30.1.0 with a pip installation. When running Semver4j, we encounter the following exception: ``` ort:/tmp$ /opt/python/shims/scancode --copyright...
### Description When running Scancode in verbose mode (`-v` flag), the files listed in output are duplicated and it looks they are scanned two times. According to @pombredanne, this is...
Following the discussion at https://github.com/oss-review-toolkit/ort/discussions/8591, it appears that, when the credentials to FossID (user and API key) are wrong, it is hard for the user to see that this is...
Under some rare circumstances, `createScan` can return an error message as data payload instead of the scan id. This commit changes the function's signature to make it polymorphic. Fixes #8462.
Please have a look at the individual commit messages for the details.
Pipenv: 2023.6.26 Python-inspector 0.9.6 I have the following file, generated from `pipenv`: ``` -i https://pypi.org/simple anytree==2.8.0 attrs==21.4.0 ; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'...
Due to changes in ORT (https://github.com/oss-review-toolkit/ort/pull/7401), the snippets results are now grouped by source line ranges. Therefore, missing the matched lines information does not make sense if one wants to...
The user can specify that a dependency should come from an archive file (zip, gzip, etc) at a certain location, instead of from a registry. See https://bazel.build/rules/lib/globals/module#archive_override. Example in `MODULE.bazel`:...
The user can specify that a dependency should come from a certain directory on local disk. See https://bazel.build/rules/lib/globals/module#local_path_override. Example in MODULE.bazel: ``` local_path_override( module_name = "locator", path = "./tools/bazelbuild/modules/locator", )...
The current implementation of Bazel in ORT use the `flags` property to identify the registry URLs: https://github.com/oss-review-toolkit/ort/blob/main/plugins/package-managers/bazel/src/main/kotlin/BazelModel.kt#L37 This property has been removed with Bazel 7.2 so another way of identifying...