Overview
Request 1500 (accepted)
Submit php-pear-HTTP-Request2 to Winterfell
- Created by vanmeeuwen almost 9 years ago
- In state accepted
Submit package Kolab:Development / php-pear-HTTP-Request2 to package Kolab:Winterfell / php-pear-HTTP-Request2
php-pear-HTTP-Request2.spec
Added
x
1
2
+# spec file for php-pear-HTTP-Request2
3
+#
4
+# Copyright (c) 2009-2014 Remi Collet
5
+# License: CC-BY-SA
6
+# http://creativecommons.org/licenses/by-sa/3.0/
7
+#
8
+# Please, preserve the changelog entries
9
+#
10
+%{!?__pear: %{expand: %%global __pear %{_bindir}/pear}}
11
+
12
+# Needed for openSUSE
13
+%if 0%{?suse_version}
14
+%{!?pear_cfgdir: %global pear_cfgdir %(%{__pear} config-get cfg_dir 2> /dev/null || echo undefined)}
15
+%{!?pear_datadir: %global pear_datadir %(%{__pear} config-get data_dir 2> /dev/null || echo undefined)}
16
+%{!?pear_docdir: %global pear_docdir %(%{__pear} config-get doc_dir 2> /dev/null || echo undefined)}
17
+%{!?pear_metadir: %global pear_metadir %(%{__pear} config-get metadata_dir 2> /dev/null || echo undefined)}
18
+%{!?pear_phpdir: %global pear_phpdir %(%{__pear} config-get php_dir 2> /dev/null || echo undefined)}
19
+%{!?pear_testdir: %global pear_testdir %(%{__pear} config-get test_dir 2> /dev/null || echo undefined)}
20
+%{!?pear_wwwdir: %global pear_wwwdir %(%{__pear} config-get www_dir 2> /dev/null || echo undefined)}
21
+%{!?pear_xmldir: %global pear_xmldir %{_localstatedir}/lib/pear/pkgxml}
22
+%endif
23
+
24
+%global pear_name HTTP_Request2
25
+
26
+%if 0%{?suse_version} > 0
27
+Name: php5-pear-HTTP_Request2
28
+%else
29
+Name: php-pear-HTTP-Request2
30
+%endif
31
+Version: 2.2.1
32
+Release: 2%{?dist}
33
+Summary: Provides an easy way to perform HTTP requests
34
+
35
+Group: Development/Libraries
36
+License: BSD
37
+URL: http://pear.php.net/package/HTTP_Request2
38
+Source0: http://pear.php.net/get/%{pear_name}-%{version}.tgz
39
+Source2: xml2changelog
40
+
41
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
42
+BuildArch: noarch
43
+%if 0%{?suse_version} > 0
44
+BuildRequires: php-pear >= 1.9.2
45
+%else
46
+BuildRequires: php-pear(PEAR) >= 1.9.2
47
+%endif
48
+# For test suite
49
+%if 0%{?with_tests}
50
+BuildRequires: php-pear(pear.phpunit.de/PHPUnit)
51
+BuildRequires: php-pear(Net_URL2) >= 2.0.0
52
+%endif
53
+# for xml2changelog
54
+BuildRequires: php-simplexml
55
+
56
+Requires(post): %{__pear}
57
+Requires(postun): %{__pear}
58
+Provides: php-pear(%{pear_name}) = %{version}
59
+# From package.xml
60
+Requires: php-pear(Net_URL2) >= 2.0.0
61
+%if 0%{?suse_version} > 0
62
+Requires: php-pear >= 1.9.2
63
+%else
64
+Requires: php-pear(PEAR) >= 1.9.2
65
+%endif
66
+
67
+# From package.xml, optional
68
+Requires: php-curl
69
+Requires: php-fileinfo
70
+Requires: php-openssl
71
+Requires: php-zlib
72
+# From phpcompatinfo report for version 2.2.0
73
+Requires: php-date
74
+Requires: php-mbstring
75
+Requires: php-pcre
76
+Requires: php-spl
77
+
78
+
79
+%description
80
+PHP5 rewrite of HTTP_Request package. Provides cleaner API and pluggable
81
+Adapters. Currently available are:
82
+ * Socket adapter, based on old HTTP_Request code,
83
+ * Curl adapter, wraps around PHP's cURL extension,
84
+ * Mock adapter, to use for testing packages dependent on HTTP_Request2.
85
+Supports POST requests with data and file uploads, basic and digest
86
+authentication, cookies, proxies, gzip and deflate encodings, monitoring
87
+the request progress with Observers...
88
+
89
+
90
+%prep
91
+%setup -q -c
92
+
93
+# Generate Changelog
94
+%{_bindir}/php %{SOURCE2} package.xml >CHANGELOG
95
+# Display Version / API
96
+head -n 1 < CHANGELOG
97
+
98
+cd %{pear_name}-%{version}
99
+# package.xml is V2
100
+mv ../package.xml %{name}.xml
101
+
102
+
103
+%build
104
+cd %{pear_name}-%{version}
105
+# Empty build section, most likely nothing required.
106
+
107
+
108
+%install
109
+rm -rf %{buildroot}
110
+install -Dpm 644 CHANGELOG %{buildroot}%{pear_docdir}/%{pear_name}/CHANGELOG
111
+
112
+cd %{pear_name}-%{version}
113
+%{__pear} install --nodeps --packagingroot %{buildroot} %{name}.xml
114
+
115
+# for rpmlint
116
+sed -i -e 's/\r//' %{buildroot}%{pear_docdir}/%{pear_name}/examples/upload-rapidshare.php
117
+
118
+# Clean up unnecessary files
119
+rm -rf %{buildroot}%{pear_metadir}/.??*
120
+%{__rm} -rf %{buildroot}%{pear_phpdir}/.{filemap,lock,registry,channels,depdb,depdblock}
121
+%{__rm} -rf %{buildroot}/usr/share/php5/PEAR/.{filemap,lock,registry,channels,depdb,depdblock}
122
+
123
+# Install XML package description
124
+mkdir -p %{buildroot}%{pear_xmldir}
125
+install -pm 644 %{name}.xml %{buildroot}%{pear_xmldir}
126
+
127
+
128
+%check
129
+%if 0%{?with_tests}
130
+cd %{pear_name}-%{version}/tests
131
+# Tests: 97, Assertions: 171, Skipped: 3.
132
+
133
+phpunit \
134
+ -d date.timezone=UTC \
135
+ -d include_path=.:%{buildroot}%{pear_phpdir}:%{pear_phpdir} \
136
+ AllTests.php
137
+%else
138
+echo 'Test suite disabled (missing "--with tests" option)'
139
+%endif
140
+
141
+
142
+%clean
143
+rm -rf %{buildroot}
144
+
145
+
146
+%post
147
+%{__pear} install --nodeps --soft --force --register-only \
148
+ %{pear_xmldir}/%{name}.xml >/dev/null || :
149
+
150
+%postun
151
+if [ $1 -eq 0 ] ; then
152
+ %{__pear} uninstall --nodeps --ignore-errors --register-only \
153
+ pear.php.net/%{pear_name} >/dev/null || :
154
+fi
155
+
156
+
157
+%files
158
+%defattr(-,root,root,-)
159
+%doc %{pear_docdir}/%{pear_name}
160
+%{pear_xmldir}/%{name}.xml
161
+%{pear_phpdir}/HTTP
162
+%{pear_testdir}/%{pear_name}
163
+%{pear_datadir}/%{pear_name}
164
+%{pear_xmldir}
165
+
166
+%changelog
167
+* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.1-2
168
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
169
+
170
+* Fri Jan 17 2014 Remi Collet <remi@fedoraproject.org> - 2.2.1-1
171
+- update to 2.2.1 (stable)
172
+
173
+* Mon Jan 13 2014 Remi Collet <remi@fedoraproject.org> - 2.2.0-1
174
+- update to 2.2.0 (stable)
175
+- https://pear.php.net/bugs/20176 - corrupted archive
176
+- https://pear.php.net/bugs/20175 - license
177
+
178
+* Mon Aug 5 2013 Remi Collet <remi@fedoraproject.org> - 2.1.1-8
179
+- xml2change need simplexml
180
+
181
+* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-7
182
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
183
+
184
+* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-6
185
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
186
+
187
+* Mon Dec 03 2012 Remi Collet <remi@fedoraproject.org> - 2.1.1-5
188
+- add requires on all extensions
189
+
190
+* Sun Aug 19 2012 Remi Collet <remi@fedoraproject.org> - 2.1.1-4
191
+- rebuilt for new pear_datadir
192
+
193
+* Tue Aug 14 2012 Remi Collet <remi@fedoraproject.org> - 2.1.1-3
194
+- rebuilt for new pear_testdir
195
+
196
+* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-2
197
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
198
+
199
+* Sat May 12 2012 Remi Collet <remi@fedoraproject.org> - 2.1.1-1
200
+- Version 2.1.1 (stable) - API 2.1.0 (stable)
201
+- requires PEAR 1.9.2
202
+- (re)enable test during build
203
+
204
+* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0-2
205
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
206
+
207
+* Sat Oct 22 2011 Remi Collet <remi@fedoraproject.org> - 2.0.0-1
208
+- Version 2.0.0 (stable) - API 2.0.0 (stable)
209
+- add "tests" option
210
+
211
+* Sun Apr 17 2011 Remi Collet <Fedora@FamilleCollet.com> 0.6.0-2
212
+- doc in /usr/share/doc/pear
213
+
214
+* Wed Feb 16 2011 Remi Collet <Fedora@FamilleCollet.com> 0.6.0-1
215
+- Version 0.6.0 (alpha) - API 0.6.0 (alpha)
216
+- set date.timezone during build
217
+- run phpunit test suite during %%check
218
+
219
+* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.2-3
220
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
221
+
222
+* Sat May 22 2010 Remi Collet <Fedora@FamilleCollet.com> 0.5.2-2
223
+- spec cleanup
224
+
225
+* Wed Apr 21 2010 Remi Collet <Fedora@FamilleCollet.com> 0.5.2-1
226
+- new upstream version 0.5.2 (bugfix) - API 0.5.0
227
+- add generated Changelog
228
+
229
+* Sun Nov 22 2009 Remi Collet <Fedora@FamilleCollet.com> 0.5.1-1
230
+- new version
231
+
232
+* Fri Nov 20 2009 Remi Collet <Fedora@FamilleCollet.com> 0.5.0-1
233
+- new version
234
+
235
+* Wed Nov 11 2009 Remi Collet <Fedora@FamilleCollet.com> 0.4.1-1
236
+- initial RPM
237
http_request2.patch
Added
26
1
2
+diff -Ppru a/HTTP_Request2-2.1.1/HTTP/Request2/CookieJar.php b/HTTP_Request2-2.1.1/HTTP/Request2/CookieJar.php
3
+--- a/HTTP_Request2-2.1.1/HTTP/Request2/CookieJar.php 2012-04-08 09:27:30.000000000 +0200
4
++++ b/HTTP_Request2-2.1.1/HTTP/Request2/CookieJar.php 2013-06-17 15:09:10.128411294 +0200
5
+@@ -457,7 +457,7 @@ class HTTP_Request2_CookieJar implements
6
+
7
+ // load the list if needed
8
+ if (empty(self::$psl)) {
9
+- $path = '@data_dir@' . DIRECTORY_SEPARATOR . 'HTTP_Request2';
10
++ $path = '%{_datadir}/php/pear/data' . DIRECTORY_SEPARATOR . 'HTTP_Request2';
11
+ if (0 === strpos($path, '@' . 'data_dir@')) {
12
+ $path = realpath(
13
+ dirname(__FILE__) . DIRECTORY_SEPARATOR . '..'
14
+diff -Ppru a/package.xml b/package.xml
15
+--- a/package.xml 2012-04-08 09:27:31.000000000 +0200
16
++++ b/package.xml 2013-06-17 15:10:52.943497993 +0200
17
+@@ -49,7 +49,7 @@ Fixes for SOCKS5 proxies support in Sock
18
+ <file md5sum="8cd1e67c2265e698ee3589835dcc3bc6" name="HTTP/Request2/Adapter.php" role="php">
19
+ <tasks:replace from="@package_version@" to="version" type="package-info" />
20
+ </file>
21
+- <file md5sum="3c9c24dec19485c5b17b179b9371c7cf" name="HTTP/Request2/CookieJar.php" role="php">
22
++ <file md5sum="28b1dd0ff17e71bf3f41cb90dde65a21" name="HTTP/Request2/CookieJar.php" role="php">
23
+ <tasks:replace from="@package_version@" to="version" type="package-info" />
24
+ <tasks:replace from="@data_dir@" to="data_dir" type="pear-config" />
25
+ </file>
26
pear-1.9.1.patch
Added
24
1
2
+diff --git a/package.xml b/package.xml
3
+index c5cf06f..0966cd7 100644
4
+--- a/package.xml
5
++++ b/package.xml
6
+@@ -117,7 +117,7 @@ Fixes for SOCKS5 proxies support in Socket adapter
7
+ <min>5.2.0</min>
8
+ </php>
9
+ <pearinstaller>
10
+- <min>1.9.2</min>
11
++ <min>1.9.1</min>
12
+ </pearinstaller>
13
+ <package>
14
+ <name>Net_URL2</name>
15
+@@ -127,7 +127,7 @@ Fixes for SOCKS5 proxies support in Socket adapter
16
+ <package>
17
+ <name>PEAR</name>
18
+ <channel>pear.php.net</channel>
19
+- <min>1.9.2</min>
20
++ <min>1.9.1</min>
21
+ </package>
22
+ </required>
23
+ <optional>
24
HTTP_Request2-2.2.1.tgz
Added
debian.changelog
Added
121
1
2
+php-http-request2 (2.2.1-1) unstable; urgency=low
3
+
4
+ * Package php-http-request2 version 2.2.1
5
+
6
+ -- Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Fri, 23 Jan 2015 15:27:46 +0100
7
+
8
+php-http-request2 (2.1.1-1) unstable; urgency=low
9
+
10
+ * Package php-http-request2
11
+
12
+ -- Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Tue, 11 Sep 2012 15:27:46 +0100
13
+
14
+php-http-request (1.4.4-4) unstable; urgency=low
15
+
16
+ * Now using PKG-PHP-PEAR team <pkg-php-pear@lists.alioth.debian.org> as the
17
+ maintainer of the package (Closes: #656976).
18
+ * Switching to Git for the packaging (added a debian/gbp.conf and edited
19
+ the VCS fields).
20
+ * Switching to pkg-php-tools and dh 8 sequencer.
21
+ * Switching to 3.0 (quilt) source format.
22
+ * Standards-Version: is now 3.9.2 (no changes).
23
+ * Review package short and long description.
24
+ * Now using DEP5 format for debian/copyright.
25
+
26
+ -- Thomas Goirand <zigo@debian.org> Fri, 27 Jan 2012 20:29:58 +0800
27
+
28
+php-http-request (1.4.4-3) unstable; urgency=low
29
+
30
+ * Added myself as uploader.
31
+ * Sets a Pre-Depends: php-pear (>= 5.3) and removes Depends: php-pear
32
+ to allow upgrades from Squeeze, as discussed with RT (Closes: #605866).
33
+
34
+ -- Thomas Goirand <zigo@debian.org> Sat, 04 Dec 2010 16:13:01 +0800
35
+
36
+php-http-request (1.4.4-2) unstable; urgency=low
37
+
38
+ * Change section to php.
39
+ * Fix bashism in debian/rules (Closes: #581456).
40
+
41
+ -- Thijs Kinkhorst <thijs@debian.org> Sun, 16 May 2010 13:33:27 +0200
42
+
43
+php-http-request (1.4.4-1) unstable; urgency=low
44
+
45
+ * New upstream release.
46
+ * Checked for Debian policy 3.8.4.
47
+
48
+ -- Thijs Kinkhorst <thijs@debian.org> Sun, 09 May 2010 15:07:14 +0200
49
+
50
+php-http-request (1.4.3-1) unstable; urgency=low
51
+
52
+ * New upstream release.
53
+ * Import into pkg-php maintenance group.
54
+ * Checked for policy 3.8.0, no changes.
55
+
56
+ -- Thijs Kinkhorst <thijs@debian.org> Thu, 11 Sep 2008 15:52:17 +0200
57
+
58
+php-http-request (1.4.2-1) unstable; urgency=low
59
+
60
+ * New upstream release.
61
+
62
+ -- Thijs Kinkhorst <thijs@debian.org> Mon, 29 Oct 2007 22:59:02 +0100
63
+
64
+php-http-request (1.4.1-1) unstable; urgency=low
65
+
66
+ * New upstream release.
67
+ * Update watch file.
68
+
69
+ -- Thijs Kinkhorst <thijs@debian.org> Fri, 01 Jun 2007 13:00:07 +0200
70
+
71
+php-http-request (1.4.0-1) unstable; urgency=low
72
+
73
+ * New upstream release.
74
+ * Switch to debhelper compatibility level 5.
75
+
76
+ -- Thijs Kinkhorst <thijs@debian.org> Tue, 10 Apr 2007 11:43:32 +0200
77
+
78
+php-http-request (1.3.0-3) unstable; urgency=low
79
+
80
+ * Adopt package (Closes: #383009).
81
+ * Checked for policy version 3.7.2, no changes necessary.
82
+ * Put debhelper version in debian/compat.
83
+ * Do not suggest php{4,5}-cli, as there's no specific usefulness
84
+ on the commandline of this package.
85
+ * Move debhelper to Build-Depends from Build-Depends-Indep.
86
+
87
+ -- Thijs Kinkhorst <thijs@debian.org> Sat, 19 Aug 2006 12:49:37 +0200
88
+
89
+php-http-request (1.3.0-2) unstable; urgency=low
90
+
91
+ * Remove .channels, .depdblock and .depdb directories that is already
92
+ installed by php-pear.
93
+ * Build-Depends on debhelper >=5, removed compat file and put DH_COMPAT in
94
+ rules file.
95
+
96
+ -- Jose Carlos Medeiros <debian@psabs.com.br> Wed, 15 Mar 2006 17:23:09 -0300
97
+
98
+php-http-request (1.3.0-1) unstable; urgency=low
99
+
100
+ * New upstream release.
101
+ * Added php-net-socket as dependence.
102
+
103
+ -- Jose Carlos Medeiros <debian@psabs.com.br> Mon, 14 Nov 2005 17:58:35 -0200
104
+
105
+php-http-request (1.2.4-1) unstable; urgency=low
106
+
107
+ * New upstream release.
108
+ * Added debian/watch file.
109
+ * Updated package to Standards-Version: 3.6.2.
110
+ * Updated "Build-Depends-Indep:" and "Depends:" to call php-pear instead
111
+ php4-pear.
112
+ * Updated "Suggests:" to call php4-cli or php5-cli.
113
+
114
+ -- Jose Carlos Medeiros <debian@psabs.com.br> Mon, 17 Oct 2005 18:54:49 -0200
115
+
116
+php-http-request (1.2.0-1) unstable; urgency=low
117
+
118
+ * Initial Release. (closes: #317013)
119
+
120
+ -- Jose Carlos Medeiros <debian@psabs.com.br> Tue, 5 Jul 2005 11:19:39 -0300
121
debian.control
Added
22
1
2
+Source: php-http-request2
3
+Section: php
4
+Priority: optional
5
+Maintainer: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com>
6
+Build-Depends: debhelper (>= 8), pkg-php-tools
7
+Standards-Version: 3.9.3
8
+Homepage: http://pear.php.net/package/HTTP_Request2/
9
+Vcs-Browser: http://git.kolabsys.com/apt/php-http-request2
10
+Vcs-Git: git://git.kolabsys.com/git/apt/php-http-request2
11
+
12
+Package: php-http-request2
13
+Architecture: all
14
+Depends: php-net-url, php-net-socket, ${misc:Depends}
15
+Pre-Depends: php-pear (>= 5.3)
16
+Description: PEAR class to provide an easy way to perform HTTP requests v2
17
+ php-http-request2 is a PEAR class that implements the HTTP protocol, and allows
18
+ you to perform web queries in a simple way. It supports all the standard forms
19
+ of HTTP queries like GET, POST, HEAD, TRACE, PUT or DELETE, and also can
20
+ use the Basic authentication, Proxy, Proxy Authentication, SSL, file uploads,
21
+ and more etc.
22
debian.rules
Added
6
1
2
+#!/usr/bin/make -f
3
+
4
+%:
5
+ dh $@ --buildsystem=phppear --with phppear
6
debian.series
Added
3
1
2
+pear-1.9.1.patch -p1
3
debian.tar.gz
Added
php-http-request2.dsc
Added
18
1
2
+Format: 1.0
3
+Source: php-http-request2
4
+Binary: php-http-request2
5
+Architecture: all
6
+Version: 2.2.1-1
7
+Maintainer: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com>
8
+Homepage: http://pear.php.net/package/HTTP_Request2/
9
+Standards-Version: 3.9.3
10
+Vcs-Browser: http://git.kolabsys.com/apt/php-http-request2
11
+Vcs-Git: git://git.kolabsys.com/git/apt/php-http-request2
12
+Build-Depends: debhelper (>= 8), pkg-php-tools
13
+Package-List:
14
+ php-http-request2 deb php optional
15
+Files:
16
+ 00000000000000000000000000000000 0 HTTP_Request2-2.2.1.tgz
17
+ 00000000000000000000000000000000 0 debian.tar.gz
18
xml2changelog
Added
45
1
2
+<?php
3
+$prog=array_shift($_SERVER['argv']);
4
+if ($_SERVER['argc']<2) die ("usage : " . $prog . " path_to_package.xml [ --debug ]\n");
5
+$file=array_shift($_SERVER['argv']);
6
+
7
+($xml=simplexml_load_file($file)) || die ($file . " not found !\n");
8
+if (in_array("--debug", $_SERVER['argv'])) print_r($xml);
9
+
10
+if ($xml['version'] >= "2"){ // Package.xml V 2.0
11
+ $new = "";
12
+ if (strlen(trim($xml->notes))>1) { // Ignore too short descr.
13
+ printf("++*** Version %s (%s) - API %s (%s) - %s\n\n%s\n\n",
14
+ $xml->version->release, $xml->stability->release,
15
+ $xml->version->api, $xml->stability->api,
16
+ $xml->date, $xml->notes);
17
+ $new=$xml->version->release;
18
+ }
19
+
20
+ if (isset($xml->changelog->release) && count($xml->changelog->release)) {
21
+ $tab = array();
22
+ foreach($xml->changelog->release as $rel) {
23
+ $old=$rel->version->release;
24
+ if ("$old" != "$new") {
25
+ $tab[''.$rel->date] = $rel;
26
+ }
27
+ }
28
+ krsort($tab);
29
+ foreach($tab as $rel) {
30
+ printf("*** Version %s (%s) - API %s (%s) - %s\n\n%s\n\n",
31
+ $rel->version->release, $rel->stability->release,
32
+ $rel->version->api, $rel->stability->api,
33
+ $rel->date, $rel->notes);
34
+ }
35
+ }
36
+} else { // Package.xml V 1.0
37
+ printf("* Version %s (%s) - %s\n\n%s\n\n",
38
+ $xml->release->version, $xml->release->state, $xml->release->date, $xml->release->notes);
39
+
40
+ foreach($xml->changelog->release as $rel)
41
+ printf("* Version %s (%s) - %s\n\n%s\n\n",
42
+ $rel->version, $rel->state, $rel->date, $rel->notes);
43
+}
44
+?>
45
Refresh
Refresh
Login required, please
login
in order to comment
Request History
vanmeeuwen created request almost 9 years ago
Submit php-pear-HTTP-Request2 to Winterfell
vanmeeuwen accepted review almost 9 years ago
Accept submission of php-pear-HTTP-Request2 to Winterfell
vanmeeuwen accepted review almost 9 years ago
Accept submission of php-pear-HTTP-Request2 to Winterfell
vanmeeuwen approved review almost 9 years ago
Accept submission of php-pear-HTTP-Request2 to Winterfell
vanmeeuwen accepted request almost 9 years ago
Accept submission of php-pear-HTTP-Request2 to Winterfell