Gentoo Archives: gentoo-commits

From: "Rafael Martins (rafaelmartins)" <rafaelmartins@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/falcon: falcon-0.1.7.ebuild ChangeLog
Date: Sun, 06 Oct 2013 01:08:08
Message-Id: 20131006010803.9E4882004C@flycatcher.gentoo.org
1 rafaelmartins 13/10/06 01:08:03
2
3 Modified: ChangeLog
4 Added: falcon-0.1.7.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha175/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.4 dev-python/falcon/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/falcon/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/falcon/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/falcon/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/falcon/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 8 Jun 2013 15:10:17 -0000 1.3
24 +++ ChangeLog 6 Oct 2013 01:08:03 -0000 1.4
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/falcon
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/falcon/ChangeLog,v 1.3 2013/06/08 15:10:17 idella4 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/falcon/ChangeLog,v 1.4 2013/10/06 01:08:03 rafaelmartins Exp $
30 +
31 +*falcon-0.1.7 (06 Oct 2013)
32 +
33 + 06 Oct 2013; Rafael G. Martins <rafaelmartins@g.o>
34 + +falcon-0.1.7.ebuild:
35 + Version bump.
36
37 08 Jun 2013; Ian Delaney <idella4@g.o> falcon-0.1.6.ebuild:
38 pypy support added, deps adjusted accordingly
39
40
41
42 1.1 dev-python/falcon/falcon-0.1.7.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/falcon/falcon-0.1.7.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/falcon/falcon-0.1.7.ebuild?rev=1.1&content-type=text/plain
46
47 Index: falcon-0.1.7.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/falcon/falcon-0.1.7.ebuild,v 1.1 2013/10/06 01:08:03 rafaelmartins Exp $
52
53 EAPI=5
54
55 # Python 2.6 is supported, but depends on ordereddict, which has been in
56 # improvise for months and is a minimal package. If needed
57 # please let me know. PyPy also works
58 PYTHON_COMPAT=( python{2_7,3_3} pypy2_0 )
59
60 inherit distutils-r1
61
62 DESCRIPTION="A supersonic micro-framework for building cloud APIs."
63 HOMEPAGE="http://falconframework.org/ https://pypi.python.org/pypi/falcon"
64 SRC_URI="https://github.com/racker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
65
66 LICENSE="Apache-2.0"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE="+cython test"
70
71 RDEPEND="dev-python/six[${PYTHON_USEDEP}]
72 cython? (
73 dev-python/cython[$(python_gen_usedep python{2_7,3_3})] )"
74
75 DEPEND="${RDEPEND}
76 dev-python/setuptools[${PYTHON_USEDEP}]
77 test? (
78 dev-python/cython[$(python_gen_usedep python{2_7,3_3})]
79 dev-python/nose[${PYTHON_USEDEP}]
80 dev-python/testtools[${PYTHON_USEDEP}] )"
81
82 python_test() {
83 nosetests || die "Testing failed with ${EPYTHON}"
84 }
85
86 src_prepare() {
87 if ! use cython; then
88 sed -i -e 's/if with_cython:/if False:/' setup.py \
89 || die 'sed failed.'
90 fi
91 }