-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an SPDX file to the repository to streamline license and security…
… reviews by user organizations (#42102) * Add an SPDX file to the repository. * New script contrib/updateSPDX.jl . Ran the script to update the SPDX file.
- Loading branch information
1 parent
43efe2c
commit 7cd1da3
Showing
3 changed files
with
633 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# SPDX-License-Identifier: MIT | ||
# This file is a part of Julia. License is MIT: https://julialang.org/license | ||
# | ||
# Run this script with each new Julia release to update "../julia.spdx.json" | ||
|
||
using UUIDs | ||
using Dates | ||
using JSON | ||
using TimeZones | ||
using DataStructures | ||
|
||
spdxDocument= "../julia.spdx.json" | ||
spdxData= JSON.parsefile(spdxDocument; dicttype=OrderedDict{String, Any}) | ||
|
||
# At the moment we can only update a few items automatically with each release. | ||
# These are the crucial elements to make a new version of the SPDX file. | ||
# Any other changes (ex. Adding or removing of external dependencies, updating copyright text, etc.) must be performed manually | ||
spdxData["documentNamespace"]= "https://julialang.org/spdxdocs/julia-spdx-" * string(uuid4()) | ||
spdxData["creationInfo"]["created"]= Dates.format(now(tz"UTC"), "yyyy-mm-ddTHH:MM:SS") * "Z" | ||
|
||
for pkg in spdxData["packages"] | ||
if pkg["SPDXID"] == "SPDXRef-JuliaMain" | ||
pkg["versionInfo"]= readline("../VERSION") | ||
pkg["downloadLocation"]= "git+https://github.com/JuliaLang/julia.git@v" * pkg["versionInfo"] | ||
break | ||
end | ||
end | ||
|
||
open(spdxDocument, "w") do f | ||
JSON.print(f, spdxData, 4) | ||
end |
Oops, something went wrong.