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/http-parser: http-parser-0.7.12.ebuild ChangeLog
Date: Tue, 30 Oct 2012 06:09:03
Message-Id: 20121030060852.51A8821600@flycatcher.gentoo.org
1 patrick 12/10/30 06:08:52
2
3 Modified: ChangeLog
4 Added: http-parser-0.7.12.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.4 dev-python/http-parser/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/http-parser/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/http-parser/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/http-parser/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/http-parser/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 17 Oct 2012 05:48:15 -0000 1.3
24 +++ ChangeLog 30 Oct 2012 06:08:52 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/http-parser
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/http-parser/ChangeLog,v 1.3 2012/10/17 05:48:15 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/http-parser/ChangeLog,v 1.4 2012/10/30 06:08:52 patrick Exp $
30 +
31 +*http-parser-0.7.12 (30 Oct 2012)
32 +
33 + 30 Oct 2012; Patrick Lauer <patrick@g.o> +http-parser-0.7.12.ebuild:
34 + Bump
35
36 17 Oct 2012; Patrick Lauer <patrick@g.o> http-parser-0.7.8.ebuild:
37 Restricting python 2.5
38
39
40
41 1.1 dev-python/http-parser/http-parser-0.7.12.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/http-parser/http-parser-0.7.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/http-parser/http-parser-0.7.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: http-parser-0.7.12.ebuild
47 ===================================================================
48 # Copyright 1999-2012 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.7.12.ebuild,v 1.1 2012/10/30 06:08:52 patrick Exp $
51
52 EAPI=4
53
54 SUPPORT_PYTHON_ABIS=1
55 RESTRICT_PYTHON_ABIS="2.5 *-jython"
56
57 inherit distutils
58
59 DESCRIPTION="HTTP request/response parser for python in C"
60 HOMEPAGE="http://github.com/benoitc/http-parser"
61 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
62
63 LICENSE="MIT"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="examples"
67
68 RDEPEND=""
69 DEPEND="${RDEPEND}
70 dev-python/setuptools
71 dev-python/cython"
72
73 PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
74
75 src_install() {
76 distutils_src_install
77 if use examples; then
78 docompress -x usr/share/doc/${P}/examples
79 insinto usr/share/doc/${P}
80 doins -r examples/
81 fi
82 }