Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: python3-lsp-ruff
@ 2023-10-25 20:24 CameronNemo
  2023-10-25 23:05 ` [PR PATCH] [Updated] " CameronNemo
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: CameronNemo @ 2023-10-25 20:24 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1433 bytes --]

There is a new pull request by CameronNemo against master on the void-packages repository

https://github.com/CameronNemo/void-packages ruff
https://github.com/void-linux/void-packages/pull/46896

New package: python3-lsp-ruff
- ruff: update to 0.1.2, install python module
- python3-lsp-server: update to 1.8.2
- New package: python3-cattrs-23.1.2
- New package: python3-lsprotocol-0.0.0.20230918
- New package: python3-lsp-ruff-1.6.0

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/46896.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-ruff-46896.patch --]
[-- Type: text/x-diff, Size: 6353 bytes --]

From f2803d04c9f215cf6e15ac7d888bfb629eee5bb8 Mon Sep 17 00:00:00 2001
From: Cameron Nemo <cam@nohom.org>
Date: Wed, 25 Oct 2023 09:17:11 -0700
Subject: [PATCH 1/5] ruff: update to 0.1.2, install python module

Ruff should ship with a python module for consumption via Python tooling
(including language servers).

Adjust the build_style et al to install the python module.
---
 srcpkgs/ruff/template | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/ruff/template b/srcpkgs/ruff/template
index 295d35d9bfaf6..ea82915c1ec4a 100644
--- a/srcpkgs/ruff/template
+++ b/srcpkgs/ruff/template
@@ -1,17 +1,19 @@
 # Template file for 'ruff'
 pkgname=ruff
-version=0.1.0
+version=0.1.2
 revision=1
-build_style=cargo
-configure_args="--bin ruff"
-make_install_args="--path crates/ruff_cli"
+build_helper=rust
+build_style="python3-pep517"
+hostmakedepends="maturin cargo python3-wheel"
+makedepends="rust-std"
+checkdepends="python3-pytest"
 short_desc="Extremely fast Python linter, written in Rust"
 maintainer="icp <pangolin@vivaldi.net>"
 license="MIT"
 homepage="https://docs.astral.sh/ruff/"
 changelog="https://raw.githubusercontent.com/astral-sh/ruff/main/CHANGELOG.md"
 distfiles="https://github.com/astral-sh/ruff/archive/refs/tags/v${version}.tar.gz"
-checksum=b6f1467505acc99dcec7d67ff9dbcd00c63a39f338e09705a90a90205c8553d4
+checksum=2135ea2f647a17e9060a3ca10f6df2be9e37ae87c864fe79dd3c067ba6ee57b2
 
 post_install() {
 	vlicense LICENSE

From b156a4ef118b5bc6b4c65e47b13be5c79a291e95 Mon Sep 17 00:00:00 2001
From: Cameron Nemo <cam@nohom.org>
Date: Wed, 25 Oct 2023 13:15:57 -0700
Subject: [PATCH 2/5] python3-lsp-server: update to 1.8.2

---
 srcpkgs/python3-lsp-server/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-lsp-server/template b/srcpkgs/python3-lsp-server/template
index 721618b1ed54c..b2edb12d91bcb 100644
--- a/srcpkgs/python3-lsp-server/template
+++ b/srcpkgs/python3-lsp-server/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-lsp-server'
 pkgname=python3-lsp-server
-version=1.8.0
-revision=2
+version=1.8.2
+revision=1
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-setuptools_scm python3-wheel"
 depends="python3-jedi python3-pluggy python3-lsp-jsonrpc python3-ultrajson
@@ -16,7 +16,7 @@ license="MIT"
 homepage="https://github.com/python-lsp/python-lsp-server"
 changelog="https://raw.githubusercontent.com/python-lsp/python-lsp-server/develop/CHANGELOG.md"
 distfiles="${PYPI_SITE}/p/python-lsp-server/python-lsp-server-${version}.tar.gz"
-checksum=807b0347cf83f02cbd9113a68624ac5dbf8b01854a3b11dd03c3bbbdff4e5d89
+checksum=fd85e1c6ad95c1d276c82a33c2c85898f110afc3c7bfeaced79c0df095076fd1
 
 do_check() {
 	python3 -m pytest \

From 9264770a4eceda2e3aefeb24e1baafa7e63c3cbd Mon Sep 17 00:00:00 2001
From: Cameron Nemo <cam@nohom.org>
Date: Wed, 25 Oct 2023 13:20:06 -0700
Subject: [PATCH 3/5] New package: python3-cattrs-23.1.2

---
 srcpkgs/python3-cattrs/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/python3-cattrs/template

diff --git a/srcpkgs/python3-cattrs/template b/srcpkgs/python3-cattrs/template
new file mode 100644
index 0000000000000..641a002615955
--- /dev/null
+++ b/srcpkgs/python3-cattrs/template
@@ -0,0 +1,17 @@
+# Template file for 'python3-cattrs'
+pkgname=python3-cattrs
+version=23.1.2
+revision=1
+build_style=python3-pep517
+hostmakedepends="python3-poetry-core"
+depends="python3-attrs"
+short_desc="Composable complex class support for attrs and dataclasses"
+maintainer="Cameron Nemo <cam@nohom.org>"
+license="MIT"
+homepage="https://github.com/python-attrs/cattrs"
+distfiles="${PYPI_SITE}/c/cattrs/cattrs-${version}.tar.gz"
+checksum=db1c821b8c537382b2c7c66678c3790091ca0275ac486c76f3c8f3920e83c657
+
+post_install() {
+	vlicense LICENSE
+}

From 9110b6d9c8e2ec4c96e66e40a449a7ffa180851e Mon Sep 17 00:00:00 2001
From: Cameron Nemo <cam@nohom.org>
Date: Wed, 25 Oct 2023 13:20:27 -0700
Subject: [PATCH 4/5] New package: python3-lsprotocol-0.0.0.20230918

---
 srcpkgs/python3-lsprotocol/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/python3-lsprotocol/template

diff --git a/srcpkgs/python3-lsprotocol/template b/srcpkgs/python3-lsprotocol/template
new file mode 100644
index 0000000000000..2b339b5e48a8c
--- /dev/null
+++ b/srcpkgs/python3-lsprotocol/template
@@ -0,0 +1,17 @@
+# Template file for 'python3-lsprotocol'
+pkgname=python3-lsprotocol
+version=0.0.0.20230918
+revision=1
+_version=2023.0.0b1
+build_style=python3-pep517
+hostmakedepends="python3-setuptools python3-wheel python3-flit_core"
+short_desc="Python implementation of the Language Server Protocol"
+maintainer="Cameron Nemo <cam@nohom.org>"
+license="MIT"
+homepage="https://github.com/microsoft/lsprotocol"
+distfiles="${PYPI_SITE}/l/lsprotocol/lsprotocol-${_version}.tar.gz"
+checksum=f7a2d4655cbd5639f373ddd1789807450c543341fa0a32b064ad30dbb9f510d4
+
+post_install() {
+	vlicense LICENSE
+}

From c4766bbd68cd75b7196f3bc90f38b1a74e56d72c Mon Sep 17 00:00:00 2001
From: Cameron Nemo <cam@nohom.org>
Date: Wed, 25 Oct 2023 13:21:12 -0700
Subject: [PATCH 5/5] New package: python3-lsp-ruff-1.6.0

Closes #46560
---
 srcpkgs/python3-lsp-ruff/template | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 srcpkgs/python3-lsp-ruff/template

diff --git a/srcpkgs/python3-lsp-ruff/template b/srcpkgs/python3-lsp-ruff/template
new file mode 100644
index 0000000000000..d413fd5c2bd11
--- /dev/null
+++ b/srcpkgs/python3-lsp-ruff/template
@@ -0,0 +1,22 @@
+# Template file for 'python3-lsp-ruff'
+pkgname=python3-lsp-ruff
+version=1.6.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools python3-setuptools_scm python3-wheel"
+depends="python3-lsp-server python3-lsprotocol python3-cattrs ruff"
+checkdepends="${depends} python3-pytest"
+short_desc="Python implementation of the Language Server Protocol"
+maintainer="Cameron Nemo <cam@nohom.org>"
+license="MIT"
+homepage="https://github.com/python-lsp/python-lsp-ruff"
+distfiles="${PYPI_SITE}/p/python-lsp-ruff/python-lsp-ruff-${version}.tar.gz"
+checksum=bdfdd9359c9e9f55b6f6a938493d6cbace554dccacf45df4ebb36552be34e9b8
+
+do_check() {
+	python3 -m pytest
+}
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR PATCH] [Updated] New package: python3-lsp-ruff
  2023-10-25 20:24 [PR PATCH] New package: python3-lsp-ruff CameronNemo
@ 2023-10-25 23:05 ` CameronNemo
  2023-10-26 18:20 ` icp1994
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: CameronNemo @ 2023-10-25 23:05 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1486 bytes --]

There is an updated pull request by CameronNemo against master on the void-packages repository

https://github.com/CameronNemo/void-packages ruff
https://github.com/void-linux/void-packages/pull/46896

New package: python3-lsp-ruff
- ruff: update to 0.1.2, install python module
- python3-lsp-server: update to 1.8.2
- New package: python3-cattrs-23.1.2
- New package: python3-lsprotocol-0.0.0.20230918
- New package: python3-lsp-ruff-1.6.0

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**, system-level

Closes: #46560
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/46896.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-ruff-46896.patch --]
[-- Type: text/x-diff, Size: 6321 bytes --]

From cbce198b113803dc6c0a2b3e463511dc5f7f6abc Mon Sep 17 00:00:00 2001
From: Cameron Nemo <cam@nohom.org>
Date: Wed, 25 Oct 2023 09:17:11 -0700
Subject: [PATCH 1/5] ruff: update to 0.1.2, install python module

Ruff should ship with a python module for consumption via Python tooling
(including language servers).

Adjust the build_style et al to install the python module.
---
 srcpkgs/ruff/template | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/ruff/template b/srcpkgs/ruff/template
index 295d35d9bfaf6..a491ca491700d 100644
--- a/srcpkgs/ruff/template
+++ b/srcpkgs/ruff/template
@@ -1,17 +1,18 @@
 # Template file for 'ruff'
 pkgname=ruff
-version=0.1.0
+version=0.1.2
 revision=1
-build_style=cargo
-configure_args="--bin ruff"
-make_install_args="--path crates/ruff_cli"
+build_helper=rust
+build_style="python3-pep517"
+hostmakedepends="maturin cargo python3-wheel"
+makedepends="rust-std"
 short_desc="Extremely fast Python linter, written in Rust"
 maintainer="icp <pangolin@vivaldi.net>"
 license="MIT"
 homepage="https://docs.astral.sh/ruff/"
 changelog="https://raw.githubusercontent.com/astral-sh/ruff/main/CHANGELOG.md"
 distfiles="https://github.com/astral-sh/ruff/archive/refs/tags/v${version}.tar.gz"
-checksum=b6f1467505acc99dcec7d67ff9dbcd00c63a39f338e09705a90a90205c8553d4
+checksum=2135ea2f647a17e9060a3ca10f6df2be9e37ae87c864fe79dd3c067ba6ee57b2
 
 post_install() {
 	vlicense LICENSE

From 1fb325484b7c7820806d699a4514978dad63a2e1 Mon Sep 17 00:00:00 2001
From: Cameron Nemo <cam@nohom.org>
Date: Wed, 25 Oct 2023 13:15:57 -0700
Subject: [PATCH 2/5] python3-lsp-server: update to 1.8.2

---
 srcpkgs/python3-lsp-server/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-lsp-server/template b/srcpkgs/python3-lsp-server/template
index 721618b1ed54c..b2edb12d91bcb 100644
--- a/srcpkgs/python3-lsp-server/template
+++ b/srcpkgs/python3-lsp-server/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-lsp-server'
 pkgname=python3-lsp-server
-version=1.8.0
-revision=2
+version=1.8.2
+revision=1
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-setuptools_scm python3-wheel"
 depends="python3-jedi python3-pluggy python3-lsp-jsonrpc python3-ultrajson
@@ -16,7 +16,7 @@ license="MIT"
 homepage="https://github.com/python-lsp/python-lsp-server"
 changelog="https://raw.githubusercontent.com/python-lsp/python-lsp-server/develop/CHANGELOG.md"
 distfiles="${PYPI_SITE}/p/python-lsp-server/python-lsp-server-${version}.tar.gz"
-checksum=807b0347cf83f02cbd9113a68624ac5dbf8b01854a3b11dd03c3bbbdff4e5d89
+checksum=fd85e1c6ad95c1d276c82a33c2c85898f110afc3c7bfeaced79c0df095076fd1
 
 do_check() {
 	python3 -m pytest \

From 007bb5b253706f0d06c84f9d00ec7f1bcb9e4c71 Mon Sep 17 00:00:00 2001
From: Cameron Nemo <cam@nohom.org>
Date: Wed, 25 Oct 2023 13:20:06 -0700
Subject: [PATCH 3/5] New package: python3-cattrs-23.1.2

---
 srcpkgs/python3-cattrs/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/python3-cattrs/template

diff --git a/srcpkgs/python3-cattrs/template b/srcpkgs/python3-cattrs/template
new file mode 100644
index 0000000000000..641a002615955
--- /dev/null
+++ b/srcpkgs/python3-cattrs/template
@@ -0,0 +1,17 @@
+# Template file for 'python3-cattrs'
+pkgname=python3-cattrs
+version=23.1.2
+revision=1
+build_style=python3-pep517
+hostmakedepends="python3-poetry-core"
+depends="python3-attrs"
+short_desc="Composable complex class support for attrs and dataclasses"
+maintainer="Cameron Nemo <cam@nohom.org>"
+license="MIT"
+homepage="https://github.com/python-attrs/cattrs"
+distfiles="${PYPI_SITE}/c/cattrs/cattrs-${version}.tar.gz"
+checksum=db1c821b8c537382b2c7c66678c3790091ca0275ac486c76f3c8f3920e83c657
+
+post_install() {
+	vlicense LICENSE
+}

From 15bec9ac55cd177a282386ec22232a13ce08f486 Mon Sep 17 00:00:00 2001
From: Cameron Nemo <cam@nohom.org>
Date: Wed, 25 Oct 2023 13:20:27 -0700
Subject: [PATCH 4/5] New package: python3-lsprotocol-0.0.0.20230918

---
 srcpkgs/python3-lsprotocol/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/python3-lsprotocol/template

diff --git a/srcpkgs/python3-lsprotocol/template b/srcpkgs/python3-lsprotocol/template
new file mode 100644
index 0000000000000..2b339b5e48a8c
--- /dev/null
+++ b/srcpkgs/python3-lsprotocol/template
@@ -0,0 +1,17 @@
+# Template file for 'python3-lsprotocol'
+pkgname=python3-lsprotocol
+version=0.0.0.20230918
+revision=1
+_version=2023.0.0b1
+build_style=python3-pep517
+hostmakedepends="python3-setuptools python3-wheel python3-flit_core"
+short_desc="Python implementation of the Language Server Protocol"
+maintainer="Cameron Nemo <cam@nohom.org>"
+license="MIT"
+homepage="https://github.com/microsoft/lsprotocol"
+distfiles="${PYPI_SITE}/l/lsprotocol/lsprotocol-${_version}.tar.gz"
+checksum=f7a2d4655cbd5639f373ddd1789807450c543341fa0a32b064ad30dbb9f510d4
+
+post_install() {
+	vlicense LICENSE
+}

From 65259ebf45d84cb0dcdac9d106dea129d03649bf Mon Sep 17 00:00:00 2001
From: Cameron Nemo <cam@nohom.org>
Date: Wed, 25 Oct 2023 13:21:12 -0700
Subject: [PATCH 5/5] New package: python3-lsp-ruff-1.6.0

Closes #46560
---
 srcpkgs/python3-lsp-ruff/template | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 srcpkgs/python3-lsp-ruff/template

diff --git a/srcpkgs/python3-lsp-ruff/template b/srcpkgs/python3-lsp-ruff/template
new file mode 100644
index 0000000000000..d413fd5c2bd11
--- /dev/null
+++ b/srcpkgs/python3-lsp-ruff/template
@@ -0,0 +1,22 @@
+# Template file for 'python3-lsp-ruff'
+pkgname=python3-lsp-ruff
+version=1.6.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools python3-setuptools_scm python3-wheel"
+depends="python3-lsp-server python3-lsprotocol python3-cattrs ruff"
+checkdepends="${depends} python3-pytest"
+short_desc="Python implementation of the Language Server Protocol"
+maintainer="Cameron Nemo <cam@nohom.org>"
+license="MIT"
+homepage="https://github.com/python-lsp/python-lsp-ruff"
+distfiles="${PYPI_SITE}/p/python-lsp-ruff/python-lsp-ruff-${version}.tar.gz"
+checksum=bdfdd9359c9e9f55b6f6a938493d6cbace554dccacf45df4ebb36552be34e9b8
+
+do_check() {
+	python3 -m pytest
+}
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: New package: python3-lsp-ruff
  2023-10-25 20:24 [PR PATCH] New package: python3-lsp-ruff CameronNemo
  2023-10-25 23:05 ` [PR PATCH] [Updated] " CameronNemo
