public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2016-08-09 23:52 Brian Dolbec
  0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-08-09 23:52 UTC (permalink / raw
  To: gentoo-commits

commit:     cfffec5d3b243be7afd3d01c8a8b60efa874cda4
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  9 22:05:48 2016 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Tue Aug  9 23:47:21 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfffec5d

dev-python/txrequests: New package, dep of buildbot-0.9

Package-Manager: portage-2.3.0

 dev-python/txrequests/Manifest                |  1 +
 dev-python/txrequests/metadata.xml            | 24 +++++++++++++++++++++++
 dev-python/txrequests/txrequests-0.9.2.ebuild | 28 +++++++++++++++++++++++++++
 3 files changed, 53 insertions(+)

diff --git a/dev-python/txrequests/Manifest b/dev-python/txrequests/Manifest
new file mode 100644
index 0000000..ef9ea5e
--- /dev/null
+++ b/dev-python/txrequests/Manifest
@@ -0,0 +1 @@
+DIST txrequests-0.9.2.tar.gz 5223 SHA256 dc29e7c9305a74be3e88cd0253bde1981855426e39fbf4a7f4af647542eb7d4e SHA512 99ea6ed752e23f6539cbf571b304fab3b73a173ce23e6688889191d377961c68773513d9602e0600b45f454c99051f527f7719f7712e2b8e91696afa0c405c95 WHIRLPOOL 5721d372157d1ea9b65650a8a7d1685495144bd2c5eb4dd5810f7cf37780121b3a89eeecc928750d5893d5541e9e7011ff86e8d93feb81bb97ad9a78aada7412

diff --git a/dev-python/txrequests/metadata.xml b/dev-python/txrequests/metadata.xml
new file mode 100644
index 0000000..028d3e5
--- /dev/null
+++ b/dev-python/txrequests/metadata.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>dol-sen@gentoo.org</email>
+		<description>Primary maintainer</description>
+	</maintainer>
+	<maintainer type="project">
+		<email>python@gentoo.org</email>
+		<name>Python</name>
+	</maintainer>
+	<upstream>
+		<maintainer>
+			<email>tardyp@gmail.com</email>
+			<name>Pierre Tardy</name>
+		</maintainer>
+		<remote-id type="pypi">txrequests</remote-id>
+	</upstream>
+	<longdescription>Small add-on for the python requests http library.
+		Makes use twisted's ThreadPool, so that the requests'API returns
+		deferred.  The additional API and changes are minimal and strives to
+		avoid surprises.
+	</longdescription>
+</pkgmetadata>

diff --git a/dev-python/txrequests/txrequests-0.9.2.ebuild b/dev-python/txrequests/txrequests-0.9.2.ebuild
new file mode 100644
index 0000000..e44e477
--- /dev/null
+++ b/dev-python/txrequests/txrequests-0.9.2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7)
+
+inherit distutils-r1
+
+DESCRIPTION="Asynchronous Python HTTP for Humans"
+HOMEPAGE="https://github.com/tardyp/txrequests"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+	>=dev-python/requests-1.2.0[${PYTHON_USEDEP}]
+	|| (
+		>=dev-python/twisted-core-9.0.0[${PYTHON_USEDEP}]
+		dev-python/twisted[${PYTHON_USEDEP}]
+	)
+"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2016-10-12 22:07 Brian Dolbec
  0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-10-12 22:07 UTC (permalink / raw
  To: gentoo-commits

commit:     4a8367584af65ee4f5df8a1837fe870af4720952
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 12 22:04:41 2016 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Wed Oct 12 22:07:42 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a836758

dev-python/txrequests: Update the twisted dep order to prefer the new twisted pkg

With the new twisted pkg now in the tree, prefer the new pkg.
There will be no new releases of  the split pkgs.

Package-Manager: portage-2.3.2

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

diff --git a/dev-python/txrequests/txrequests-0.9.2.ebuild b/dev-python/txrequests/txrequests-0.9.2.ebuild
index e44e477..3cddcb5 100644
--- a/dev-python/txrequests/txrequests-0.9.2.ebuild
+++ b/dev-python/txrequests/txrequests-0.9.2.ebuild
@@ -19,8 +19,8 @@ IUSE=""
 RDEPEND="
 	>=dev-python/requests-1.2.0[${PYTHON_USEDEP}]
 	|| (
-		>=dev-python/twisted-core-9.0.0[${PYTHON_USEDEP}]
 		dev-python/twisted[${PYTHON_USEDEP}]
+		>=dev-python/twisted-core-9.0.0[${PYTHON_USEDEP}]
 	)
 "
 DEPEND="${RDEPEND}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2016-10-22  1:26 Brian Dolbec
  0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-10-22  1:26 UTC (permalink / raw
  To: gentoo-commits

commit:     ef0eedf256cf8689bf64f975955c382b9dc4dfd3
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 22 01:07:35 2016 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sat Oct 22 01:25:41 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef0eedf2

dev-python/txrequests: Fix metadata.xml	email address typo

Package-Manager: portage-2.3.2

 dev-python/txrequests/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/txrequests/metadata.xml b/dev-python/txrequests/metadata.xml
index 028d3e5..1c3bef8 100644
--- a/dev-python/txrequests/metadata.xml
+++ b/dev-python/txrequests/metadata.xml
@@ -2,7 +2,7 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<maintainer type="person">
-		<email>dol-sen@gentoo.org</email>
+		<email>dolsen@gentoo.org</email>
 		<description>Primary maintainer</description>
 	</maintainer>
 	<maintainer type="project">


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2016-10-28  1:27 Brian Dolbec
  0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2016-10-28  1:27 UTC (permalink / raw
  To: gentoo-commits

commit:     7d324ec0211d7dff2a59cd6f76af0d95096e37cc
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 27 23:43:55 2016 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Fri Oct 28 01:26:50 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d324ec0

dev-python/txrequests: Version bump

Package-Manager: portage-2.3.2_p3

 dev-python/txrequests/Manifest                |  1 +
 dev-python/txrequests/txrequests-0.9.5.ebuild | 28 +++++++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/dev-python/txrequests/Manifest b/dev-python/txrequests/Manifest
index ef9ea5e..ddb26f1 100644
--- a/dev-python/txrequests/Manifest
+++ b/dev-python/txrequests/Manifest
@@ -1 +1,2 @@
 DIST txrequests-0.9.2.tar.gz 5223 SHA256 dc29e7c9305a74be3e88cd0253bde1981855426e39fbf4a7f4af647542eb7d4e SHA512 99ea6ed752e23f6539cbf571b304fab3b73a173ce23e6688889191d377961c68773513d9602e0600b45f454c99051f527f7719f7712e2b8e91696afa0c405c95 WHIRLPOOL 5721d372157d1ea9b65650a8a7d1685495144bd2c5eb4dd5810f7cf37780121b3a89eeecc928750d5893d5541e9e7011ff86e8d93feb81bb97ad9a78aada7412
+DIST txrequests-0.9.5.tar.gz 5265 SHA256 43a23d8ba1da713899b6bd766218683535c2c81b9b50d256b073fe18662cf0ab SHA512 e9f527eb2fed0038d7e68b5bd74d0a0e58a1d7cc3e181068423dce871ff10b2d5f1ae92e44248e75b4ad8d44b32366ee9eb6cf8fdd114a562baa6b35fab6eb7b WHIRLPOOL 7b4a576af907d69e6f85e572aa22bc2dee2e5aeeff2f450584ba59fd20b1c42eda77ccd51a0c5a0b61d16cf2e416224d8efa1b4dca76a22d4adb7f2ecea8b7ad

diff --git a/dev-python/txrequests/txrequests-0.9.5.ebuild b/dev-python/txrequests/txrequests-0.9.5.ebuild
new file mode 100644
index 00000000..3cddcb5
--- /dev/null
+++ b/dev-python/txrequests/txrequests-0.9.5.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7)
+
+inherit distutils-r1
+
+DESCRIPTION="Asynchronous Python HTTP for Humans"
+HOMEPAGE="https://github.com/tardyp/txrequests"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+	>=dev-python/requests-1.2.0[${PYTHON_USEDEP}]
+	|| (
+		dev-python/twisted[${PYTHON_USEDEP}]
+		>=dev-python/twisted-core-9.0.0[${PYTHON_USEDEP}]
+	)
+"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2017-05-02 11:58 Michał Górny
  0 siblings, 0 replies; 25+ messages in thread
From: Michał Górny @ 2017-05-02 11:58 UTC (permalink / raw
  To: gentoo-commits

commit:     d3f8eafe42e968a29e20221be9d1f236af5406db
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May  2 11:12:21 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May  2 11:58:10 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3f8eafe

dev-python/txrequests: Clean old versions up

 dev-python/txrequests/Manifest                |  1 -
 dev-python/txrequests/txrequests-0.9.2.ebuild | 27 ---------------------------
 2 files changed, 28 deletions(-)

diff --git a/dev-python/txrequests/Manifest b/dev-python/txrequests/Manifest
index ddb26f16e4c..0d84587bcff 100644
--- a/dev-python/txrequests/Manifest
+++ b/dev-python/txrequests/Manifest
@@ -1,2 +1 @@
-DIST txrequests-0.9.2.tar.gz 5223 SHA256 dc29e7c9305a74be3e88cd0253bde1981855426e39fbf4a7f4af647542eb7d4e SHA512 99ea6ed752e23f6539cbf571b304fab3b73a173ce23e6688889191d377961c68773513d9602e0600b45f454c99051f527f7719f7712e2b8e91696afa0c405c95 WHIRLPOOL 5721d372157d1ea9b65650a8a7d1685495144bd2c5eb4dd5810f7cf37780121b3a89eeecc928750d5893d5541e9e7011ff86e8d93feb81bb97ad9a78aada7412
 DIST txrequests-0.9.5.tar.gz 5265 SHA256 43a23d8ba1da713899b6bd766218683535c2c81b9b50d256b073fe18662cf0ab SHA512 e9f527eb2fed0038d7e68b5bd74d0a0e58a1d7cc3e181068423dce871ff10b2d5f1ae92e44248e75b4ad8d44b32366ee9eb6cf8fdd114a562baa6b35fab6eb7b WHIRLPOOL 7b4a576af907d69e6f85e572aa22bc2dee2e5aeeff2f450584ba59fd20b1c42eda77ccd51a0c5a0b61d16cf2e416224d8efa1b4dca76a22d4adb7f2ecea8b7ad

diff --git a/dev-python/txrequests/txrequests-0.9.2.ebuild b/dev-python/txrequests/txrequests-0.9.2.ebuild
deleted file mode 100644
index cfaee546dae..00000000000
--- a/dev-python/txrequests/txrequests-0.9.2.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7)
-
-inherit distutils-r1
-
-DESCRIPTION="Asynchronous Python HTTP for Humans"
-HOMEPAGE="https://github.com/tardyp/txrequests"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-	>=dev-python/requests-1.2.0[${PYTHON_USEDEP}]
-	|| (
-		dev-python/twisted[${PYTHON_USEDEP}]
-		>=dev-python/twisted-core-9.0.0[${PYTHON_USEDEP}]
-	)
-"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2017-05-16  2:10 Brian Dolbec
  0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2017-05-16  2:10 UTC (permalink / raw
  To: gentoo-commits

commit:     60a8fb88ce08d39ae1148f4992321c8324bc3f59
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  5 00:25:30 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Tue May 16 02:07:07 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60a8fb88

dev-python/txrequests: rev-bump, add python 3.{4,5,6}

Reduce the twisted dep to only the new single pkg.

Package-Manager: Portage-2.3.5, Repoman-2.3.2_p30

 dev-python/txrequests/txrequests-0.9.5-r1.ebuild | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/dev-python/txrequests/txrequests-0.9.5-r1.ebuild b/dev-python/txrequests/txrequests-0.9.5-r1.ebuild
new file mode 100644
index 00000000000..6fe8cbaea19
--- /dev/null
+++ b/dev-python/txrequests/txrequests-0.9.5-r1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{4,5,6})
+
+inherit distutils-r1
+
+DESCRIPTION="Asynchronous Python HTTP for Humans"
+HOMEPAGE="https://github.com/tardyp/txrequests"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+	>=dev-python/requests-1.2.0[${PYTHON_USEDEP}]
+	dev-python/twisted[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2020-02-06  6:38 Michał Górny
  0 siblings, 0 replies; 25+ messages in thread
From: Michał Górny @ 2020-02-06  6:38 UTC (permalink / raw
  To: gentoo-commits

commit:     d0afe4eb9bd3215b002b281997f55df044f05976
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  6 06:27:38 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Feb  6 06:38:29 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0afe4eb

dev-python/txrequests: Remove py2

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

 dev-python/txrequests/txrequests-0.9.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/txrequests/txrequests-0.9.5-r1.ebuild b/dev-python/txrequests/txrequests-0.9.5-r1.ebuild
index 110f786d473..123a0eddff0 100644
--- a/dev-python/txrequests/txrequests-0.9.5-r1.ebuild
+++ b/dev-python/txrequests/txrequests-0.9.5-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 python3_6)
+PYTHON_COMPAT=( python3_6)
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2020-04-26 15:51 Michał Górny
  0 siblings, 0 replies; 25+ messages in thread
From: Michał Górny @ 2020-04-26 15:51 UTC (permalink / raw
  To: gentoo-commits

commit:     12264a4ba57d3a01c632cf3806ee9e2d369e2103
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 26 15:45:14 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Apr 26 15:51:00 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12264a4b

dev-python/txrequests: Drop to maint-needed

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

 dev-python/txrequests/metadata.xml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dev-python/txrequests/metadata.xml b/dev-python/txrequests/metadata.xml
index 84fee395889..4e91cd94a1a 100644
--- a/dev-python/txrequests/metadata.xml
+++ b/dev-python/txrequests/metadata.xml
@@ -1,10 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="project">
-		<email>python@gentoo.org</email>
-		<name>Python</name>
-	</maintainer>
+	<!--maintainer-needed-->
 	<upstream>
 		<maintainer>
 			<email>tardyp@gmail.com</email>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2020-05-08 20:34 Brian Dolbec
  0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2020-05-08 20:34 UTC (permalink / raw
  To: gentoo-commits

commit:     a2e505aa62bbfd8128543b6a19f47a3a705c7a6f
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Fri May  8 17:27:23 2020 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Fri May  8 20:34:14 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2e505aa

dev-python/txrequests: Version bump, adds python-3.8

metadata.xml: take maintainership

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Brian Dolbec <dolsen <AT> gentoo.org>

 dev-python/txrequests/Manifest                |  1 +
 dev-python/txrequests/metadata.xml            |  5 ++++-
 dev-python/txrequests/txrequests-0.9.6.ebuild | 23 +++++++++++++++++++++++
 3 files changed, 28 insertions(+), 1 deletion(-)

diff --git a/dev-python/txrequests/Manifest b/dev-python/txrequests/Manifest
index b5adb449064..2dd55ad38a3 100644
--- a/dev-python/txrequests/Manifest
+++ b/dev-python/txrequests/Manifest
@@ -1 +1,2 @@
 DIST txrequests-0.9.5.tar.gz 5265 BLAKE2B e5e3cf66abc394ae5c457b0d5144fdd1d09af5fce651f888bd44f0e48d6d1386fdfd2ca1d350ba1abc856102d051270867a2da96b781fbacf53de01f80158f3d SHA512 e9f527eb2fed0038d7e68b5bd74d0a0e58a1d7cc3e181068423dce871ff10b2d5f1ae92e44248e75b4ad8d44b32366ee9eb6cf8fdd114a562baa6b35fab6eb7b
+DIST txrequests-0.9.6.tar.gz 5306 BLAKE2B c1b55835c360f27c519371834de6cce0760e201a746d960425d7bef98e10cdb421d4db90b93bccdfa05b1fa2d5d6258fea4cce93fe62c7e9ad75780f1a5a89e6 SHA512 3892e121417b8346a2a2db02f8f4143b8f87c060cb4d48dbd07fa77559cfb0caf5742b257377ec0a746f2b995eba36f419a1a5b19d83a0c343cd39057dd34fb1

diff --git a/dev-python/txrequests/metadata.xml b/dev-python/txrequests/metadata.xml
index 4e91cd94a1a..ebb1ddf6b5d 100644
--- a/dev-python/txrequests/metadata.xml
+++ b/dev-python/txrequests/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!--maintainer-needed-->
+	<maintainer type="project">
+		<email>dolsen@gentoo.org</email>
+		<name>Brian Dolbec</name>
+	</maintainer>
 	<upstream>
 		<maintainer>
 			<email>tardyp@gmail.com</email>

diff --git a/dev-python/txrequests/txrequests-0.9.6.ebuild b/dev-python/txrequests/txrequests-0.9.6.ebuild
new file mode 100644
index 00000000000..c3e3311783d
--- /dev/null
+++ b/dev-python/txrequests/txrequests-0.9.6.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{6,7,8})
+
+DISTUTILS_USE_SETUPTOOLS="rdepend"
+
+inherit distutils-r1
+
+DESCRIPTION="Asynchronous Python HTTP for Humans"
+HOMEPAGE="https://github.com/tardyp/txrequests"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	>=dev-python/requests-1.2.0[${PYTHON_USEDEP}]
+	dev-python/twisted[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2020-05-08 23:10 Brian Dolbec
  0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2020-05-08 23:10 UTC (permalink / raw
  To: gentoo-commits

commit:     6671cca917e57c81615eca8cd96b4ce4b36f5eda
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Fri May  8 22:52:48 2020 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Fri May  8 23:10:02 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6671cca9

dev-python/txrequests: Fix metadata.xml

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Brian Dolbec <dolsen <AT> gentoo.org>

 dev-python/txrequests/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/txrequests/metadata.xml b/dev-python/txrequests/metadata.xml
index ebb1ddf6b5d..1d221df57e9 100644
--- a/dev-python/txrequests/metadata.xml
+++ b/dev-python/txrequests/metadata.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="project">
+	<maintainer type="person">
 		<email>dolsen@gentoo.org</email>
 		<name>Brian Dolbec</name>
 	</maintainer>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2021-02-13 21:27 Brian Dolbec
  0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2021-02-13 21:27 UTC (permalink / raw
  To: gentoo-commits

commit:     7f39e7a1a907867f23800ccb87eed6688a5b9092
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 13 21:02:59 2021 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sat Feb 13 21:27:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f39e7a1

dev-python/txrequests: Fix DISUTILS_USE_SETUPTOOLS

Closes: https://bugs.gentoo.org/748966
Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Brian Dolbec <dolsen <AT> gentoo.org>

 dev-python/txrequests/txrequests-0.9.6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/txrequests/txrequests-0.9.6.ebuild b/dev-python/txrequests/txrequests-0.9.6.ebuild
index 6f8648c02c2..18774712d84 100644
--- a/dev-python/txrequests/txrequests-0.9.6.ebuild
+++ b/dev-python/txrequests/txrequests-0.9.6.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 PYTHON_COMPAT=( python3_{7,8})
 
-DISTUTILS_USE_SETUPTOOLS="rdepend"
+DISTUTILS_USE_SETUPTOOLS="bdepend"
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2021-03-28 22:16 Brian Dolbec
  0 siblings, 0 replies; 25+ messages in thread
From: Brian Dolbec @ 2021-03-28 22:16 UTC (permalink / raw
  To: gentoo-commits

commit:     335dec12b77f7dd630cfb4a4ed0adc2e542bda53
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 28 19:51:22 2021 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun Mar 28 22:16:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=335dec12

dev-python/txrequests: Add py3.9 to python_compat

Required for buildbot-3.0.2

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Brian Dolbec <dolsen <AT> gentoo.org>

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

diff --git a/dev-python/txrequests/txrequests-0.9.6.ebuild b/dev-python/txrequests/txrequests-0.9.6.ebuild
index 18774712d84..62e3710b85c 100644
--- a/dev-python/txrequests/txrequests-0.9.6.ebuild
+++ b/dev-python/txrequests/txrequests-0.9.6.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python3_{7,8})
+PYTHON_COMPAT=( python3_{7,8,9})
 
 DISTUTILS_USE_SETUPTOOLS="bdepend"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2021-04-27 22:54 Sam James
  0 siblings, 0 replies; 25+ messages in thread
From: Sam James @ 2021-04-27 22:54 UTC (permalink / raw
  To: gentoo-commits

commit:     f0cbb6f4a7dea88acfbd402a88e49a109b4da53d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 27 22:53:20 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 27 22:53:41 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0cbb6f4

dev-python/txrequests: Keyword 0.9.6 arm64, #766462

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

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

diff --git a/dev-python/txrequests/txrequests-0.9.6.ebuild b/dev-python/txrequests/txrequests-0.9.6.ebuild
index 62e3710b85c..7f6e3418d14 100644
--- a/dev-python/txrequests/txrequests-0.9.6.ebuild
+++ b/dev-python/txrequests/txrequests-0.9.6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 RDEPEND="
 	>=dev-python/requests-1.2.0[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2021-09-18  5:38 Arthur Zamarin
  0 siblings, 0 replies; 25+ messages in thread
From: Arthur Zamarin @ 2021-09-18  5:38 UTC (permalink / raw
  To: gentoo-commits

commit:     b17eaa973464a30e349fd997d0e929d1f4e044f7
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 18 05:33:15 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Sep 18 05:33:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b17eaa97

dev-python/txrequests: enable tests, enable py3.10, EAPI=8

Closes: https://bugs.gentoo.org/798603
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/txrequests/txrequests-0.9.6.ebuild | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/dev-python/txrequests/txrequests-0.9.6.ebuild b/dev-python/txrequests/txrequests-0.9.6.ebuild
index 7f6e3418d14..729977c9a88 100644
--- a/dev-python/txrequests/txrequests-0.9.6.ebuild
+++ b/dev-python/txrequests/txrequests-0.9.6.ebuild
@@ -1,10 +1,9 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-PYTHON_COMPAT=( python3_{7,8,9})
+EAPI=8
 
-DISTUTILS_USE_SETUPTOOLS="bdepend"
+PYTHON_COMPAT=( python3_{8..10})
 
 inherit distutils-r1
 
@@ -15,9 +14,15 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
 
 RDEPEND="
 	>=dev-python/requests-1.2.0[${PYTHON_USEDEP}]
 	dev-python/twisted[${PYTHON_USEDEP}]
 "
-DEPEND="${RDEPEND}"
+BDEPEND="test? ( ${RDEPEND} )"
+
+python_test() {
+	"${EPYTHON}" -m twisted.trial txrequests || die "Tests failed with ${EPYTHON}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2021-09-18  5:38 Arthur Zamarin
  0 siblings, 0 replies; 25+ messages in thread
From: Arthur Zamarin @ 2021-09-18  5:38 UTC (permalink / raw
  To: gentoo-commits

commit:     c81807910dd2fa83de0332252d04e669f3aa764b
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 18 05:38:08 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Sep 18 05:38:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8180791

dev-python/txrequests: mark ALLARCHES

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

 dev-python/txrequests/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/txrequests/metadata.xml b/dev-python/txrequests/metadata.xml
index fb93f4840fc..38995d6314a 100644
--- a/dev-python/txrequests/metadata.xml
+++ b/dev-python/txrequests/metadata.xml
@@ -5,6 +5,7 @@
 		<email>dolsen@gentoo.org</email>
 		<name>Brian Dolbec</name>
 	</maintainer>
+	<stabilize-allarches/>
 	<upstream>
 		<maintainer>
 			<email>tardyp@gmail.com</email>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2022-03-14 10:32 Yixun Lan
  0 siblings, 0 replies; 25+ messages in thread
From: Yixun Lan @ 2022-03-14 10:32 UTC (permalink / raw
  To: gentoo-commits

commit:     4e5e0a323bb8372b19ad7c86ba09f83e6b33c385
Author:     Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Thu Mar 10 15:37:26 2022 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Mon Mar 14 10:26:37 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e5e0a32

dev-python/txrequests: keyword ~riscv

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

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

diff --git a/dev-python/txrequests/txrequests-0.9.6.ebuild b/dev-python/txrequests/txrequests-0.9.6.ebuild
index 44729ab51686..9abf1545119f 100644
--- a/dev-python/txrequests/txrequests-0.9.6.ebuild
+++ b/dev-python/txrequests/txrequests-0.9.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2023-01-27 16:05 Arthur Zamarin
  0 siblings, 0 replies; 25+ messages in thread
From: Arthur Zamarin @ 2023-01-27 16:05 UTC (permalink / raw
  To: gentoo-commits

commit:     d3ce238acd17c9f74813301448ce52ab1e522ab3
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 27 15:58:22 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 27 15:58:22 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3ce238a

dev-python/txrequests: enable py3.11

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

 dev-python/txrequests/txrequests-0.9.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/txrequests/txrequests-0.9.6-r1.ebuild b/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
index 702041359e4e..0f44b28c4a6b 100644
--- a/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
+++ b/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2023-01-27 16:05 Arthur Zamarin
  0 siblings, 0 replies; 25+ messages in thread
From: Arthur Zamarin @ 2023-01-27 16:05 UTC (permalink / raw
  To: gentoo-commits

commit:     77e83c646a626e079ccd19be0af7919f9e1b9c71
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 27 15:57:37 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 27 15:57:37 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77e83c64

dev-python/txrequests: Use PEP517

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

 dev-python/txrequests/txrequests-0.9.6-r1.ebuild | 29 ++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/dev-python/txrequests/txrequests-0.9.6-r1.ebuild b/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
new file mode 100644
index 000000000000..702041359e4e
--- /dev/null
+++ b/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Asynchronous Python HTTP for Humans"
+HOMEPAGE="https://github.com/tardyp/txrequests"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	>=dev-python/requests-1.2.0[${PYTHON_USEDEP}]
+	dev-python/twisted[${PYTHON_USEDEP}]
+"
+BDEPEND="test? ( ${RDEPEND} )"
+
+python_test() {
+	"${EPYTHON}" -m twisted.trial txrequests || die "Tests failed with ${EPYTHON}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2023-01-27 20:10 Michał Górny
  0 siblings, 0 replies; 25+ messages in thread
From: Michał Górny @ 2023-01-27 20:10 UTC (permalink / raw
  To: gentoo-commits

commit:     15a965bba4701ebe3201f0bbddb89a9cb23b9ef6
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 27 20:06:23 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan 27 20:10:02 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15a965bb

dev-python/txrequests: Remove old

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

 dev-python/txrequests/txrequests-0.9.6.ebuild | 28 ---------------------------
 1 file changed, 28 deletions(-)

diff --git a/dev-python/txrequests/txrequests-0.9.6.ebuild b/dev-python/txrequests/txrequests-0.9.6.ebuild
deleted file mode 100644
index cb146328a073..000000000000
--- a/dev-python/txrequests/txrequests-0.9.6.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Asynchronous Python HTTP for Humans"
-HOMEPAGE="https://github.com/tardyp/txrequests"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	>=dev-python/requests-1.2.0[${PYTHON_USEDEP}]
-	dev-python/twisted[${PYTHON_USEDEP}]
-"
-BDEPEND="test? ( ${RDEPEND} )"
-
-python_test() {
-	"${EPYTHON}" -m twisted.trial txrequests || die "Tests failed with ${EPYTHON}"
-}


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

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

commit:     7453a6b32f158db138abdfa5532f4ae425295ee9
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 15 17:48:59 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 04:09:07 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7453a6b3

dev-python/txrequests: Use pypi.eclass

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

 dev-python/txrequests/txrequests-0.9.6-r1.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-python/txrequests/txrequests-0.9.6-r1.ebuild b/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
index 0f44b28c4a6b..d567f6b8f9f6 100644
--- a/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
+++ b/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
@@ -6,11 +6,10 @@ EAPI=8
 DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{9..11} )
 
-inherit distutils-r1
+inherit distutils-r1 pypi
 
 DESCRIPTION="Asynchronous Python HTTP for Humans"
 HOMEPAGE="https://github.com/tardyp/txrequests"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2023-05-31  9:59 Michał Górny
  0 siblings, 0 replies; 25+ messages in thread
From: Michał Górny @ 2023-05-31  9:59 UTC (permalink / raw
  To: gentoo-commits

commit:     dc447c754ec0ea1b2a918ff1ada4121ee5efb5b3
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 31 09:58:27 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 31 09:59:06 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc447c75

dev-python/txrequests: Enable py3.12

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

 dev-python/txrequests/txrequests-0.9.6-r1.ebuild | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/dev-python/txrequests/txrequests-0.9.6-r1.ebuild b/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
index d567f6b8f9f6..035df39222d8 100644
--- a/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
+++ b/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
@@ -4,12 +4,15 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1 pypi
 
 DESCRIPTION="Asynchronous Python HTTP for Humans"
-HOMEPAGE="https://github.com/tardyp/txrequests"
+HOMEPAGE="
+	https://github.com/tardyp/txrequests/
+	https://pypi.org/project/txrequests/
+"
 
 LICENSE="Apache-2.0"
 SLOT="0"
@@ -21,7 +24,11 @@ RDEPEND="
 	>=dev-python/requests-1.2.0[${PYTHON_USEDEP}]
 	dev-python/twisted[${PYTHON_USEDEP}]
 "
-BDEPEND="test? ( ${RDEPEND} )"
+BDEPEND="
+	test? (
+		${RDEPEND}
+	)
+"
 
 python_test() {
 	"${EPYTHON}" -m twisted.trial txrequests || die "Tests failed with ${EPYTHON}"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2024-02-14 16:24 Michał Górny
  0 siblings, 0 replies; 25+ messages in thread
From: Michał Górny @ 2024-02-14 16:24 UTC (permalink / raw
  To: gentoo-commits

commit:     88d027efd2c6f3fe35fc42dc09ebfadbab72e2fb
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 14 16:23:54 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 14 16:23:54 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88d027ef

dev-python/txrequests: Fix running tests

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

 dev-python/txrequests/txrequests-0.9.6-r1.ebuild | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/dev-python/txrequests/txrequests-0.9.6-r1.ebuild b/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
index 035df39222d8..34f717029574 100644
--- a/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
+++ b/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -18,7 +18,8 @@ LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
 IUSE="test"
-RESTRICT="!test? ( test )"
+PROPERTIES="test_network"
+RESTRICT="test"
 
 RDEPEND="
 	>=dev-python/requests-1.2.0[${PYTHON_USEDEP}]
@@ -31,5 +32,6 @@ BDEPEND="
 "
 
 python_test() {
-	"${EPYTHON}" -m twisted.trial txrequests || die "Tests failed with ${EPYTHON}"
+	"${EPYTHON}" -m twisted.trial test_txrequests ||
+		die "Tests failed for ${EPYTHON}"
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2024-02-14 16:24 Michał Górny
  0 siblings, 0 replies; 25+ messages in thread
From: Michał Górny @ 2024-02-14 16:24 UTC (permalink / raw
  To: gentoo-commits

commit:     f0d978ccab6ae41119b1bf3b73993bc668b735d4
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 14 16:24:20 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 14 16:24:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0d978cc

dev-python/txrequests: Add python@ as a maintainer

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

 dev-python/txrequests/metadata.xml | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/dev-python/txrequests/metadata.xml b/dev-python/txrequests/metadata.xml
index 319b4b4d3211..baf3592d99d3 100644
--- a/dev-python/txrequests/metadata.xml
+++ b/dev-python/txrequests/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="project">
+		<email>python@gentoo.org</email>
+		<name>Python</name>
+	</maintainer>
 	<stabilize-allarches/>
 	<upstream>
 		<maintainer>
@@ -11,9 +14,10 @@
 		<remote-id type="pypi">txrequests</remote-id>
 		<remote-id type="github">tardyp/txrequests</remote-id>
 	</upstream>
-	<longdescription>Small add-on for the python requests http library.
+	<longdescription>
+		Small add-on for the python requests http library.
 		Makes use twisted's ThreadPool, so that the requests'API returns
-		deferred.  The additional API and changes are minimal and strives to
-		avoid surprises.
+		deferred.  The additional API and changes are minimal and strives
+		to avoid surprises.
 	</longdescription>
 </pkgmetadata>


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

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

commit:     9383af37c08072f49f0a3c5aacec1e0322ce2272
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 14 19:18:11 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 14 19:18:11 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9383af37

dev-python/txrequests: Stabilize 0.9.6-r1 amd64, #926699

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

 dev-python/txrequests/txrequests-0.9.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/txrequests/txrequests-0.9.6-r1.ebuild b/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
index 34f717029574..76b501b28431 100644
--- a/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
+++ b/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv ~x86"
 IUSE="test"
 PROPERTIES="test_network"
 RESTRICT="test"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
@ 2024-06-28  8:13 Petr Vaněk
  0 siblings, 0 replies; 25+ messages in thread
From: Petr Vaněk @ 2024-06-28  8:13 UTC (permalink / raw
  To: gentoo-commits

commit:     16c9fba074a2a142d337f3a2bc04fce4de5aa66a
Author:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Fri Jun  7 16:45:38 2024 +0000
Commit:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Fri Jun 28 08:12:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16c9fba0

dev-python/txrequests: enable py3.13

Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>

 dev-python/txrequests/txrequests-0.9.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/txrequests/txrequests-0.9.6-r1.ebuild b/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
index 76b501b28431..4cb382ecedca 100644
--- a/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
+++ b/dev-python/txrequests/txrequests-0.9.6-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit distutils-r1 pypi
 


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

end of thread, other threads:[~2024-06-28  8:13 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-22  1:26 [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/ Brian Dolbec
  -- strict thread matches above, loose matches on Subject: below --
2024-06-28  8:13 Petr Vaněk
2024-03-14 19:19 Sam James
2024-02-14 16:24 Michał Górny
2024-02-14 16:24 Michał Górny
2023-05-31  9:59 Michał Górny
2023-03-16  4:13 Michał Górny
2023-01-27 20:10 Michał Górny
2023-01-27 16:05 Arthur Zamarin
2023-01-27 16:05 Arthur Zamarin
2022-03-14 10:32 Yixun Lan
2021-09-18  5:38 Arthur Zamarin
2021-09-18  5:38 Arthur Zamarin
2021-04-27 22:54 Sam James
2021-03-28 22:16 Brian Dolbec
2021-02-13 21:27 Brian Dolbec
2020-05-08 23:10 Brian Dolbec
2020-05-08 20:34 Brian Dolbec
2020-04-26 15:51 Michał Górny
2020-02-06  6:38 Michał Górny
2017-05-16  2:10 Brian Dolbec
2017-05-02 11:58 Michał Górny
2016-10-28  1:27 Brian Dolbec
2016-10-12 22:07 Brian Dolbec
2016-08-09 23:52 Brian Dolbec

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox