7 Commits

Author SHA1 Message Date
Robin Candau
a3ebdc03c8 Add .nvchecker.toml 2025-08-16 17:52:53 +02:00
Sven-Hendrik Haase
eb4f8a5344 License package as 0BSD
This implements RFC40 and RFC52.
https://lists.archlinux.org/archives/list/arch-dev-public@lists.archlinux.org/thread/XR3VAUWC5LNMTVOCKFOHYYEGUQ4ZFCNG/
2025-07-26 15:44:30 +02:00
Jelle van der Waa
756131f41d upgpkg: 2023.0.1-3: Rebuild for Python 3.13 2024-11-19 16:37:17 +01:00
Daniel M. Capella
f38811a749 upgpkg: 2023.0.1-2: Rebuild for Python 3.12 2024-04-05 18:12:04 -04:00
Daniel M. Capella
31d81e58ba updpkgsums 2024-03-18 20:09:40 -04:00
Daniel M. Capella
94b4c2287c upgpkg: 2023.0.1-1 2024-01-20 16:02:43 -05:00
Daniel M. Capella
e359870b75 upgpkg: 2023.0.0-1 2023-11-19 16:03:48 -05:00
6 changed files with 68 additions and 10 deletions

19
.SRCINFO Normal file
View File

@@ -0,0 +1,19 @@
pkgbase = python-lsprotocol
pkgdesc = Python types for Language Server Protocol
pkgver = 2023.0.1
pkgrel = 3
url = https://github.com/microsoft/lsprotocol
arch = any
license = MIT
checkdepends = python-jsonschema
checkdepends = python-pyhamcrest
checkdepends = python-pytest
makedepends = git
makedepends = python-build
makedepends = python-flit-core
makedepends = python-installer
depends = python-cattrs
source = git+https://github.com/microsoft/lsprotocol.git#tag=2023.0.1
b2sums = 8e3ce2c021a8e170aaa05fb7ff8d25136d26a88977d070fa5f1c29616199c50e7fb2e401597dfe16b16e61e381923a6aa5df326624ac03258dc33028d17d4312
pkgname = python-lsprotocol

4
.nvchecker.toml Normal file
View File

@@ -0,0 +1,4 @@
[python-lsprotocol]
source = "git"
git = "https://github.com/microsoft/lsprotocol.git"
exclude_regex = ".*(pre|a|alpha|b|beta|rc).*"

12
LICENSE Normal file
View File

@@ -0,0 +1,12 @@
Copyright Arch Linux Contributors
Permission to use, copy, modify, and/or distribute this software for
any purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE
FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

1
LICENSES/0BSD.txt Symbolic link
View File

@@ -0,0 +1 @@
../LICENSE

View File

@@ -1,36 +1,36 @@
# Maintainer: Daniel M. Capella <polyzen@archlinux.org>
_name=lsprotocol
pkgname=python-lsprotocol
pkgver=2023.0.0b1
pkgrel=1
pkgdesc='Python implementation of the Language Server Protocol'
_name=${pkgname#python-}
pkgver=2023.0.1
pkgrel=3
pkgdesc='Python types for Language Server Protocol'
arch=('any')
url=https://github.com/microsoft/lsprotocol
license=('MIT')
depends=('python-cattrs')
makedepends=('git' 'python-build' 'python-flit-core' 'python-installer')
checkdepends=('python-jsonschema' 'python-pyhamcrest' 'python-pytest')
source=("git+$url.git?tag=$pkgver")
b2sums=('SKIP')
source=("git+$url.git#tag=$pkgver")
b2sums=('8e3ce2c021a8e170aaa05fb7ff8d25136d26a88977d070fa5f1c29616199c50e7fb2e401597dfe16b16e61e381923a6aa5df326624ac03258dc33028d17d4312')
build() {
cd $_name/packages/python
cd "$_name"/packages/python
python -m build --wheel --skip-dependency-check --no-isolation
}
check() {
cd $_name
cd "$_name"
pytest tests/python
}
package() {
cd $_name/packages/python
cd "$_name"/packages/python
python -m installer --destdir="$pkgdir" dist/*.whl
# Symlink license file
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
install -d "$pkgdir"/usr/share/licenses/$pkgname
ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE \
ln -s "$site_packages"/"$_name"-$pkgver.dist-info/LICENSE \
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}

22
REUSE.toml Normal file
View File

@@ -0,0 +1,22 @@
version = 1
[[annotations]]
path = [
"PKGBUILD",
"README.md",
"keys/**",
".SRCINFO",
".nvchecker.toml",
"*.install",
"*.sysusers",
"*.tmpfiles",
"*.logrotate",
"*.pam",
"*.service",
"*.socket",
"*.timer",
"*.desktop",
"*.hook",
]
SPDX-FileCopyrightText = "Arch Linux contributors"
SPDX-License-Identifier = "0BSD"