@ 2023-10-26 18:20 ` icp1994
  2023-10-30 15:38 ` [PR PATCH] [Updated] " CameronNemo
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: icp1994 @ 2023-10-26 18:20 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 243 bytes --]

New comment by icp1994 on void-packages repository

https://github.com/void-linux/void-packages/pull/46896#issuecomment-1781623267

Comment:
Extracted the ruff update in a separate [PR](https://github.com/void-linux/void-packages/pull/46914).

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR PATCH] [Updated] New package: python3-lsp-ruff
  2023-10-25 20:24 [PR PATCH] New package: python3-lsp-ruff CameronNemo
  2023-10-25 23:05 ` [PR PATCH] [Updated] " CameronNemo
  2023-10-26 18:20 ` icp1994
@ 2023-10-30 15:38 ` CameronNemo
  2023-10-30 15:39 ` CameronNemo
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: CameronNemo @ 2023-10-30 15:38 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1486 bytes --]

There is an updated pull request by CameronNemo against master on the void-packages repository

https://github.com/CameronNemo/void-packages ruff
https://github.com/void-linux/void-packages/pull/46896

New package: python3-lsp-ruff
- ruff: update to 0.1.2, install python module
- python3-lsp-server: update to 1.8.2
- New package: python3-cattrs-23.1.2
- New package: python3-lsprotocol-0.0.0.20230918
- New package: python3-lsp-ruff-1.6.0

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**, system-level

