From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/watchdog/
Date: Wed, 26 May 2021 08:36:20 +0000 (UTC) [thread overview]
Message-ID: <1622018165.413850d1c441825b400522b6bd3652fa455568e6.mgorny@gentoo> (raw)
commit: 413850d1c441825b400522b6bd3652fa455568e6
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 26 08:29:37 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 26 08:36:05 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=413850d1
dev-python/watchdog: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/watchdog/Manifest | 2 --
dev-python/watchdog/watchdog-2.0.2.ebuild | 39 -------------------------------
dev-python/watchdog/watchdog-2.1.0.ebuild | 38 ------------------------------
3 files changed, 79 deletions(-)
diff --git a/dev-python/watchdog/Manifest b/dev-python/watchdog/Manifest
index 248a576b676..ce1ac8885c4 100644
--- a/dev-python/watchdog/Manifest
+++ b/dev-python/watchdog/Manifest
@@ -1,6 +1,4 @@
DIST watchdog-1.0.2.tar.gz 91796 BLAKE2B 001cbe82ff8aff0c4e56e4d1f02519047580cccb48466566ad7c9c1f462f90a9a036cf90846eb38ec4fb24ff1df2a1ddfec20b3f0587afdc1f938ada1bb0b1ef SHA512 e87a0955ce822daabd7d030804876698f98ed2aad58486e26a94585763655302063f091b653abd385ea99642361b6253d8e051d96019b243a77b078ba86b0d6e
-DIST watchdog-2.0.2.tar.gz 95452 BLAKE2B e3a071cdf1c47698cd54bbaf925c4eb7e2af7398ced73aa332e57472cba2f5ce2ce1b96a31d3f5f3a525cabf81d5de528d95d0c59148150f407abb8ebc64538e SHA512 6134ad22b350b7b2893b564c4f02bd35b1be515fa18dd7f7000b191994b5ba48c5bf573819d2f363de227481a6bb8a0a14973e7c6611de367df2a3f228656ed1
DIST watchdog-2.0.3.tar.gz 95524 BLAKE2B 568e9d66efbfa98c19dab704681dbc48f869b59d51d7c7ff7ce1fd7465efcc6233f871e7f9276f2732692645491f2fd197a639b17e9a3d8abb76d0148a934796 SHA512 e1c506e4ead8c3ee8d19e456b67623f3a1823007be6c1fad0d76c697205696183e7bd15e46c21bf61abce6dd16d267e55da8986633eeee337d10c609318fb958
-DIST watchdog-2.1.0.tar.gz 95833 BLAKE2B f11eb7961885fd0fbf8e6f888a069d77d9ff26b245bd3583e9060044c43a3356d56a334108c8c1a11735fffa779cc750bc390dd1510cf2c549ec9fe064899540 SHA512 65cc291927a61506fd2c26e05b85112e1cc0f26ca851138c62dfa34fae7958ee2b3946ffe586a9d2b7a48d59a6b5ce11c8dac276a3d78dcbeca8da011a880668
DIST watchdog-2.1.1.tar.gz 96703 BLAKE2B cbcaff41de6111a3c9c2ff00b7c0a9ce1a769bb2b0f8e2af841a0783dd7f3a55f46003863b05eb983531211743fd112a6e63944193e10e8dd296523a1da27d59 SHA512 5b9eb75bc7b8642a8246f426a992265bbe2e5d82a3fcdd543289db7734701bdca1a868b02edfdc26ea239a89d80dd5322e410b949e419c66bdcc0645241d826b
DIST watchdog-2.1.2.tar.gz 97407 BLAKE2B a847089409537391287a146670864c7721344ba8a6378c89483e9e08abe3f61690bfca48016f628ab0e6b0ff317679db3c72e27594e049ea03334dd20c305008 SHA512 2a127faffebb35f0b14d578570a4c5a7c27d6bd38042e34ea50f4b654be1ca07b193dfa72dfe25442d3e6da746f1cfbdda71c38be1386cc5a3e69204843c16f1
diff --git a/dev-python/watchdog/watchdog-2.0.2.ebuild b/dev-python/watchdog/watchdog-2.0.2.ebuild
deleted file mode 100644
index 8e5e5916596..00000000000
--- a/dev-python/watchdog/watchdog-2.0.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# 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_{7..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"
-
-CDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
-RDEPEND="${CDEPEND}
- dev-python/argh[${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
-}
diff --git a/dev-python/watchdog/watchdog-2.1.0.ebuild b/dev-python/watchdog/watchdog-2.1.0.ebuild
deleted file mode 100644
index 0b8865d4eef..00000000000
--- a/dev-python/watchdog/watchdog-2.1.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..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"
-
-CDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
-RDEPEND="${CDEPEND}
- dev-python/argh[${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
- default
-}
-
-python_test() {
- epytest -p no:django
-}
-
-pkg_postinst() {
- optfeature "Bash completion" dev-python/argcomplete
-}
next reply other threads:[~2021-05-26 8:36 UTC|newest]
Thread overview: 214+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-26 8:36 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-02 6:32 [gentoo-commits] repo/gentoo:master commit in: dev-python/watchdog/ Michał Górny
2024-11-02 6:32 Michał Górny
2024-10-19 9:08 Sam James
2024-10-19 9:08 Sam James
2024-10-19 8:41 Arthur Zamarin
2024-10-19 8:16 Arthur Zamarin
2024-10-19 8:12 Arthur Zamarin
2024-10-19 7:58 Arthur Zamarin
2024-10-19 7:38 Arthur Zamarin
2024-10-13 14:51 Sam James
2024-09-28 7:42 Michał Górny
2024-09-24 11:52 Sam James
2024-09-21 18:04 Arthur Zamarin
2024-09-21 11:08 Arthur Zamarin
2024-09-21 9:59 Sam James
2024-09-11 18:33 Arthur Zamarin
2024-09-06 18:41 Arthur Zamarin
2024-09-04 3:13 Michał Górny
2024-09-03 5:23 Michał Górny
2024-09-01 21:06 Sam James
2024-08-31 11:04 Arthur Zamarin
2024-08-31 8:52 Arthur Zamarin
2024-08-31 8:33 Arthur Zamarin
2024-08-31 8:00 Arthur Zamarin
2024-08-31 7:49 Sam James
2024-08-27 7:39 Michał Górny
2024-08-12 2:50 Michał Górny
2024-07-03 15:55 Michał Górny
2024-07-03 5:17 Ionen Wolkens
2024-06-08 8:53 Arthur Zamarin
2024-06-08 7:42 Arthur Zamarin
2024-06-08 7:30 Arthur Zamarin
2024-06-08 7:15 Arthur Zamarin
2024-06-08 7:10 Arthur Zamarin
2024-06-08 6:33 Arthur Zamarin
2024-05-24 4:03 Michał Górny
2024-05-11 9:07 Michał Górny
2024-03-19 5:52 Michał Górny
2024-03-19 3:42 Ionen Wolkens
2024-03-03 1:21 Sam James
2024-03-02 21:00 Arthur Zamarin
2024-03-02 14:38 Arthur Zamarin
2024-02-24 19:22 Arthur Zamarin
2024-02-24 14:04 Sam James
2024-02-24 10:07 Sam James
2024-02-24 10:07 Sam James
2024-02-07 8:29 Michał Górny
2023-05-25 15:47 Michał Górny
2023-04-24 5:57 Michał Górny
2023-04-23 21:36 Sam James
2023-04-23 5:36 Jakov Smolić
2023-04-22 16:36 Arthur Zamarin
2023-04-22 10:34 Arthur Zamarin
2023-04-22 9:26 Arthur Zamarin
2023-04-22 9:25 Arthur Zamarin
2023-04-22 9:00 Arthur Zamarin
2023-04-22 8:53 Arthur Zamarin
2023-03-30 19:35 Michał Górny
2023-03-30 17:13 Arthur Zamarin
2023-03-30 17:13 Arthur Zamarin
2023-03-27 18:03 Arthur Zamarin
2023-03-27 18:03 Arthur Zamarin
2023-03-27 18:02 Arthur Zamarin
2023-03-27 17:59 Arthur Zamarin
2023-03-27 17:58 Arthur Zamarin
2023-03-27 17:58 Arthur Zamarin
2023-03-21 20:06 Michał Górny
2023-02-28 18:16 Arthur Zamarin
2023-02-24 6:00 Michał Górny
2023-02-21 18:46 Michał Górny
2023-02-21 18:16 Arthur Zamarin
2023-02-21 18:16 Arthur Zamarin
2023-02-21 17:13 Arthur Zamarin
2023-02-16 22:57 Sam James
2023-02-16 20:58 Arthur Zamarin
2023-02-16 18:27 Arthur Zamarin
2023-02-16 17:49 Arthur Zamarin
2023-02-16 17:22 Arthur Zamarin
2023-01-10 8:50 Arthur Zamarin
2023-01-10 8:42 Arthur Zamarin
2023-01-10 8:35 Arthur Zamarin
2023-01-07 22:37 Sam James
2023-01-07 19:31 Arthur Zamarin
2023-01-07 19:08 Arthur Zamarin
2023-01-07 18:41 Arthur Zamarin
2023-01-07 18:33 Arthur Zamarin
2023-01-07 18:24 Arthur Zamarin
2023-01-02 14:54 Michał Górny
2022-12-06 6:02 Michał Górny
2022-07-15 7:31 Michał Górny
2022-07-15 6:00 Arthur Zamarin
2022-07-15 0:45 Sam James
2022-07-15 0:45 Sam James
2022-07-14 20:23 Arthur Zamarin
2022-07-14 20:15 Arthur Zamarin
2022-07-14 19:24 Arthur Zamarin
2022-07-14 19:07 Arthur Zamarin
2022-07-14 19:07 Arthur Zamarin
2022-06-17 4:54 Michał Górny
2022-06-16 23:06 Jakov Smolić
2022-06-16 23:05 Jakov Smolić
2022-06-16 23:05 Jakov Smolić
2022-06-16 15:46 Sam James
2022-06-16 10:16 Jakov Smolić
2022-06-16 10:15 Jakov Smolić
2022-06-16 10:15 Jakov Smolić
2022-06-16 9:06 Jakov Smolić
2022-06-11 5:21 Arthur Zamarin
2022-05-16 7:56 Michał Górny
2022-05-11 21:05 Michał Górny
2022-05-07 20:00 Michał Górny
2022-05-06 20:38 Michał Górny
2022-05-06 20:03 Arthur Zamarin
2022-04-29 19:21 Sam James
2022-04-27 7:03 Agostino Sarubbo
2022-04-26 23:24 Sam James
2022-04-26 18:00 Arthur Zamarin
2022-04-26 17:39 Arthur Zamarin
2022-04-26 17:18 Arthur Zamarin
2022-04-26 17:08 Arthur Zamarin
2022-03-27 9:31 Michał Górny
2021-12-12 21:32 Michał Górny
2021-12-12 18:25 Sam James
2021-12-10 7:39 Agostino Sarubbo
2021-12-10 7:37 Agostino Sarubbo
2021-12-09 22:33 Arthur Zamarin
2021-12-09 22:21 Arthur Zamarin
2021-12-09 22:11 Arthur Zamarin
2021-12-09 21:35 Arthur Zamarin
2021-12-09 21:24 Sam James
2021-12-04 17:49 Sam James
2021-11-13 9:45 Arthur Zamarin
2021-11-04 5:49 Sam James
2021-10-03 14:22 Michał Górny
2021-10-02 18:39 Sam James
2021-09-30 18:18 Sam James
2021-09-26 7:28 Agostino Sarubbo
2021-09-26 5:01 Sam James
2021-09-25 19:56 Sam James
2021-09-25 19:53 Sam James
2021-09-21 21:37 James Le Cuirot
2021-09-06 23:42 Sam James
2021-08-24 6:59 Michał Górny
2021-08-20 19:42 Sam James
2021-08-20 7:17 Michał Górny
2021-08-20 7:17 Michał Górny
2021-08-20 6:00 Agostino Sarubbo
2021-08-20 5:59 Agostino Sarubbo
2021-08-19 21:12 Michał Górny
2021-06-25 19:36 Sam James
2021-06-15 13:25 Sam James
2021-06-15 5:25 Sam James
2021-06-15 3:48 Sam James
2021-06-11 20:09 Michał Górny
2021-06-10 14:02 Yixun Lan
2021-05-26 6:49 Agostino Sarubbo
2021-05-20 7:25 Michał Górny
2021-05-19 18:32 Michał Górny
2021-05-18 17:28 Sam James
2021-05-15 19:39 Sergei Trofimovich
2021-05-15 19:36 Sam James
2021-05-12 8:37 Michał Górny
2021-05-10 19:32 Michał Górny
2021-05-04 13:59 Michał Górny
2021-04-23 7:25 Michał Górny
2021-03-25 19:09 Michał Górny
2021-03-25 16:19 Agostino Sarubbo
2021-03-19 21:39 Michał Górny
2021-03-19 20:14 Sam James
2021-03-14 22:33 Sam James
2021-02-23 0:51 Michał Górny
2021-02-17 16:34 Michał Górny
2021-02-11 10:05 Michał Górny
2021-01-18 19:13 Michał Górny
2021-01-18 17:43 Sam James
2021-01-13 20:16 Michał Górny
2021-01-13 19:34 Sam James
2021-01-01 0:59 Michał Górny
2020-12-21 21:43 Michał Górny
2020-12-21 21:28 Sam James
2020-12-19 8:59 Michał Górny
2020-12-10 10:15 Michał Górny
2020-12-10 10:15 Michał Górny
2020-11-21 20:54 Michał Górny
2020-11-04 5:32 Sam James
2020-08-22 18:53 Thomas Deutschmann
2020-08-22 10:10 Michał Górny
2020-08-05 15:18 Michał Górny
2020-07-29 10:20 Michał Górny
2020-07-12 16:57 Michał Górny
2020-07-09 7:58 Agostino Sarubbo
2020-06-26 10:10 Michał Górny
2020-06-03 6:41 Michał Górny
2020-05-04 12:34 Michał Górny
2020-05-03 10:30 Agostino Sarubbo
2020-05-03 10:01 Agostino Sarubbo
2020-03-08 10:42 Agostino Sarubbo
2020-03-08 10:37 Agostino Sarubbo
2020-03-07 17:57 Sebastian Pipping
2020-02-03 20:46 Michał Górny
2019-12-29 8:53 David Seifert
2019-12-29 2:43 Aaron Bauman
2019-05-21 16:02 Stephen Klimaszewski
2018-10-15 21:24 Virgil Dupras
2018-03-30 18:35 Aaron Bauman
2017-05-02 16:41 Michał Górny
2017-02-28 13:11 Andrey Grozin
2017-01-21 18:54 Agostino Sarubbo
2017-01-21 17:27 Agostino Sarubbo
2016-08-09 11:43 Andrey Grozin
2016-05-28 11:20 Pacho Ramos
2015-10-15 9:21 Justin Lecher
2015-08-14 23:10 Julian Ospald
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1622018165.413850d1c441825b400522b6bd3652fa455568e6.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox