Gentoo Archives: gentoo-commits

From: "Matti Bickel (mabi)" <mabi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php5/pecl-http: pecl-http-1.7.0.ebuild ChangeLog pecl-http-1.7.0-r1.ebuild pecl-http-1.6.0.ebuild
Date: Thu, 04 Nov 2010 13:41:11
Message-Id: 20101104134107.AD99220054@flycatcher.gentoo.org
1 mabi 10/11/04 13:41:07
2
3 Modified: ChangeLog
4 Added: pecl-http-1.7.0.ebuild pecl-http-1.7.0-r1.ebuild
5 Removed: pecl-http-1.6.0.ebuild
6 Log:
7 add version that supports minor version slotting, version bump, cleanup
8 (Portage version: 2.1.8.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.16 dev-php5/pecl-http/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-http/ChangeLog?rev=1.16&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-http/ChangeLog?rev=1.16&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-http/ChangeLog?r1=1.15&r2=1.16
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php5/pecl-http/ChangeLog,v
20 retrieving revision 1.15
21 retrieving revision 1.16
22 diff -u -r1.15 -r1.16
23 --- ChangeLog 20 Oct 2010 14:20:56 -0000 1.15
24 +++ ChangeLog 4 Nov 2010 13:41:07 -0000 1.16
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-php5/pecl-http
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-http/ChangeLog,v 1.15 2010/10/20 14:20:56 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-http/ChangeLog,v 1.16 2010/11/04 13:41:07 mabi Exp $
30 +
31 +*pecl-http-1.7.0-r1 (04 Nov 2010)
32 +*pecl-http-1.7.0 (04 Nov 2010)
33 +
34 + 04 Nov 2010; Matti Bickel <mabi@g.o> -pecl-http-1.6.0.ebuild,
35 + +pecl-http-1.7.0.ebuild, +pecl-http-1.7.0-r1.ebuild:
36 + add version that supports minor version slotting, version bump, cleanup
37
38 20 Oct 2010; Markos Chandras <hwoarang@g.o> pecl-http-1.6.6.ebuild:
39 Stable on amd64 wrt bug #336869
40
41
42
43 1.1 dev-php5/pecl-http/pecl-http-1.7.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-http/pecl-http-1.7.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-http/pecl-http-1.7.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pecl-http-1.7.0.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-http/pecl-http-1.7.0.ebuild,v 1.1 2010/11/04 13:41:07 mabi Exp $
53
54 PHP_EXT_NAME="http"
55 PHP_EXT_PECL_PKG="pecl_http"
56 PHP_EXT_INI="yes"
57 PHP_EXT_ZENDEXT="no"
58 DOCS="docs/examples/tutorial.txt ThanksTo.txt KnownIssues.txt"
59
60 EAPI="2"
61
62 inherit php-ext-pecl-r1 php-ext-base-r1
63
64 KEYWORDS="~amd64 ~x86"
65
66 DESCRIPTION="Extended HTTP Support for PHP."
67 LICENSE="BSD-2 MIT"
68 SLOT="0"
69 IUSE=""
70
71 DEPEND=">=net-misc/curl-7.19.4
72 sys-libs/zlib
73 dev-libs/libevent
74 || ( <dev-lang/php-5.3[spl] >=dev-lang/php-5.3 )
75 >=dev-lang/php-5[hash,session,iconv]
76 "
77 RDEPEND="${DEPEND}"
78
79 src_compile() {
80 my_conf="--enable-http \
81 --with-http-curl-requests \
82 --with-http-zlib-compression \
83 --with-http-curl-libevent \
84 --with-http-magic-mime"
85
86 php-ext-pecl-r1_src_compile
87 }
88
89 src_install() {
90 php-ext-pecl-r1_src_install
91
92 php-ext-base-r1_addtoinifiles "http.etag.mode" "MD5"
93 php-ext-base-r1_addtoinifiles "http.force_exit" "1"
94 php-ext-base-r1_addtoinifiles "http.log.allowed_methods" ""
95 php-ext-base-r1_addtoinifiles "http.log.cache" ""
96 php-ext-base-r1_addtoinifiles "http.log.composite" ""
97 php-ext-base-r1_addtoinifiles "http.log.not_found" ""
98 php-ext-base-r1_addtoinifiles "http.log.redirect" ""
99 php-ext-base-r1_addtoinifiles "http.only_exceptions" "0"
100 php-ext-base-r1_addtoinifiles "http.persistent.handles.ident" "GLOBAL"
101 php-ext-base-r1_addtoinifiles "http.persistent.handles.limit" "-1"
102 php-ext-base-r1_addtoinifiles "http.request.datashare.connect" "0"
103 php-ext-base-r1_addtoinifiles "http.request.datashare.cookie" "0"
104 php-ext-base-r1_addtoinifiles "http.request.datashare.dns" "1"
105 php-ext-base-r1_addtoinifiles "http.request.datashare.ssl" "0"
106 php-ext-base-r1_addtoinifiles "http.request.methods.allowed" ""
107 php-ext-base-r1_addtoinifiles "http.request.methods.custom" ""
108 php-ext-base-r1_addtoinifiles "http.send.inflate.start_auto" "0"
109 php-ext-base-r1_addtoinifiles "http.send.inflate.start_flags" "0"
110 php-ext-base-r1_addtoinifiles "http.send.deflate.start_auto" "0"
111 php-ext-base-r1_addtoinifiles "http.send.deflate.start_flags" "0"
112 php-ext-base-r1_addtoinifiles "http.send.not_found_404" "1"
113 }
114
115
116
117 1.1 dev-php5/pecl-http/pecl-http-1.7.0-r1.ebuild
118
119 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-http/pecl-http-1.7.0-r1.ebuild?rev=1.1&view=markup
120 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-http/pecl-http-1.7.0-r1.ebuild?rev=1.1&content-type=text/plain
121
122 Index: pecl-http-1.7.0-r1.ebuild
123 ===================================================================
124 # Copyright 1999-2010 Gentoo Foundation
125 # Distributed under the terms of the GNU General Public License v2
126 # $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-http/pecl-http-1.7.0-r1.ebuild,v 1.1 2010/11/04 13:41:07 mabi Exp $
127
128 EAPI="3"
129
130 PHP_EXT_NAME="http"
131 PHP_EXT_PECL_PKG="pecl_http"
132 PHP_EXT_INI="yes"
133 PHP_EXT_ZENDEXT="no"
134 DOCS="docs/examples/tutorial.txt ThanksTo.txt KnownIssues.txt"
135
136 inherit php-ext-pecl-r2 php-ext-source-r2
137
138 KEYWORDS="~amd64 ~x86"
139
140 DESCRIPTION="Extended HTTP Support for PHP."
141 LICENSE="BSD-2 MIT"
142 SLOT="0"
143 IUSE=""
144
145 DEPEND=">=net-misc/curl-7.19.4
146 sys-libs/zlib
147 dev-libs/libevent
148 || ( <dev-lang/php-5.3[spl] >=dev-lang/php-5.3 )
149 >=dev-lang/php-5[hash,session,iconv]
150 "
151 RDEPEND="${DEPEND}"
152
153 my_conf="--enable-http \
154 --with-http-curl-requests \
155 --with-http-zlib-compression \
156 --with-http-curl-libevent \
157 --with-http-magic-mime"
158
159 src_install() {
160 php-ext-pecl-r2_src_install
161
162 php-ext-source-r2_addtoinifiles "http.etag.mode" "MD5"
163 php-ext-source-r2_addtoinifiles "http.force_exit" "1"
164 php-ext-source-r2_addtoinifiles "http.log.allowed_methods" ""
165 php-ext-source-r2_addtoinifiles "http.log.cache" ""
166 php-ext-source-r2_addtoinifiles "http.log.composite" ""
167 php-ext-source-r2_addtoinifiles "http.log.not_found" ""
168 php-ext-source-r2_addtoinifiles "http.log.redirect" ""
169 php-ext-source-r2_addtoinifiles "http.only_exceptions" "0"
170 php-ext-source-r2_addtoinifiles "http.persistent.handles.ident" "GLOBAL"
171 php-ext-source-r2_addtoinifiles "http.persistent.handles.limit" "-1"
172 php-ext-source-r2_addtoinifiles "http.request.datashare.connect" "0"
173 php-ext-source-r2_addtoinifiles "http.request.datashare.cookie" "0"
174 php-ext-source-r2_addtoinifiles "http.request.datashare.dns" "1"
175 php-ext-source-r2_addtoinifiles "http.request.datashare.ssl" "0"
176 php-ext-source-r2_addtoinifiles "http.request.methods.allowed" ""
177 php-ext-source-r2_addtoinifiles "http.request.methods.custom" ""
178 php-ext-source-r2_addtoinifiles "http.send.inflate.start_auto" "0"
179 php-ext-source-r2_addtoinifiles "http.send.inflate.start_flags" "0"
180 php-ext-source-r2_addtoinifiles "http.send.deflate.start_auto" "0"
181 php-ext-source-r2_addtoinifiles "http.send.deflate.start_flags" "0"
182 php-ext-source-r2_addtoinifiles "http.send.not_found_404" "1"
183 }