Gentoo Archives: gentoo-commits

From: "Brian Evans (grknight)" <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/pecl-http: pecl-http-1.7.6-r3.ebuild ChangeLog
Date: Wed, 29 Apr 2015 01:26:01
Message-Id: 20150429012552.0C6A298E@oystercatcher.gentoo.org
1 grknight 15/04/29 01:25:50
2
3 Modified: ChangeLog
4 Added: pecl-http-1.7.6-r3.ebuild
5 Log:
6 Revbump to make dependencies more specific and silence repoman
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xD1F781EFF9F4A3B6)
9
10 Revision Changes Path
11 1.23 dev-php/pecl-http/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-http/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-http/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-http/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php/pecl-http/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 11 Jan 2015 03:12:44 -0000 1.22
24 +++ ChangeLog 29 Apr 2015 01:25:50 -0000 1.23
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-php/pecl-http
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-http/ChangeLog,v 1.22 2015/01/11 03:12:44 grknight Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-http/ChangeLog,v 1.23 2015/04/29 01:25:50 grknight Exp $
30 +
31 +*pecl-http-1.7.6-r3 (29 Apr 2015)
32 +
33 + 29 Apr 2015; Brian Evans <grknight@g.o> +pecl-http-1.7.6-r3.ebuild:
34 + Revbump to make dependencies more specific and silence repoman
35
36 11 Jan 2015; Brian Evans <grknight@g.o> -pecl-http-1.7.5.ebuild:
37 Drop old
38
39
40
41 1.1 dev-php/pecl-http/pecl-http-1.7.6-r3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-http/pecl-http-1.7.6-r3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-http/pecl-http-1.7.6-r3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pecl-http-1.7.6-r3.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-http/pecl-http-1.7.6-r3.ebuild,v 1.1 2015/04/29 01:25:50 grknight Exp $
51
52 EAPI="5"
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 # Does not compile with php5-6
61 USE_PHP="php5-5 php5-4"
62
63 inherit php-ext-pecl-r2 php-ext-source-r2
64
65 KEYWORDS="~amd64 ~x86"
66
67 DESCRIPTION="Extended HTTP Support for PHP"
68 LICENSE="BSD-2 MIT"
69 SLOT="0"
70 IUSE=""
71
72 for target in ${USE_PHP}; do
73 slot=${target/php}
74 slot=${slot/-/.}
75 PHPUSEDEPEND="${PHPUSEDEPEND}
76 php_targets_${target}? ( dev-lang/php:${slot}[hash,session,iconv] )"
77 done
78
79 DEPEND="net-misc/curl
80 sys-libs/zlib
81 dev-libs/libevent
82 ${PHPUSEDEPEND}
83 "
84 RDEPEND="${DEPEND}"
85
86 my_conf="--enable-http \
87 --with-http-curl-requests \
88 --with-http-zlib-compression \
89 --with-http-curl-libevent \
90 --with-http-magic-mime"
91
92 src_install() {
93 php-ext-pecl-r2_src_install
94
95 php-ext-source-r2_addtoinifiles "http.etag.mode" "MD5"
96 php-ext-source-r2_addtoinifiles "http.force_exit" "1"
97 php-ext-source-r2_addtoinifiles "http.log.allowed_methods" ""
98 php-ext-source-r2_addtoinifiles "http.log.cache" ""
99 php-ext-source-r2_addtoinifiles "http.log.composite" ""
100 php-ext-source-r2_addtoinifiles "http.log.not_found" ""
101 php-ext-source-r2_addtoinifiles "http.log.redirect" ""
102 php-ext-source-r2_addtoinifiles "http.only_exceptions" "0"
103 php-ext-source-r2_addtoinifiles "http.persistent.handles.ident" "GLOBAL"
104 php-ext-source-r2_addtoinifiles "http.persistent.handles.limit" "-1"
105 php-ext-source-r2_addtoinifiles "http.request.datashare.connect" "0"
106 php-ext-source-r2_addtoinifiles "http.request.datashare.cookie" "0"
107 php-ext-source-r2_addtoinifiles "http.request.datashare.dns" "1"
108 php-ext-source-r2_addtoinifiles "http.request.datashare.ssl" "0"
109 php-ext-source-r2_addtoinifiles "http.request.methods.allowed" ""
110 php-ext-source-r2_addtoinifiles "http.request.methods.custom" ""
111 php-ext-source-r2_addtoinifiles "http.send.inflate.start_auto" "0"
112 php-ext-source-r2_addtoinifiles "http.send.inflate.start_flags" "0"
113 php-ext-source-r2_addtoinifiles "http.send.deflate.start_auto" "0"
114 php-ext-source-r2_addtoinifiles "http.send.deflate.start_flags" "0"
115 php-ext-source-r2_addtoinifiles "http.send.not_found_404" "1"
116 }