* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-05-21 17:22 Michał Górny
0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2025-05-21 17:22 UTC (permalink / raw
To: gentoo-commits
commit: 84ec4e80fc8101cb1b483dcca510f54fa210fdc5
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 21 15:54:25 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 21 17:10:52 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84ec4e80
dev-python/blockbuster: New package, v1.5.24
New test dependency for dev-python/aiohttp.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/blockbuster/Manifest | 1 +
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 61 ++++++++++++++++++++++++
dev-python/blockbuster/metadata.xml | 12 +++++
3 files changed, 74 insertions(+)
diff --git a/dev-python/blockbuster/Manifest b/dev-python/blockbuster/Manifest
new file mode 100644
index 000000000000..a26c71f56aa6
--- /dev/null
+++ b/dev-python/blockbuster/Manifest
@@ -0,0 +1 @@
+DIST blockbuster-1.5.24.tar.gz 51245 BLAKE2B 6d1e6a66154603d0a485dd77041b24488a35f9b07ec7b833b3ef2893edaada798e1feca158ceed7ba347cfcc738adc52d846991ec90808aa6a523a03403988cd SHA512 f286c1fad7236783aae81111480a43c946819264c7584fe9cdc466cdfff0c63c5076a9c74397e5f37782f5957c68834a1db7640a5aeae2bc0a2961fc472e7824
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
new file mode 100644
index 000000000000..04581c0c4d1d
--- /dev/null
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -0,0 +1,61 @@
+# Copyright 2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Utility to detect blocking calls in the async event loop"
+HOMEPAGE="
+ https://github.com/cbornet/blockbuster/
+ https://pypi.org/project/blockbuster/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ $(python_gen_cond_dep '
+ >=dev-python/forbiddenfruit-0.1.4[${PYTHON_USEDEP}]
+ ' 'python*')
+"
+BDEPEND="
+ test? (
+ dev-python/aiofiles[${PYTHON_USEDEP}]
+ dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+ dev-python/requests[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+ local EPYTEST_DESELECT=(
+ # Internet
+ tests/test_blockbuster.py::test_ssl_socket
+ )
+
+ case ${EPYTHON} in
+ pypy3.11)
+ EPYTEST_DESELECT+=(
+ # upstream doesn't care, however that doesn't stop
+ # people from depending on it...
+ # https://github.com/cbornet/blockbuster/issues/47
+ tests/test_blockbuster.py::test_file_random
+ tests/test_blockbuster.py::test_file_read_bytes
+ tests/test_blockbuster.py::test_file_text
+ tests/test_blockbuster.py::test_file_write_bytes
+ tests/test_blockbuster.py::test_lock
+ tests/test_blockbuster.py::test_os_scandir
+ tests/test_blockbuster.py::test_scanned_modules
+ )
+ ;;
+ esac
+
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest -p asyncio
+}
diff --git a/dev-python/blockbuster/metadata.xml b/dev-python/blockbuster/metadata.xml
new file mode 100644
index 000000000000..b9312ebad483
--- /dev/null
+++ b/dev-python/blockbuster/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">cbornet/blockbuster</remote-id>
+ <remote-id type="pypi">blockbuster</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-05-23 3:22 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2025-05-23 3:22 UTC (permalink / raw
To: gentoo-commits
commit: b5e7e0a9e2abcaa52e7ab8effd17443c8cd9bc82
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May 23 03:22:01 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May 23 03:22:01 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5e7e0a9
dev-python/blockbuster: Keyword 1.5.24 arm64, #956473
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index 04581c0c4d1d..5f5ea8affb10 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-05-23 3:22 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2025-05-23 3:22 UTC (permalink / raw
To: gentoo-commits
commit: 93a35d4d373dfa7f17da2b5ed0bad8104c765502
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May 23 03:22:03 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May 23 03:22:03 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93a35d4d
dev-python/blockbuster: Keyword 1.5.24 alpha, #956473
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index 5f5ea8affb10..4cbc6b72b39c 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="~alpha ~amd64 ~arm64"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-05-23 3:22 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2025-05-23 3:22 UTC (permalink / raw
To: gentoo-commits
commit: 12522201d7c316a864d5c0451c2bdb00a639758d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May 23 03:22:05 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May 23 03:22:05 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12522201
dev-python/blockbuster: Keyword 1.5.24 arm, #956473
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index 4cbc6b72b39c..547c786b5172 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm64"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-05-23 3:22 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2025-05-23 3:22 UTC (permalink / raw
To: gentoo-commits
commit: b13d40e2bb4200188ce5b9773508af0c00ac18aa
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May 23 03:22:07 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May 23 03:22:07 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b13d40e2
dev-python/blockbuster: Keyword 1.5.24 x86, #956473
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index 547c786b5172..34785be272e1 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~x86"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-05-24 12:11 Jakov Smolić
0 siblings, 0 replies; 20+ messages in thread
From: Jakov Smolić @ 2025-05-24 12:11 UTC (permalink / raw
To: gentoo-commits
commit: 876d0cd36f0b83612cdbac7eac43b0afe22c90ef
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat May 24 12:11:26 2025 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat May 24 12:11:26 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=876d0cd3
dev-python/blockbuster: Keyword 1.5.24 riscv, #956473
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index 34785be272e1..fc6e4a889660 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~riscv ~x86"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-05-26 8:06 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2025-05-26 8:06 UTC (permalink / raw
To: gentoo-commits
commit: f0543a4676aadaa7f4b510e987de9f61f9579feb
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 26 08:06:13 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 26 08:06:13 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0543a46
dev-python/blockbuster: Keyword 1.5.24 mips, #956473
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index fc6e4a889660..3cda25e8d2d2 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~riscv ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~riscv ~x86"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-06-07 13:53 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2025-06-07 13:53 UTC (permalink / raw
To: gentoo-commits
commit: a41761412476e83c62bd2b38114ac49cb8197966
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 7 13:53:27 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jun 7 13:53:27 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4176141
dev-python/blockbuster: Keyword 1.5.24 s390, #956473
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index 3cda25e8d2d2..18b33e562561 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~riscv ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~riscv ~s390 ~x86"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-06-17 3:31 WANG Xuerui
0 siblings, 0 replies; 20+ messages in thread
From: WANG Xuerui @ 2025-06-17 3:31 UTC (permalink / raw
To: gentoo-commits
commit: b1be5e4d040cd98857d9db84875f88a95e4b8ec8
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 17 03:08:48 2025 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Tue Jun 17 03:28:58 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1be5e4d
dev-python/blockbuster: keyword 1.5.24 for ~loong, #956473
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index 18b33e562561..ec8cb17a3d7e 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~riscv ~s390 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~mips ~riscv ~s390 ~x86"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-06-21 7:44 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2025-06-21 7:44 UTC (permalink / raw
To: gentoo-commits
commit: 90c5184f3ec828512ff177efa0373cf16c42a4be
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 21 07:43:23 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jun 21 07:43:23 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90c5184f
dev-python/blockbuster: Keyword 1.5.24 ppc, #956473
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index ec8cb17a3d7e..82f1e1322815 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~mips ~riscv ~s390 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~riscv ~s390 ~x86"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-06-22 12:06 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2025-06-22 12:06 UTC (permalink / raw
To: gentoo-commits
commit: cebe3896fb98248ae3cbf83334c10dfede157b82
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 22 12:03:49 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 22 12:03:49 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cebe3896
dev-python/blockbuster: Keyword 1.5.24 hppa, #956473
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index fb5b795aca5b..21d4b50a7af5 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-06-22 12:06 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2025-06-22 12:06 UTC (permalink / raw
To: gentoo-commits
commit: 07b2298b86637ac6cc93fce664b081d0e81d3232
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 22 12:03:52 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 22 12:03:52 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b2298b
dev-python/blockbuster: Keyword 1.5.24 sparc, #956473
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index 21d4b50a7af5..ab5cee35c82c 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-07-12 16:14 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2025-07-12 16:14 UTC (permalink / raw
To: gentoo-commits
commit: 16acf3f3f8a967594211b48ada3af6703ea4c5b7
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 12 16:13:42 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 12 16:13:42 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16acf3f3
dev-python/blockbuster: Stabilize 1.5.24 amd64, #959994
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index ab5cee35c82c..9a97221ffd98 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-07-12 16:14 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2025-07-12 16:14 UTC (permalink / raw
To: gentoo-commits
commit: 28a0a0dd57ed701c79fd4c087b5f6aea601e8b32
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 12 16:13:45 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 12 16:13:45 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28a0a0dd
dev-python/blockbuster: Stabilize 1.5.24 x86, #959994
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index 9a97221ffd98..f0a5a1b0b64d 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-07-12 16:14 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2025-07-12 16:14 UTC (permalink / raw
To: gentoo-commits
commit: 61bd10e467b068a39ed4730a11c4286bc2a8d622
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 12 16:13:48 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 12 16:13:48 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61bd10e4
dev-python/blockbuster: Stabilize 1.5.24 arm, #959994
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index f0a5a1b0b64d..6376b5338549 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-07-12 16:14 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2025-07-12 16:14 UTC (permalink / raw
To: gentoo-commits
commit: 611f444f00958ba7a059f08cbca94cd87d27c2b7
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 12 16:13:52 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 12 16:13:52 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=611f444f
dev-python/blockbuster: Stabilize 1.5.24 ppc, #959994
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index 6376b5338549..4e1eaeca47b6 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-07-12 16:14 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2025-07-12 16:14 UTC (permalink / raw
To: gentoo-commits
commit: e72c9314e2046af7659cca9afe08cb30e3d12c65
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 12 16:13:55 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 12 16:13:55 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e72c9314
dev-python/blockbuster: Stabilize 1.5.24 arm64, #959994
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index 4e1eaeca47b6..92c99fcfd8ce 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-07-13 0:53 Sam James
0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2025-07-13 0:53 UTC (permalink / raw
To: gentoo-commits
commit: 2041832cd2057be3f0ee32395c060abad6d9fc1f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 13 00:52:46 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 13 00:52:46 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2041832c
dev-python/blockbuster: Stabilize 1.5.24 ppc64, #959994
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
index 92c99fcfd8ce..fd223cb9af71 100644
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
RDEPEND="
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-07-15 4:49 Michał Górny
0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2025-07-15 4:49 UTC (permalink / raw
To: gentoo-commits
commit: 296767539d75c320712e6c4f332f41c4f37d1d34
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 15 04:25:37 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jul 15 04:33:16 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29676753
dev-python/blockbuster: Bump to 1.5.25
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/blockbuster/Manifest | 1 +
dev-python/blockbuster/blockbuster-1.5.25.ebuild | 60 ++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/dev-python/blockbuster/Manifest b/dev-python/blockbuster/Manifest
index a26c71f56aa6..1da304e14799 100644
--- a/dev-python/blockbuster/Manifest
+++ b/dev-python/blockbuster/Manifest
@@ -1 +1,2 @@
DIST blockbuster-1.5.24.tar.gz 51245 BLAKE2B 6d1e6a66154603d0a485dd77041b24488a35f9b07ec7b833b3ef2893edaada798e1feca158ceed7ba347cfcc738adc52d846991ec90808aa6a523a03403988cd SHA512 f286c1fad7236783aae81111480a43c946819264c7584fe9cdc466cdfff0c63c5076a9c74397e5f37782f5957c68834a1db7640a5aeae2bc0a2961fc472e7824
+DIST blockbuster-1.5.25.tar.gz 36058 BLAKE2B 75accc4bcba23664206adcd1a5adbfe5b4f4fdae634370e89b72a3122d3908dbba96ea2387766bced0814c47dac9b2b1c1b57647977b90bbd729561d6a2fb205 SHA512 a5201166425fa4449d319ed7265e9ab51c8bff05e1ec84c79d2b5cc54effc70f047154583b2362d6a6b6d0a986cd4f4082e96079a013778507fc5906bf6b7cff
diff --git a/dev-python/blockbuster/blockbuster-1.5.25.ebuild b/dev-python/blockbuster/blockbuster-1.5.25.ebuild
new file mode 100644
index 000000000000..a06f8a61d4b9
--- /dev/null
+++ b/dev-python/blockbuster/blockbuster-1.5.25.ebuild
@@ -0,0 +1,60 @@
+# Copyright 2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Utility to detect blocking calls in the async event loop"
+HOMEPAGE="
+ https://github.com/cbornet/blockbuster/
+ https://pypi.org/project/blockbuster/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+ $(python_gen_cond_dep '
+ >=dev-python/forbiddenfruit-0.1.4[${PYTHON_USEDEP}]
+ ' 'python*')
+"
+BDEPEND="
+ test? (
+ dev-python/aiofiles[${PYTHON_USEDEP}]
+ dev-python/requests[${PYTHON_USEDEP}]
+ )
+"
+
+EPYTEST_PLUGINS=( pytest-asyncio )
+distutils_enable_tests pytest
+
+python_test() {
+ local EPYTEST_DESELECT=(
+ # Internet
+ tests/test_blockbuster.py::test_ssl_socket
+ )
+
+ case ${EPYTHON} in
+ pypy3.11)
+ EPYTEST_DESELECT+=(
+ # upstream doesn't care, however that doesn't stop
+ # people from depending on it...
+ # https://github.com/cbornet/blockbuster/issues/47
+ tests/test_blockbuster.py::test_file_random
+ tests/test_blockbuster.py::test_file_read_bytes
+ tests/test_blockbuster.py::test_file_text
+ tests/test_blockbuster.py::test_file_write_bytes
+ tests/test_blockbuster.py::test_lock
+ tests/test_blockbuster.py::test_os_scandir
+ tests/test_blockbuster.py::test_scanned_modules
+ )
+ ;;
+ esac
+
+ epytest
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/
@ 2025-08-02 14:47 Michał Górny
0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2025-08-02 14:47 UTC (permalink / raw
To: gentoo-commits
commit: 90a740e23050d41b164be6ccbcef098c369a5b63
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 2 14:37:11 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Aug 2 14:47:39 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90a740e2
dev-python/blockbuster: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/blockbuster/Manifest | 1 -
dev-python/blockbuster/blockbuster-1.5.24.ebuild | 61 ------------------------
2 files changed, 62 deletions(-)
diff --git a/dev-python/blockbuster/Manifest b/dev-python/blockbuster/Manifest
index 1da304e14799..117b55331bd7 100644
--- a/dev-python/blockbuster/Manifest
+++ b/dev-python/blockbuster/Manifest
@@ -1,2 +1 @@
-DIST blockbuster-1.5.24.tar.gz 51245 BLAKE2B 6d1e6a66154603d0a485dd77041b24488a35f9b07ec7b833b3ef2893edaada798e1feca158ceed7ba347cfcc738adc52d846991ec90808aa6a523a03403988cd SHA512 f286c1fad7236783aae81111480a43c946819264c7584fe9cdc466cdfff0c63c5076a9c74397e5f37782f5957c68834a1db7640a5aeae2bc0a2961fc472e7824
DIST blockbuster-1.5.25.tar.gz 36058 BLAKE2B 75accc4bcba23664206adcd1a5adbfe5b4f4fdae634370e89b72a3122d3908dbba96ea2387766bced0814c47dac9b2b1c1b57647977b90bbd729561d6a2fb205 SHA512 a5201166425fa4449d319ed7265e9ab51c8bff05e1ec84c79d2b5cc54effc70f047154583b2362d6a6b6d0a986cd4f4082e96079a013778507fc5906bf6b7cff
diff --git a/dev-python/blockbuster/blockbuster-1.5.24.ebuild b/dev-python/blockbuster/blockbuster-1.5.24.ebuild
deleted file mode 100644
index aac0839e05af..000000000000
--- a/dev-python/blockbuster/blockbuster-1.5.24.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Utility to detect blocking calls in the async event loop"
-HOMEPAGE="
- https://github.com/cbornet/blockbuster/
- https://pypi.org/project/blockbuster/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
-
-RDEPEND="
- $(python_gen_cond_dep '
- >=dev-python/forbiddenfruit-0.1.4[${PYTHON_USEDEP}]
- ' 'python*')
-"
-BDEPEND="
- test? (
- dev-python/aiofiles[${PYTHON_USEDEP}]
- dev-python/pytest-asyncio[${PYTHON_USEDEP}]
- dev-python/requests[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=(
- # Internet
- tests/test_blockbuster.py::test_ssl_socket
- )
-
- case ${EPYTHON} in
- pypy3.11)
- EPYTEST_DESELECT+=(
- # upstream doesn't care, however that doesn't stop
- # people from depending on it...
- # https://github.com/cbornet/blockbuster/issues/47
- tests/test_blockbuster.py::test_file_random
- tests/test_blockbuster.py::test_file_read_bytes
- tests/test_blockbuster.py::test_file_text
- tests/test_blockbuster.py::test_file_write_bytes
- tests/test_blockbuster.py::test_lock
- tests/test_blockbuster.py::test_os_scandir
- tests/test_blockbuster.py::test_scanned_modules
- )
- ;;
- esac
-
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest -p asyncio
-}
^ permalink raw reply related [flat|nested] 20+ messages in thread
end of thread, other threads:[~2025-08-02 14:48 UTC | newest]
Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-12 16:14 [gentoo-commits] repo/gentoo:master commit in: dev-python/blockbuster/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2025-08-02 14:47 Michał Górny
2025-07-15 4:49 Michał Górny
2025-07-13 0:53 Sam James
2025-07-12 16:14 Sam James
2025-07-12 16:14 Sam James
2025-07-12 16:14 Sam James
2025-07-12 16:14 Sam James
2025-06-22 12:06 Sam James
2025-06-22 12:06 Sam James
2025-06-21 7:44 Sam James
2025-06-17 3:31 WANG Xuerui
2025-06-07 13:53 Sam James
2025-05-26 8:06 Sam James
2025-05-24 12:11 Jakov Smolić
2025-05-23 3:22 Sam James
2025-05-23 3:22 Sam James
2025-05-23 3:22 Sam James
2025-05-23 3:22 Sam James
2025-05-21 17:22 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