Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/cffi: cffi-0.8.1.ebuild ChangeLog
Date: Fri, 06 Dec 2013 06:16:25
Message-Id: 20131206061618.F04B72004B@flycatcher.gentoo.org
1 patrick 13/12/06 06:16:18
2
3 Modified: ChangeLog
4 Added: cffi-0.8.1.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.18 dev-python/cffi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/cffi/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 30 Nov 2013 04:04:46 -0000 1.17
24 +++ ChangeLog 6 Dec 2013 06:16:18 -0000 1.18
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/cffi
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cffi/ChangeLog,v 1.17 2013/11/30 04:04:46 floppym Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cffi/ChangeLog,v 1.18 2013/12/06 06:16:18 patrick Exp $
30 +
31 +*cffi-0.8.1 (06 Dec 2013)
32 +
33 + 06 Dec 2013; Patrick Lauer <patrick@g.o> +cffi-0.8.1.ebuild:
34 + Bump
35
36 30 Nov 2013; Mike Gilbert <floppym@g.o> cffi-0.7.2.ebuild,
37 cffi-0.8.ebuild:
38
39
40
41 1.1 dev-python/cffi/cffi-0.8.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/cffi-0.8.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/cffi-0.8.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: cffi-0.8.1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.1.ebuild,v 1.1 2013/12/06 06:16:18 patrick Exp $
51
52 EAPI="5"
53 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
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"
63 KEYWORDS="~amd64 ~arm ~x86"
64 IUSE="doc test"
65
66 RDEPEND="virtual/libffi
67 dev-python/pycparser[${PYTHON_USEDEP}]
68 dev-python/pytest[${PYTHON_USEDEP}]
69 dev-python/hgdistver"
70 DEPEND="$REDEPEND
71 test? ( dev-python/virtualenv )"
72
73 python_compile_all() {
74 use doc && emake -C doc html
75 }
76
77 python_test() {
78 py.test -x -v --ignore testing/test_zintegration.py c/ testing/
79 }
80
81 python_install_all() {
82 distutils-r1_python_install_all
83 use doc && dohtml -r doc/build/
84 }