add (still needed) watchdog-0.8.3

This commit is contained in:
Andreas Billmeier 2021-01-09 09:23:20 +01:00 committed by Andreas Billmeier
parent a8600f9939
commit e294238658
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 59 additions and 0 deletions

View File

@ -17,6 +17,7 @@
* bump home-assistant-frontend-20201229.0
* bump env-canada-0.2.5, update env-canada-0.3.1
* update pycarwings2-2.10
* add (still needed) watchdog-0.8.3
2020-12-21
* update meteofrance-api-1.0.1

View File

@ -0,0 +1,3 @@
DIST watchdog-0.8.3.tar.gz 83154 BLAKE2B d5d0635e83bbcd31544d5ea5811c2f202b0da76bd7a4086e8fc61e3293640e701b04599f95decaa82bee3705dbd6b91ad24b9dbd20edcfc329913600c8a3c932 SHA512 61f1db886e8e9a6d78b569329f4d5944c296778a5a34f94fbf115a748fb4c3be422bf4d3cc828e22fcdcd380fdf9009f5bd91a8a5edc87089afc58297a0b946f
EBUILD watchdog-0.8.3.ebuild 1038 BLAKE2B 0355fc33f43f36ecb97c52718e5ab6ca13252f46dd2fffd473a16192804192e47cf8a98575463abff42dae3582e0dd605f078253ea8e22a4c4bc34ae567d22d5 SHA512 6d95e48fe2af83f8feb46514c49d8ea761c5e1ce25431bf82c98c4fc44c39399909b1274a765124f342d3684417f3b7d725fb91c3c932af8a2afde442b52823c
MISC metadata.xml 409 BLAKE2B 066a5f62332bfdbd1ee84be547214935022d96e8f51d270302fb891d8c9e438141bc4d42cda84cdf02ec65e80c5ad5dbdc8aaeffbf777bb7ee9b153c95cfdfa7 SHA512 dc751fd76505ab72f2e58c28fef326745ee464749e3640510679e852af6752906312f3d8c82b3b0220a120e0112c96e83d62738321a3bc7b71fd6aee803fea9a

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<stabilize-allarches/>
<upstream>
<remote-id type="pypi">watchdog</remote-id>
<remote-id type="github">gorakhargosh/watchdog</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,42 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DISTUTILS_USE_SETUPTOOLS=rdepend
PYTHON_COMPAT=( python3_{6..9} )
inherit distutils-r1 optfeature
DESCRIPTION="Python API and shell utilities to monitor file system events"
HOMEPAGE="https://github.com/gorakhargosh/watchdog"
SRC_URI="https://github.com/gorakhargosh/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 ~ppc x86"
DOCS="README.rst"
CDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
RDEPEND="${CDEPEND}
dev-python/argh[${PYTHON_USEDEP}]
dev-python/pathtools[${PYTHON_USEDEP}]"
DEPEND="${CDEPEND}
test? (
>=dev-python/pytest-timeout-0.3[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest
src_prepare() {
sed -i -e '/--cov/d' setup.cfg || die
# broken when django is installed
sed -i -e 's:test_eventlet_monkey_patching:_&:' \
tests/test_skip_repeats_queue.py || die
default
}
pkg_postinst() {
optfeature "Bash completion" dev-python/argcomplete
}