Skip to content

Commit

Permalink
Update link references of ownership from nexB to aboutcode-org
Browse files Browse the repository at this point in the history
Signed-off-by: Chin Yeung Li <[email protected]>
  • Loading branch information
chinyeungli committed Aug 30, 2024
1 parent cf72d14 commit 2e41bd6
Show file tree
Hide file tree
Showing 23 changed files with 115 additions and 115 deletions.
4 changes: 2 additions & 2 deletions .ort.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ resolutions:
issues:
- message: "ERROR: Timeout after 300 seconds while scanning file 'reporter-web-app/public/index.html'."
reason: "SCANNER_ISSUE"
comment: >-
comment: >-
The error can be ignored because the file does contain relevant license information.
- message: "ERROR: Timeout after 300 seconds while scanning file 'scanner/src/test/assets/aws-java-sdk-core-1.11.160_scancode-2.9.7.json'."
reason: "SCANNER_ISSUE"
Expand Down Expand Up @@ -175,7 +175,7 @@ curations:
This directory contains all non-official SPDX license ids which are used to generate open source notices. SPDX and
ScanCode license files are licensed under CC0-1.0, see
https://github.com/spdx/license-list-XML/blob/master/package.json#L33 and
https://github.com/nexB/scancode-toolkit/blame/develop/README.rst#L168.
https://github.com/aboutcode-org/scancode-toolkit/blame/develop/README.rst#L168.
- path: "utils/spdx/src/main/resources/licenses/**"
concluded_license: "CC0-1.0"
reason: "DATA_OF"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ RUN mkdir -p $DOTNET_HOME \
fi

RUN mkdir -p $DOTNET_HOME/bin \
&& curl -L https://github.com/nexB/nuget-inspector/releases/download/v$NUGET_INSPECTOR_VERSION/nuget-inspector-v$NUGET_INSPECTOR_VERSION-linux-x64.tar.gz \
&& curl -L https://github.com/aboutcode-org/nuget-inspector/releases/download/v$NUGET_INSPECTOR_VERSION/nuget-inspector-v$NUGET_INSPECTOR_VERSION-linux-x64.tar.gz \
| tar --strip-components=1 -C $DOTNET_HOME/bin -xz

FROM scratch AS dotnet
Expand Down
2 changes: 1 addition & 1 deletion examples/license-classifications.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
# Example license-classifications.yml based on categorization from
# https://github.com/nexB/scancode-toolkit/commit/ed644e4
# https://github.com/aboutcode-org/scancode-toolkit/commit/ed644e4
#
# To demonstrate how one can insert a custom written offer
# include-source-code-offer-in-notice-file has been set to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ private const val BULK_REQUEST_SIZE = 100

