git » licenses.git » commit a377595

Add all known SPDX license identifiers to a list

author David Runge
2023-09-17 11:54:38 UTC
committer David Runge
2023-09-17 11:54:38 UTC
parent 60d63fdfb807e7f45d9b6605b28631780439aec3

Add all known SPDX license identifiers to a list

This allows for tooling to be aware of all currently known license
identifiers. The list includes those that we provide as standard
licenses, as well as those that we require packagers to add a license
file for.

Signed-off-by: David Runge <dvzrv@archlinux.org>

PKGBUILD +12 -0

diff --git a/PKGBUILD b/PKGBUILD
index 23e3b1e..02b693a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -107,6 +107,17 @@ b2sums=('b6829320f725e3e45c4807ef5deb4738a691fb3ab146d8531b81fdbccd8376a826c8ec7
         '63aefec94bf37792b1b10ee4ae36a5ad54f5df1ef175eddf8528bc8fb1c5a71cf7c258f856f99a9ed4e678c9226f0ac99ea825fc68e10695e905a618c36896e8'
         'f4f762da3c7c286596e1e047c6e083017e2662334ab039faeb57e0947ab700e0c8540727375c2170a35bac5b983fd80e8824ebbe5b051a5e23be0f7bdcb173ed')
 
+prepare() {
+  local license
+
+  # create list of known SPDX license identifiers
+  {
+    for license in "$_upstream_name-$_upstream_version/text/"*.txt; do
+      printf "%s\n" "$(basename "${license//.txt/}")"
+    done
+  } > known_spdx_license_identifiers.txt
+}
+
 package() {
   local standard_licenses=(
     AGPL-3.0-only
@@ -271,6 +282,7 @@ package() {
   for license in "${standard_licenses[@]}"; do
     install -vDm 644 "$_upstream_name-$_upstream_version/text/$license.txt" -t "$pkgdir/usr/share/licenses/spdx/"
   done
+  install -vDm 644 known_spdx_license_identifiers.txt -t "$pkgdir/usr/share/licenses/"
 }
 
 # vim: ts=2 sw=2 et: