9 Commits
1.3.0-1 ... obs

Author SHA1 Message Date
3ff2c79404 Use tar_scm 2025-12-08 12:40:17 -03:00
Daniel M. Capella
66a44112a1 upgpkg: 2.0.0-1 2025-10-20 12:50:54 -04:00
Daniel M. Capella
ab0f76e3da upgpkg: 2.0.0a6-1 2025-07-18 17:53:12 -04:00
Daniel M. Capella
8b0414ab72 upgpkg: 2.0.0a5-1 2025-07-18 17:53:12 -04:00
Jelle van der Waa
d00160c35b upgpkg: 1.3.1-3: Rebuild for Python 3.13 2024-11-19 16:56:54 +01:00
T.J. Townsend
3188da27c9 add nvchecker 2024-07-14 14:42:15 -04:00
Daniel M. Capella
dde4182353 upgpkg: 1.3.1-2: Rebuild for Python 3.12 2024-04-05 18:13:14 -04:00
Daniel M. Capella
d44f34b6c0 upgpkg: 1.3.1-1 2024-03-26 15:54:41 -04:00
Daniel M. Capella
9fdac19b31 updpkgsums 2024-03-18 20:00:54 -04:00
4 changed files with 46 additions and 16 deletions

View File

@@ -1,6 +1,6 @@
pkgbase = python-pygls
pkgdesc = Pythonic generic implementation of the Language Server Protocol
pkgver = 1.3.0
pkgver = 2.0.0
pkgrel = 1
url = https://github.com/openlawlibrary/pygls
arch = any
@@ -10,9 +10,10 @@ pkgbase = python-pygls
makedepends = python-build
makedepends = python-installer
makedepends = python-poetry-core
depends = python-attrs
depends = python-cattrs
depends = python-lsprotocol
source = git+https://github.com/openlawlibrary/pygls.git#tag=v1.3.0
b2sums = SKIP
source = git+https://github.com/openlawlibrary/pygls.git#tag=v2.0.0
b2sums = db43d6da778d53ca879bf702a04e0779ec66dd6994987677b38c19b0fd88ccb30f2bfd5a556c50a85bdae879e08c54ab4cf7d92d029d7aff4b270f039ae63290
pkgname = python-pygls

4
.nvchecker.toml Normal file
View File

@@ -0,0 +1,4 @@
[python-pygls]
source = "git"
git = "https://github.com/openlawlibrary/pygls.git"
prefix = "v"

View File

@@ -3,17 +3,26 @@
pkgname=python-pygls
_name=${pkgname#python-}
pkgver=1.3.0
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-2.0')
depends=('python-cattrs' 'python-lsprotocol')
makedepends=('git' 'python-build' 'python-installer' 'python-poetry-core')
checkdepends=('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')
b2sums=('db43d6da778d53ca879bf702a04e0779ec66dd6994987677b38c19b0fd88ccb30f2bfd5a556c50a85bdae879e08c54ab4cf7d92d029d7aff4b270f039ae63290')
build() {
cd "$_name"
@@ -26,12 +35,14 @@ 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
}
source[0]="$_name.tar.xz"
b2sums[0]="SKIP"

14
_service Normal file
View File

@@ -0,0 +1,14 @@
<?xml version="1.0"?>
<services>
<service name="tar_scm">
<param name="scm">git</param>
<param name="url">https://github.com/openlawlibrary/pygls.git</param>
<param name="filename">pygls</param>
<param name="revision">refs/tags/v2.0.0</param>
<param name="version">_none_</param>
</service>
<service name="recompress">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
</services>