Gentoo Archives: gentoo-commits

From: "Dirkjan Ochtman (djc)" <djc@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/cffi: cffi-0.7.ebuild ChangeLog cffi-0.5-r1.ebuild cffi-0.2.1.ebuild cffi-0.3.ebuild cffi-0.5.ebuild
Date: Fri, 02 Aug 2013 09:15:06
Message-Id: 20130802091500.094262171C@flycatcher.gentoo.org
1 djc 13/08/02 09:14:59
2
3 Modified: ChangeLog
4 Added: cffi-0.7.ebuild
5 Removed: cffi-0.5-r1.ebuild cffi-0.2.1.ebuild
6 cffi-0.3.ebuild cffi-0.5.ebuild
7 Log:
8 Version bump cffi to 0.7.
9
10 (Portage version: 2.1.13.1/cvs/Linux x86_64, signed Manifest commit with key 6B065BFB)
11
12 Revision Changes Path
13 1.10 dev-python/cffi/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/ChangeLog?rev=1.10&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/ChangeLog?rev=1.10&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/ChangeLog?r1=1.9&r2=1.10
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-python/cffi/ChangeLog,v
22 retrieving revision 1.9
23 retrieving revision 1.10
24 diff -u -r1.9 -r1.10
25 --- ChangeLog 9 May 2013 12:22:11 -0000 1.9
26 +++ ChangeLog 2 Aug 2013 09:14:59 -0000 1.10
27 @@ -1,6 +1,12 @@
28 # ChangeLog for dev-python/cffi
29 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cffi/ChangeLog,v 1.9 2013/05/09 12:22:11 maekke Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cffi/ChangeLog,v 1.10 2013/08/02 09:14:59 djc Exp $
32 +
33 +*cffi-0.7 (02 Aug 2013)
34 +
35 + 02 Aug 2013; Dirkjan Ochtman <djc@g.o> +cffi-0.7.ebuild,
36 + -cffi-0.2.1.ebuild, -cffi-0.3.ebuild, -cffi-0.5-r1.ebuild, -cffi-0.5.ebuild:
37 + Version bump cffi to 0.7.
38
39 09 May 2013; Markus Meier <maekke@g.o> cffi-0.6.ebuild:
40 add ~arm, bug #462506
41
42
43
44 1.1 dev-python/cffi/cffi-0.7.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/cffi-0.7.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/cffi-0.7.ebuild?rev=1.1&content-type=text/plain
48
49 Index: cffi-0.7.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-python/cffi/cffi-0.7.ebuild,v 1.1 2013/08/02 09:14:59 djc Exp $
54
55 EAPI="5"
56 PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} pypy1_9 )
57
58 inherit distutils-r1
59
60 DESCRIPTION="Foreign Function Interface for Python calling C code."
61 HOMEPAGE="http://cffi.readthedocs.org/"
62 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
63
64 LICENSE="MIT"
65 SLOT="0"
66 KEYWORDS="~amd64 ~arm ~x86"
67 IUSE="doc test"
68
69 RDEPEND="virtual/libffi
70 dev-python/pycparser[$(python_gen_usedep python{2_6,2_7,3_2,3_3} pypy1_9)]
71 dev-python/pytest[${PYTHON_USEDEP}]
72 dev-python/hgdistver"
73 DEPEND="$REDEPEND
74 test? ( dev-python/virtualenv )"
75
76 python_compile_all() {
77 use doc && emake -C doc html
78 }
79
80 python_test() {
81 py.test c/ testing/ -x -v
82 }
83
84 python_install_all() {
85 use doc && dohtml -r doc/build/
86 }