Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/http-parser: http-parser-0.8.3.ebuild ChangeLog
Date: Mon, 02 Sep 2013 20:01:49
Message-Id: 20130902200145.CD3832004C@flycatcher.gentoo.org
1 floppym 13/09/02 20:01:45
2
3 Modified: ChangeLog
4 Added: http-parser-0.8.3.ebuild
5 Log:
6 Version bump. add python3.3.
7
8 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
9
10 Revision Changes Path
11 1.17 dev-python/http-parser/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/http-parser/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/http-parser/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/http-parser/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/http-parser/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 11 Jul 2013 21:30:47 -0000 1.16
24 +++ ChangeLog 2 Sep 2013 20:01:45 -0000 1.17
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/http-parser
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/http-parser/ChangeLog,v 1.16 2013/07/11 21:30:47 vincent Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/http-parser/ChangeLog,v 1.17 2013/09/02 20:01:45 floppym Exp $
30 +
31 +*http-parser-0.8.3 (02 Sep 2013)
32 +
33 + 02 Sep 2013; Mike Gilbert <floppym@g.o> +http-parser-0.8.3.ebuild:
34 + Version bump. add python3.3.
35
36 11 Jul 2013; Vicente Olivert Riera <vincent@g.o>
37 http-parser-0.8.1-r1.ebuild:
38
39
40
41 1.1 dev-python/http-parser/http-parser-0.8.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/http-parser/http-parser-0.8.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/http-parser/http-parser-0.8.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: http-parser-0.8.3.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/http-parser/http-parser-0.8.3.ebuild,v 1.1 2013/09/02 20:01:45 floppym Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
55
56 inherit distutils-r1 flag-o-matic
57
58 DESCRIPTION="HTTP request/response parser for python in C"
59 HOMEPAGE="http://github.com/benoitc/http-parser"
60 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="MIT"
63 SLOT="0"
64 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
65 IUSE="examples"
66
67 RDEPEND=""
68 DEPEND="${RDEPEND}
69 dev-python/setuptools[${PYTHON_USEDEP}]"
70
71 cython_dep() {
72 local flag
73 for flag in $(python_gen_useflags 'python*'); do
74 DEPEND+=" ${flag}? ( dev-python/cython[${flag}(-)] )"
75 done
76 }
77 cython_dep
78
79 python_compile() {
80 if [[ ${EPYTHON} != python3* ]]; then
81 local CFLAGS=${CFLAGS}
82 append-cflags -fno-strict-aliasing
83 fi
84
85 distutils-r1_python_compile
86 }
87
88 python_install_all() {
89 local DOCS=( README.rst )
90 use examples && local EXAMPLES=( examples/. )
91 distutils-r1_python_install_all
92 }