Skip to content

Commit

Permalink
fix(arch): fix wrong license causing lint warning
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
strager committed Feb 17, 2024
1 parent ab04ec9 commit 2e57766
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/arch/PKGBUILD-dev
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion dist/arch/PKGBUILD-git
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion dist/arch/PKGBUILD-release
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2e57766

Please sign in to comment.