aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2021-09-15 08:41:23 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2021-09-15 08:41:59 +0300
commit8526b59decf7895bf623e3e6e639179ccc612cc4 (patch)
tree17b27e4530fa83016d85a8544b541f635d238750
parentsys-fs/gfs2-utils: update Manifest (diff)
downloadguru-8526b59decf7895bf623e3e6e639179ccc612cc4.tar.gz
guru-8526b59decf7895bf623e3e6e639179ccc612cc4.tar.bz2
guru-8526b59decf7895bf623e3e6e639179ccc612cc4.zip
dev-python/pytest-toolbox: treeclean (imported to ::gentoo)
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
-rw-r--r--dev-python/pytest-toolbox/Manifest1
-rw-r--r--dev-python/pytest-toolbox/metadata.xml10
-rw-r--r--dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild39
3 files changed, 0 insertions, 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
-}