Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/doit/
Date: Thu, 17 Sep 2020 20:22:26
Message-Id: 1600374139.2f9c7c06ae380331593930a1fcc0faaa7e75d8e6.sam@gentoo
1 commit: 2f9c7c06ae380331593930a1fcc0faaa7e75d8e6
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Tue Sep 8 19:47:07 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 17 20:22:19 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f9c7c06
7
8 dev-python/doit: remove old version
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/17475
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 dev-python/doit/doit-0.32.0-r1.ebuild | 54 -----------------------------------
16 1 file changed, 54 deletions(-)
17
18 diff --git a/dev-python/doit/doit-0.32.0-r1.ebuild b/dev-python/doit/doit-0.32.0-r1.ebuild
19 deleted file mode 100644
20 index 0bdfcaf80c3..00000000000
21 --- a/dev-python/doit/doit-0.32.0-r1.ebuild
22 +++ /dev/null
23 @@ -1,54 +0,0 @@
24 -# Copyright 1999-2020 Gentoo Authors
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI=7
28 -
29 -PYTHON_COMPAT=( python3_{6,7} )
30 -DISTUTILS_USE_SETUPTOOLS=rdepend
31 -
32 -inherit bash-completion-r1 distutils-r1
33 -
34 -DESCRIPTION="Automation tool"
35 -HOMEPAGE="https://pydoit.org/ https://pypi.org/project/doit/"
36 -SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
37 -
38 -LICENSE="MIT"
39 -SLOT="0"
40 -KEYWORDS="amd64 ~x86"
41 -
42 -RDEPEND="
43 - dev-python/cloudpickle[${PYTHON_USEDEP}]
44 - dev-python/pyinotify[${PYTHON_USEDEP}]
45 - dev-python/six[${PYTHON_USEDEP}]"
46 -DEPEND="
47 - test? (
48 - ${RDEPEND}
49 - $(python_gen_impl_dep sqlite)
50 - dev-python/mock[${PYTHON_USEDEP}]
51 - dev-python/pyflakes[${PYTHON_USEDEP}]
52 - >=dev-python/pytest-5.4[${PYTHON_USEDEP}]
53 - )"
54 -PDEPEND=">=dev-python/doit-py-0.4.0[${PYTHON_USEDEP}]"
55 -
56 -distutils_enable_tests pytest
57 -distutils_enable_sphinx doc dev-python/sphinx_rtd_theme
58 -
59 -PATCHES=(
60 - "${FILESDIR}/${P}_pytest5.4.patch"
61 - "${FILESDIR}/${P}_unpickable.patch"
62 -)
63 -
64 -src_prepare() {
65 - default
66 - # Replace custom theme with builtin for documentation
67 - sed -i -e "s:'press':'sphinx_rtd_theme':" doc/conf.py || die
68 - # Disable test failing due to impact on PATH run in a sandbox
69 - sed -i -e "s:test_target:_&:" tests/test_cmd_strace.py || die
70 -}
71 -
72 -src_install() {
73 - distutils-r1_src_install
74 - newbashcomp bash_completion_doit ${PN}
75 - insinto /usr/share/zsh/site-functions
76 - newins zsh_completion_doit _${PN}
77 -}