* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-tornado/
@ 2021-10-06 22:15 Alessandro Barbieri
0 siblings, 0 replies; 3+ messages in thread
From: Alessandro Barbieri @ 2021-10-06 22:15 UTC (permalink / raw
To: gentoo-commits
commit: c6307c8ef638cd0ff93ab7aa5873a1ae89d33b9a
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed Oct 6 14:14:47 2021 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Wed Oct 6 22:15:37 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c6307c8e
dev-python/pytest-tornado: fix distutils use setuptools
Closes: https://bugs.gentoo.org/816546
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-python/pytest-tornado/pytest-tornado-0.8.1.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dev-python/pytest-tornado/pytest-tornado-0.8.1.ebuild b/dev-python/pytest-tornado/pytest-tornado-0.8.1.ebuild
index bb0435b15..a45bab7dc 100644
--- a/dev-python/pytest-tornado/pytest-tornado-0.8.1.ebuild
+++ b/dev-python/pytest-tornado/pytest-tornado-0.8.1.ebuild
@@ -1,8 +1,9 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="8"
+EAPI=8
+DISTUTILS_USE_SETUPTOOLS=rdepend
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-tornado/
@ 2021-10-25 12:40 Andrew Ammerlaan
2021-10-25 12:58 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Ammerlaan @ 2021-10-25 12:40 UTC (permalink / raw
To: gentoo-commits
commit: ff9f2e207e3afc07cfe3ca3ae7f88dff9c158dd9
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 25 12:40:32 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Oct 25 12:40:32 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ff9f2e20
dev-python/pytest-tornado: moved to ::gentoo
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
dev-python/pytest-tornado/Manifest | 1 -
dev-python/pytest-tornado/metadata.xml | 17 ----------------
.../pytest-tornado/pytest-tornado-0.8.1.ebuild | 23 ----------------------
3 files changed, 41 deletions(-)
diff --git a/dev-python/pytest-tornado/Manifest b/dev-python/pytest-tornado/Manifest
deleted file mode 100644
index 18bc4bccb..000000000
--- a/dev-python/pytest-tornado/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pytest-tornado-0.8.1.tar.gz 9134 BLAKE2B 6ed8b77e4a6145442aefa082ebcd4b9a1232ec6e90d44d696fc615a0cc097a6b9e44127d1c67a74b736981746a7c707b1f3a4d934eeac35aafea05a021a5ce7b SHA512 b3c35868574e1c42ee7a1c8adfc7314ac4cab8daf3c9ad95e0f7a1279f2707946bd4e727525bef9184599c923857f488def4c7c0a07878625165cfde85bd0304
diff --git a/dev-python/pytest-tornado/metadata.xml b/dev-python/pytest-tornado/metadata.xml
deleted file mode 100644
index dbc6eb519..000000000
--- a/dev-python/pytest-tornado/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>lssndrbarbieri@gmail.com</email>
- <name>Alessandro Barbieri</name>
- </maintainer>
- <upstream>
- <bugs-to>https://github.com/vidartf/pytest-tornado/issues</bugs-to>
- <maintainer>
- <email>vidartf@gmail.com</email>
- <name>Vidar Tonaas Fauske</name>
- </maintainer>
- <remote-id type="pypi">pytest-tornado</remote-id>
- <remote-id type="github">vidartf/pytest-tornado</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pytest-tornado/pytest-tornado-0.8.1.ebuild b/dev-python/pytest-tornado/pytest-tornado-0.8.1.ebuild
deleted file mode 100644
index a45bab7dc..000000000
--- a/dev-python/pytest-tornado/pytest-tornado-0.8.1.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="A py.test plugin providing fixtures and markers to simplify testing of asynchronous tornado applications"
-HOMEPAGE="https://github.com/vidartf/pytest-tornado"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="Apache-2.0"
-KEYWORDS="~amd64"
-
-RDEPEND="
- >=dev-python/pytest-3.6[${PYTHON_USEDEP}]
- >=www-servers/tornado-5[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-tornado/
2021-10-25 12:40 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-tornado/ Andrew Ammerlaan
@ 2021-10-25 12:58 ` Andrew Ammerlaan
0 siblings, 0 replies; 3+ messages in thread
From: Andrew Ammerlaan @ 2021-10-25 12:58 UTC (permalink / raw
To: gentoo-commits
commit: ff9f2e207e3afc07cfe3ca3ae7f88dff9c158dd9
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 25 12:40:32 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Oct 25 12:40:32 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ff9f2e20
dev-python/pytest-tornado: moved to ::gentoo
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
dev-python/pytest-tornado/Manifest | 1 -
dev-python/pytest-tornado/metadata.xml | 17 ----------------
.../pytest-tornado/pytest-tornado-0.8.1.ebuild | 23 ----------------------
3 files changed, 41 deletions(-)
diff --git a/dev-python/pytest-tornado/Manifest b/dev-python/pytest-tornado/Manifest
deleted file mode 100644
index 18bc4bccb..000000000
--- a/dev-python/pytest-tornado/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pytest-tornado-0.8.1.tar.gz 9134 BLAKE2B 6ed8b77e4a6145442aefa082ebcd4b9a1232ec6e90d44d696fc615a0cc097a6b9e44127d1c67a74b736981746a7c707b1f3a4d934eeac35aafea05a021a5ce7b SHA512 b3c35868574e1c42ee7a1c8adfc7314ac4cab8daf3c9ad95e0f7a1279f2707946bd4e727525bef9184599c923857f488def4c7c0a07878625165cfde85bd0304
diff --git a/dev-python/pytest-tornado/metadata.xml b/dev-python/pytest-tornado/metadata.xml
deleted file mode 100644
index dbc6eb519..000000000
--- a/dev-python/pytest-tornado/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>lssndrbarbieri@gmail.com</email>
- <name>Alessandro Barbieri</name>
- </maintainer>
- <upstream>
- <bugs-to>https://github.com/vidartf/pytest-tornado/issues</bugs-to>
- <maintainer>
- <email>vidartf@gmail.com</email>
- <name>Vidar Tonaas Fauske</name>
- </maintainer>
- <remote-id type="pypi">pytest-tornado</remote-id>
- <remote-id type="github">vidartf/pytest-tornado</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pytest-tornado/pytest-tornado-0.8.1.ebuild b/dev-python/pytest-tornado/pytest-tornado-0.8.1.ebuild
deleted file mode 100644
index a45bab7dc..000000000
--- a/dev-python/pytest-tornado/pytest-tornado-0.8.1.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="A py.test plugin providing fixtures and markers to simplify testing of asynchronous tornado applications"
-HOMEPAGE="https://github.com/vidartf/pytest-tornado"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="Apache-2.0"
-KEYWORDS="~amd64"
-
-RDEPEND="
- >=dev-python/pytest-3.6[${PYTHON_USEDEP}]
- >=www-servers/tornado-5[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-10-25 12:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-25 12:40 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-tornado/ Andrew Ammerlaan
2021-10-25 12:58 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
-- strict thread matches above, loose matches on Subject: below --
2021-10-06 22:15 [gentoo-commits] repo/proj/guru:dev " Alessandro Barbieri
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox