public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/respx/
@ 2024-03-29 15:28 Michał Górny
  0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2024-03-29 15:28 UTC (permalink / raw
  To: gentoo-commits

commit:     b989b71fe86b2c45aa6b58d4853d7d6d589bda26
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Thu Mar 28 10:09:01 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 29 15:27:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b989b71f

dev-python/respx: new package, add 0.21.1

Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/respx/Manifest            |  1 +
 dev-python/respx/metadata.xml        | 20 +++++++++++++++++
 dev-python/respx/respx-0.21.1.ebuild | 43 ++++++++++++++++++++++++++++++++++++
 3 files changed, 64 insertions(+)

diff --git a/dev-python/respx/Manifest b/dev-python/respx/Manifest
new file mode 100644
index 000000000000..899bbf1b2a9f
--- /dev/null
+++ b/dev-python/respx/Manifest
@@ -0,0 +1 @@
+DIST respx-0.21.1.gh.tar.gz 432341 BLAKE2B b375e8bc9370e13855197487e1e8139cf3fede0f03d7ad034ef2c78bce5ad95d3cb8cc7440c2566d188a98a52d0068c13288c7d4ec802e04d2f269a64e1ce326 SHA512 156f34f4635012230b68812f24978136f37f96dc0cf0ea9e80ed2d6a3e0639eb7591ed34933f75d5cda32993852aa034b22389af0fed341ab4ad1002482f2e9c

diff --git a/dev-python/respx/metadata.xml b/dev-python/respx/metadata.xml
new file mode 100644
index 000000000000..75a5ff3e72ad
--- /dev/null
+++ b/dev-python/respx/metadata.xml
@@ -0,0 +1,20 @@
+<?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>
+	<maintainer type="person">
+		<email>parona@protonmail.com</email>
+		<name>Alfred Wingate</name>
+	</maintainer>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<stabilize-allarches/>
+	<upstream>
+		<remote-id type="pypi">respx</remote-id>
+		<remote-id type="github">lundberg/respx</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/respx/respx-0.21.1.ebuild b/dev-python/respx/respx-0.21.1.ebuild
new file mode 100644
index 000000000000..398d107c282b
--- /dev/null
+++ b/dev-python/respx/respx-0.21.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="Mock HTTPX with awesome request patterns and response side effects"
+HOMEPAGE="
+	https://lundberg.github.io/respx/
+	https://pypi.org/project/respx/
+	https://github.com/lundberg/respx/
+"
+# no tests in pypi sdist
+SRC_URI="
+	https://github.com/lundberg/respx/archive/refs/tags/${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	dev-python/httpx[${PYTHON_USEDEP}]
+"
+BDEPEND="
+	test? (
+		dev-python/flask[${PYTHON_USEDEP}]
+		dev-python/httpcore[${PYTHON_USEDEP}]
+		dev-python/starlette[${PYTHON_USEDEP}]
+		dev-python/trio[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+	epytest -p 'no:*' -o addopts=
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/respx/
@ 2024-03-29 19:13 Michał Górny
  0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2024-03-29 19:13 UTC (permalink / raw
  To: gentoo-commits

commit:     873dd5c5c64af6d57f114b0bcddc0e921e189268
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Fri Mar 29 16:15:34 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 29 19:05:51 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=873dd5c5

dev-python/respx: include missing pytest-asyncio dep for tests

Closes: https://bugs.gentoo.org/928130
Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35989
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/respx/respx-0.21.1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/respx/respx-0.21.1.ebuild b/dev-python/respx/respx-0.21.1.ebuild
index 398d107c282b..33adcd176c16 100644
--- a/dev-python/respx/respx-0.21.1.ebuild
+++ b/dev-python/respx/respx-0.21.1.ebuild
@@ -31,6 +31,7 @@ BDEPEND="
 	test? (
 		dev-python/flask[${PYTHON_USEDEP}]
 		dev-python/httpcore[${PYTHON_USEDEP}]
+		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
 		dev-python/starlette[${PYTHON_USEDEP}]
 		dev-python/trio[${PYTHON_USEDEP}]
 	)
@@ -39,5 +40,5 @@ BDEPEND="
 distutils_enable_tests pytest
 
 python_test() {
-	epytest -p 'no:*' -o addopts=
+	epytest -p 'no:*' -p asyncio -o addopts=
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/respx/
@ 2024-04-14  5:15 Joonas Niilola
  0 siblings, 0 replies; 13+ messages in thread
From: Joonas Niilola @ 2024-04-14  5:15 UTC (permalink / raw
  To: gentoo-commits

commit:     9bf0c912151ab858c03ef4176390657fa711d767
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 14 05:14:41 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Apr 14 05:15:04 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bf0c912

dev-python/respx: Stabilize 0.21.1 amd64, #929922

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-python/respx/respx-0.21.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/respx/respx-0.21.1.ebuild b/dev-python/respx/respx-0.21.1.ebuild
index 33adcd176c16..a80ec228377e 100644
--- a/dev-python/respx/respx-0.21.1.ebuild
+++ b/dev-python/respx/respx-0.21.1.ebuild
@@ -22,7 +22,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 RDEPEND="
 	dev-python/httpx[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/respx/
@ 2024-04-14 18:02 Arthur Zamarin
  0 siblings, 0 replies; 13+ messages in thread
From: Arthur Zamarin @ 2024-04-14 18:02 UTC (permalink / raw
  To: gentoo-commits

commit:     2201c4bb3c0c798620d42b3f9237e78f0e80773f
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 14 18:02:49 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 14 18:02:49 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2201c4bb

dev-python/respx: Keyword 0.21.1 arm64, #930012

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/respx/respx-0.21.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/respx/respx-0.21.1.ebuild b/dev-python/respx/respx-0.21.1.ebuild
index a80ec228377e..0bd4f3255807 100644
--- a/dev-python/respx/respx-0.21.1.ebuild
+++ b/dev-python/respx/respx-0.21.1.ebuild
@@ -22,7 +22,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64"
+KEYWORDS="amd64 ~arm64"
 
 RDEPEND="
 	dev-python/httpx[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/respx/
@ 2024-04-14 18:27 Arthur Zamarin
  0 siblings, 0 replies; 13+ messages in thread
From: Arthur Zamarin @ 2024-04-14 18:27 UTC (permalink / raw
  To: gentoo-commits

commit:     e5205b5600888e67c73ef9c041ee923773378888
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 14 18:27:27 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 14 18:27:27 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5205b56

dev-python/respx: Keyword 0.21.1 x86, #930012

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/respx/respx-0.21.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/respx/respx-0.21.1.ebuild b/dev-python/respx/respx-0.21.1.ebuild
index 0bd4f3255807..c900b2571e2f 100644
--- a/dev-python/respx/respx-0.21.1.ebuild
+++ b/dev-python/respx/respx-0.21.1.ebuild
@@ -22,7 +22,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm64"
+KEYWORDS="amd64 ~arm64 ~x86"
 
 RDEPEND="
 	dev-python/httpx[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/respx/
@ 2024-04-14 18:55 Arthur Zamarin
  0 siblings, 0 replies; 13+ messages in thread
From: Arthur Zamarin @ 2024-04-14 18:55 UTC (permalink / raw
  To: gentoo-commits

commit:     f6845260098d629a4642e847f687785ec8f749f3
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 14 18:54:56 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 14 18:54:56 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6845260

dev-python/respx: Stabilize 0.21.1 arm64, #930030

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/respx/respx-0.21.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/respx/respx-0.21.1.ebuild b/dev-python/respx/respx-0.21.1.ebuild
index c900b2571e2f..40cf1d376172 100644
--- a/dev-python/respx/respx-0.21.1.ebuild
+++ b/dev-python/respx/respx-0.21.1.ebuild
@@ -22,7 +22,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 arm64 ~x86"
 
 RDEPEND="
 	dev-python/httpx[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/respx/
@ 2024-04-14 18:55 Arthur Zamarin
  0 siblings, 0 replies; 13+ messages in thread
From: Arthur Zamarin @ 2024-04-14 18:55 UTC (permalink / raw
  To: gentoo-commits

commit:     07a68aa41da74e4dcdebe8ac41aa09252a33744f
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 14 18:55:01 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 14 18:55:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07a68aa4

dev-python/respx: Stabilize 0.21.1 x86, #930030

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/respx/respx-0.21.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/respx/respx-0.21.1.ebuild b/dev-python/respx/respx-0.21.1.ebuild
index 40cf1d376172..546e9bced470 100644
--- a/dev-python/respx/respx-0.21.1.ebuild
+++ b/dev-python/respx/respx-0.21.1.ebuild
@@ -22,7 +22,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm64 ~x86"
+KEYWORDS="amd64 arm64 x86"
 
 RDEPEND="
 	dev-python/httpx[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/respx/
@ 2024-06-17 16:27 Michał Górny
  0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2024-06-17 16:27 UTC (permalink / raw
  To: gentoo-commits

commit:     092d68db1df8902dba27da82645d0e01d423bb7f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 17 15:59:08 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jun 17 16:25:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=092d68db

dev-python/respx: Enable py3.13

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

 dev-python/respx/respx-0.21.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/respx/respx-0.21.1.ebuild b/dev-python/respx/respx-0.21.1.ebuild
index 546e9bced470..424cae52ceb9 100644
--- a/dev-python/respx/respx-0.21.1.ebuild
+++ b/dev-python/respx/respx-0.21.1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..12} )
+PYTHON_COMPAT=( python3_{11..13} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/respx/
@ 2024-12-12  7:14 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2024-12-12  7:14 UTC (permalink / raw
  To: gentoo-commits

commit:     b3348204493cb9124af22cdae482e4065bf84bca
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Thu Dec 12 05:59:37 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 12 07:14:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3348204

dev-python/respx: limit <httpx-0.28.0 due to broken compatibility

Closes: https://bugs.gentoo.org/945735
Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/39691
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/respx/{respx-0.21.1.ebuild => respx-0.21.1-r1.ebuild} | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-python/respx/respx-0.21.1.ebuild b/dev-python/respx/respx-0.21.1-r1.ebuild
similarity index 87%
rename from dev-python/respx/respx-0.21.1.ebuild
rename to dev-python/respx/respx-0.21.1-r1.ebuild
index 424cae52ceb9..8b938b5a1627 100644
--- a/dev-python/respx/respx-0.21.1.ebuild
+++ b/dev-python/respx/respx-0.21.1-r1.ebuild
@@ -24,8 +24,10 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="amd64 arm64 x86"
 
+# https://bugs.gentoo.org/945735
+# https://github.com/lundberg/respx/issues/277
 RDEPEND="
-	dev-python/httpx[${PYTHON_USEDEP}]
+	<dev-python/httpx-0.28.0[${PYTHON_USEDEP}]
 "
 BDEPEND="
 	test? (


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/respx/
@ 2024-12-20  8:23 Michał Górny
  0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2024-12-20  8:23 UTC (permalink / raw
  To: gentoo-commits

commit:     2f915c1f4a5af2dd55d6eb77a4cc2c68278c30c7
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 20 07:23:30 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Dec 20 08:23:19 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f915c1f

dev-python/respx: Bump to 0.22.0

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

 dev-python/respx/Manifest            |  1 +
 dev-python/respx/respx-0.22.0.ebuild | 44 ++++++++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/dev-python/respx/Manifest b/dev-python/respx/Manifest
index 899bbf1b2a9f..6343234dbd40 100644
--- a/dev-python/respx/Manifest
+++ b/dev-python/respx/Manifest
@@ -1 +1,2 @@
 DIST respx-0.21.1.gh.tar.gz 432341 BLAKE2B b375e8bc9370e13855197487e1e8139cf3fede0f03d7ad034ef2c78bce5ad95d3cb8cc7440c2566d188a98a52d0068c13288c7d4ec802e04d2f269a64e1ce326 SHA512 156f34f4635012230b68812f24978136f37f96dc0cf0ea9e80ed2d6a3e0639eb7591ed34933f75d5cda32993852aa034b22389af0fed341ab4ad1002482f2e9c
+DIST respx-0.22.0.gh.tar.gz 432547 BLAKE2B 60fb516b3793faeea8f236c3ccfae7dcf20087eb8af8f1fb8c128de454b9fa395f4c7ed6fc5c94c59eff225525de6bc7c2b89bedf882028076fa9fb668a46ac9 SHA512 3cc84edced79475764b00369b5926bb5a74627b3f0c966fdf4e96a1a5944b8ea2fccaa39f77ebde62324762cb4ff5e0b611c910093fc3010e8c8e1dbbbe678e3

diff --git a/dev-python/respx/respx-0.22.0.ebuild b/dev-python/respx/respx-0.22.0.ebuild
new file mode 100644
index 000000000000..8d64b6dc6e85
--- /dev/null
+++ b/dev-python/respx/respx-0.22.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1
+
+DESCRIPTION="Mock HTTPX with awesome request patterns and response side effects"
+HOMEPAGE="
+	https://lundberg.github.io/respx/
+	https://pypi.org/project/respx/
+	https://github.com/lundberg/respx/
+"
+# no tests in pypi sdist
+SRC_URI="
+	https://github.com/lundberg/respx/archive/refs/tags/${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+	>=dev-python/httpx-0.25.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+	test? (
+		dev-python/flask[${PYTHON_USEDEP}]
+		dev-python/httpcore[${PYTHON_USEDEP}]
+		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+		dev-python/starlette[${PYTHON_USEDEP}]
+		dev-python/trio[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+	epytest -p 'no:*' -p asyncio -o addopts=
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/respx/
@ 2024-12-20  8:51 Michał Górny
  0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2024-12-20  8:51 UTC (permalink / raw
  To: gentoo-commits

commit:     db21a802e879f713cdb8a80235c5982ca257b63f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 20 08:50:25 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Dec 20 08:51:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db21a802

dev-python/respx: Set min httpx version to 0.28.0

https://github.com/gentoo/gentoo/pull/39789#issuecomment-2556521835

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

 dev-python/respx/{respx-0.22.0.ebuild => respx-0.22.0-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/respx/respx-0.22.0.ebuild b/dev-python/respx/respx-0.22.0-r1.ebuild
similarity index 95%
rename from dev-python/respx/respx-0.22.0.ebuild
rename to dev-python/respx/respx-0.22.0-r1.ebuild
index 8d64b6dc6e85..0c70c55a4901 100644
--- a/dev-python/respx/respx-0.22.0.ebuild
+++ b/dev-python/respx/respx-0.22.0-r1.ebuild
@@ -25,7 +25,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~x86"
 
 RDEPEND="
-	>=dev-python/httpx-0.25.0[${PYTHON_USEDEP}]
+	>=dev-python/httpx-0.28.0[${PYTHON_USEDEP}]
 "
 BDEPEND="
 	test? (


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/respx/
@ 2025-01-04 13:28 Arthur Zamarin
  0 siblings, 0 replies; 13+ messages in thread
From: Arthur Zamarin @ 2025-01-04 13:28 UTC (permalink / raw
  To: gentoo-commits

commit:     911990314576c46e257be22e274674eea7da8ead
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  4 13:28:11 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jan  4 13:28:11 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91199031

dev-python/respx: Stabilize 0.22.0-r1 ALLARCHES, #947471

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/respx/respx-0.22.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/respx/respx-0.22.0-r1.ebuild b/dev-python/respx/respx-0.22.0-r1.ebuild
index 0c70c55a4901..7b7cf95fa585 100644
--- a/dev-python/respx/respx-0.22.0-r1.ebuild
+++ b/dev-python/respx/respx-0.22.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2024 Gentoo Authors
+# Copyright 2024-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -22,7 +22,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 arm64 x86"
 
 RDEPEND="
 	>=dev-python/httpx-0.28.0[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/respx/
@ 2025-01-04 15:00 Michał Górny
  0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2025-01-04 15:00 UTC (permalink / raw
  To: gentoo-commits

commit:     fd350ce792f3f86b7ab577168408c1e9b55104a3
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  4 14:54:49 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jan  4 14:59:26 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd350ce7

dev-python/respx: Remove old

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

 dev-python/respx/Manifest               |  1 -
 dev-python/respx/respx-0.21.1-r1.ebuild | 46 ---------------------------------
 2 files changed, 47 deletions(-)

diff --git a/dev-python/respx/Manifest b/dev-python/respx/Manifest
index 6343234dbd40..3253c156a965 100644
--- a/dev-python/respx/Manifest
+++ b/dev-python/respx/Manifest
@@ -1,2 +1 @@
-DIST respx-0.21.1.gh.tar.gz 432341 BLAKE2B b375e8bc9370e13855197487e1e8139cf3fede0f03d7ad034ef2c78bce5ad95d3cb8cc7440c2566d188a98a52d0068c13288c7d4ec802e04d2f269a64e1ce326 SHA512 156f34f4635012230b68812f24978136f37f96dc0cf0ea9e80ed2d6a3e0639eb7591ed34933f75d5cda32993852aa034b22389af0fed341ab4ad1002482f2e9c
 DIST respx-0.22.0.gh.tar.gz 432547 BLAKE2B 60fb516b3793faeea8f236c3ccfae7dcf20087eb8af8f1fb8c128de454b9fa395f4c7ed6fc5c94c59eff225525de6bc7c2b89bedf882028076fa9fb668a46ac9 SHA512 3cc84edced79475764b00369b5926bb5a74627b3f0c966fdf4e96a1a5944b8ea2fccaa39f77ebde62324762cb4ff5e0b611c910093fc3010e8c8e1dbbbe678e3

diff --git a/dev-python/respx/respx-0.21.1-r1.ebuild b/dev-python/respx/respx-0.21.1-r1.ebuild
deleted file mode 100644
index 8b938b5a1627..000000000000
--- a/dev-python/respx/respx-0.21.1-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..13} )
-
-inherit distutils-r1
-
-DESCRIPTION="Mock HTTPX with awesome request patterns and response side effects"
-HOMEPAGE="
-	https://lundberg.github.io/respx/
-	https://pypi.org/project/respx/
-	https://github.com/lundberg/respx/
-"
-# no tests in pypi sdist
-SRC_URI="
-	https://github.com/lundberg/respx/archive/refs/tags/${PV}.tar.gz
-		-> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-# https://bugs.gentoo.org/945735
-# https://github.com/lundberg/respx/issues/277
-RDEPEND="
-	<dev-python/httpx-0.28.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-	test? (
-		dev-python/flask[${PYTHON_USEDEP}]
-		dev-python/httpcore[${PYTHON_USEDEP}]
-		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-		dev-python/starlette[${PYTHON_USEDEP}]
-		dev-python/trio[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-	epytest -p 'no:*' -p asyncio -o addopts=
-}


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

end of thread, other threads:[~2025-01-04 15:00 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-14  5:15 [gentoo-commits] repo/gentoo:master commit in: dev-python/respx/ Joonas Niilola
  -- strict thread matches above, loose matches on Subject: below --
2025-01-04 15:00 Michał Górny
2025-01-04 13:28 Arthur Zamarin
2024-12-20  8:51 Michał Górny
2024-12-20  8:23 Michał Górny
2024-12-12  7:14 Sam James
2024-06-17 16:27 Michał Górny
2024-04-14 18:55 Arthur Zamarin
2024-04-14 18:55 Arthur Zamarin
2024-04-14 18:27 Arthur Zamarin
2024-04-14 18:02 Arthur Zamarin
2024-03-29 19:13 Michał Górny
2024-03-29 15:28 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