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/pyhamcrest: pyhamcrest-1.8.5.ebuild ChangeLog
Date: Wed, 29 Jul 2015 21:27:53
Message-Id: 20150729212745.55709C3@oystercatcher.gentoo.org
1 alunduil 15/07/29 21:27:45
2
3 Modified: ChangeLog
4 Added: pyhamcrest-1.8.5.ebuild
5 Log:
6 add version 1.8.5
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
9
10 Revision Changes Path
11 1.9 dev-python/pyhamcrest/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyhamcrest/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyhamcrest/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyhamcrest/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyhamcrest/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 7 Jun 2015 15:28:39 -0000 1.8
24 +++ ChangeLog 29 Jul 2015 21:27:45 -0000 1.9
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pyhamcrest
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyhamcrest/ChangeLog,v 1.8 2015/06/07 15:28:39 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyhamcrest/ChangeLog,v 1.9 2015/07/29 21:27:45 alunduil Exp $
30 +
31 +*pyhamcrest-1.8.5 (29 Jul 2015)
32 +
33 + 29 Jul 2015; Alex Brandt <alunduil@g.o> +pyhamcrest-1.8.5.ebuild:
34 + add version 1.8.5
35
36 07 Jun 2015; Justin Lecher <jlec@g.o> metadata.xml:
37 Add github to remote-id in metadata.xml
38
39
40
41 1.1 dev-python/pyhamcrest/pyhamcrest-1.8.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyhamcrest/pyhamcrest-1.8.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyhamcrest/pyhamcrest-1.8.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pyhamcrest-1.8.5.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/pyhamcrest/pyhamcrest-1.8.5.ebuild,v 1.1 2015/07/29 21:27:45 alunduil Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
54
55 inherit distutils-r1
56
57 MY_PN="PyHamcrest"
58
59 DESCRIPTION="Hamcrest framework for matcher objects"
60 HOMEPAGE="https://github.com/hamcrest/PyHamcrest"
61 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
62
63 S="${WORKDIR}/${MY_PN}-${PV}"
64
65 LICENSE="BSD"
66 SLOT="0"
67 KEYWORDS="~amd64"
68 IUSE="doc examples test"
69
70 CDEPEND=">=dev-python/six-1.4[${PYTHON_USEDEP}]"
71 DEPEND="
72 dev-python/setuptools[${PYTHON_USEDEP}]
73 doc? (
74 >=dev-python/sphinx-1.2.2[${PYTHON_USEDEP}]
75 dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
76 )
77 test? (
78 ${CDEPEND}
79 >=dev-python/pytest-2.6[${PYTHON_USEDEP}]
80 )
81 "
82 RDEPEND="${CDEPEND}"
83
84 python_compile_all() {
85 use doc && esetup.py build_sphinx
86 }
87
88 python_test() {
89 py.test -v || die "Tests failed under ${EPYTHON}"
90 }
91
92 python_install_all() {
93 use doc && local HTML_DOCS=( doc/_build/html/. )
94 use examples && local EXAMPLES=( examples/. )
95
96 distutils-r1_python_install_all
97 }