Gentoo Archives: gentoo-commits

From: "Matt Thode (prometheanfire)" <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/cliff: cliff-1.6.1.ebuild ChangeLog cliff-1.4.ebuild cliff-1.4.5.ebuild
Date: Fri, 01 Aug 2014 05:38:55
Message-Id: 20140801053850.4F7E72004E@flycatcher.gentoo.org
1 prometheanfire 14/08/01 05:38:49
2
3 Modified: ChangeLog
4 Added: cliff-1.6.1.ebuild
5 Removed: cliff-1.4.ebuild cliff-1.4.5.ebuild
6 Log:
7 bup
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
10
11 Revision Changes Path
12 1.11 dev-python/cliff/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliff/ChangeLog?rev=1.11&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliff/ChangeLog?rev=1.11&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliff/ChangeLog?r1=1.10&r2=1.11
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/cliff/ChangeLog,v
21 retrieving revision 1.10
22 retrieving revision 1.11
23 diff -u -r1.10 -r1.11
24 --- ChangeLog 6 Jul 2014 12:40:19 -0000 1.10
25 +++ ChangeLog 1 Aug 2014 05:38:48 -0000 1.11
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/cliff
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cliff/ChangeLog,v 1.10 2014/07/06 12:40:19 mgorny Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cliff/ChangeLog,v 1.11 2014/08/01 05:38:48 prometheanfire Exp $
31 +
32 +*cliff-1.6.1 (01 Aug 2014)
33 +
34 + 01 Aug 2014; Matthew Thode <prometheanfire@g.o> +cliff-1.6.1.ebuild,
35 + -cliff-1.4.5.ebuild, -cliff-1.4.ebuild:
36 + bup
37
38 06 Jul 2014; Michał Górny <mgorny@g.o> cliff-1.4.5.ebuild,
39 cliff-1.4.ebuild:
40
41
42
43 1.1 dev-python/cliff/cliff-1.6.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliff/cliff-1.6.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliff/cliff-1.6.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: cliff-1.6.1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/cliff/cliff-1.6.1.ebuild,v 1.1 2014/08/01 05:38:48 prometheanfire Exp $
53
54 EAPI=5
55 PYTHON_COMPAT=( python{2_7,3_2,3_3} )
56
57 inherit distutils-r1
58
59 DESCRIPTION="Command Line Interface Formulation Framework"
60 HOMEPAGE="https://github.com/dreamhost/cliff"
61 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
62
63 LICENSE="Apache-2.0"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
66 IUSE="test"
67
68 RDEPEND=">=dev-python/cmd2-0.6.7[${PYTHON_USEDEP}]
69 >=dev-python/prettytable-0.7[${PYTHON_USEDEP}]
70 <dev-python/prettytable-0.8[${PYTHON_USEDEP}]
71 >=dev-python/pyparsing-2.0.1[${PYTHON_USEDEP}]
72 >=dev-python/six-1.7.0[${PYTHON_USEDEP}]
73 >=dev-python/stevedore-0.14[${PYTHON_USEDEP}]"
74 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
75 >=dev-python/pbr-0.6[${PYTHON_USEDEP}]
76 !~dev-python/pbr-0.7[${PYTHON_USEDEP}]
77 <dev-python/pbr-1.0[${PYTHON_USEDEP}]
78 test? (
79 dev-python/nose[${PYTHON_USEDEP}]
80 >=dev-python/mock-1.0[${PYTHON_USEDEP}]
81 >=dev-python/coverage-3.6[${PYTHON_USEDEP}]
82 )"
83
84 python_test() {
85 nosetests tests || die "Tests fail with ${EPYTHON}"
86 }