summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2021-07-20 23:06:16 +0200
committerKarel Kočí <cynerd@email.cz>2021-07-20 23:06:16 +0200
commit55a53624e826c2aeca4c088fe005341d9f8b7242 (patch)
treeab25c4fa985f3bf4c409f0a6767d3f9b1b2f838e /dev-python
parent51739d6aaee5fb167895a74fe42de41befa5172e (diff)
downloadgentoo-personal-overlay-55a53624e826c2aeca4c088fe005341d9f8b7242.tar.gz
gentoo-personal-overlay-55a53624e826c2aeca4c088fe005341d9f8b7242.tar.bz2
gentoo-personal-overlay-55a53624e826c2aeca4c088fe005341d9f8b7242.zip
dev-python/pytest-html: remove my older version
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/pytest-html/Manifest1
-rw-r--r--dev-python/pytest-html/pytest-html-3.1.1.ebuild31
2 files changed, 0 insertions, 32 deletions
diff --git a/dev-python/pytest-html/Manifest b/dev-python/pytest-html/Manifest
deleted file mode 100644
index bb1aa54..0000000
--- a/dev-python/pytest-html/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pytest-html-3.1.1.tar.gz 38548 BLAKE2B d2491280ceb4524a10a46891448bb63fe997a4be82062e727fb1d79ef6154a0b4229bbec27c6601372776f7c8dd124aab5d4968482fc24ad24330db5d2520187 SHA512 78091b485d153b54cd76abb8cfeb6494830b1b51a10dc0c00c73eccf67962d2805e3f83972c7ccfd1f877a939b582f80d5ddd5273fd1ddcac2a1a9c2eb121300
diff --git a/dev-python/pytest-html/pytest-html-3.1.1.ebuild b/dev-python/pytest-html/pytest-html-3.1.1.ebuild
deleted file mode 100644
index d840242..0000000
--- a/dev-python/pytest-html/pytest-html-3.1.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7,8} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Plugin for generating HTML reports for py.test results"
-HOMEPAGE="https://github.com/pytest-dev/pytest-html/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-# Lots of test failures...
-RESTRICT="test"
-
-RDEPEND="
- >=dev-python/pytest-5.0[${PYTHON_USEDEP}]
- dev-python/pytest-metadata[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
- dev-python/setuptools_scm[${PYTHON_USEDEP}]"
-
-python_test() {
- PYTHONPATH=${PWD}${PYTHONPATH:+:}${PYTHONPATH} \
- py.test -v -r a testing/test_pytest_html.py || die
-}