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.8.ebuild ChangeLog
Date: Fri, 24 Aug 2012 08:19:40
Message-Id: 20120824081925.8534A2055F@flycatcher.gentoo.org
1 patrick 12/08/24 08:19:25
2
3 Modified: ChangeLog
4 Added: http-parser-0.7.8.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha122/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 dev-python/http-parser/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/http-parser/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/http-parser/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/http-parser/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/http-parser/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 7 Jun 2012 18:09:36 -0000 1.1
24 +++ ChangeLog 24 Aug 2012 08:19:25 -0000 1.2
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.1 2012/06/07 18:09:36 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/http-parser/ChangeLog,v 1.2 2012/08/24 08:19:25 patrick Exp $
30 +
31 +*http-parser-0.7.8 (24 Aug 2012)
32 +
33 + 24 Aug 2012; Patrick Lauer <patrick@g.o> +http-parser-0.7.8.ebuild:
34 + Bump
35
36 *http-parser-0.7.5 (07 Jun 2012)
37
38 @@ -8,4 +13,3 @@
39 +http-parser-0.7.5.ebuild, +metadata.xml:
40 Initial import. Ebuild written by Ian Delaney <johneed@×××××××.com>. Fixes
41 bug 416879
42 -
43
44
45
46 1.1 dev-python/http-parser/http-parser-0.7.8.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/http-parser/http-parser-0.7.8.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/http-parser/http-parser-0.7.8.ebuild?rev=1.1&content-type=text/plain
50
51 Index: http-parser-0.7.8.ebuild
52 ===================================================================
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-python/http-parser/http-parser-0.7.8.ebuild,v 1.1 2012/08/24 08:19:25 patrick Exp $
56
57 EAPI=4
58
59 SUPPORT_PYTHON_ABIS=1
60 RESTRICT_PYTHON_ABIS="*-jython"
61
62 inherit distutils
63
64 DESCRIPTION="HTTP request/response parser for python in C"
65 HOMEPAGE="http://github.com/benoitc/http-parser"
66 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
67
68 LICENSE="MIT"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE="examples"
72
73 RDEPEND=""
74 DEPEND="${RDEPEND}
75 dev-python/setuptools
76 dev-python/cython"
77
78 PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
79
80 src_install() {
81 distutils_src_install
82 if use examples; then
83 docompress -x usr/share/doc/${P}/examples
84 insinto usr/share/doc/${P}
85 doins -r examples/
86 fi
87 }