Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cliff/
Date: Thu, 22 Feb 2018 19:59:24
Message-Id: 1519329538.27059a4277e7f4c28ca68382b0b907a26723766b.prometheanfire@gentoo
1 commit: 27059a4277e7f4c28ca68382b0b907a26723766b
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 22 19:27:29 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 22 19:58:58 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27059a42
7
8 dev-python/cliff: 2.11.0 bup
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-python/cliff/Manifest | 1 +
13 dev-python/cliff/cliff-2.11.0.ebuild | 62 ++++++++++++++++++++++++++++++++++++
14 2 files changed, 63 insertions(+)
15
16 diff --git a/dev-python/cliff/Manifest b/dev-python/cliff/Manifest
17 index c19f22abcaa..872465eeb76 100644
18 --- a/dev-python/cliff/Manifest
19 +++ b/dev-python/cliff/Manifest
20 @@ -1 +1,2 @@
21 +DIST cliff-2.11.0.tar.gz 77037 BLAKE2B a38f37574f1802a2724143f35cc1d1159d8165f75f4c9e582e726cfdc9090814635d99b073a5d8df3a3e3b3d57b79e4e383c0569bd6769325d81af69384e9946 SHA512 0f29431b30610f0c781c9eddac57724043b6d7c05bc82f0ec3027a68230222f18f78ffc1d82dbd8ff4b5408b255b27879bbc1266e8641b4bc1c871f029f6cba2
22 DIST cliff-2.8.0.tar.gz 71815 BLAKE2B d73d467a1e2e06e5f45e7fce766d6c8daf79d9a882692c0e77049427bb6de629409a282c8c554ba92c62a9c8fd44e0b19cd3cd93b9b3f1f2b8091a1e917a25b8 SHA512 a371916945ee71ec519aeb923ca44b0a0e10fe6e460d236434c5c2946ad2b517050bf9d0430bdde506bdf2d28ba60bd45941d9ce21d77a83e2d5541b088d04b3
23
24 diff --git a/dev-python/cliff/cliff-2.11.0.ebuild b/dev-python/cliff/cliff-2.11.0.ebuild
25 new file mode 100644
26 index 00000000000..0d69f56ea35
27 --- /dev/null
28 +++ b/dev-python/cliff/cliff-2.11.0.ebuild
29 @@ -0,0 +1,62 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
35 +
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Command Line Interface Formulation Framework"
39 +HOMEPAGE="https://github.com/dreamhost/cliff"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="Apache-2.0"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
45 +IUSE="doc test"
46 +
47 +CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
48 + !~dev-python/pbr-2.1.0"
49 +DEPEND="
50 + dev-python/setuptools[${PYTHON_USEDEP}]
51 + ${CDEPEND}
52 + test? (
53 + dev-python/nose[${PYTHON_USEDEP}]
54 + >=dev-python/subunit-1.0.0[${PYTHON_USEDEP}]
55 + >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
56 + >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
57 + >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
58 + >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
59 + >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
60 + !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
61 + >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}]
62 + )
63 + doc? (
64 + >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
65 + )
66 +"
67 +# source files stipulate <sphinx-1.3 however build effected perfectly with sphinx-1.3.1
68 +RDEPEND="
69 + ${CDEPEND}
70 + >=dev-python/cmd2-0.6.7[${PYTHON_USEDEP}]
71 + >=dev-python/prettytable-0.7.1[${PYTHON_USEDEP}]
72 + <dev-python/prettytable-0.8[${PYTHON_USEDEP}]
73 + >=dev-python/pyparsing-2.1.0[${PYTHON_USEDEP}]
74 + >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
75 + >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
76 + >=dev-python/unicodecsv-0.8.0[${PYTHON_USEDEP}]
77 + >=dev-python/pyyaml-3.10.0[${PYTHON_USEDEP}]
78 + "
79 +
80 +python_compile() {
81 + use doc && esetup.py build_sphinx
82 +}
83 +
84 +python_test() {
85 + nosetests ${PN}/tests || die "Tests fail with ${EPYTHON}"
86 +}
87 +
88 +python_install_all() {
89 + use doc && local HTML_DOCS=( doc/build/html/. )
90 + distutils-r1_python_install_all
91 +}