Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/livereload/
Date: Thu, 07 Jan 2021 09:19:25
Message-Id: 1610011077.709ad90c765d1d6472f09ec409cadcdea162eda7.mgorny@gentoo
1 commit: 709ad90c765d1d6472f09ec409cadcdea162eda7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 7 09:17:57 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 09:17:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=709ad90c
7
8 dev-python/livereload: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/livereload/Manifest | 1 -
13 dev-python/livereload/livereload-2.6.1.ebuild | 47 ---------------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/dev-python/livereload/Manifest b/dev-python/livereload/Manifest
17 index 7ccf872191f..3a64923b8c0 100644
18 --- a/dev-python/livereload/Manifest
19 +++ b/dev-python/livereload/Manifest
20 @@ -1,2 +1 @@
21 -DIST livereload-2.6.1.tar.gz 28324 BLAKE2B e6b9d107b5848916548e3665461dc90c1a37124496b4066aab45c62c57f0287f23d3883321bc2c67a053f981336c84ff47d1a459c9f10bb8965ea11236d07d2d SHA512 c7f058687c715a46e24537105bae2788395c6664a69f9a78b1c357464818d17826515c66c537ab625ee5eeb99f162b1304006455f4da9b0bab9a67bacf12d3dc
22 DIST livereload-2.6.3.tar.gz 29407 BLAKE2B 39f030dbc21bec1b132fd9d43f9072f4c35d23ccdca56819e2c6b35277e9eac9caeeff7052fc766359e34bf415319f809ebd45927bd2cc223be7ac88594feef7 SHA512 ccccb17cb4d835eb9e812f8076f871164f6afb2fdc1aee9e35c5ef2d75be2c0403cee51d4eb30b029d7b35522f357ee8c3e9df926fd93511ba7d010ed2a69e8e
23
24 diff --git a/dev-python/livereload/livereload-2.6.1.ebuild b/dev-python/livereload/livereload-2.6.1.ebuild
25 deleted file mode 100644
26 index 2d3bde4b313..00000000000
27 --- a/dev-python/livereload/livereload-2.6.1.ebuild
28 +++ /dev/null
29 @@ -1,47 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{6,7,8} )
36 -
37 -DISTUTILS_USE_SETUPTOOLS=rdepend
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Python LiveReload is an awesome tool for web developers"
42 -HOMEPAGE="https://github.com/lepture/python-livereload"
43 -SRC_URI="https://github.com/lepture/python-${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="BSD"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -
49 -IUSE="examples"
50 -
51 -RDEPEND="
52 - dev-python/six[${PYTHON_USEDEP}]
53 - www-servers/tornado[${PYTHON_USEDEP}]
54 -"
55 -
56 -S="${WORKDIR}/python-${P}"
57 -
58 -distutils_enable_tests pytest
59 -distutils_enable_sphinx docs dev-python/flask-sphinx-themes
60 -
61 -python_prepare_all() {
62 - # AssertionError: assert (None, None) == ('/var/tmp/portage/dev-python/livereload-2.6.1/work/livereload-2.6.1/tests/tmp/first/foo',\n None)
63 - sed -i -e 's:test_watch_multiple_dirs:_&:' tests/test_watcher.py || die
64 -
65 - distutils-r1_python_prepare_all
66 -}
67 -
68 -python_install_all() {
69 - if use examples; then
70 - docinto examples
71 - dodoc -r example/.
72 - docompress -x /usr/share/doc/${PF}/examples
73 - fi
74 -
75 - distutils-r1_python_install_all
76 -}