Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
66a44112a1 | ||
|
|
ab0f76e3da | ||
|
|
8b0414ab72 | ||
|
|
d00160c35b | ||
|
|
3188da27c9 | ||
|
|
dde4182353 | ||
|
|
d44f34b6c0 | ||
|
|
9fdac19b31 | ||
|
|
c368b9b9b2 | ||
|
|
92ebb36c41 | ||
|
|
672969025d | ||
|
|
a99ffc78c1 |
12
.SRCINFO
12
.SRCINFO
@@ -1,19 +1,19 @@
|
||||
pkgbase = python-pygls
|
||||
pkgdesc = Pythonic generic implementation of the Language Server Protocol
|
||||
pkgver = 1.1.1
|
||||
pkgver = 2.0.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/openlawlibrary/pygls
|
||||
arch = any
|
||||
license = APACHE
|
||||
checkdepends = python-pytest
|
||||
license = Apache-2.0
|
||||
checkdepends = python-pytest-asyncio
|
||||
makedepends = git
|
||||
makedepends = python-build
|
||||
makedepends = python-installer
|
||||
makedepends = python-poetry-core
|
||||
depends = python-attrs
|
||||
depends = python-cattrs
|
||||
depends = python-lsprotocol
|
||||
depends = python-typeguard
|
||||
source = git+https://github.com/openlawlibrary/pygls.git#tag=v1.1.1
|
||||
b2sums = SKIP
|
||||
source = git+https://github.com/openlawlibrary/pygls.git#tag=v2.0.0
|
||||
b2sums = db43d6da778d53ca879bf702a04e0779ec66dd6994987677b38c19b0fd88ccb30f2bfd5a556c50a85bdae879e08c54ab4cf7d92d029d7aff4b270f039ae63290
|
||||
|
||||
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"
|
||||
39
PKGBUILD
39
PKGBUILD
@@ -3,22 +3,26 @@
|
||||
|
||||
pkgname=python-pygls
|
||||
_name=${pkgname#python-}
|
||||
pkgver=1.1.1
|
||||
pkgver=2.0.0
|
||||
pkgrel=1
|
||||
pkgdesc='Pythonic generic implementation of the Language Server Protocol'
|
||||
arch=('any')
|
||||
arch=(any)
|
||||
url=https://github.com/openlawlibrary/pygls
|
||||
license=('APACHE')
|
||||
depends=('python-lsprotocol' 'python-typeguard')
|
||||
makedepends=('git' 'python-build' 'python-installer' 'python-poetry-core')
|
||||
checkdepends=('python-pytest' 'python-pytest-asyncio')
|
||||
license=(Apache-2.0)
|
||||
depends=(
|
||||
python-attrs
|
||||
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=('SKIP')
|
||||
|
||||
prepare() {
|
||||
cd "$_name"
|
||||
sed -i 's/typeguard = "^3.0.0"/typeguard = "^4.0.0"/' pyproject.toml
|
||||
}
|
||||
b2sums=('db43d6da778d53ca879bf702a04e0779ec66dd6994987677b38c19b0fd88ccb30f2bfd5a556c50a85bdae879e08c54ab4cf7d92d029d7aff4b270f039ae63290')
|
||||
|
||||
build() {
|
||||
cd "$_name"
|
||||
@@ -31,12 +35,11 @@ check() {
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_name"
|
||||
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.txt \
|
||||
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
|
||||
ln -s "$site_packages"/"$_name"-$pkgver.dist-info/licenses/LICENSE.txt \
|
||||
"$pkgdir"/usr/share/licenses/$pkgname
|
||||
|
||||
cd "$_name"
|
||||
python -m installer --destdir="$pkgdir" dist/*.whl
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user