Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d00160c35b | ||
|
|
3188da27c9 | ||
|
|
dde4182353 | ||
|
|
d44f34b6c0 | ||
|
|
9fdac19b31 | ||
|
|
c368b9b9b2 | ||
|
|
92ebb36c41 | ||
|
|
672969025d | ||
|
|
a99ffc78c1 | ||
|
|
d1ee4ca52a | ||
|
|
17d51b5b12 | ||
|
|
024d737d4a | ||
|
|
6d95e55328 |
18
.SRCINFO
Normal file
18
.SRCINFO
Normal file
@@ -0,0 +1,18 @@
|
||||
pkgbase = python-pygls
|
||||
pkgdesc = Pythonic generic implementation of the Language Server Protocol
|
||||
pkgver = 1.3.1
|
||||
pkgrel = 3
|
||||
url = https://github.com/openlawlibrary/pygls
|
||||
arch = any
|
||||
license = Apache-2.0
|
||||
checkdepends = python-pytest-asyncio
|
||||
makedepends = git
|
||||
makedepends = python-build
|
||||
makedepends = python-installer
|
||||
makedepends = python-poetry-core
|
||||
depends = python-cattrs
|
||||
depends = python-lsprotocol
|
||||
source = git+https://github.com/openlawlibrary/pygls.git#tag=v1.3.1
|
||||
b2sums = c893198f1004256118acfa1bee3aefb87f98a34f2a634de7263d621e56673312a735e94ab8703135e7e43df21cde0a07946a9187c54878c2dcadd696fb8830e4
|
||||
|
||||
pkgname = python-pygls
|
||||
4
.nvchecker.toml
Normal file
4
.nvchecker.toml
Normal file
@@ -0,0 +1,4 @@
|
||||
[python-pygls]
|
||||
source = "git"
|
||||
git = "https://github.com/openlawlibrary/pygls.git"
|
||||
prefix = "v"
|
||||
40
PKGBUILD
40
PKGBUILD
@@ -1,49 +1,37 @@
|
||||
# Maintainer: Daniel M. Capella <polyzen@archlinux.org>
|
||||
# Contributor: Otreblan <otreblain@gmail.com>
|
||||
|
||||
_name=pygls
|
||||
pkgname=python-pygls
|
||||
pkgver=1.0.1
|
||||
pkgrel=2
|
||||
_name=${pkgname#python-}
|
||||
pkgver=1.3.1
|
||||
pkgrel=3
|
||||
pkgdesc='Pythonic generic implementation of the Language Server Protocol'
|
||||
arch=('any')
|
||||
url=https://github.com/openlawlibrary/pygls
|
||||
license=('APACHE')
|
||||
depends=('python-lsprotocol' 'python-typeguard')
|
||||
makedepends=('python-build' 'python-installer' 'python-setuptools-scm'
|
||||
'python-toml' 'python-wheel')
|
||||
checkdepends=('python-mock' 'python-pytest' 'python-pytest-asyncio')
|
||||
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz"
|
||||
'pygls-typeguard3.patch::https://github.com/openlawlibrary/pygls/pull/327.patch')
|
||||
sha256sums=('f3ee98ddbb4690eb5c755bc32ba7e129607f14cbd313575f33d0cea443b78cb2'
|
||||
'e95fbe7f2f18f2e1499ead927d207b88016df4ae46b5a80d350877dba8507bef')
|
||||
b2sums=('62089e817214d8ae0b9d2454a0787e18f077183fbcd1dcf538630ec167f1356f3031dff679dd45aeab48a11e545b7c63fa74e1c42fca7fec7c33d51b72efb25f'
|
||||
'8f1b326092bb460a13a9de00bda1644725ad0b66a9e0049ed2ab7e88730ed0068455a6f126b685825bfeee82a4229c12557de6a430ca55b73f91498843c5ba4a')
|
||||
|
||||
prepare() {
|
||||
cd $_name-$pkgver
|
||||
patch --forward --strip=1 --input=../pygls-typeguard3.patch || true
|
||||
sed -i 's/typeguard>=2.10.0,<3/typeguard>=3,<4/' setup.cfg
|
||||
}
|
||||
license=('Apache-2.0')
|
||||
depends=('python-cattrs' 'python-lsprotocol')
|
||||
makedepends=('git' 'python-build' 'python-installer' 'python-poetry-core')
|
||||
checkdepends=('python-pytest-asyncio')
|
||||
source=("git+$url.git#tag=v$pkgver")
|
||||
b2sums=('c893198f1004256118acfa1bee3aefb87f98a34f2a634de7263d621e56673312a735e94ab8703135e7e43df21cde0a07946a9187c54878c2dcadd696fb8830e4')
|
||||
|
||||
build() {
|
||||
cd $_name-$pkgver
|
||||
cd "$_name"
|
||||
python -m build --wheel --skip-dependency-check --no-isolation
|
||||
}
|
||||
|
||||
check() {
|
||||
cd $_name-$pkgver
|
||||
pytest
|
||||
cd "$_name"
|
||||
PYTHONPATH="$PWD/$_name:$PYTHONPATH" pytest
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $_name-$pkgver
|
||||
cd "$_name"
|
||||
python -m installer --destdir="$pkgdir" dist/*.whl
|
||||
rm -r "$pkgdir"/usr/lib/site-packages
|
||||
|
||||
# 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.txt \
|
||||
ln -s "$site_packages"/"$_name"-$pkgver.dist-info/LICENSE.txt \
|
||||
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user