Closes: #46560
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/46896.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-ruff-46896.patch --]
[-- Type: text/x-diff, Size: 4871 bytes --]

From 9730611b0db5d5acb9ec83bb1fc525b395f39824 Mon Sep 17 00:00:00 2001
From: Cameron Nemo <cam@nohom.org>
Date: Wed, 25 Oct 2023 13:15:57 -0700
Subject: [PATCH 1/4] python3-lsp-server: update to 1.8.2

---
 srcpkgs/python3-lsp-server/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-lsp-server/template b/srcpkgs/python3-lsp-server/template
index 721618b1ed54c..b2edb12d91bcb 100644
--- a/srcpkgs/python3-lsp-server/template
+++ b/srcpkgs/python3-lsp-server/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-lsp-server'
 pkgname=python3-lsp-server
-version=1.8.0
-revision=2
+version=1.8.2
+revision=1
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-setuptools_scm python3-wheel"
 depends="python3-jedi python3-pluggy python3-lsp-jsonrpc python3-ultrajson
@@ -16,7 +16,7 @@ license="MIT"
 homepage="https://github.com/python-lsp/python-lsp-server"
 changelog="https://raw.githubusercontent.com/python-lsp/python-lsp-server/develop/CHANGELOG.md"
 distfiles="${PYPI_SITE}/p/python-lsp-server/python-lsp-server-${version}.tar.gz"
