From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5CE50138351 for ; Mon, 4 May 2020 12:34:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73C50E08A4; Mon, 4 May 2020 12:34:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 39867E08A4 for ; Mon, 4 May 2020 12:34:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F32BF34F54F for ; Mon, 4 May 2020 12:34:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DE46215 for ; Mon, 4 May 2020 12:34:47 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1588595559.538b71393d4b6f198f0b5168f8999a0507bbff86.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/watchdog/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/watchdog/watchdog-0.9.0.ebuild X-VCS-Directories: dev-python/watchdog/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 538b71393d4b6f198f0b5168f8999a0507bbff86 X-VCS-Branch: master Date: Mon, 4 May 2020 12:34:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b970eb48-e5d8-418d-b222-e83212510f25 X-Archives-Hash: dfa283aeb3ba140f1929c8b92676e870 commit: 538b71393d4b6f198f0b5168f8999a0507bbff86 Author: Michał Górny gentoo org> AuthorDate: Mon May 4 12:32:39 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 4 12:32:39 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=538b7139 dev-python/watchdog: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/watchdog/watchdog-0.9.0.ebuild | 35 ------------------------------- 1 file changed, 35 deletions(-) diff --git a/dev-python/watchdog/watchdog-0.9.0.ebuild b/dev-python/watchdog/watchdog-0.9.0.ebuild deleted file mode 100644 index 6c1c209bf61..00000000000 --- a/dev-python/watchdog/watchdog-0.9.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 eutils - -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" -IUSE="test" - -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() { - default - rm tox.ini || die -} - -pkg_postinst() { - optfeature "Bash completion" dev-python/argcomplete -}