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/mando/
Date: Fri, 24 Apr 2020 20:13:15
Message-Id: 1587759178.19be75bb99e12b8083f088ee14d29620f9902ec0.mgorny@gentoo
1 commit: 19be75bb99e12b8083f088ee14d29620f9902ec0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 24 20:04:13 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 24 20:12:58 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19be75bb
7
8 dev-python/mando: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/mando/Manifest | 1 -
13 dev-python/mando/mando-0.3.2.ebuild | 42 -------------------------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/dev-python/mando/Manifest b/dev-python/mando/Manifest
17 index 2db64f33799..cadf3302663 100644
18 --- a/dev-python/mando/Manifest
19 +++ b/dev-python/mando/Manifest
20 @@ -1,2 +1 @@
21 -DIST mando-0.3.2.tar.gz 22393 BLAKE2B bf6a7df4a6e2e8270d0b8fa278cde7d520bf5c9d490dec748927d8f7c024381094f946e5feb4b5334b0d7255df002aeb1b42b8545b7514194425e37f739d2da9 SHA512 57f5041ad175c4eca4c158d9d917dcb1f9c25978c60aa0e76322d0395b0edbc3fb7b062da7b9af871a97bbd46cfe7f81e634287f813baf15ef134be53150bd11
22 DIST mando-0.6.4.tar.gz 36560 BLAKE2B 9878746485d4b896c3e32512b77ac02739940a1398eee12056fd6719cc3c99f8c526c8e573d2556b6a9d0d8d26e20fb45c97119e626b1d44f0a5b5f4655adba1 SHA512 457fa0db4e8e5dbfac6146d254181213814ef1975c919b4573007face27749ec3a50eda850558ebdc0fdff94a5e9819fd825b10cb3023078b2b426c2825fdbf0
23
24 diff --git a/dev-python/mando/mando-0.3.2.ebuild b/dev-python/mando/mando-0.3.2.ebuild
25 deleted file mode 100644
26 index 5e16ff3b6b0..00000000000
27 --- a/dev-python/mando/mando-0.3.2.ebuild
28 +++ /dev/null
29 @@ -1,42 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -PYTHON_COMPAT=( python3_6 )
35 -
36 -inherit distutils-r1 vcs-snapshot
37 -
38 -DESCRIPTION="Create Python CLI apps with little to no effort at all!"
39 -HOMEPAGE="https://mando.readthedocs.org/"
40 -SRC_URI="https://github.com/rubik/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="doc examples test"
46 -RESTRICT="!test? ( test )"
47 -
48 -DEPEND="
49 - dev-python/setuptools[${PYTHON_USEDEP}]
50 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
51 - test? ( dev-python/paramunittest[${PYTHON_USEDEP}] )
52 -"
53 -RDEPEND=""
54 -
55 -python_compile_all() {
56 - use doc && emake -C docs html
57 -}
58 -
59 -python_test() {
60 - "${PYTHON}" mando/tests/run.py || die "tests failed under ${EPYTHON}"
61 -}
62 -
63 -python_install_all() {
64 - use doc && local HTML_DOCS=( docs/_build/html/. )
65 - if use examples; then
66 - dodoc -r examples
67 - docompress -x /usr/share/doc/${PF}/examples
68 - fi
69 -
70 - distutils-r1_python_install_all
71 -}