* [gentoo-commits] repo/gentoo:master commit in: dev-python/anyioutils/
@ 2025-03-08 7:24 Michał Górny
0 siblings, 0 replies; 8+ messages in thread
From: Michał Górny @ 2025-03-08 7:24 UTC (permalink / raw
To: gentoo-commits
commit: 6566c483cc5db9dd076e52d7b21c4fc2969f7b7d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 8 06:34:47 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 8 07:24:13 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6566c483
dev-python/anyioutils: New package, v0.7.1
Needed by dev-python/zmq-anyio, which is needed by dev-python/ipykernel.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/anyioutils/Manifest | 1 +
dev-python/anyioutils/anyioutils-0.7.1.ebuild | 46 +++++++++++++++++++++++++++
dev-python/anyioutils/metadata.xml | 12 +++++++
3 files changed, 59 insertions(+)
diff --git a/dev-python/anyioutils/Manifest b/dev-python/anyioutils/Manifest
new file mode 100644
index 000000000000..48bdc3038742
--- /dev/null
+++ b/dev-python/anyioutils/Manifest
@@ -0,0 +1 @@
+DIST anyioutils-0.7.1.tar.gz 14675 BLAKE2B 7b1d983613b3c770af9c09eabf2332651fce30a1bbc58e63e6a9a7e2bd97c6c59591927f034d0fde97454aae6b7fcf23dced19cb2cc64ac58ed1f1b7ed110fd5 SHA512 f259ee78c31b15f4f827158d251471229a4b1fb280cca6e0f08edadc4bde27d7e991cd27c13aae2510a63f33410f5e96f656b95ce65dd72d91e572df5c62703b
diff --git a/dev-python/anyioutils/anyioutils-0.7.1.ebuild b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
new file mode 100644
index 000000000000..1fa0866183c5
--- /dev/null
+++ b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 pypy3_11 python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Utility classes and functions for AnyIO"
+HOMEPAGE="
+ https://github.com/davidbrochart/anyioutils/
+ https://pypi.org/project/anyioutils/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ <dev-python/anyio-5[${PYTHON_USEDEP}]
+ >=dev-python/anyio-4.8.0[${PYTHON_USEDEP}]
+ <dev-python/outcome-2[${PYTHON_USEDEP}]
+ >=dev-python/outcome-1.3.0[${PYTHON_USEDEP}]
+ $(python_gen_cond_dep '
+ dev-python/exceptiongroup[${PYTHON_USEDEP}]
+ ' 3.10)
+"
+BDEPEND="
+ test? (
+ dev-python/trio[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+ local EPYTEST_DESELECT=(
+ # requires aioguest
+ tests/test_guest.py::test_host_trivial_guest_asyncio
+ )
+
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest -p anyio
+}
diff --git a/dev-python/anyioutils/metadata.xml b/dev-python/anyioutils/metadata.xml
new file mode 100644
index 000000000000..1ab064557a8d
--- /dev/null
+++ b/dev-python/anyioutils/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>python@gentoo.org</email>
+ </maintainer>
+ <stabilize-allarches/>
+ <upstream>
+ <remote-id type="github">davidbrochart/anyioutils</remote-id>
+ <remote-id type="pypi">anyioutils</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/anyioutils/
@ 2025-03-08 16:35 Michał Górny
0 siblings, 0 replies; 8+ messages in thread
From: Michał Górny @ 2025-03-08 16:35 UTC (permalink / raw
To: gentoo-commits
commit: 78cbdd4a820c1da7cfcef0755eaf32a4d85b3ae9
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 8 16:35:18 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 8 16:35:18 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78cbdd4a
dev-python/anyioutils: Support testing without dev-python/trio
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/anyioutils/anyioutils-0.7.1.ebuild | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/dev-python/anyioutils/anyioutils-0.7.1.ebuild b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
index 1fa0866183c5..618c543b9792 100644
--- a/dev-python/anyioutils/anyioutils-0.7.1.ebuild
+++ b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
@@ -17,6 +17,7 @@ HOMEPAGE="
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
+IUSE="test-rust"
RDEPEND="
<dev-python/anyio-5[${PYTHON_USEDEP}]
@@ -29,7 +30,9 @@ RDEPEND="
"
BDEPEND="
test? (
- dev-python/trio[${PYTHON_USEDEP}]
+ test-rust? (
+ dev-python/trio[${PYTHON_USEDEP}]
+ )
)
"
@@ -40,7 +43,14 @@ python_test() {
# requires aioguest
tests/test_guest.py::test_host_trivial_guest_asyncio
)
+ local EPYTEST_IGNORE=()
+
+ local args=()
+ if ! has_version "dev-python/trio[${PYTHON_USEDEP}]"; then
+ EPYTEST_IGNORE+=( tests/test_guest.py )
+ args+=( -k "not trio" )
+ fi
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest -p anyio
+ epytest -p anyio "${args[@]}"
}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/anyioutils/
@ 2025-03-08 17:05 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2025-03-08 17:05 UTC (permalink / raw
To: gentoo-commits
commit: 8e4c4a63cd8d3f8037f4d9d229ebb1ebb39a7575
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 8 17:04:32 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 8 17:04:55 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e4c4a63
dev-python/anyioutils: Keyword 0.7.1 arm64, #950948
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/anyioutils/anyioutils-0.7.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/anyioutils/anyioutils-0.7.1.ebuild b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
index ebd242383b50..16d5d65f4c92 100644
--- a/dev-python/anyioutils/anyioutils-0.7.1.ebuild
+++ b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm"
+KEYWORDS="~amd64 ~arm ~arm64"
IUSE="test-rust"
RDEPEND="
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/anyioutils/
@ 2025-03-08 17:05 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2025-03-08 17:05 UTC (permalink / raw
To: gentoo-commits
commit: 7bd9ab5980820c50c0eaa2f8678c1352917c3fc8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 8 17:04:25 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 8 17:04:52 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bd9ab59
dev-python/anyioutils: Keyword 0.7.1 arm, #950948
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/anyioutils/anyioutils-0.7.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/anyioutils/anyioutils-0.7.1.ebuild b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
index 618c543b9792..ebd242383b50 100644
--- a/dev-python/anyioutils/anyioutils-0.7.1.ebuild
+++ b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm"
IUSE="test-rust"
RDEPEND="
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/anyioutils/
@ 2025-03-08 17:05 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2025-03-08 17:05 UTC (permalink / raw
To: gentoo-commits
commit: 3cbb05162b2362c4fc8593de13a80f7be0134aae
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 8 17:04:38 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 8 17:04:59 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cbb0516
dev-python/anyioutils: Keyword 0.7.1 sparc, #950948
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/anyioutils/anyioutils-0.7.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/anyioutils/anyioutils-0.7.1.ebuild b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
index 16d5d65f4c92..b8300fa64757 100644
--- a/dev-python/anyioutils/anyioutils-0.7.1.ebuild
+++ b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64"
+KEYWORDS="~amd64 ~arm ~arm64 ~sparc"
IUSE="test-rust"
RDEPEND="
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/anyioutils/
@ 2025-03-08 21:40 Jakov Smolić
0 siblings, 0 replies; 8+ messages in thread
From: Jakov Smolić @ 2025-03-08 21:40 UTC (permalink / raw
To: gentoo-commits
commit: 29e3de50b19705ef0e31353434867cf6e76bc1a7
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 8 21:40:36 2025 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Mar 8 21:40:36 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29e3de50
dev-python/anyioutils: Keyword 0.7.1 x86, #950948
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-python/anyioutils/anyioutils-0.7.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/anyioutils/anyioutils-0.7.1.ebuild b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
index b8300fa64757..dd3401fb6f15 100644
--- a/dev-python/anyioutils/anyioutils-0.7.1.ebuild
+++ b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~sparc ~x86"
IUSE="test-rust"
RDEPEND="
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/anyioutils/
@ 2025-03-08 21:47 Jakov Smolić
0 siblings, 0 replies; 8+ messages in thread
From: Jakov Smolić @ 2025-03-08 21:47 UTC (permalink / raw
To: gentoo-commits
commit: 78ad7ec0e96ade9cd75ca6e7c2b0d1cb441b1764
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 8 21:47:03 2025 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Mar 8 21:47:03 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78ad7ec0
dev-python/anyioutils: Keyword 0.7.1 riscv, #950948
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-python/anyioutils/anyioutils-0.7.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/anyioutils/anyioutils-0.7.1.ebuild b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
index dd3401fb6f15..2829575feb2f 100644
--- a/dev-python/anyioutils/anyioutils-0.7.1.ebuild
+++ b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~sparc ~x86"
IUSE="test-rust"
RDEPEND="
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/anyioutils/
@ 2025-03-09 9:11 WANG Xuerui
0 siblings, 0 replies; 8+ messages in thread
From: WANG Xuerui @ 2025-03-09 9:11 UTC (permalink / raw
To: gentoo-commits
commit: 0230568534c4559442433799293a6afbe6fdad13
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 9 09:01:15 2025 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Sun Mar 9 09:08:43 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02305685
dev-python/anyioutils: keyword 0.7.1 for ~loong, #950948
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
dev-python/anyioutils/anyioutils-0.7.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/anyioutils/anyioutils-0.7.1.ebuild b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
index 2829575feb2f..5fe476a667a6 100644
--- a/dev-python/anyioutils/anyioutils-0.7.1.ebuild
+++ b/dev-python/anyioutils/anyioutils-0.7.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~sparc ~x86"
IUSE="test-rust"
RDEPEND="
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-03-09 9:11 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-08 17:05 [gentoo-commits] repo/gentoo:master commit in: dev-python/anyioutils/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2025-03-09 9:11 WANG Xuerui
2025-03-08 21:47 Jakov Smolić
2025-03-08 21:40 Jakov Smolić
2025-03-08 17:05 Sam James
2025-03-08 17:05 Sam James
2025-03-08 16:35 Michał Górny
2025-03-08 7:24 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox