From 2e57766a5bc2c5781f30ca1f74ce6a778b01cd1d Mon Sep 17 00:00:00 2001 From: Matthew Glazar Date: Sat, 17 Feb 2024 18:18:41 -0500 Subject: [PATCH] fix(arch): fix wrong license causing lint warning namcap complains about our Arch Linux package: quick-lint-js-dev E: GPL3 is not a valid SPDX license identifier. See https://spdx.org/licenses/ for valid identifiers, or prefix the identifier with 'LicenseRef-', if it is custom. quick-lint-js-dev E: Apache is not a valid SPDX license identifier. See https://spdx.org/licenses/ for valid identifiers, or prefix the identifier with 'LicenseRef-', if it is custom. Fix these errors. --- dist/arch/PKGBUILD-dev | 2 +- dist/arch/PKGBUILD-git | 2 +- dist/arch/PKGBUILD-release | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/arch/PKGBUILD-dev b/dist/arch/PKGBUILD-dev index 5603d6f8d2..526dff9513 100644 --- a/dist/arch/PKGBUILD-dev +++ b/dist/arch/PKGBUILD-dev @@ -10,7 +10,7 @@ pkgrel=1 pkgdesc="Find bugs in JavaScript programs" arch=(aarch64 arm armv6h armv7h i686 pentium4 x86_64) url="https://quick-lint-js.com/" -license=(Apache GPL3) +license=(Apache-2.0 GPL-3.0-or-later) depends=(gcc-libs glibc hicolor-icon-theme) makedepends=(cmake gcc git ninja) checkdepends=(icu) diff --git a/dist/arch/PKGBUILD-git b/dist/arch/PKGBUILD-git index ed4151dee4..115f363ec1 100644 --- a/dist/arch/PKGBUILD-git +++ b/dist/arch/PKGBUILD-git @@ -10,7 +10,7 @@ pkgrel=1 pkgdesc="Find bugs in JavaScript programs" arch=(aarch64 arm armv6h armv7h i686 pentium4 x86_64) url="https://quick-lint-js.com/" -license=(Apache GPL3) +license=(Apache-2.0 GPL-3.0-or-later) depends=(gcc-libs glibc hicolor-icon-theme) makedepends=(cmake gcc git ninja) checkdepends=(icu) diff --git a/dist/arch/PKGBUILD-release b/dist/arch/PKGBUILD-release index eb15b7191c..20e9a0a62b 100644 --- a/dist/arch/PKGBUILD-release +++ b/dist/arch/PKGBUILD-release @@ -10,7 +10,7 @@ pkgrel=1 pkgdesc="Find bugs in JavaScript programs" arch=(aarch64 arm armv6h armv7h i686 pentium4 x86_64) url="https://quick-lint-js.com/" -license=(Apache GPL3) +license=(Apache-2.0 GPL-3.0-or-later) depends=(gcc-libs glibc hicolor-icon-theme) makedepends=(cmake gcc ninja) checkdepends=(icu)