Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/cffi: ChangeLog cffi-0.8.6.ebuild
Date: Tue, 08 Jul 2014 03:21:03
Message-Id: 20140708032058.9038A2004E@flycatcher.gentoo.org
1 radhermit 14/07/08 03:20:58
2
3 Modified: ChangeLog
4 Added: cffi-0.8.6.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.36 dev-python/cffi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/cffi/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 23 Jun 2014 11:12:13 -0000 1.35
24 +++ ChangeLog 8 Jul 2014 03:20:58 -0000 1.36
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/cffi
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cffi/ChangeLog,v 1.35 2014/06/23 11:12:13 klausman Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cffi/ChangeLog,v 1.36 2014/07/08 03:20:58 radhermit Exp $
30 +
31 +*cffi-0.8.6 (08 Jul 2014)
32 +
33 + 08 Jul 2014; Tim Harder <radhermit@g.o> +cffi-0.8.6.ebuild:
34 + Version bump.
35
36 23 Jun 2014; Tobias Klausmann <klausman@g.o> cffi-0.8.2.ebuild:
37 Dekeywording on alpha due to ply being broken (bug 514446) which dekeywords
38
39
40
41 1.1 dev-python/cffi/cffi-0.8.6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/cffi-0.8.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/cffi-0.8.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: cffi-0.8.6.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/cffi/cffi-0.8.6.ebuild,v 1.1 2014/07/08 03:20:58 radhermit Exp $
51
52 EAPI="5"
53 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
54
55 inherit distutils-r1
56
57 DESCRIPTION="Foreign Function Interface for Python calling C code."
58 HOMEPAGE="http://cffi.readthedocs.org/"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="MIT"
62 SLOT="0/${PV}"
63 KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~x86 ~x86-fbsd"
64 IUSE="doc"
65
66 RDEPEND="virtual/libffi
67 dev-python/pycparser[${PYTHON_USEDEP}]
68 dev-python/pytest[${PYTHON_USEDEP}]"
69 DEPEND="${RDEPEND}"
70
71 python_compile_all() {
72 use doc && emake -C doc html
73 }
74
75 python_test() {
76 py.test -x -v --ignore testing/test_zintegration.py c/ testing/ || die "Testing failed with ${EPYTHON}"
77 }
78
79 python_install_all() {
80 distutils-r1_python_install_all
81 use doc && dohtml -r doc/build/
82 }