-checksum=807b0347cf83f02cbd9113a68624ac5dbf8b01854a3b11dd03c3bbbdff4e5d89
+checksum=fd85e1c6ad95c1d276c82a33c2c85898f110afc3c7bfeaced79c0df095076fd1
 
 do_check() {
 	python3 -m pytest \

From 1d6317e04e9c316cdce6df5ecfc662848f4b13a5 Mon Sep 17 00:00:00 2001
From: Cameron Nemo <cam@nohom.org>
Date: Wed, 25 Oct 2023 13:20:06 -0700
Subject: [PATCH 2/4] New package: python3-cattrs-23.1.2

---
 srcpkgs/python3-cattrs/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/python3-cattrs/template

diff --git a/srcpkgs/python3-cattrs/template b/srcpkgs/python3-cattrs/template
new file mode 100644
index 0000000000000..641a002615955
--- /dev/null
+++ b/srcpkgs/python3-cattrs/template
@@ -0,0 +1,17 @@
+# Template file for 'python3-cattrs'
+pkgname=python3-cattrs
+version=23.1.2
+revision=1
+build_style=python3-pep517
+hostmakedepends="python3-poetry-core"
+depends="python3-attrs"
+short_desc="Composable complex class support for attrs and dataclasses"
+maintainer="Cameron Nemo <cam@nohom.org>"
+license="MIT"
+homepage="https://github.com/python-attrs/cattrs"
+distfiles="${PYPI_SITE}/c/cattrs/cattrs-${version}.tar.gz"
+checksum=db1c821b8c537382b2c7c66678c3790091ca0275ac486c76f3c8f3920e83c657
+
+post_install() {
+	vlicense LICENSE
+}

From 5a3c3116596586d01b45b2a28f3bf98c6cd19abf Mon Sep 17 00:00:00 2001
From: Cameron Nemo <cam@nohom.org>
Date: Wed, 25 Oct 2023 13:20:27 -0700
Subject: [PATCH 3/4] New package: python3-lsprotocol-0.0.0.20230918

---
 srcpkgs/python3-lsprotocol/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/python3-lsprotocol/template

diff --git a/srcpkgs/python3-lsprotocol/template b/srcpkgs/python3-lsprotocol/template
new file mode 100644
index 0000000000000..2b339b5e48a8c
--- /dev/null
+++ b/srcpkgs/python3-lsprotocol/template
@@ -0,0 +1,17 @@
+# Template file for 'python3-lsprotocol'
+pkgname=python3-lsprotocol
+version=0.0.0.20230918
+revision=1
+_version=2023.0.0b1
+build_style=python3-pep517
+hostmakedepends="python3-setuptools python3-wheel python3-flit_core"
+short_desc="Python implementation of the Language Server Protocol"
+maintainer="Cameron Nemo <cam@nohom.org>"
+license="MIT"
+homepage="https://github.com/microsoft/lsprotocol"
+distfiles="${PYPI_SITE}/l/lsprotocol/lsprotocol-${_version}.tar.gz"
+checksum=f7a2d4655cbd5639f373ddd1789807450c543341fa0a32b064ad30dbb9f510d4
+
+post_install() {
+	vlicense LICENSE
+}

From 6d526c1ecdcf4d00285da94f7b87a8f919341d34 Mon Sep 17 00:00:00 2001
From: Cameron Nemo <cam@nohom.org>
Date: Wed, 25 Oct 2023 13:21:12 -0700
Subject: [PATCH 4/4] New package: python3-lsp-ruff-1.6.0

Closes #46560
---
 srcpkgs/python3-lsp-ruff/template | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 srcpkgs/python3-lsp-ruff/template

diff --git a/srcpkgs/python3-lsp-ruff/template b/srcpkgs/python3-lsp-ruff/template
new file mode 100644
index 0000000000000..d413fd5c2bd11
--- /dev/null
+++ b/srcpkgs/python3-lsp-ruff/template
@@ -0,0 +1,22 @@
+# Template file for 'python3-lsp-ruff'
+pkgname=python3-lsp-ruff
+version=1.6.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools python3-setuptools_scm python3-wheel"
+depends="python3-lsp-server python3-lsprotocol python3-cattrs ruff"
+checkdepends="${depends} python3-pytest"
+short_desc="Python implementation of the Language Server Protocol"
+maintainer="Cameron Nemo <cam@nohom.org>"
+license="MIT"
+homepage="https://github.com/python-lsp/python-lsp-ruff"
+distfiles="${PYPI_SITE}/p/python-lsp-ruff/python-lsp-ruff-${version}.tar.gz"
+checksum=bdfdd9359c9e9f55b6f6a938493d6cbace554dccacf45df4ebb36552be34e9b8
+
+do_check() {
+	python3 -m pytest
+}
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: New package: python3-lsp-ruff
  2023-10-25 20:24 [PR PATCH] New package: python3-lsp-ruff CameronNemo
                   ` (2 preceding siblings ...)
  2023-10-30 15:38 ` [PR PATCH] [Updated] " CameronNemo
@ 2023-10-30 15:39 ` CameronNemo
  2024-01-29  1:45 ` github-actions
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: CameronNemo @ 2023-10-30 15:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 180 bytes --]

New comment by CameronNemo on void-packages repository

https://github.com/void-linux/void-packages/pull/46896#issuecomment-1785488623

Comment:
Rebased following merge of #46914 

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: New package: python3-lsp-ruff
  2023-10-25 20:24 [PR PATCH] New package: python3-lsp-ruff CameronNemo
                   ` (3 preceding siblings ...)
  2023-10-30 15:39 ` CameronNemo
@ 2024-01-29  1:45 ` github-actions
  2024-02-13  1:45 ` [PR PATCH] [Closed]: " github-actions
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: github-actions @ 2024-01-29  1:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 305 bytes --]

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/46896#issuecomment-1913823725

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR PATCH] [Closed]: New package: python3-lsp-ruff
  2023-10-25 20:24 [PR PATCH] New package: python3-lsp-ruff CameronNemo
                   ` (4 preceding siblings ...)
  2024-01-29  1:45 ` github-actions
@ 2024-02-13  1:45 ` github-actions
  2024-02-13 15:39 ` CameronNemo
  2024-02-13 15:39 ` CameronNemo
  7 siblings, 0 replies; 9+ messages in thread
From: github-actions @ 2024-02-13  1:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1277 bytes --]

There's a closed pull request on the void-packages repository

New package: python3-lsp-ruff
https://github.com/void-linux/void-packages/pull/46896

Description:
- python3-lsp-server: update to 1.8.2
- New package: python3-cattrs-23.1.2
- New package: python3-lsprotocol-0.0.0.20230918
- New package: python3-lsp-ruff-1.6.0

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**, system-level

Closes: #46560
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: New package: python3-lsp-ruff
  2023-10-25 20:24 [PR PATCH] New package: python3-lsp-ruff CameronNemo
                   ` (5 preceding siblings ...)
  2024-02-13  1:45 ` [PR PATCH] [Closed]: " github-actions
@ 2024-02-13 15:39 ` CameronNemo
  2024-02-13 15:39 ` CameronNemo
  7 siblings, 0 replies; 9+ messages in thread
From: CameronNemo @ 2024-02-13 15:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 149 bytes --]

New comment by CameronNemo on void-packages repository

https://github.com/void-linux/void-packages/pull/46896#issuecomment-1941812766

Comment:
RIP

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: New package: python3-lsp-ruff
  2023-10-25 20:24 [PR PATCH] New package: python3-lsp-ruff CameronNemo
                   ` (6 preceding siblings ...)
  2024-02-13 15:39 ` CameronNemo
@ 2024-02-13 15:39 ` CameronNemo
  7 siblings, 0 replies; 9+ messages in thread
From: CameronNemo @ 2024-02-13 15:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 175 bytes --]

New comment by CameronNemo on void-packages repository

https://github.com/void-linux/void-packages/pull/46896#issuecomment-1941812766

Comment:
RIP. I forked yall again lol.

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2024-02-13 15:39 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-25 20:24 [PR PATCH] New package: python3-lsp-ruff CameronNemo
2023-10-25 23:05 ` [PR PATCH] [Updated] " CameronNemo
2023-10-26 18:20 ` icp1994
2023-10-30 15:38 ` [PR PATCH] [Updated] " CameronNemo
2023-10-30 15:39 ` CameronNemo
2024-01-29  1:45 ` github-actions
2024-02-13  1:45 ` [PR PATCH] [Closed]: " github-actions
2024-02-13 15:39 ` CameronNemo
2024-02-13 15:39 ` CameronNemo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).