/**
* An [AdviceProvider] implementation that obtains security vulnerability information from a
* [VulnerableCode][https://github.com/nexB/vulnerablecode] instance.
* [VulnerableCode][https://github.com/aboutcode-org/vulnerablecode] instance.
*
* This [AdviceProvider] offers the following configuration options:
*
Expand Down Expand Up @@ -155,7 +155,7 @@ class VulnerableCode(override val descriptor: PluginDescriptor, config: Vulnerab
if (scores.isEmpty()) return listOf(VulnerabilityReference(sourceUri, null, null))
return scores.map {
// VulnerableCode returns MODERATE instead of MEDIUM in case of cvssv3.1_qr, see:
// https://github.com/nexB/vulnerablecode/issues/1186
// https://github.com/aboutcode-org/vulnerablecode/issues/1186
val severity = if (it.scoringSystem == "cvssv3.1_qr" && it.value == "MODERATE") "MEDIUM" else it.value

VulnerabilityReference(sourceUri, it.scoringSystem, severity)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ internal fun List<PythonInspector.Package>.toOrtPackages(): Set<Package> =
declaredLicenses = declaredLicenses,
declaredLicensesProcessed = declaredLicensesProcessed,
// Only use the first line of the description because the descriptions provided by python-inspector are
// currently far too long, see: https://github.com/nexB/python-inspector/issues/74
// currently far too long, see: https://github.com/aboutcode-org/python-inspector/issues/74
description = pkg.description.lineSequence().firstOrNull { it.isNotBlank() }.orEmpty(),
homepageUrl = pkg.homepageUrl.orEmpty(),
binaryArtifact = getArtifact(".whl"),
Expand Down
2 changes: 1 addition & 1 deletion plugins/scanners/dos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ ort:
The `DOS_FRONTEND_URL` is meant to point to the Clearance UI which can be used to inspect scan results and to create license finding curations for use with the [DOS Package Configuration Provider].

[DOS]: https://github.com/doubleopen-project/dos
[ScanCode]: https://github.com/nexB/scancode-toolkit
[ScanCode]: https://github.com/aboutcode-org/scancode-toolkit
[DOS Package Configuration Provider]: ../../package-configuration-providers/dos
2 changes: 1 addition & 1 deletion plugins/scanners/scancode/src/main/kotlin/ScanCode.kt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import org.semver4j.RangesListFactory
import org.semver4j.Semver

/**
* A wrapper for [ScanCode](https://github.com/nexB/scancode-toolkit).
* A wrapper for [ScanCode](https://github.com/aboutcode-org/scancode-toolkit).
*
* This scanner can be configured in [ScannerConfiguration.config] using the key "ScanCode". It offers the following
* configuration [options][PluginConfiguration.options]:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ fun ScanCodeResult.toScanSummary(preferFileLicense: Boolean = false): ScanSummar
val licensesWithoutReferences = file.licenses.filter {
it !is LicenseEntry.Version3 || it.fromFile == null
// Note that "fromFile" contains the name of the input directory, see
// https://github.com/nexB/scancode-toolkit/issues/3712.
// https://github.com/aboutcode-org/scancode-toolkit/issues/3712.
|| inputPath.resolveSibling(it.fromFile) == inputPath.resolve(file.path)
// Check if input is a single file.
|| it.fromFile == inputPath.name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"--strip-root": true,
"--timeout": "300.0"
},
"notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.",
"notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/aboutcode-org/scancode-toolkit/ for support and download.",
"start_timestamp": "2019-08-13T074443.361209",
"end_timestamp": "2019-08-13T074524.131834",
"message": null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"--strip-root": true,
"--timeout": "300.0"
},
"notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.",
"notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/aboutcode-org/scancode-toolkit/ for support and download.",
"start_timestamp": "2021-01-28T132916.946903",
"end_timestamp": "2021-01-28T133435.622217",
"duration": 318.67532992362976,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"--strip-root": true,
"--timeout": "300.0"
},
"notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.",
"notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/aboutcode-org/scancode-toolkit/ for support and download.",
"start_timestamp": "2023-12-08T123156.694438",
"end_timestamp": "2023-12-08T123226.376157",
"output_format_version": "3.0.0",
Expand Down Expand Up @@ -175,7 +175,7 @@
"license_expression": "generic-cla AND mit",
"rule_identifier": "generic-cla_and_mit_1.RULE",
"rule_relevance": 99,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/generic-cla_and_mit_1.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/generic-cla_and_mit_1.RULE"
}
],
"identifier": "generic_cla_and_mit-e300baf2-7b55-d28f-e79e-32577191b77a"
Expand Down Expand Up @@ -260,7 +260,7 @@
"license_expression": "mit",
"rule_identifier": "mit_27.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE"
},
{
"score": 100.0,
Expand All @@ -272,7 +272,7 @@
"license_expression": "mit",
"rule_identifier": "mit.LICENSE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE"
}
],
"identifier": "mit-f7452287-cb8f-dace-dd8d-3e62743150a2"
Expand Down Expand Up @@ -336,7 +336,7 @@
"license_expression": "mit",
"rule_identifier": "mit_30.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_30.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_30.RULE"
}
],
"identifier": "mit-3fce6ea2-8abd-6c6b-3ede-a37af7c6efee"
Expand Down Expand Up @@ -427,7 +427,7 @@
"license_expression": "json",
"rule_identifier": "json_5.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/json_5.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/json_5.RULE"
},
{
"score": 100.0,
Expand All @@ -439,7 +439,7 @@
"license_expression": "json",
"rule_identifier": "json_5.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/json_5.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/json_5.RULE"
}
],
"identifier": "json-981d329b-9269-f448-9907-b92bd76e2ea9"
Expand All @@ -457,7 +457,7 @@
"license_expression": "bsd-simplified",
"rule_identifier": "spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE"
},
{
"score": 100.0,
Expand All @@ -469,7 +469,7 @@
"license_expression": "bsd-simplified",
"rule_identifier": "bsd-simplified_136.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-simplified_136.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-simplified_136.RULE"
},
{
"score": 100.0,
Expand All @@ -481,7 +481,7 @@
"license_expression": "gpl-2.0 WITH gcc-linking-exception-2.0",
"rule_identifier": "gpl-2.0_with_gcc-linking-exception-2.0_1.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE"
},
{
"score": 100.0,
Expand All @@ -493,7 +493,7 @@
"license_expression": "gpl-2.0",
"rule_identifier": "gpl-2.0_1074.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1074.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1074.RULE"
},
{
"score": 50.0,
Expand All @@ -505,7 +505,7 @@
"license_expression": "gcc-linking-exception-2.0",
"rule_identifier": "spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE",
"rule_relevance": 50,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE"
},
{
"score": 100.0,
Expand All @@ -517,7 +517,7 @@
"license_expression": "cc-by-3.0",
"rule_identifier": "cc-by-3.0_106.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-3.0_106.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-3.0_106.RULE"
},
{
"score": 100.0,
Expand All @@ -529,7 +529,7 @@
"license_expression": "mit",
"rule_identifier": "mit_1003.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1003.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1003.RULE"
}
],
"identifier": "bsd_simplified_and_gpl_2_0_with_gcc_linking_exception_2_0_and_gpl_2_0_and_gcc_linking_exception_2_0_and_cc_by_3_0_and_mit-db00c765-2211-b14d-f300-f5fb460e6090"
Expand Down Expand Up @@ -614,7 +614,7 @@
"license_expression": "bsd-new",
"rule_identifier": "bsd-new_10.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_10.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_10.RULE"
},
{
"score": 100.0,
Expand All @@ -626,7 +626,7 @@
"license_expression": "gpl-2.0 WITH gcc-linking-exception-2.0",
"rule_identifier": "gpl-2.0_with_gcc-linking-exception-2.0_1.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE"
},
{
"score": 100.0,
Expand All @@ -638,7 +638,7 @@
"license_expression": "bsd-new",
"rule_identifier": "bsd-new_10.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_10.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_10.RULE"
},
{
"score": 100.0,
Expand All @@ -650,7 +650,7 @@
"license_expression": "gpl-2.0 WITH gcc-linking-exception-2.0",
"rule_identifier": "gpl-2.0_with_gcc-linking-exception-2.0_1.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE"
},
{
"score": 100.0,
Expand All @@ -662,7 +662,7 @@
"license_expression": "bsd-new",
"rule_identifier": "bsd-new_10.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_10.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_10.RULE"
},
{
"score": 100.0,
Expand All @@ -674,7 +674,7 @@
"license_expression": "gpl-2.0 WITH gcc-linking-exception-2.0",
"rule_identifier": "gpl-2.0_with_gcc-linking-exception-2.0_1.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE"
}
],
"identifier": "bsd_new_and_gpl_2_0_with_gcc_linking_exception_2_0-37d4e857-c03b-b6a1-484e-665eb994f0f7"
Expand All @@ -692,7 +692,7 @@
"license_expression": "gpl-2.0",
"rule_identifier": "gpl-2.0_1074.RULE",
"rule_relevance": 100,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1074.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1074.RULE"
},
{
"score": 50.0,
Expand All @@ -704,7 +704,7 @@
"license_expression": "gcc-linking-exception-2.0",
"rule_identifier": "spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE",
"rule_relevance": 50,
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE"
"rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE"
}
],
"identifier": "gpl_2_0_and_gcc_linking_exception_2_0-6190574f-5a15-04e2-81cf-952b34277f33"
Expand Down
Loading

0 comments on commit 2e41bd6

Please sign in to comment.