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/livereload: livereload-2.4.0.ebuild ChangeLog
Date: Sat, 04 Jul 2015 18:40:22
Message-Id: 20150704184013.A2A5B74B@oystercatcher.gentoo.org
1 alunduil 15/07/04 18:40:13
2
3 Modified: ChangeLog
4 Added: livereload-2.4.0.ebuild
5 Log:
6 add version 2.4.0
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
9
10 Revision Changes Path
11 1.4 dev-python/livereload/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/livereload/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/livereload/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/livereload/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/livereload/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 7 Jun 2015 13:43:45 -0000 1.3
24 +++ ChangeLog 4 Jul 2015 18:40:13 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/livereload
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/livereload/ChangeLog,v 1.3 2015/06/07 13:43:45 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/livereload/ChangeLog,v 1.4 2015/07/04 18:40:13 alunduil Exp $
30 +
31 +*livereload-2.4.0 (04 Jul 2015)
32 +
33 + 04 Jul 2015; Alex Brandt <alunduil@g.o> +livereload-2.4.0.ebuild:
34 + add version 2.4.0
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/livereload/livereload-2.4.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/livereload/livereload-2.4.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/livereload/livereload-2.4.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: livereload-2.4.0.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/livereload/livereload-2.4.0.ebuild,v 1.1 2015/07/04 18:40:13 alunduil Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
54
55 inherit distutils-r1 vcs-snapshot
56
57 DESCRIPTION="Python LiveReload is an awesome tool for web developers"
58 HOMEPAGE="https://github.com/lepture/python-livereload"
59 SRC_URI="https://github.com/lepture/python-${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~amd64"
64 IUSE="examples test"
65
66 CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
67 DEPEND="
68 ${CDEPEND}
69 test? ( dev-python/nose[${PYTHON_USEDEP}] )
70 "
71
72 RDEPEND="
73 ${CDEPEND}
74 dev-python/six[${PYTHON_USEDEP}]
75 www-servers/tornado[${PYTHON_USEDEP}]
76 "
77
78 python_test() {
79 nosetests || die "tests failed under ${EPYTHON}"
80 }
81
82 python_install_all() {
83 use examples && local EXAMPLES=( example/. )
84
85 distutils-r1_python_install_all
86 }