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 3
/
Copy pathphp74-pecl-zip.spec
392 lines (285 loc) · 11.7 KB
/
php74-pecl-zip.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
# IUS spec file for php74-pecl-zip, forked from:
#
# Fedora spec file for php-pecl-zip
#
# Copyright (c) 2013-2022 Remi Collet
# License: CC-BY-SA
# http://creativecommons.org/licenses/by-sa/4.0/
#
# Please, preserve the changelog entries
#
# we don't want -z defs linker flag
%undefine _strict_symbol_defs_build
%global pecl_name zip
%global with_zts 0%{?__ztsphp:1}
%global ini_name 40-%{pecl_name}.ini
%global php php74
%global upstream_version 1.21.1
#global upstream_prever RC6
Summary: A ZIP archive management extension
Summary(fr): Une extension de gestion des ZIP
Name: %{php}-pecl-zip
Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}}
Release: 1%{?dist}
License: PHP
URL: https://pecl.php.net/package/zip
Source0: https://pecl.php.net/get/%{pecl_name}-%{upstream_version}%{?upstream_prever}.tgz
BuildRequires: %{php}-devel
BuildRequires: pkgconfig(libzip) >= 1.0.0
BuildRequires: zlib-devel
# build require pear1's dependencies to avoid mismatched php stacks
BuildRequires: pear1 %{php}-cli %{php}-common %{php}-xml
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}-%{release}
Provides: php-%{pecl_name}%{?_isa} = %{version}-%{release}
# 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
Zip is an extension to create and read zip files.
%description -l fr
Zip est une extension pour créer et lire les archives au format ZIP.
%prep
%setup -c -q
mv %{pecl_name}-%{upstream_version}%{?upstream_prever} NTS
# Don't install/register tests
sed -e 's/role="test"/role="src"/' \
-e '/LICENSE/s/role="doc"/role="src"/' \
-i package.xml
cd NTS
# Sanity check, really often broken
extver=$(sed -n '/#define PHP_ZIP_VERSION/{s/.* "//;s/".*$//;p}' php7/php_zip.h)
if test "x${extver}" != "x%{upstream_version}%{?upstream_prever}"; then
: Error: Upstream extension version is ${extver}, expecting %{upstream_version}%{?upstream_prever}.
exit 1
fi
cd ..
: Create the configuration file
cat >%{ini_name} << 'EOF'
; Enable ZIP extension module
extension=%{pecl_name}.so
EOF
%if %{with_zts}
: Duplicate sources tree for ZTS build
cp -pr NTS ZTS
%endif
%build
cd NTS
%{_bindir}/phpize
%configure \
--with-libzip \
--with-libdir=%{_lib} \
--with-php-config=%{_bindir}/php-config
make %{?_smp_mflags}
%if %{with_zts}
cd ../ZTS
%{_bindir}/zts-phpize
%configure \
--with-libzip \
--with-libdir=%{_lib} \
--with-php-config=%{_bindir}/zts-php-config
make %{?_smp_mflags}
%endif
%install
make -C NTS install INSTALL_ROOT=%{buildroot}
install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name}
# Install XML package description
install -Dpm 644 package.xml %{buildroot}%{pecl_xmldir}/%{pecl_name}.xml
%if %{with_zts}
make -C ZTS install INSTALL_ROOT=%{buildroot}
install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name}
%endif
# Documentation
cd NTS
for i in $(grep 'role="doc"' ../package.xml | sed -e 's/^.*name="//;s/".*$//')
do install -Dpm 644 $i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i
done
%check
cd NTS
: minimal load test of NTS extension
%{_bindir}/php --no-php-ini \
--define extension=%{buildroot}%{php_extdir}/%{pecl_name}.so \
--modules | grep %{pecl_name}
: upstream test suite for NTS extension
TEST_PHP_ARGS="-n -d extension_dir=$PWD/modules -d extension=%{pecl_name}.so" \
TEST_PHP_EXECUTABLE=%{_bindir}/php \
%{_bindir}/php -n run-tests.php -q --show-diff
%if %{with_zts}
cd ../ZTS
: minimal load test of ZTS extension
%{_bindir}/zts-php --no-php-ini \
--define extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so \
--modules | grep %{pecl_name}
: upstream test suite for ZTS extension
TEST_PHP_ARGS="-n -d extension_dir=$PWD/modules -d extension=%{pecl_name}.so" \
TEST_PHP_EXECUTABLE=%{_bindir}/zts-php \
%{_bindir}/zts-php -n run-tests.php -q --show-diff
%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
* Fri Sep 16 2022 Remi Collet <[email protected]> - 1.21.1-1
- update to 1.21.1
* Tue Jun 28 2022 Remi Collet <[email protected]> - 1.21.0-1
- update to 1.21.0
* Mon May 2 2022 Remi Collet <[email protected]> - 1.20.1-1
- update to 1.20.1
* Tue Oct 12 2021 Remi Collet <[email protected]> - 1.20.0-1
- update to 1.20.0
- run test suite in parallel
* Wed Sep 1 2021 Remi Collet <[email protected]> - 1.19.4-1
- update to 1.19.4
* Mon Jun 7 2021 Remi Collet <[email protected]> - 1.19.3-1
- update to 1.19.3
* Mon Nov 23 2020 Remi Collet <[email protected]> - 1.19.2-1
- update to 1.19.2
* Wed Sep 30 2020 Remi Collet <[email protected]> - 1.19.1-1
- update to 1.19.1
* Wed Aug 12 2020 Jeff Sheltren <[email protected]> - 1.19.0-1
- Update to 1.19.0
* Tue Apr 28 2020 David Alger <[email protected]> - 1.18.2-1
- Port from Fedora to IUS
* Fri Mar 20 2020 Remi Collet <[email protected]> - 1.18.2-1
- update to 1.18.2
* Thu Mar 19 2020 Remi Collet <[email protected]> - 1.18.1-1
- update to 1.18.1
* Mon Mar 16 2020 Remi Collet <[email protected]> - 1.18.0-1
- update to 1.18.0
* Mon Mar 9 2020 Remi Collet <[email protected]> - 1.18.0~RC6-1
- update to 1.18.0RC6
* Fri Feb 28 2020 Remi Collet <[email protected]> - 1.17.2-1
- Update to 1.17.2
* Mon Feb 3 2020 Remi Collet <[email protected]> - 1.17.1-1
- Update to 1.17.1
* Fri Jan 31 2020 Remi Collet <[email protected]> - 1.17.0-1
- Update to 1.17.0
* Wed Jan 29 2020 Remi Collet <[email protected]> - 1.16.1-1
- Update to 1.16.1
* Tue Jan 28 2020 Remi Collet <[email protected]> - 1.16.0-1
- Update to 1.16.0
* Thu Oct 03 2019 Remi Collet <[email protected]> - 1.15.5-2
- rebuild for https://fedoraproject.org/wiki/Changes/php74
* Tue Sep 10 2019 Remi Collet <[email protected]> - 1.15.5-1
- Update to 1.15.5
* Fri Jul 26 2019 Fedora Release Engineering <[email protected]> - 1.15.4-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Sat Feb 02 2019 Fedora Release Engineering <[email protected]> - 1.15.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Thu Oct 11 2018 Remi Collet <[email protected]> - 1.15.4-2
- Rebuild for https://fedoraproject.org/wiki/Changes/php73
* Wed Oct 3 2018 Remi Collet <[email protected]> - 1.15.4-1
- Update to 1.15.4
* Fri Jul 13 2018 Fedora Release Engineering <[email protected]> - 1.15.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Tue Jun 12 2018 Remi Collet <[email protected]> - 1.15.3-1
- Update to 1.15.3
* Fri Feb 09 2018 Fedora Release Engineering <[email protected]> - 1.15.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Fri Jan 26 2018 Remi Collet <[email protected]> - 1.15.2-2
- undefine _strict_symbol_defs_build
* Tue Dec 19 2017 Remi Collet <[email protected]> - 1.15.2-1
- Update to 1.15.2
* Tue Oct 03 2017 Remi Collet <[email protected]> - 1.15.1-4
- rebuild for https://fedoraproject.org/wiki/Changes/php72
* Thu Aug 03 2017 Fedora Release Engineering <[email protected]> - 1.15.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Thu Jul 27 2017 Fedora Release Engineering <[email protected]> - 1.15.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Tue Jul 11 2017 Remi Collet <[email protected]> - 1.15.1-1
- Update to 1.15.1
* Mon Jul 10 2017 Remi Collet <[email protected]> - 1.15.0-1
- Update to 1.15.0
* Wed Apr 5 2017 Remi Collet <[email protected]> - 1.14.0-1
- Update to 1.14.0
* Tue Feb 28 2017 Remi Collet <[email protected]> - 1.13.5-4
- rebuild for new libzip
* Sat Feb 11 2017 Fedora Release Engineering <[email protected]> - 1.13.5-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Mon Nov 14 2016 Remi Collet <[email protected]> - 1.13.5-2
- rebuild for https://fedoraproject.org/wiki/Changes/php71
* Fri Oct 14 2016 Remi Collet <[email protected]> - 1.13.5-1
- Update to 1.13.5
* Thu Jul 21 2016 Remi Collet <[email protected]> - 1.13.4-1
- Update to 1.13.4
* Mon Jun 27 2016 Remi Collet <[email protected]> - 1.13.3-2
- rebuild for https://fedoraproject.org/wiki/Changes/php70
* Thu Jun 23 2016 Remi Collet <[email protected]> - 1.13.3-1
- Update to 1.13.3
* Tue Mar 1 2016 Remi Collet <[email protected]> - 1.13.2-1
- Update to 1.13.2
- fix license management
* Wed Feb 10 2016 Remi Collet <[email protected]> - 1.13.1-3
- drop scriptlets (replaced file triggers in php-pear)
- ignore 1 test (change in php, FTBFS detected by Koschei)
* Thu Feb 04 2016 Fedora Release Engineering <[email protected]> - 1.13.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Thu Sep 10 2015 Remi Collet <[email protected]> - 1.13.1-1
- Update to 1.13.1 (no change)
* Mon Sep 7 2015 Remi Collet <[email protected]> - 1.13.0-1
- Update to 1.13.0
- raise dependency on libzip 1.0.0
- don't install/register tests
* Thu Jun 18 2015 Fedora Release Engineering <[email protected]> - 1.12.5-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Wed May 06 2015 Remi Collet <[email protected]> - 1.12.5-2
- rebuild for new libzip
* Thu Apr 16 2015 Remi Collet <[email protected]> - 1.12.5-1
- Update to 1.12.5 (stable)
* Sun Aug 17 2014 Fedora Release Engineering <[email protected]> - 1.12.4-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Thu Jun 19 2014 Remi Collet <[email protected]> - 1.12.4-4
- rebuild for https://fedoraproject.org/wiki/Changes/Php56
* Sat Jun 07 2014 Fedora Release Engineering <[email protected]> - 1.12.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Thu Apr 24 2014 Remi Collet <[email protected]> - 1.12.4-2
- add numerical prefix to extension configuration file
* Wed Jan 29 2014 Remi Collet <[email protected]> - 1.12.4-1
- Update to 1.12.4 (stable) for libzip 0.11.2
* Thu Dec 12 2013 Remi Collet <[email protected]> - 1.12.3-1
- Update to 1.12.3 (stable)
- drop merged patch
* Thu Oct 24 2013 Remi Collet <[email protected]> 1.12.2-2
- upstream patch, don't use any libzip private struct
- drop LICENSE_libzip when system version is used
- always build ZTS extension
* Wed Oct 23 2013 Remi Collet <[email protected]> 1.12.2-1
- update to 1.12.2 (beta)
- drop merged patches
- install doc in pecl doc_dir
- install tests in pecl test_dir
* Thu Aug 22 2013 Remi Collet <[email protected]> 1.12.1-5
- really really fix all spurious-executable-perm
* Thu Aug 22 2013 Remi Collet <[email protected]> 1.12.1-4
- really fix all spurious-executable-perm
* Thu Aug 22 2013 Remi Collet <[email protected]> 1.12.1-3
- fixes from review comments #999313: clarify License
- drop execution right from sources
- BR libzip-devel always needed
* Tue Aug 20 2013 Remi Collet <[email protected]> 1.12.1-2
- refresh our merged patches from upstream git
* Thu Aug 08 2013 Remi Collet <[email protected]> 1.12.1-1
- New spec for version 1.12.1 (beta)