This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphp74-pecl-memcache.spec
473 lines (359 loc) · 15.5 KB
/
php74-pecl-memcache.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
# IUS spec file for php74-pecl-memcache, forked from:
#
# Fedora spec file for php-pecl-memcache
#
# Copyright (c) 2007-2020 Remi Collet
# License: CC-BY-SA
# http://creativecommons.org/licenses/by-sa/3.0/
#
# Please, preserve the changelog entries
#
# we don't want -z defs linker flag
%undefine _strict_symbol_defs_build
%global php php74
%global pecl_name memcache
# Not ready, some failed UDP tests. Neded investigation.
%global with_tests 0%{!?_without_tests:1}
%global with_zts 0%{?__ztsphp:1}
%global ini_name 40-%{pecl_name}.ini
Summary: Extension to work with the Memcached caching daemon
Name: %{php}-pecl-memcache
Version: 4.0.5.2
Release: 5%{?dist}
Source0: https://pecl.php.net/get/%{pecl_name}-%{version}%{?prever}.tgz
License: PHP
Group: Development/Languages
URL: https://pecl.php.net/package/%{pecl_name}
BuildRequires: gcc
BuildRequires: %{php}-devel
# build require pear1's dependencies to avoid mismatched php stacks
BuildRequires: pear1 %{php}-cli %{php}-common %{php}-xml
BuildRequires: zlib-devel
%if %{with_tests}
BuildRequires: memcached
%endif
Requires: php(zend-abi) = %{php_zend_api}
Requires: php(api) = %{php_core_api}
Provides: php-pecl(%{pecl_name}) = %{version}
Provides: php-pecl(%{pecl_name})%{?_isa} = %{version}
Provides: php-%{pecl_name} = %{version}
Provides: php-%{pecl_name}%{?_isa} = %{version}
# safe replacement
Provides: php-pecl-%{pecl_name} = %{version}-%{release}
Provides: php-pecl-%{pecl_name}%{?_isa} = %{version}-%{release}
Conflicts: php-pecl-%{pecl_name} < %{version}-%{release}
%description
Memcached is a caching daemon designed especially for
dynamic web applications to decrease database load by
storing objects in memory.
This extension allows you to work with memcached through
handy OO and procedural interfaces.
Memcache can be used as a PHP session handler.
%prep
%setup -c -q
mv %{pecl_name}-%{version} NTS
# Don't install/register tests
sed -e 's/role="test"/role="src"/' \
-e '/LICENSE/s/role="doc"/role="src"/' \
-i package.xml
pushd NTS
# Check version as upstream often forget to update this
dir=php$(%{__php} -r 'echo PHP_MAJOR_VERSION;')
extver=$(sed -n '/#define PHP_MEMCACHE_VERSION/{s/.* "//;s/".*$//;p}' $dir/php_memcache.h)
if test "x${extver}" != "x%{version}%{?prever:-%{prever}}"; then
: Error: Upstream version is now ${extver}, expecting %{version}%{?prever:-%{prever}}
: Update the pdover macro and rebuild.
exit 1
fi
popd
cat >%{ini_name} << 'EOF'
; ----- Enable %{pecl_name} extension module
extension=%{pecl_name}.so
; ----- Options for the %{pecl_name} module
; see http://www.php.net/manual/en/memcache.ini.php
; Whether to transparently failover to other servers on errors
;memcache.allow_failover=1
; Data will be transferred in chunks of this size
;memcache.chunk_size=32768
; Autocompress large data
;memcache.compress_threshold=20000
; The default TCP port number to use when connecting to the memcached server
;memcache.default_port=11211
; Hash function {crc32, fnv}
;memcache.hash_function=crc32
; Hash strategy {standard, consistent}
;memcache.hash_strategy=consistent
; Defines how many servers to try when setting and getting data.
;memcache.max_failover_attempts=20
; The protocol {ascii, binary} : You need a memcached >= 1.3.0 to use the binary protocol
; The binary protocol results in less traffic and is more efficient
;memcache.protocol=ascii
; Redundancy : When enabled the client sends requests to N servers in parallel
;memcache.redundancy=1
;memcache.session_redundancy=2
; Lock Timeout
;memcache.lock_timeout = 15
;memcache.prefix_host_key = 0
;memcache.prefix_host_key_remove_www = 1
;memcache.prefix_host_key_remove_subdomain = 0
;memcache.prefix_static_key = ''
; ----- Options to use the memcache session handler
; RPM note : save_handler and save_path are defined
; for mod_php, in /etc/httpd/conf.d/php.conf
; for php-fpm, in /etc/php-fpm.d/*conf
; Use memcache as a session handler
;session.save_handler=memcache
; Defines a comma separated of server urls to use for session storage
; Only used when memcache.session_save_path is not set
;session.save_path="tcp://localhost:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
;memcache.session_prefix_host_key = 0
;memcache.session_prefix_host_key_remove_www = 1
;memcache.session_prefix_host_key_remove_subdomain = 0
;memcache.session_prefix_static_key = ''
;memcache.session_save_path = ''
EOF
%if %{with_zts}
cp -r NTS ZTS
%endif
%build
cd NTS
%{_bindir}/phpize
%configure --with-php-config=%{_bindir}/php-config
make %{?_smp_mflags}
%if %{with_zts}
cd ../ZTS
%{_bindir}/zts-phpize
%configure --with-php-config=%{_bindir}/zts-php-config
make %{?_smp_mflags}
%endif
%install
make -C NTS install INSTALL_ROOT=%{buildroot}
# Drop in the bit of configuration
install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name}
%if %{with_zts}
make -C ZTS install INSTALL_ROOT=%{buildroot}
install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name}
%endif
# Install XML package description
install -Dpm 644 package.xml %{buildroot}%{pecl_xmldir}/%{pecl_name}.xml
# Documentation
for i in $(grep '<file .* role="doc"' package.xml | sed -e 's/^.*name="//;s/".*$//')
do install -Dpm 644 NTS/$i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i
done
%check
: Minimal load test for NTS extension
%{__php} --no-php-ini \
--define extension=%{buildroot}%{php_extdir}/%{pecl_name}.so \
-m | grep %{pecl_name}
%if %{with_zts}
: Minimal load test for ZTS extension
%{__ztsphp} --no-php-ini \
--define extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so \
-m | grep %{pecl_name}
%endif
%if %{with_tests}
cd NTS
: ignore test with erratic results
rm tests/040.phpt
rm tests/056.phpt
rm tests/033.phpt
rm tests/035.phpt
rm tests/053.phpt
: Configuration for tests
sed -e "s:/var/run/memcached/memcached.sock:$PWD/memcached.sock:" \
-i tests/connect.inc
: Launch the daemons
memcached -u memcached -p 11211 -U 11211 -d -P $PWD/memcached1.pid
memcached -u memcached -p 11212 -U 11212 -d -P $PWD/memcached2.pid
memcached -u memcached -s $PWD/memcached.sock -d -P $PWD/memcached3.pid
: Upstream test suite for NTS extension
ret=0
TEST_PHP_EXECUTABLE=%{_bindir}/php \
TEST_PHP_ARGS="-n -d extension_dir=$PWD/modules -d extension=%{pecl_name}.so" \
NO_INTERACTION=1 \
REPORT_EXIT_STATUS=1 \
%{_bindir}/php -n run-tests.php --show-diff || ret=1
: Cleanup
if [ -f memcached2.pid ]; then
kill $(cat memcached?.pid)
fi
exit $ret
%endif
%triggerin -- pear1
if [ -x %{__pecl} ]; then
%{pecl_install} %{pecl_xmldir}/%{pecl_name}.xml >/dev/null || :
fi
%posttrans
if [ -x %{__pecl} ]; then
%{pecl_install} %{pecl_xmldir}/%{pecl_name}.xml >/dev/null || :
fi
%postun
if [ $1 -eq 0 -a -x %{__pecl} ]; then
%{pecl_uninstall} %{pecl_name} >/dev/null || :
fi
%files
%license NTS/LICENSE
%doc %{pecl_docdir}/%{pecl_name}
%{pecl_xmldir}/%{pecl_name}.xml
%config(noreplace) %{php_inidir}/%{ini_name}
%{php_extdir}/%{pecl_name}.so
%if %{with_zts}
%config(noreplace) %{php_ztsinidir}/%{ini_name}
%{php_ztsextdir}/%{pecl_name}.so
%endif
%changelog
* Wed Oct 14 2020 Carl George <[email protected]> - 4.0.5.2-5
- Build require pear1's dependencies to avoid mismatched php stacks
- Remove release from php-pecl() provides
- Add safe replacement provides/conflicts
- Correctly register pecl extension with the cli tool
* Wed Aug 19 2020 Kerry Vance <[email protected]> - 4.0.5.2-4
- Port from Fedora to IUS
* Sat Aug 01 2020 Fedora Release Engineering <[email protected]> - 4.0.5.2-3
- Second attempt - Rebuilt for
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Tue Jul 28 2020 Fedora Release Engineering <[email protected]> - 4.0.5.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Fri Mar 27 2020 Remi Collet <[email protected]> - 4.0.5.2-1
- update to 4.0.5.2 (no change)
* Thu Jan 30 2020 Fedora Release Engineering <[email protected]> - 4.0.5.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Thu Dec 19 2019 Remi Collet <[email protected]> - 4.0.5.1-1
- update to 4.0.5.1 (no change)
- enable test suite
* Thu Dec 19 2019 Remi Collet <[email protected]> - 4.0.5-1
- update to 4.0.5
- switch back to sources from PECL
* Thu Oct 3 2019 Remi Collet <[email protected]> - 4.0.4-1
- update to 4.0.4
* Fri Jul 26 2019 Fedora Release Engineering <[email protected]> - 4.0.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Mon Mar 25 2019 Remi Collet <[email protected]> - 4.0.3-1
- update to 4.0.3
- drop patches merged upstream
- open https://github.com/websupport-sk/pecl-memcache/pull/48 version
* Tue Mar 19 2019 Remi Collet <[email protected]> - 4.0.2-1
- update to 4.0.2 from https://github.com/websupport-sk/pecl-memcache
- add patch for PHP < 7.2 from
https://github.com/websupport-sk/pecl-memcache/pull/40
- add patch to allow session.save_path from
https://github.com/websupport-sk/pecl-memcache/pull/45
* Sat Feb 02 2019 Fedora Release Engineering <[email protected]> - 3.0.9-0.12.20170802.e702b5f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Thu Oct 11 2018 Remi Collet <[email protected]> - 3.0.9-0.11.20170802.e702b5f
- Rebuild for https://fedoraproject.org/wiki/Changes/php73
- add patch for PHP 7.3 from
https://github.com/websupport-sk/pecl-memcache/pull/30
* Fri Jul 13 2018 Fedora Release Engineering <[email protected]> - 3.0.9-0.10.20170802.e702b5f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Fri Feb 09 2018 Fedora Release Engineering <[email protected]> - 3.0.9-0.9.20170802.e702b5f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Fri Jan 26 2018 Remi Collet <[email protected]> - 3.0.9-0.8.20170802.e702b5f
- undefine _strict_symbol_defs_build
* Fri Oct 6 2017 Remi Collet <[email protected]> - 3.0.9-0.7.20170802.e702b5f
- refresh to more recent snapshot
- add patch from https://github.com/websupport-sk/pecl-memcache/issues/23
* Tue Oct 3 2017 Remi Collet <[email protected]> - 3.0.9-0.6.20161124gitdf7735e
- refresh
* Thu Aug 03 2017 Fedora Release Engineering <[email protected]> - 3.0.9-0.5.20160311git4991c2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Thu Jul 27 2017 Fedora Release Engineering <[email protected]> - 3.0.9-0.4.20160311git4991c2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Sat Feb 11 2017 Fedora Release Engineering <[email protected]> - 3.0.9-0.3.20160311git4991c2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Mon Nov 14 2016 Remi Collet <[email protected]> - 3.0.9-0.2.20160311git4991c2f
- rebuild for https://fedoraproject.org/wiki/Changes/php71
* Mon Jun 27 2016 Remi Collet <[email protected]> - 3.0.9-0.1.20160311git4991c2f
- git snapshopt for PHP 7
- sources from https://github.com/websupport-sk/pecl-memcache (for PHP 7)
- don't install/register tests
- fix license installation
* Wed Feb 10 2016 Remi Collet <[email protected]> - 3.0.8-10
- drop scriptlets (replaced by file triggers in php-pear)
- cleanup
* Thu Feb 04 2016 Fedora Release Engineering <[email protected]> - 3.0.8-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Thu Jun 18 2015 Fedora Release Engineering <[email protected]> - 3.0.8-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Tue Feb 10 2015 Remi Collet <[email protected]> - 3.0.8-7
- fix gcc 5 FTBFS
* Sun Aug 17 2014 Fedora Release Engineering <[email protected]> - 3.0.8-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Thu Jun 19 2014 Remi Collet <[email protected]> - 3.0.8-5
- rebuild for https://fedoraproject.org/wiki/Changes/Php56
* Sat Jun 07 2014 Fedora Release Engineering <[email protected]> - 3.0.8-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Thu Apr 24 2014 Remi Collet <[email protected]> - 3.0.8-3
- add numerical prefix to extension configuration file
- install doc in pecl_docdir
- install tests in pecl_testdir
* Sun Aug 04 2013 Fedora Release Engineering <[email protected]> - 3.0.8-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Mon Apr 08 2013 Remi Collet <[email protected]> - 3.0.8-1
- Update to 3.0.8
- enable conditional ZTS extension build
* Fri Mar 22 2013 Remi Collet <[email protected]> - 3.0.7-7
- rebuild for http://fedoraproject.org/wiki/Features/Php55
* Thu Feb 14 2013 Fedora Release Engineering <[email protected]> - 3.0.7-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Sat Dec 29 2012 Remi Collet <[email protected]> - 3.0.7-5
- add patch for https://bugs.php.net/59602
segfault in getExtendedStats
- also provides php-memcache
* Fri Oct 19 2012 Remi Collet <[email protected]> - 3.0.7-4
- improve comment in configuration about session.
* Tue Sep 25 2012 Remi Collet <[email protected]> - 3.0.7-3
- switch back to previous patch as possible memleak
more acceptable than certain segfault
* Sun Sep 23 2012 Remi Collet <[email protected]> - 3.0.7-2
- use upstream patch instead of our (memleak)
* Sun Sep 23 2012 Remi Collet <[email protected]> - 3.0.7-1
- update to 3.0.7
- drop patches merged upstream
- cleanup spec
* Sat Jul 21 2012 Fedora Release Engineering <[email protected]> - 3.0.6-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Thu Jul 5 2012 Joe Orton <[email protected]> - 3.0.6-4
- fix php_stream_cast() usage
- fix memory corruption after unserialization (Paul Clifford)
- package license
* Thu Jan 19 2012 Remi Collet <[email protected]> - 3.0.6-3
- rebuild against PHP 5.4, with patch
- fix filters
* Sat Jan 14 2012 Fedora Release Engineering <[email protected]> - 3.0.6-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Mon Apr 11 2011 Remi Collet <[email protected]> 3.0.6-1
- update to 3.0.6
* Wed Feb 09 2011 Fedora Release Engineering <[email protected]> - 3.0.5-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Sat Oct 23 2010 Remi Collet <[email protected]> 3.0.5-2
- add filter_provides to avoid private-shared-object-provides memcache.so
* Tue Oct 05 2010 Remi Collet <[email protected]> 3.0.5-1
- update to 3.0.5
* Thu Sep 30 2010 Remi Collet <[email protected]> 3.0.4-4
- patch for bug #599305 (upstream #17566)
- add minimal load test in %%check
* Sun Jul 26 2009 Fedora Release Engineering <[email protected]> - 3.0.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Sun Jul 12 2009 Remi Collet <[email protected]> 3.0.4-2
- rebuild for new PHP 5.3.0 ABI (20090626)
* Sat Feb 28 2009 Remi Collet <[email protected]> 3.0.4-1
- new version 3.0.4
* Tue Jan 13 2009 Remi Collet <[email protected]> 3.0.3-1
- new version 3.0.3
* Thu Sep 11 2008 Remi Collet <[email protected]> 3.0.2-1
- new version 3.0.2
* Thu Sep 11 2008 Remi Collet <[email protected]> 2.2.4-1
- new version 2.2.4 (bug fixes)
* Sat Feb 9 2008 Remi Collet <[email protected]> 2.2.3-1
- new version
* Thu Jan 10 2008 Remi Collet <[email protected]> 2.2.2-1
- new version
* Thu Nov 01 2007 Remi Collet <[email protected]> 2.2.1-1
- new version
* Sat Sep 22 2007 Remi Collet <[email protected]> 2.2.0-1
- new version
- add new INI directives (hash_strategy + hash_function) to config
- add BR on php-devel >= 4.3.11
* Mon Aug 20 2007 Remi Collet <[email protected]> 2.1.2-1
- initial RPM