public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-toolbox/
  2020-04-28 17:30 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
@ 2020-04-29 11:12 ` Andrew Ammerlaan
  0 siblings, 0 replies; 6+ messages in thread
From: Andrew Ammerlaan @ 2020-04-29 11:12 UTC (permalink / raw
  To: gentoo-commits

commit:     2a3d27c98ca429625ab6e7eac0f0b0f9fc124581
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Apr 28 17:23:14 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Apr 28 17:23:14 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2a3d27c9

dev-python/pytest-toolbox: Numerous useful plugins for pytest

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/pytest-toolbox/Manifest                 |  1 +
 dev-python/pytest-toolbox/metadata.xml             | 13 +++++++
 .../pytest-toolbox/pytest-toolbox-0.4.ebuild       | 41 ++++++++++++++++++++++
 3 files changed, 55 insertions(+)

diff --git a/dev-python/pytest-toolbox/Manifest b/dev-python/pytest-toolbox/Manifest
new file mode 100644
index 0000000..2bb1bbe
--- /dev/null
+++ b/dev-python/pytest-toolbox/Manifest
@@ -0,0 +1 @@
+DIST pytest-toolbox-0.4.tar.gz 8594 BLAKE2B fb1f19513e9e4b191c3eb995cc5e9445bc9f19affef87350d925c5465210c4de945b91120f86664c1dcf02a638595a7725cf88e3244e377ae77558c70d65643a SHA512 ed27700ff77cd607be808142cc310cd2b7461e55b3f8352d304ef8ca6c5e6c060c67a63238a1025407868ab8e229c4a16eaaa56aa75000159762001accb67752

diff --git a/dev-python/pytest-toolbox/metadata.xml b/dev-python/pytest-toolbox/metadata.xml
new file mode 100644
index 0000000..2bea565
--- /dev/null
+++ b/dev-python/pytest-toolbox/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+	<maintainer type="person">
+		<email>andrewammerlaan@riseup.net</email>
+		<name>Andrew Ammerlaan</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">samuelcolvin/pytest-toolbox</remote-id>
+		<remote-id type="pypi">pytest-toolbox</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild b/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild
new file mode 100644
index 0000000..8a85945
--- /dev/null
+++ b/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7} )
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Numerous useful plugins for pytest"
+HOMEPAGE="https://github.com/samuelcolvin/pytest-toolbox"
+SRC_URI="https://github.com/samuelcolvin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+
+distutils_enable_tests pytest
+
+DEPEND="test? (
+	dev-python/isort[${PYTHON_USEDEP}]
+	dev-python/pydantic[${PYTHON_USEDEP}]
+	dev-python/pytest-isort[${PYTHON_USEDEP}]
+	dev-python/pytest-mock[${PYTHON_USEDEP}]
+)"
+
+RDEPEND="
+	>=dev-python/pytest-3.5.0[${PYTHON_USEDEP}]
+	<=dev-python/pytest-5[${PYTHON_USEDEP}]
+"
+
+python_prepare_all() {
+	# pytest.warning_types.PytestAssertRewriteWarning: asserting the value None, please use "assert is None"
+	sed -i -e 's:test_is_uuid_false:_&:' \
+		-e 's:test_any_int_false:_&:' \
+		tests/test_comparison.py || die
+
+	distutils-r1_python_prepare_all
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-toolbox/
  2020-08-14 18:20 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
@ 2020-08-14 18:35 ` Andrew Ammerlaan
  0 siblings, 0 replies; 6+ messages in thread
From: Andrew Ammerlaan @ 2020-08-14 18:35 UTC (permalink / raw
  To: gentoo-commits

commit:     3ab99807121cdef14ab2ebb36b99719f06f262cc
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri Aug 14 17:52:12 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Aug 14 17:52:12 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3ab99807

dev-python/pytest-toolbox: add py3.8

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild b/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild
index 8a85945..f143db6 100644
--- a/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild
+++ b/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{7,8} )
 
 DISTUTILS_USE_SETUPTOOLS=rdepend
 


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-toolbox/
  2020-12-18 14:15 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
@ 2020-12-18 14:15 ` Andrew Ammerlaan
  0 siblings, 0 replies; 6+ messages in thread
From: Andrew Ammerlaan @ 2020-12-18 14:15 UTC (permalink / raw
  To: gentoo-commits

commit:     2ae7761936c43b6cb636526c63b09417e1a7fcc9
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri Dec 18 13:36:07 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Dec 18 13:36:07 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2ae77619

dev-python/pytest-toolbox: add py3.9

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild b/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild
index f143db61..b3b6ec26 100644
--- a/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild
+++ b/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
 
 DISTUTILS_USE_SETUPTOOLS=rdepend
 


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-toolbox/
  2021-05-24 10:01 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
@ 2021-05-24 11:06 ` Andrew Ammerlaan
  0 siblings, 0 replies; 6+ messages in thread
From: Andrew Ammerlaan @ 2021-05-24 11:06 UTC (permalink / raw
  To: gentoo-commits

commit:     cf28fc29d2b1deed47ced4e687204263681d590e
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Mon May 24 09:41:35 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon May 24 09:59:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cf28fc29

dev-python/pytest-toolbox: <!-- maintainer-needed -->

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

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

diff --git a/dev-python/pytest-toolbox/metadata.xml b/dev-python/pytest-toolbox/metadata.xml
index 21a336f18..9b624d795 100644
--- a/dev-python/pytest-toolbox/metadata.xml
+++ b/dev-python/pytest-toolbox/metadata.xml
@@ -2,10 +2,7 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 
 <pkgmetadata>
-	<maintainer type="person">
-		<email>andrewammerlaan@gentoo.org</email>
-		<name>Andrew Ammerlaan</name>
-	</maintainer>
+	<!-- maintainer-needed -->
 	<upstream>
 		<remote-id type="github">samuelcolvin/pytest-toolbox</remote-id>
 		<remote-id type="pypi">pytest-toolbox</remote-id>


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-toolbox/
@ 2021-09-15  5:42 Arthur Zamarin
  2021-09-15  7:50 ` [gentoo-commits] repo/proj/guru:master " Arthur Zamarin
  0 siblings, 1 reply; 6+ messages in thread
From: Arthur Zamarin @ 2021-09-15  5:42 UTC (permalink / raw
  To: gentoo-commits

commit:     8526b59decf7895bf623e3e6e639179ccc612cc4
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 15 05:41:23 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 15 05:41:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8526b59d

dev-python/pytest-toolbox: treeclean (imported to ::gentoo)

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

 dev-python/pytest-toolbox/Manifest                 |  1 -
 dev-python/pytest-toolbox/metadata.xml             | 10 ------
 .../pytest-toolbox/pytest-toolbox-0.4.ebuild       | 39 ----------------------
 3 files changed, 50 deletions(-)

diff --git a/dev-python/pytest-toolbox/Manifest b/dev-python/pytest-toolbox/Manifest
deleted file mode 100644
index 2bb1bbe60..000000000
--- a/dev-python/pytest-toolbox/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pytest-toolbox-0.4.tar.gz 8594 BLAKE2B fb1f19513e9e4b191c3eb995cc5e9445bc9f19affef87350d925c5465210c4de945b91120f86664c1dcf02a638595a7725cf88e3244e377ae77558c70d65643a SHA512 ed27700ff77cd607be808142cc310cd2b7461e55b3f8352d304ef8ca6c5e6c060c67a63238a1025407868ab8e229c4a16eaaa56aa75000159762001accb67752

diff --git a/dev-python/pytest-toolbox/metadata.xml b/dev-python/pytest-toolbox/metadata.xml
deleted file mode 100644
index 9b624d795..000000000
--- a/dev-python/pytest-toolbox/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-
-<pkgmetadata>
-	<!-- maintainer-needed -->
-	<upstream>
-		<remote-id type="github">samuelcolvin/pytest-toolbox</remote-id>
-		<remote-id type="pypi">pytest-toolbox</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild b/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild
deleted file mode 100644
index e5ea6f550..000000000
--- a/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Numerous useful plugins for pytest"
-HOMEPAGE="https://github.com/samuelcolvin/pytest-toolbox"
-SRC_URI="https://github.com/samuelcolvin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-
-distutils_enable_tests pytest
-
-DEPEND="test? (
-	dev-python/pydantic[${PYTHON_USEDEP}]
-	dev-python/pytest-mock[${PYTHON_USEDEP}]
-)"
-
-RDEPEND="
-	>=dev-python/pytest-3.5.0[${PYTHON_USEDEP}]
-	<=dev-python/pytest-5[${PYTHON_USEDEP}]
-"
-
-python_prepare_all() {
-	# pytest.warning_types.PytestAssertRewriteWarning: asserting the value None, please use "assert is None"
-	sed -i -e 's:test_is_uuid_false:_&:' \
-		-e 's:test_any_int_false:_&:' \
-		tests/test_comparison.py || die
-
-	distutils-r1_python_prepare_all
-}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-toolbox/
  2021-09-15  5:42 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-toolbox/ Arthur Zamarin
@ 2021-09-15  7:50 ` Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2021-09-15  7:50 UTC (permalink / raw
  To: gentoo-commits

commit:     8526b59decf7895bf623e3e6e639179ccc612cc4
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 15 05:41:23 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 15 05:41:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8526b59d

dev-python/pytest-toolbox: treeclean (imported to ::gentoo)

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

 dev-python/pytest-toolbox/Manifest                 |  1 -
 dev-python/pytest-toolbox/metadata.xml             | 10 ------
 .../pytest-toolbox/pytest-toolbox-0.4.ebuild       | 39 ----------------------
 3 files changed, 50 deletions(-)

diff --git a/dev-python/pytest-toolbox/Manifest b/dev-python/pytest-toolbox/Manifest
deleted file mode 100644
index 2bb1bbe60..000000000
--- a/dev-python/pytest-toolbox/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pytest-toolbox-0.4.tar.gz 8594 BLAKE2B fb1f19513e9e4b191c3eb995cc5e9445bc9f19affef87350d925c5465210c4de945b91120f86664c1dcf02a638595a7725cf88e3244e377ae77558c70d65643a SHA512 ed27700ff77cd607be808142cc310cd2b7461e55b3f8352d304ef8ca6c5e6c060c67a63238a1025407868ab8e229c4a16eaaa56aa75000159762001accb67752

diff --git a/dev-python/pytest-toolbox/metadata.xml b/dev-python/pytest-toolbox/metadata.xml
deleted file mode 100644
index 9b624d795..000000000
--- a/dev-python/pytest-toolbox/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-
-<pkgmetadata>
-	<!-- maintainer-needed -->
-	<upstream>
-		<remote-id type="github">samuelcolvin/pytest-toolbox</remote-id>
-		<remote-id type="pypi">pytest-toolbox</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild b/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild
deleted file mode 100644
index e5ea6f550..000000000
--- a/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Numerous useful plugins for pytest"
-HOMEPAGE="https://github.com/samuelcolvin/pytest-toolbox"
-SRC_URI="https://github.com/samuelcolvin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-
-distutils_enable_tests pytest
-
-DEPEND="test? (
-	dev-python/pydantic[${PYTHON_USEDEP}]
-	dev-python/pytest-mock[${PYTHON_USEDEP}]
-)"
-
-RDEPEND="
-	>=dev-python/pytest-3.5.0[${PYTHON_USEDEP}]
-	<=dev-python/pytest-5[${PYTHON_USEDEP}]
-"
-
-python_prepare_all() {
-	# pytest.warning_types.PytestAssertRewriteWarning: asserting the value None, please use "assert is None"
-	sed -i -e 's:test_is_uuid_false:_&:' \
-		-e 's:test_any_int_false:_&:' \
-		tests/test_comparison.py || die
-
-	distutils-r1_python_prepare_all
-}


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

end of thread, other threads:[~2021-09-15  7:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-15  5:42 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-toolbox/ Arthur Zamarin
2021-09-15  7:50 ` [gentoo-commits] repo/proj/guru:master " Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2021-05-24 10:01 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-05-24 11:06 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-12-18 14:15 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-12-18 14:15 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-08-14 18:20 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-08-14 18:35 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-04-28 17:30 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-04-29 11:12 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan

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