Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] python3-h11: update to 0.16.0.
@ 2025-05-02  0:23 tornaria
  2025-05-02  0:25 ` tornaria
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: tornaria @ 2025-05-02  0:23 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tornaria/void-packages h11
https://github.com/void-linux/void-packages/pull/55230

python3-h11: update to 0.16.0.
<!-- Uncomment relevant sections and delete options which are not applicable -->

This is missing to match the update of `python3-httpcore` to 1.0.9.

Running `pip check` gives
```
httpcore 1.0.9 has requirement h11>=0.16, but you have h11 0.14.0.
```
but the same information can be found using only `python3-build` as in:
```
$ python -c 'from build._util import check_dependency;print(*check_dependency("httpcore"),sep="\n")'
('httpcore', 'h11>=0.16')
```


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

<!--
#### 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/55230.patch is attached

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

From 39852b4048576ade54c73ebfed2a41d86bd37f7d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Thu, 1 May 2025 21:13:11 -0300
Subject: [PATCH] python3-h11: update to 0.16.0.

---
 srcpkgs/python3-h11/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-h11/template b/srcpkgs/python3-h11/template
index 2fc75c07290e11..aaf4032d6e8541 100644
--- a/srcpkgs/python3-h11/template
+++ b/srcpkgs/python3-h11/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-h11'
 pkgname=python3-h11
-version=0.14.0
-revision=3
-build_style=python3-module
+version=0.16.0
+revision=1
+build_style=python3-pep517
 hostmakedepends="python3-setuptools"
 depends="python3"
 checkdepends="python3-pytest"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
 homepage="https://github.com/python-hyper/h11"
 distfiles="https://github.com/python-hyper/h11/archive/v${version}.tar.gz"
-checksum=d65a85d094b76846653fa7c3b45abdaf8b4f055c643bb6eec623f1311636a474
+checksum=d164114d09552ea887b5c9ed206d5a8e5bc0bf07d33e07a32622f91f102182c2
 
 post_install() {
 	vlicense LICENSE.txt

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

* Re: python3-h11: update to 0.16.0.
  2025-05-02  0:23 [PR PATCH] python3-h11: update to 0.16.0 tornaria
@ 2025-05-02  0:25 ` tornaria
  2025-05-02  0:32 ` tornaria
  2025-05-02  4:57 ` [PR PATCH] [Merged]: " classabbyamp
  2 siblings, 0 replies; 4+ messages in thread
From: tornaria @ 2025-05-02  0:25 UTC (permalink / raw)
  To: ml

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

New comment by tornaria on void-packages repository

https://github.com/void-linux/void-packages/pull/55230#issuecomment-2846052829

Comment:
@abenson fyi

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

* Re: python3-h11: update to 0.16.0.
  2025-05-02  0:23 [PR PATCH] python3-h11: update to 0.16.0 tornaria
  2025-05-02  0:25 ` tornaria
@ 2025-05-02  0:32 ` tornaria
  2025-05-02  4:57 ` [PR PATCH] [Merged]: " classabbyamp
  2 siblings, 0 replies; 4+ messages in thread
From: tornaria @ 2025-05-02  0:32 UTC (permalink / raw)
  To: ml

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

New comment by tornaria on void-packages repository

https://github.com/void-linux/void-packages/pull/55230#issuecomment-2846060952

Comment:
Note this cascades down to every dependency as in:
```
$ python -c 'from build._util import check_dependency;print(*check_dependency("jupyterlab"),sep="\n")'
('jupyterlab', 'httpx>=0.25.0', 'httpcore==1.*', 'h11>=0.16')
```

This means building any python package that requires `jupyterlab` in the `[build-system]` section of `pyproject.toml` will fail (case in point: I'm working on updating `python3-jupyter_notebook`).

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

* Re: [PR PATCH] [Merged]: python3-h11: update to 0.16.0.
  2025-05-02  0:23 [PR PATCH] python3-h11: update to 0.16.0 tornaria
  2025-05-02  0:25 ` tornaria
  2025-05-02  0:32 ` tornaria
@ 2025-05-02  4:57 ` classabbyamp
  2 siblings, 0 replies; 4+ messages in thread
From: classabbyamp @ 2025-05-02  4:57 UTC (permalink / raw)
  To: ml

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

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

python3-h11: update to 0.16.0.
https://github.com/void-linux/void-packages/pull/55230

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

This is missing to match the update of `python3-httpcore` to 1.0.9.

Running `pip check` gives
```
httpcore 1.0.9 has requirement h11>=0.16, but you have h11 0.14.0.
```
but the same information can be found using only `python3-build` as in:
```
$ python -c 'from build._util import check_dependency;print(*check_dependency("httpcore"),sep="\n")'
('httpcore', 'h11>=0.16')
```


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

<!--
#### 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
-->


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

end of thread, other threads:[~2025-05-02  4:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-02  0:23 [PR PATCH] python3-h11: update to 0.16.0 tornaria
2025-05-02  0:25 ` tornaria
2025-05-02  0:32 ` tornaria
2025-05-02  4:57 ` [PR PATCH] [Merged]: " classabbyamp

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).