Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/http-parser: http-parser-2.3.ebuild ChangeLog
Date: Sat, 21 Jun 2014 09:54:29
Message-Id: 20140621095424.9A8292004E@flycatcher.gentoo.org
1 hasufell 14/06/21 09:54:24
2
3 Modified: ChangeLog
4 Added: http-parser-2.3.ebuild
5 Log:
6 version bump wrt #514154
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
9
10 Revision Changes Path
11 1.4 net-libs/http-parser/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/http-parser/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/http-parser/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/http-parser/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/http-parser/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 5 Sep 2013 19:23:27 -0000 1.3
24 +++ ChangeLog 21 Jun 2014 09:54:24 -0000 1.4
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-libs/http-parser
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/http-parser/ChangeLog,v 1.3 2013/09/05 19:23:27 ago Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/http-parser/ChangeLog,v 1.4 2014/06/21 09:54:24 hasufell Exp $
31 +
32 +*http-parser-2.3 (21 Jun 2014)
33 +
34 + 21 Jun 2014; Julian Ospald <hasufell@g.o> +http-parser-2.3.ebuild,
35 + +files/http-parser-2.3-flags.patch:
36 + version bump wrt #514154
37
38 05 Sep 2013; Agostino Sarubbo <ago@g.o> http-parser-2.1.ebuild:
39 Stable for x86, wrt bug #482608
40
41
42
43 1.1 net-libs/http-parser/http-parser-2.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/http-parser/http-parser-2.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/http-parser/http-parser-2.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: http-parser-2.3.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-libs/http-parser/http-parser-2.3.ebuild,v 1.1 2014/06/21 09:54:24 hasufell Exp $
53
54 EAPI=5
55
56 SONAMEVER="2.3"
57 SONAME="libhttp_parser.so.${SONAMEVER}"
58
59 inherit eutils toolchain-funcs multilib multilib-minimal
60
61 DESCRIPTION="A parser for HTTP messages written in C. It parses both requests and responses"
62 HOMEPAGE="https://github.com/joyent/http-parser"
63 SRC_URI="https://github.com/joyent/http-parser/archive/v${PV}.tar.gz -> ${P}.tar.gz"
64
65 LICENSE="MIT"
66 SLOT="0/${SONAMEVER}"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 src_prepare() {
71 tc-export CC
72 epatch "${FILESDIR}"/${P}-flags.patch
73 multilib_copy_sources
74 }
75
76 multilib_src_compile() {
77 emake library
78 }
79
80 multilib_src_install() {
81 doheader http_parser.h
82 dolib.so ${SONAME}
83 dosym ${SONAME} /usr/$(get_libdir)/libhttp_parser.so
84 }
85
86 multilib_src_install_all() {
87 dodoc README.md
88 }