Combine both license generations into one file

This commit is contained in:
Mikayla Maki 2023-01-26 18:15:34 -08:00
parent c44acaefff
commit 3a1d533c01
5 changed files with 31 additions and 51 deletions

View file

@ -2,20 +2,27 @@
set -e
OUTPUT_FILE=$(pwd)/assets/licenses.md
> $OUTPUT_FILE
echo -e "# ###### THEME LICENSES ######\n" >> $OUTPUT_FILE
echo "Generating theme licenses"
cd styles
npm run --silent build-licenses >> $OUTPUT_FILE
cd ..
echo -e "# ###### CODE LICENSES ######\n" >> $OUTPUT_FILE
[[ "$(cargo about --version)" == "cargo-about 0.5.2" ]] || cargo install cargo-about --locked --git https://github.com/zed-industries/cargo-about --branch error-code-on-warn
echo "Generating cargo licenses"
cargo about generate --fail-on-missing-license -o assets/software_licenses.md -c script/licenses/zed-licenses.toml script/licenses/template.hbs.md
cargo about generate --fail-on-missing-license -c script/licenses/zed-licenses.toml script/licenses/template.hbs.md >> $OUTPUT_FILE
# cargo about automatically html-escapes all output, so we need to undo it here:
sed -i '' 's/"/"/g' assets/software_licenses.md
sed -i '' 's/'/'\''/g' assets/software_licenses.md # `'\''` ends the string, appends a single quote, and re-opens the string
sed -i '' 's/=/=/g' assets/software_licenses.md
sed -i '' 's/`/`/g' assets/software_licenses.md
sed -i '' 's/&lt;/</g' assets/software_licenses.md
sed -i '' 's/&gt;/>/g' assets/software_licenses.md
# Now make theme licenses
echo "Generating theme licenses"
cd styles
npm run build-licenses
sed -i '' 's/&quot;/"/g' $OUTPUT_FILE
sed -i '' 's/&#x27;/'\''/g' $OUTPUT_FILE # The ` '\'' ` thing ends the string, appends a single quote, and re-opens the string
sed -i '' 's/&#x3D;/=/g' $OUTPUT_FILE
sed -i '' 's/&#x60;/`/g' $OUTPUT_FILE
sed -i '' 's/&lt;/</g' $OUTPUT_FILE
sed -i '' 's/&gt;/>/g' $OUTPUT_FILE

View file

@ -1,20 +1,15 @@
# Third Party Licenses
This page lists the licenses of the projects used in Zed.
## Overview of licenses:
{{#each overview}}
* {{name}} ({{count}})
{{/each}}
## All license texts:
### All license texts:
{{#each licenses}}
### {{name}}
#### {{name}}
#### Used by:
##### Used by:
{{#each used_by}}
* [{{crate.name}} {{crate.version}}]({{#if crate.repository}} {{crate.repository}} {{else}} https://crates.io/crates/{{crate.name}} {{/if}})
@ -23,5 +18,4 @@ This page lists the licenses of the projects used in Zed.
{{text}}
--------------------------------------------------------------------------------
{{/each}}