Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/lesscpy: lesscpy-0.10.2.ebuild ChangeLog
Date: Fri, 26 Jun 2015 04:46:45
Message-Id: 20150626044618.94794A4C@oystercatcher.gentoo.org
1 idella4 15/06/26 04:46:18
2
3 Modified: ChangeLog
4 Added: lesscpy-0.10.2.ebuild
5 Log:
6 bump; add py3 support, substitute and update test phase, upstream bug cited in comment
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.6 dev-python/lesscpy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lesscpy/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lesscpy/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lesscpy/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/lesscpy/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 3 Jun 2015 20:04:47 -0000 1.5
24 +++ ChangeLog 26 Jun 2015 04:46:18 -0000 1.6
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/lesscpy
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/lesscpy/ChangeLog,v 1.5 2015/06/03 20:04:47 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/lesscpy/ChangeLog,v 1.6 2015/06/26 04:46:18 idella4 Exp $
30 +
31 +*lesscpy-0.10.2 (26 Jun 2015)
32 +
33 + 26 Jun 2015; Ian Delaney <idella4@g.o> +lesscpy-0.10.2.ebuild:
34 + bump; add py3 support, substitute and update test phase, upstream bug cited in
35 + comment
36
37 03 Jun 2015; Justin Lecher <jlec@g.o> metadata.xml:
38 Add pypi to remote-id in metadata.xml
39
40
41
42 1.1 dev-python/lesscpy/lesscpy-0.10.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lesscpy/lesscpy-0.10.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lesscpy/lesscpy-0.10.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: lesscpy-0.10.2.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/lesscpy/lesscpy-0.10.2.ebuild,v 1.1 2015/06/26 04:46:18 idella4 Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
55
56 inherit distutils-r1
57
58 DESCRIPTION="A compiler written in Python for the LESS language"
59 HOMEPAGE="https://pypi.python.org/pypi/lesscpy"
60 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="Apache-2.0"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="test"
66
67 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
68 RDEPEND="dev-python/ply[${PYTHON_USEDEP}]
69 dev-python/six[${PYTHON_USEDEP}]"
70
71 python_test() {
72 # https://github.com/lesscpy/lesscpy/issues/74
73 esetup.py test
74 # This is equally effective
75 # nosetests -v || die "tests failed under ${EPYTHON}"
76 }