summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-04-23 22:19:44 +0200
committerMichał Górny <mgorny@gentoo.org>2022-04-23 22:25:08 +0200
commit3d18f6191996d8496cbfb7491e92fb9dd21757dc (patch)
tree3767261460189c1c2735e5864d30b51fb4f63f1d /dev-python/watchgod
parentsys-block/buffer: Keyword 1.19-r4 arm64, #840341 (diff)
downloadgentoo-3d18f6191996d8496cbfb7491e92fb9dd21757dc.tar.gz
gentoo-3d18f6191996d8496cbfb7491e92fb9dd21757dc.tar.bz2
gentoo-3d18f6191996d8496cbfb7491e92fb9dd21757dc.zip
dev-python/watchgod: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/watchgod')
-rw-r--r--dev-python/watchgod/Manifest1
-rw-r--r--dev-python/watchgod/watchgod-0.8.ebuild47
2 files changed, 0 insertions, 48 deletions
diff --git a/dev-python/watchgod/Manifest b/dev-python/watchgod/Manifest
index 781c5145d8a6..bc4b2f4231e7 100644
--- a/dev-python/watchgod/Manifest
+++ b/dev-python/watchgod/Manifest
@@ -1,2 +1 @@
DIST watchfiles-0.8.1.gh.tar.gz 15405 BLAKE2B ea5d6d59b930f00d6b4b8d6236a38dbb2463866246f1ff4cda828a99a7383fac9c47b131417d8f375a105733c7567f32895759a8dc4503f5671b524977e282ed SHA512 2f611786d267ceae5d6e9094400f5dc6eb59a008f047a511b58b329762e63bbcd83a56cc95cca54c8480b1702c160548baa30549e907e6b85c8bf176ba339fb6
-DIST watchgod-0.8.gh.tar.gz 15354 BLAKE2B 1325f452593e54e8cc40eca0fc9867aff0c93d89de767b9512508fee02efe94e43284b30c316b2cce31a15acc2ee9ff19ca7f9cc6fb46cfffdb0458e502d85ca SHA512 0e86d9dd3eba0cd3aaeccc009ebdba8528ba23d63ad19ff789dffda075b4a01c32be0dfabf38f15e7966bc09e7fb5ae3a94a9dd89a55358a95622aaf5cad0947
diff --git a/dev-python/watchgod/watchgod-0.8.ebuild b/dev-python/watchgod/watchgod-0.8.ebuild
deleted file mode 100644
index 76bf162438aa..000000000000
--- a/dev-python/watchgod/watchgod-0.8.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Simple, modern file watching and code reload in Python"
-HOMEPAGE="
- https://pypi.org/project/watchgod/
- https://github.com/samuelcolvin/watchgod/
-"
-SRC_URI="
- https://github.com/samuelcolvin/watchgod/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86"
-
-RDEPEND="
- =dev-python/anyio-3*[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/pytest-asyncio[${PYTHON_USEDEP}]
- dev-python/pytest-mock[${PYTHON_USEDEP}]
- dev-python/pytest-toolbox[${PYTHON_USEDEP}]
- dev-python/trio[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
- # flaky test on slow systems, https://github.com/samuelcolvin/watchgod/issues/84
- tests/test_watch.py::test_awatch_log
-)
-
-src_prepare() {
- # increase timeout
- sed -e '/sleep/s/0.01/1.0/' -i tests/test_watch.py || die
-
- distutils-r1_src_prepare
-}