Gentoo Archives: gentoo-commits

From: "Alex Brandt (alunduil)" <alunduil@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/expects: expects-0.7.2.ebuild ChangeLog
Date: Sat, 04 Jul 2015 20:43:28
Message-Id: 20150704204314.3487D752@oystercatcher.gentoo.org
1 alunduil 15/07/04 20:43:14
2
3 Modified: ChangeLog
4 Added: expects-0.7.2.ebuild
5 Log:
6 add version 0.7.2
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
9
10 Revision Changes Path
11 1.14 dev-python/expects/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/expects/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/expects/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/expects/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/expects/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 13 Jun 2015 17:24:37 -0000 1.13
24 +++ ChangeLog 4 Jul 2015 20:43:14 -0000 1.14
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/expects
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/expects/ChangeLog,v 1.13 2015/06/13 17:24:37 alunduil Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/expects/ChangeLog,v 1.14 2015/07/04 20:43:14 alunduil Exp $
30 +
31 +*expects-0.7.2 (04 Jul 2015)
32 +
33 + 04 Jul 2015; Alex Brandt <alunduil@g.o> +expects-0.7.2.ebuild:
34 + add version 0.7.2
35
36 13 Jun 2015; Alex Brandt <alunduil@g.o> -expects-0.6.2.ebuild:
37 remove version 0.6.2
38
39
40
41 1.1 dev-python/expects/expects-0.7.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/expects/expects-0.7.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/expects/expects-0.7.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: expects-0.7.2.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/expects/expects-0.7.2.ebuild,v 1.1 2015/07/04 20:43:14 alunduil Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
54
55 inherit distutils-r1
56
57 DESCRIPTION="Expressive and extensible TDD/BDD assertion library for Python"
58 HOMEPAGE="https://github.com/jaimegildesagredo/expects"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="Apache-2.0"
62 SLOT="0"
63 KEYWORDS="~amd64"
64 IUSE="doc test"
65
66 DEPEND="
67 dev-python/setuptools[${PYTHON_USEDEP}]
68 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
69 test? ( dev-python/mamba[${PYTHON_USEDEP}] )
70 "
71 RDEPEND=""
72
73 python_compile_all() {
74 use doc && emake -C docs html
75 }
76
77 python_test() {
78 mamba || die "tests failed under ${EPYTHON}"
79 }
80
81 python_install_all() {
82 use doc && local HTML_DOCS=( docs/_build/html/. )
83
84 distutils-r1_python_install_all
85 }