public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zmq-anyio/
@ 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:     b5ce79c2c174abbdcbb2617d444c2d42ebee56d3
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 06:54:27 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 07:24:14 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5ce79c2

dev-python/zmq-anyio: New package, v0.3.6

New dependency of dev-python/ipykernel.  Of course it breaks PyPy
support.

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/zmq-anyio/Manifest               |  1 +
 dev-python/zmq-anyio/metadata.xml           | 12 +++++++++
 dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild | 41 +++++++++++++++++++++++++++++
 3 files changed, 54 insertions(+)

diff --git a/dev-python/zmq-anyio/Manifest b/dev-python/zmq-anyio/Manifest
new file mode 100644
index 000000000000..c490424fa90e
--- /dev/null
+++ b/dev-python/zmq-anyio/Manifest
@@ -0,0 +1 @@
+DIST zmq_anyio-0.3.6.tar.gz 12910 BLAKE2B d32307d3a137b8490eff2e4b39238943f567579239369d4e700c2342163971b5a1e1caa9f8caf888f0935229d3e5e7edbc7886a507678dcdf175446f27db7b58 SHA512 7d5141bfd05dfab89da9f7624ef87f74cdb95bd5d1620423b7dc6b30b65f2f5ecee2208a4fec103caad71f10d8ca6fb92716e491402722bccd9d8aa820855f6a

diff --git a/dev-python/zmq-anyio/metadata.xml b/dev-python/zmq-anyio/metadata.xml
new file mode 100644
index 000000000000..1b509a78795d
--- /dev/null
+++ b/dev-python/zmq-anyio/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/zmq-anyio</remote-id>
+		<remote-id type="pypi">zmq-anyio</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
new file mode 100644
index 000000000000..54f2c49422a4
--- /dev/null
+++ b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+# PyPy: https://github.com/davidbrochart/zmq-anyio/issues/22
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Asynchronous API for ZMQ using AnyIO"
+HOMEPAGE="
+	https://github.com/davidbrochart/zmq-anyio/
+	https://pypi.org/project/zmq-anyio/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	<dev-python/anyio-5[${PYTHON_USEDEP}]
+	>=dev-python/anyio-4.8.0[${PYTHON_USEDEP}]
+	<dev-python/anyioutils-0.8[${PYTHON_USEDEP}]
+	>=dev-python/anyioutils-0.7.1[${PYTHON_USEDEP}]
+	<dev-python/pyzmq-27[${PYTHON_USEDEP}]
+	>=dev-python/pyzmq-26.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+	test? (
+		>=dev-python/trio-0.27.0[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+	epytest -p anyio
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/zmq-anyio/
@ 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:     32c4eb987cf4216b877b9c4efb54060fcd6415a5
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 16:32:51 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 16:32:51 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32c4eb98

dev-python/zmq-anyio: Support testing without dev-python/trio

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
index 179d64d478c6..2ab466b4a87a 100644
--- a/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
+++ b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
@@ -17,6 +17,7 @@ HOMEPAGE="
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
+IUSE="test-rust"
 
 RDEPEND="
 	<dev-python/anyio-5[${PYTHON_USEDEP}]
@@ -28,7 +29,9 @@ RDEPEND="
 "
 BDEPEND="
 	test? (
-		>=dev-python/trio-0.27.0[${PYTHON_USEDEP}]
+		test-rust? (
+			>=dev-python/trio-0.27.0[${PYTHON_USEDEP}]
+		)
 	)
 "
 
@@ -40,6 +43,11 @@ PATCHES=(
 )
 
 python_test() {
+	local args=()
+	if ! has_version "dev-python/trio[${PYTHON_USEDEP}]"; then
+		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/zmq-anyio/
@ 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:     b60cf0130451a0d61060bb8a8fd45b613e685fb7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 17:04:23 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 17:04:51 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b60cf013

dev-python/zmq-anyio: Keyword 0.3.6 arm, #950948

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
index 2ab466b4a87a..5153d69fd654 100644
--- a/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
+++ b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 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/zmq-anyio/
@ 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:     ca2df0c5d89dffa43d53422f24d675be93926ae3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 17:04:29 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 17:04:54 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca2df0c5

dev-python/zmq-anyio: Keyword 0.3.6 arm64, #950948

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
index 5153d69fd654..b79e7d1a6a4f 100644
--- a/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
+++ b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 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/zmq-anyio/
@ 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:     b686cc0c3fc423ca46f9688342b0bcf906b15d83
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 17:04:35 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 17:04:57 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b686cc0c

dev-python/zmq-anyio: Keyword 0.3.6 sparc, #950948

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
index b79e7d1a6a4f..af7f94f2ad15 100644
--- a/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
+++ b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 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/zmq-anyio/
@ 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:     184f78c6f88e68d0baa059930fd557793a912ee7
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 21:40:35 2025 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 21:40:35 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=184f78c6

dev-python/zmq-anyio: Keyword 0.3.6 x86, #950948

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
index af7f94f2ad15..39335f8cd428 100644
--- a/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
+++ b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 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/zmq-anyio/
@ 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:     64e370e3bca6472432ae4b775cd663fb98ca7634
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 21:47:04 2025 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 21:47:04 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64e370e3

dev-python/zmq-anyio: Keyword 0.3.6 riscv, #950948

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
index 39335f8cd428..3616b8770865 100644
--- a/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
+++ b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 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/zmq-anyio/
@ 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:     b7dd32553a296f4dcc9e38e4d83bd71a5579b9f0
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Sun Mar  9 09:01:21 2025 +0000
Commit:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Sun Mar  9 09:08:54 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7dd3255

dev-python/zmq-anyio: keyword 0.3.6 for ~loong, #950948

Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>

 dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
index 3616b8770865..186a771a545f 100644
--- a/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
+++ b/dev-python/zmq-anyio/zmq-anyio-0.3.6.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 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 21:47 [gentoo-commits] repo/gentoo:master commit in: dev-python/zmq-anyio/ Jakov Smolić
  -- strict thread matches above, loose matches on Subject: below --
2025-03-09  9:11 WANG Xuerui
2025-03-08 21:40 Jakov Smolić
2025-03-08 17:05 Sam James
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