]> git.pld-linux.org Git - packages/php.git/blob - php.spec
bd9ac0aff920c4fbb002ae8b2bc9802c70c799a3
[packages/php.git] / php.spec
1 # NOTES
2 # - mysqlnd driver doesn't support reconnect: https://bugs.php.net/bug.php?id=52561
3 # TODO 5.6:
4 # - enable --with-fpm-systemd, but ensure it checks for sd_booted()
5 # TODO:
6 # - fileinfo extension bundles magic db in library: data_file.c (dump of magic.mgc) is 14M
7 #   - 2.3M fileinfo.so php54-fileinfo-5.4.6-0.15.x86_64
8 #   - 2.3M fileinfo.so php-fileinfo-5.3.16-1.x86_64
9 #   -  13K fileinfo.so php-pecl-fileinfo-1.0.4-8.amd64
10 # - ttyname_r() misdetected http://bugs.php.net/bug.php?id=48820
11 #
12 # Conditional build:
13 # - packaging options
14 %bcond_without  alternatives    # use alternatives system to select default phar and php-fpm
15 %bcond_with     default_php     # build this PHP as default PHP in system (disables alternatives)
16 # - General options:
17 %bcond_without  embed           # disable building Embedded API
18 %bcond_with     gcov            # Enable Code coverage reporting
19 %bcond_without  kerberos5       # without Kerberos5 support
20 %bcond_with     systemtap       # systemtap/DTrace support
21 %bcond_with     tests           # default off; test process very often hangs on builders, approx run time 45m; perform "make test"
22 %bcond_with     zts             # Zend Thread Safety
23 %bcond_with     debug           # Zend Debug Build
24 # - SAPI
25 %bcond_without  apache2         # disable building Apache 2.x SAPI
26 %bcond_without  cgi             # disable CGI/FCGI SAPI
27 %bcond_without  fpm             # disable FPM SAPI
28 %bcond_without  litespeed       # build litespeed SAPI
29 %bcond_without  phpdbg          # disable phpdbg SAPI
30 # - Extensions
31 %bcond_without  bcmath          # without bcmath extension module
32 %bcond_without  bzip2           # without bz2 extension module
33 %bcond_without  calendar        # without calendar extension module
34 %bcond_without  ctype           # without ctype extension module
35 %bcond_without  curl            # without CURL extension module
36 %bcond_without  dba             # without DBA extension module
37 %bcond_without  dom             # without DOM extension module
38 %bcond_without  enchant         # without Enchant extension module
39 %bcond_without  exif            # without EXIF extension module
40 %bcond_without  ffi             # without FFI extension module
41 %bcond_without  fileinfo        # without fileinfo extension module
42 %bcond_without  filter          # without filter extension module
43 %bcond_without  ftp             # without FTP extension module
44 %bcond_without  gd              # without GD extension module
45 %bcond_without  gettext         # without gettext extension module
46 %bcond_without  gmp             # without gmp extension module
47 %bcond_without  iconv           # without iconv extension module
48 %bcond_without  imap            # without IMAP extension module
49 %bcond_without  intl            # without Intl extension module
50 %bcond_without  json            # without json extension module
51 %bcond_without  ldap            # without LDAP extension module
52 %bcond_without  mbstring        # without mbstring extension module
53 %bcond_without  mhash           # without mhash extension (supported by hash extension)
54 %bcond_without  mysqli          # without mysqli support (Requires mysql >= 4.1)
55 %bcond_without  mysqlnd         # without mysqlnd support in mysql related extensions
56 %bcond_with     oci             # with Oracle oci8 extension module     (BR: proprietary libs)
57 %bcond_without  odbc            # without ODBC extension module
58 %bcond_without  opcache         # without Enable Zend OPcache extension support
59 %bcond_without  openssl         # without OpenSSL support and OpenSSL extension (module)
60 %bcond_without  pcntl           # without pcntl extension module
61 %bcond_without  pcre_jit        # PCRE JIT
62 %bcond_without  pdo             # without PDO extension module
63 %bcond_without  pdo_dblib       # without PDO dblib extension module
64 %bcond_without  pdo_firebird    # without PDO Firebird extension module
65 %bcond_without  pdo_mysql       # without PDO MySQL extension module
66 %bcond_without  pdo_oci # without PDO oci extension module
67 %bcond_without  pdo_odbc        # without PDO ODBC extension module
68 %bcond_without  pdo_pgsql       # without PDO pgsql extension module
69 %bcond_without  pdo_sqlite      # without PDO SQLite extension module
70 %bcond_without  pgsql           # without PostgreSQL extension module
71 %bcond_without  phar            # without Phar extension module
72 %bcond_without  posix           # without POSIX extension module
73 %bcond_without  pspell          # without pspell extension module
74 %bcond_without  readline        # without readline extension module
75 %bcond_without  session         # without session extension module
76 %bcond_without  snmp            # without SNMP extension module
77 %bcond_without  sodium          # without sodium extension module
78 %bcond_without  sqlite2         # without SQLite extension module
79 %bcond_without  sqlite3         # without SQLite3 extension module
80 %bcond_without  tidy            # without Tidy extension module
81 %bcond_without  xmlrpc          # without XML-RPC extension module
82 %bcond_without  xsl                     # without xsl extension module
83 %bcond_without  zip                     # without zip extension module
84 # extensions options
85 %bcond_without  argon2          # argon2 password hashing
86 %bcond_without  instantclient   # build Oracle oci8 extension module against oracle-instantclient package
87 %bcond_with     interbase_inst  # use InterBase install., not Firebird  (BR: proprietary libs)
88 %bcond_with     mm              # without mm support for session storage
89 %bcond_without  system_gd       # system gd
90 %bcond_without  webp            # Without WebP support in GD extension (imagecreatefromwebp)
91
92 %define apxs2           /usr/sbin/apxs
93
94 # segfaults on x32
95 %ifarch x32
96 %undefine       with_pcre_jit
97 %endif
98
99 # disable all sapis
100 %if %{with gcov}
101 %undefine       with_apache2
102 %undefine       with_cgi
103 %undefine       with_litespeed
104 %endif
105
106 %if %{with default_php}
107 %undefine       with_alternatives
108 %endif
109
110 # mm is not thread safe
111 %if %{with zts}
112 %undefine       with_mm
113 %endif
114
115 %if %{without odbc}
116 %undefine       with_pdo_odbc
117 %endif
118
119 %if %{without pgsql}
120 %undefine       with_pdo_pgsql
121 %endif
122
123 %if %{without oci}
124 %undefine       with_pdo_oci
125 %endif
126
127 %ifnarch %{ix86} %{x8664} x32
128 # unsupported, see sapi/cgi/fpm/fpm_atomic.h
129 %undefine       with_fpm
130 %endif
131
132 %if %{without pdo}
133 %undefine       with_pdo_dblib
134 %undefine       with_pdo_firebird
135 %undefine       with_pdo_mysql
136 %undefine       with_pdo_oci
137 %undefine       with_pdo_odbc
138 %undefine       with_pdo_pgsql
139 %undefine       with_pdo_sqlite
140 %endif
141
142 %define         orgname php
143 %define         ver_suffix 74
144 %define         php_suffix %{!?with_default_php:%{ver_suffix}}
145 Summary:        PHP: Hypertext Preprocessor
146 Summary(fr.UTF-8):      Le langage de script embarque-HTML PHP
147 Summary(pl.UTF-8):      Język skryptowy PHP
148 Summary(pt_BR.UTF-8):   A linguagem de script PHP
149 Summary(ru.UTF-8):      PHP Версии 7 - язык препроцессирования HTML-файлов, выполняемый на сервере
150 Summary(uk.UTF-8):      PHP Версії 7 - мова препроцесування HTML-файлів, виконувана на сервері
151 Name:           %{orgname}%{php_suffix}
152 Version:        7.4.30
153 Release:        1
154 Epoch:          4
155 # All files licensed under PHP version 3.01, except
156 # Zend is licensed under Zend
157 # TSRM is licensed under BSD
158 License:        PHP 3.01 and Zend and BSD
159 Group:          Libraries
160 Source0:        https://php.net/distributions/%{orgname}-%{version}.tar.xz
161 # Source0-md5:  c373c0ea292e8a1d3e87a1153ee64199
162 Source1:        opcache.ini
163 Source2:        %{orgname}-mod_php.conf
164 Source3:        %{orgname}-cgi-fcgi.ini
165 Source4:        %{orgname}-apache.ini
166 Source5:        %{orgname}-cli.ini
167 Source6:        timezone.ini
168 Source10:       %{orgname}-fpm.init
169 Source11:       %{orgname}-fpm.logrotate
170 Source12:       %{orgname}-branch.sh
171 Source13:       dep-tests.sh
172 Source14:       skip-tests.sh
173 Patch0:         %{orgname}-shared.patch
174 Patch1:         %{orgname}-pldlogo.patch
175 Patch2:         %{orgname}-mail.patch
176 Patch3:         %{orgname}-link-libs.patch
177 Patch4:         intl-stdc++.patch
178 Patch7:         %{orgname}-sapi-ini-file.patch
179 Patch9:         libtool-tag.patch
180 Patch10:        %{orgname}-ini.patch
181 Patch11:        embed.patch
182 Patch14:        %{orgname}-no_pear_install.patch
183 Patch17:        %{orgname}-readline.patch
184 Patch18:        %{orgname}-nohttpd.patch
185 Patch21:        %{orgname}-dba-link.patch
186 Patch22:        %{orgname}-both-apxs.patch
187 Patch23:        %{orgname}-builddir.patch
188 Patch24:        %{orgname}-zlib-for-getimagesize.patch
189 Patch25:        %{orgname}-stupidapache_version.patch
190 Patch27:        %{orgname}-config-dir.patch
191 Patch29:        %{orgname}-fcgi-graceful.patch
192 Patch39:        %{orgname}-use-prog_sendmail.patch
193 Patch41:        %{orgname}-fpm-config.patch
194 Patch43:        %{orgname}-silent-session-cleanup.patch
195 Patch44:        %{orgname}-include_path.patch
196 Patch50:        extension-shared-optional-dep.patch
197 Patch53:        fix-test-run.patch
198 Patch59:        %{orgname}-systzdata.patch
199 Patch60:        %{orgname}-oracle-instantclient.patch
200 Patch66:        php-db.patch
201 Patch67:        mysql-lib-ver-mismatch.patch
202 # https://bugs.php.net/bug.php?id=68344
203 Patch68:        php-mysql-ssl-context.patch
204 Patch71:        libdb-info.patch
205 Patch72:        openssl.patch
206 URL:            https://www.php.net/
207 %{?with_pdo_firebird:%{!?with_interbase_inst:BuildRequires:     Firebird-devel >= 1.0.2.908-2}}
208 %{?with_pspell:BuildRequires:   aspell-devel >= 2:0.50.0}
209 BuildRequires:  autoconf >= 2.59
210 BuildRequires:  automake >= 1.4d
211 BuildRequires:  bison >= 3.0.0
212 BuildRequires:  bzip2-devel >= 1.0.0
213 %{?with_curl:BuildRequires:     curl-devel >= 7.15.5}
214 BuildRequires:  cyrus-sasl-devel >= 2
215 BuildRequires:  db-devel >= 4.0
216 BuildRequires:  elfutils-devel
217 %{?with_enchant:BuildRequires:  enchant-devel >= 1.1.3}
218 %if %{with pdo_dblib}
219 BuildRequires:  freetds-devel >= 0.82
220 %endif
221 BuildRequires:  freetype-devel >= 1:2.5.1
222 %if %{with system_gd}
223 BuildRequires:  gd-devel >= 2.1
224 %endif
225 BuildRequires:  gdbm-devel
226 BuildRequires:  gmp-devel >= 4.2
227 %{?with_kerberos5:BuildRequires:        heimdal-devel}
228 %{?with_imap:BuildRequires:     imap-devel >= 1:2007e-2}
229 %{?with_gcov:BuildRequires:     lcov}
230 %{?with_fpm:BuildRequires:      libapparmor-devel}
231 %{?with_argon2:BuildRequires:   libargon2-devel >= 20161029}
232 %{?with_ffi:BuildRequires:      libffi-devel}
233 %{?with_intl:BuildRequires:     libicu-devel >= 50.1}
234 BuildRequires:  libjpeg-devel
235 BuildRequires:  libltdl-devel >= 1.4
236 BuildRequires:  libpng-devel >= 1.0.8
237 %{?with_sodium:BuildRequires:   libsodium-devel >= 1.0.8}
238 %{?with_intl:BuildRequires:     libstdc++-devel}
239 BuildRequires:  libtool >= 2:2.4.6
240 %{?with_webp:BuildRequires:     libwebp-devel}
241 BuildRequires:  libxml2-devel >= 1:2.7.6-4
242 %{?with_xsl:BuildRequires:      libxslt-devel >= 1.1.0}
243 %{?with_zip:BuildRequires:      libzip-devel >= 1.3.1}
244 %{?with_snmp:%{?with_tests:BuildRequires:       mibs-net-snmp}}
245 %{?with_mm:BuildRequires:       mm-devel >= 1.3.0}
246 %{!?with_mysqli:BuildRequires:  mysql-devel >= 4.1.13}
247 %{!?with_pdo_mysql:BuildRequires:       mysql-devel}
248 %{?with_snmp:BuildRequires:     net-snmp-devel >= 5.3}
249 BuildRequires: oniguruma-devel
250 %{?with_ldap:BuildRequires:     openldap-devel >= 2.3.0}
251 %if %{with openssl} || %{with ldap}
252 BuildRequires:  openssl-devel >= 1.0.1
253 %endif
254 %{?with_oci:%{?with_instantclient:BuildRequires:        oracle-instantclient-devel}}
255 BuildRequires:  pam-devel
256 BuildRequires:  pcre2-8-devel >= 10.30
257 BuildRequires:  pkgconfig
258 %{?with_pgsql:BuildRequires:    postgresql-devel}
259 BuildRequires:  readline-devel
260 BuildRequires:  rpm >= 4.4.9-56
261 BuildRequires:  rpm-build >= 4.4.0
262 BuildRequires:  rpmbuild(macros) >= 1.566
263 BuildRequires:  sed >= 4.0
264 %if %{with sqlite3} || %{with pdo_sqlite}
265 BuildRequires:  sqlite3-devel >= 3.7.4
266 %endif
267 %{?with_systemtap:BuildRequires:        systemtap-sdt-devel}
268 BuildRequires:  tar >= 1:1.22
269 %{?with_tidy:BuildRequires:     tidy-devel}
270 BuildRequires:  tokyocabinet-devel
271 %{?with_odbc:BuildRequires:     unixODBC-devel}
272 %{?with_xmlrpc:BuildRequires:   xmlrpc-epi-devel >= 0.54.1}
273 BuildRequires:  xz
274 BuildRequires:  zlib-devel >= 1.2.0.4
275 %if %{with apache2}
276 BuildRequires:  apache-devel >= 2.0.52-2
277 BuildRequires:  apr-devel >= 1:1.0.0
278 BuildRequires:  apr-util-devel >= 1:1.0.0
279 %endif
280 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
281
282 %define         php_sysconfdir          /etc/%{name}
283 %define         php_extensiondir        %{_libdir}/%{name}
284 %define         _sysconfdir                     %{php_sysconfdir}
285
286 # must be in sync with source. extra check ensuring that it is so is done in %%build
287 %define         php_api_version         20190902
288 %define         zend_module_api         %{php_api_version}
289 %define         zend_extension_api      3%{zend_module_api}
290 %define         php_pdo_api_version     20170320
291
292 # Extension versions
293 %define         bz2ver          %{version}
294 %define         enchantver      %{version}
295 %define         fileinfover     %{version}
296 %define         hashver         %{version}
297 %define         intlver         %{version}
298 %define         jsonver         %{version}
299 %define         pharver         %{version}
300 %define         sqlite3ver      %{version}
301 %define         zipver          1.15.6
302 %define         phpdbgver       %{version}
303 %define         sodiumver       %{version}
304
305 %define         _zend_zts               %{!?with_zts:0}%{?with_zts:1}
306 %define         php_debug               %{!?with_debug:0}%{?with_debug:1}
307
308 %if %{with gcov}
309 %undefine       with_ccache
310 %endif
311
312 %if %{with oci}
313 # ORACLE_HOME is required for oci8 ext to build
314 %define _preserve_env %_preserve_env_base ORACLE_HOME
315 %endif
316
317 %description
318 PHP is an HTML-embedded scripting language. PHP attempts to make it
319 easy for developers to write dynamically generated web pages. PHP also
320 offers built-in database integration for several commercial and
321 non-commercial database management systems, so writing a
322 database-enabled web page with PHP is fairly simple. The most common
323 use of PHP coding is probably as a replacement for CGI scripts. The
324 mod_php module enables the Apache web server to understand and process
325 the embedded PHP language in web pages. This package contains PHP
326 version %{version}.
327
328 %description -l fr.UTF-8
329 PHP est un langage de script embarque dans le HTM. PHP essaye de
330 rendre simple aux developpeurs d'ecrire des pages web generees
331 dynamiquement. PHP incorpore egalement une integration avec plusieurs
332 systemes de gestion de bases de donnees commerciaux et
333 non-connerciaux, qui rent facile la creation de pages web liees avec
334 des bases de donnees. L'utilisation la plus commune de PHP est
335 probablement en remplacement de scripts CGI. Le module mod_php permet
336 au serveur web Apache de comprendre et de traiter le langage PHP
337 integre dans des pages web. Ce package contient PHP version
338 %{version}.
339
340 %description -l pl.UTF-8
341 PHP jest językiem skryptowym, którego polecenia umieszcza się w
342 plikach HTML. Jest próbą ułatwienia programistom pisania dynamicznie
343 generowanych stron WWW. Oferuje także wbudowaną integrację z bazami
344 danych dla kilku komercyjnych i niekomercyjnych systemów baz danych,
345 co czyni tworzenie stron korzystających z baz danych w miarę łatwym.
346 Najczęściej PHP jest używany prawdopodobnie jako zamiennik skryptów
347 CGI. Moduł mod_php pozwala serwerowi WWW Apache rozumieć i przetwarzać
348 język PHP osadzony w stronach. Ten pakiet zawiera PHP w wersji
349 %{version}.
350
351 %description -l pt_BR.UTF-8
352 PHP: Preprocessador de Hipertexto versão 4 é uma linguagem script
353 embutida em HTML. Muito de sua sintaxe é emprestada de C, Java e Perl,
354 com algumas características únicas, específicas ao PHP. O objetivo da
355 linguagem é permitir que desenvolvedores web escrevam páginas
356 dinamicamente geradas de forma rápida.
357
358 %description -l ru.UTF-8
359 PHP - это язык написания скриптов, встраиваемых в HTML-код. PHP
360 предлагает интерграцию с множеством СУБД, поэтому написание скриптов
361 для работы с базами данных относительно просто. Наиболее популярное
362 использование PHP - замена для CGI скриптов.
363
364 %description -l uk.UTF-8
365 PHP - це мова написання скриптів, що вбудовуються в HTML-код. PHP
366 пропонує інтеграцію з багатьма СУБД, тому написання скриптів для
367 роботи з базами даних є доволі простим. Найбільш популярне
368 використання PHP - заміна для CGI скриптів.
369
370 %package -n apache-mod_%{name}
371 Summary:        PHP support for Apache 2.x
372 Summary(pl.UTF-8):      Wsparcie PHP dla Apache 2.x
373 Group:          Development/Languages/PHP
374 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
375 Requires:       apache-mod_%{name}-core = %{epoch}:%{version}-%{release}
376 Provides:       webserver(php) = %{version}
377 Obsoletes:      apache-mod_php < 4:5.3.28-7
378 Obsoletes:      phpfi
379
380 %description -n apache-mod_%{name}
381 PHP support for Apache 2.x.
382
383 %description -n apache-mod_%{name} -l pl.UTF-8
384 Wsparcie PHP dla Apache 2.x.
385
386 %package -n apache-mod_%{name}-core
387 Summary:        PHP DSO module for Apache 2.x
388 Summary(pl.UTF-8):      Moduł DSO (Dynamic Shared Object) PHP dla Apache 2.x
389 Group:          Development/Languages/PHP
390 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
391 Requires:       apache(modules-api) = %{apache_modules_api}
392 Requires:       apache-mod_mime
393
394 %description -n apache-mod_%{name}-core
395 PHP as DSO module for Apache 2.x.
396
397 %description -n apache-mod_%{name}-core -l pl.UTF-8
398 PHP jako moduł DSO (Dynamic Shared Object) dla Apache 2.x.
399
400 %package litespeed
401 Summary:        PHP for litespeed HTTP server
402 Summary(pl.UTF-8):      PHP dla serwera HTTP litespeed
403 Group:          Development/Languages/PHP
404 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
405 Provides:       php(litespeed)
406 Provides:       webserver(php) = %{version}
407 Obsoletes:      php-litespeed < 4:5.3.28-7
408
409 %description litespeed
410 PHP for litespeed HTTP server.
411
412 %description litespeed -l pl.UTF-8
413 PHP dla serwera HTTP litespeed.
414
415 %package cgi
416 Summary:        PHP as CGI/FastCGI program
417 Summary(pl.UTF-8):      PHP jako program CGI/FastCGI
418 Group:          Development/Languages/PHP
419 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
420 Provides:       %{name}-fcgi = %{epoch}:%{version}-%{release}
421 Provides:       php(cgi)
422 Provides:       php(fcgi)
423 Provides:       webserver(php) = %{version}
424 Obsoletes:      php-cgi < 4:5.3.28-7
425 Obsoletes:      php-fcgi < 4:5.3.0
426
427 %description cgi
428 PHP as CGI or FastCGI program.
429
430 %description cgi -l pl.UTF-8
431 PHP jako program CGI lub FastCGI.
432
433 %package cli
434 Summary:        PHP as CLI interpreter
435 Summary(pl.UTF-8):      PHP jako interpreter działający z linii poleceń
436 Group:          Development/Languages/PHP
437 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
438 Obsoletes:      php-cli < 4:5.3.28-7
439
440 %description cli
441 PHP as CLI interpreter.
442
443 %description cli -l pl.UTF-8
444 PHP jako interpreter działający z linii poleceń.
445
446 %package embedded
447 Summary:        PHP library for embedding in applications
448 Summary(pl.UTF-8):      Biblioteka PHP do osadzania w aplikacjach
449 Group:          Libraries
450 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
451 Obsoletes:      php-embedded < 4:5.3.28-7
452
453 %description embedded
454 The php-embedded package contains a library which can be embedded into
455 applications to provide PHP scripting language support.
456
457 %description embedded -l pl.UTF-8
458 Ten pakiet zawiera bibliotekę, którą można osadzać w aplikacjach w
459 celu obsługi PHP jako języka skryptowego.
460
461 %package program
462 Summary:        /usr/bin/php symlink
463 Summary(pl.UTF-8):      Dowiązanie symboliczne /usr/bin/php
464 Group:          Development/Languages/PHP
465 Requires:       %{name}-cli = %{epoch}:%{version}-%{release}
466 Obsoletes:      php-program < 4:5.3.28-7
467 Obsoletes:      php4-program < 3:5
468 Obsoletes:      php52-program < 4:5.3
469 Obsoletes:      php53-program < 4:5.4
470 Obsoletes:      php54-program < 4:5.5
471 Obsoletes:      php55-program < 4:5.6
472 Obsoletes:      php56-program < 4:7
473 Obsoletes:      php70-program < 4:7.1
474 Obsoletes:      php71-program < 4:7.2
475 Obsoletes:      php72-program < 4:7.3
476 Obsoletes:      php73-program < 4:7.4
477 Obsoletes:      php80-program < 4:8.1
478 Obsoletes:      php81-program < 4:8.2
479
480 %description program
481 Package providing /usr/bin/php symlink to PHP CLI.
482
483 %description program -l pl.UTF-8
484 Pakiet dostarczający dowiązanie symboliczne /usr/bin/php do PHP CLI.
485
486 %package fpm
487 Summary:        PHP FastCGI Process Manager
488 Summary(pl.UTF-8):      PHP FastCGI Process Manager - zarządca procesów FastCGI
489 Group:          Development/Languages/PHP
490 URL:            http://php-fpm.org/
491 Requires(post,preun):   /sbin/chkconfig
492 Requires(postun):       /usr/sbin/userdel
493 Requires(pre):  /bin/id
494 Requires(pre):  /usr/sbin/useradd
495 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
496 %{?with_alternatives:Requires:  alternatives}
497 Requires:       php-dirs >= 1.4-2
498 Requires:       rc-scripts
499 Provides:       php(fcgi)
500 Provides:       php(fpm)
501 Provides:       user(http)
502 Provides:       webserver(php) = %{version}
503 Obsoletes:      php-fpm < 4:5.3.28-7
504 %if "%{pld_release}" != "ac"
505 Conflicts:      logrotate < 3.8.0
506 %endif
507
508 %description fpm
509 PHP FastCGI Process Manager.
510
511 %description fpm -l pl.UTF-8
512 PHP FastCGI Process Manager - zarządca procesów FastCGI.
513
514 %package phpdbg
515 Summary:        The debugging platform for PHP 5.4+
516 Summary(pl.UTF-8):      Platforma diagnostyczna dla PHP 5.4+
517 Group:          Development/Languages/PHP
518 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
519 Provides:       php(phpdbg) = %{phpdbgver}
520
521 %description phpdbg
522 phpdbg - The interactive PHP debugger.
523
524 Implemented as a SAPI module, phpdbg can excert complete control over
525 the environment without impacting the functionality or performance of
526 your code.
527
528 phpdbg aims to be a lightweight, powerful, easy to use debugging
529 platform for PHP 5.4+
530
531 %description phpdbg -l pl.UTF-8
532 phpdbg - interaktywny debugger dla PHP.
533
534 Jest zaimplementowany jako moduł SAPI, potrafi przejąć pełną kontrolę
535 nad środowiskiem bez wpływu na zachowanie lub wydajność kodu.
536
537 Narzędzie powstało jako lekka, mająca duże możliwości, łatwa w użyciu
538 platforma diagnostyczna dla PHP 5.4+.
539
540 %package common
541 Summary:        Common files needed by both Apache modules and CGI/CLI SAPIs
542 Summary(pl.UTF-8):      Wspólne pliki dla modułu Apache'a i programu CGI
543 Summary(ru.UTF-8):      Разделяемые библиотеки для PHP
544 Summary(uk.UTF-8):      Бібліотеки спільного використання для PHP
545 Group:          Libraries
546 Requires(post): sed >= 4.0
547 # because of dlclose() bugs in glibc <= 2.3.4 causing SEGVs on exit
548 Requires:       glibc >= 6:2.3.5
549 Requires:       php-dirs >= 1.4
550 Requires:       rpm-whiteout >= 1.28
551 Requires:       tzdata
552 Requires:       zlib >= 1.2.0.4
553 Provides:       %{name}(debug) = %{php_debug}
554 Provides:       %{name}(modules_api) = %{php_api_version}
555 Provides:       %{name}(thread-safety) = %{_zend_zts}
556 Provides:       %{name}(zend_extension_api) = %{zend_extension_api}
557 Provides:       %{name}(zend_module_api) = %{zend_module_api}
558 Provides:       %{name}-core
559 Provides:       %{name}-date
560 Provides:       %{name}-hash = %{epoch}:%{version}-%{release}
561 Provides:       %{name}-pcre = %{epoch}:%{version}-%{release}
562 Provides:       %{name}-reflection
563 Provides:       %{name}-spl = %{epoch}:%{version}-%{release}
564 Provides:       %{name}-standard
565 Provides:       php(core) = %{version}
566 Provides:       php(date)
567 Provides:       php(hash) = %{hashver}
568 Provides:       php(libxml)
569 Provides:       php(pcre)
570 Provides:       php(reflection)
571 Provides:       php(spl)
572 Provides:       php(standard)
573 %{!?with_mysqlnd:Obsoletes:     %{name}-mysqlnd}
574 %requires_ge_to pcre2-8 pcre2-8-devel
575 Suggests:       browscap
576 Obsoletes:      php-common < 4:5.3.28-7
577 Obsoletes:      php-filepro < 4:5.2.0
578 Obsoletes:      php-hash < 4:5.3.28-7
579 Obsoletes:      php-hwapi < 4:5.2.0
580 Obsoletes:      php-hyperwave < 3:5.0.0
581 Obsoletes:      php-java < 3:5.0.0
582 Obsoletes:      php-mcal < 3:5.0.0
583 Obsoletes:      php-pcre < 4:5.3.28-7
584 Obsoletes:      php-pecl-domxml
585 Obsoletes:      php-pecl-hash < %{hashver}
586 Obsoletes:      php-qtdom < 3:5.0.0
587 Obsoletes:      php-spl < 4:5.3.28-7
588 Conflicts:      php4-common < 3:4.4.4-8
589 Conflicts:      php55-common < 4:5.5.10-4
590 Conflicts:      rpm < 4.4.2-0.2
591 %if %{with mhash}
592 Provides:       php(mhash)
593 Provides:       php-mhash = %{epoch}:%{version}-%{release}
594 Obsoletes:      php-mhash < 4:5.3.0
595 %endif
596
597 %description common
598 Common files needed by both Apache modules and CGI/CLI SAPIs.
599
600 %description common -l pl.UTF-8
601 Wspólne pliki dla modułu Apache'a i programu CGI.
602
603 %description common -l ru.UTF-8
604 Этот пакет содержит общие файлы для разных вариантов реализации PHP
605 (самодостаточной и в качестве модуля Apache).
606
607 %description common -l uk.UTF-8
608 Цей пакет містить спільні файли для різних варіантів реалізації PHP
609 (самодостатньої та в якості модуля Apache).
610
611 %package devel
612 Summary:        Files for PHP modules development
613 Summary(pl.UTF-8):      Pliki do kompilacji modułów PHP
614 Summary(pt_BR.UTF-8):   Arquivos de desenvolvimento para PHP
615 Summary(ru.UTF-8):      Пакет разработки для построения расширений PHP
616 Summary(uk.UTF-8):      Пакет розробки для побудови розширень PHP
617 Group:          Development/Languages/PHP
618 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
619 Requires:       autoconf >= 2.59
620 Requires:       automake >= 1.4d
621 Requires:       libtool >= 2:2.4.6
622 Requires:       pcre2-8-devel >= 10.30
623 Requires:       shtool
624 Provides:       php-devel = %{epoch}:%{version}-%{release}
625 Obsoletes:      php-devel
626 Obsoletes:      php-pear-devel < 3:4.3.0-1
627 Obsoletes:      php4-devel < 3:5
628 Obsoletes:      php52-devel < 4:5.3
629 Obsoletes:      php53-devel < 4:5.4
630 Obsoletes:      php54-devel < 4:5.5
631 Obsoletes:      php55-devel < 4:5.6
632 Obsoletes:      php56-devel < 4:7
633 Obsoletes:      php70-devel < 4:7.1
634 Obsoletes:      php71-devel < 4:7.2
635 Obsoletes:      php72-devel < 4:7.3
636 Obsoletes:      php73-devel < 4:7.4
637 Obsoletes:      php80-devel < 4:8.0
638 Obsoletes:      php81-devel < 4:8.2
639
640 %description devel
641 The php-devel package lets you compile dynamic extensions to PHP.
642 Included here is the source for the PHP extensions. Instead of
643 recompiling the whole PHP binary to add support for, say, oracle,
644 install this package and use the new self-contained extensions
645 support. For more information, read the file
646 README.SELF-CONTAINED-EXTENSIONS.
647
648 %description devel -l pl.UTF-8
649 Ten pakiet zawiera pliki potrzebne do kompilacji modułów PHP. Zamiast
650 rekompilować całe PHP aby dodać obsługę np. oracle, można przy użyciu
651 tego pakietu skompilować samodzielne rozszerzenie. Więcej informacji o
652 samodzielnych rozszerzeniach można znaleźć w pliku
653 README.SELF-CONTAINED-EXTENSIONS.
654
655 %description devel -l pt_BR.UTF-8
656 Este pacote contém arquivos usados no desenvolvimento de programas ou
657 módulos PHP.
658
659 %description devel -l ru.UTF-8
660 Пакет php-devel дает возможность компилировать динамические расширения
661 PHP. Пакет включает исходный код этих расширений. Вместо повторной
662 компиляции бинарного файла PHP для добавления, например, поддержки
663 oracle, установите этот пакет для компилирования отдельных расширений.
664 Подробности - в файле README.SELF-CONTAINED-EXTENSIONS.
665
666 %description devel -l uk.UTF-8
667 Пакет php-devel дає можливість компілювати динамічні розширення PHP.
668 До пакету включено вихідний код для розширень. Замість повторної
669 компіляції бінарного файлу PHP для додання, наприклад, підтримки
670 oracle, встановіть цей пакет для компіляції окремих розширень.
671 Детальніша інформація - в файлі README.SELF-CONTAINED-EXTENSIONS.
672
673 %package bcmath
674 Summary:        bcmath extension module for PHP
675 Summary(pl.UTF-8):      Moduł bcmath dla PHP
676 Group:          Libraries
677 URL:            http://php.net/manual/en/book.bc.php
678 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
679 Provides:       php(bcmath)
680 Obsoletes:      php-bcmath < 4:5.3.28-7
681
682 %description bcmath
683 This is a dynamic shared object (DSO) for PHP that will add bc style
684 precision math functions support.
685
686 %description bcmath -l pl.UTF-8
687 Moduł PHP umożliwiający korzystanie z dokładnych funkcji
688 matematycznych takich jak w programie bc.
689
690 %package bz2
691 Summary:        Bzip2 extension module for PHP
692 Summary(pl.UTF-8):      Moduł bzip2 dla PHP
693 Group:          Libraries
694 URL:            http://php.net/manual/en/book.bzip2.php
695 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
696 Requires:       bzip2-libs >= 1.0.0
697 Provides:       php(bz2) = %{bz2ver}
698 Provides:       php(bzip2)
699 Provides:       php-bzip2 = %{epoch}:%{version}-%{release}
700 Obsoletes:      php-bz2 < 4:5.3.28-7
701 Obsoletes:      php-bzip2 < 4:5.2.14-3
702 Obsoletes:      php-pecl-bz2 < %{bz2ver}
703
704 %description bz2
705 This is a dynamic shared object (DSO) for PHP that will add bzip2
706 compression support to PHP.
707
708 %description bz2 -l pl.UTF-8
709 Moduł PHP umożliwiający używanie kompresji bzip2.
710
711 %package calendar
712 Summary:        Calendar extension module for PHP
713 Summary(pl.UTF-8):      Moduł funkcji kalendarza dla PHP
714 Group:          Libraries
715 URL:            http://php.net/manual/en/book.calendar.php
716 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
717 Provides:       php(calendar)
718 Obsoletes:      php-calendar < 4:5.3.28-7
719
720 %description calendar
721 This is a dynamic shared object (DSO) for PHP that will add calendar
722 support.
723
724 %description calendar -l pl.UTF-8
725 Moduł PHP dodający wsparcie dla kalendarza.
726
727 %package ctype
728 Summary:        ctype extension module for PHP
729 Summary(pl.UTF-8):      Moduł ctype dla PHP
730 Group:          Libraries
731 URL:            http://php.net/manual/en/book.ctype.php
732 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
733 Provides:       php(ctype)
734 Obsoletes:      php-ctype < 4:5.3.28-7
735
736 %description ctype
737 This is a dynamic shared object (DSO) for PHP that will add ctype
738 support.
739
740 %description ctype -l pl.UTF-8
741 Moduł PHP umożliwiający korzystanie z funkcji ctype.
742
743 %package curl
744 Summary:        curl extension module for PHP
745 Summary(pl.UTF-8):      Moduł curl dla PHP
746 Group:          Libraries
747 URL:            http://php.net/manual/en/book.curl.php
748 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
749 Requires:       curl-libs >= 7.12.0
750 Provides:       php(curl)
751 Obsoletes:      php-curl < 4:5.3.28-7
752
753 %description curl
754 This is a dynamic shared object (DSO) for PHP that will add curl
755 support.
756
757 %description curl -l pl.UTF-8
758 Moduł PHP umożliwiający korzystanie z biblioteki curl.
759
760 %package dba
761 Summary:        DBA extension module for PHP
762 Summary(pl.UTF-8):      Moduł DBA dla PHP
763 Group:          Libraries
764 URL:            http://php.net/manual/en/book.dba.php
765 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
766 Provides:       php(dba)
767 Obsoletes:      php-dba < 4:5.3.28-7
768 # withdrawn module of similar functionality but different API
769 Obsoletes:      php-db < 3:5.0.0
770
771 %description dba
772 This is a dynamic shared object (DSO) for PHP that will add flat-file
773 databases (DBA) support.
774
775 %description dba -l pl.UTF-8
776 Moduł dla PHP dodający obsługę dla baz danych opartych na plikach
777 (DBA).
778
779 %package dom
780 Summary:        DOM extension module for PHP
781 Summary(pl.UTF-8):      Moduł DOM dla PHP
782 Group:          Libraries
783 URL:            http://php.net/manual/en/book.dom.php
784 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
785 Provides:       php(dom)
786 # it has some compatibility functions
787 Provides:       %{name}-domxml = %{epoch}:%{version}-%{release}
788 Provides:       php(domxml)
789 Obsoletes:      php-dom < 4:5.3.28-7
790 Obsoletes:      php-domxml <= 3:4.3.8-1
791
792 %description dom
793 This is a dynamic shared object (DSO) for PHP that will add new DOM
794 support.
795
796 %description dom -l pl.UTF-8
797 Moduł PHP dodający nową obsługę DOM.
798
799 %package enchant
800 Summary:        libenchant binder
801 Summary(pl.UTF-8):      dowiązania biblioteki libenchant
802 Group:          Libraries
803 URL:            http://php.net/manual/en/book.enchant.php
804 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
805 Provides:       php(enchant) = %{enchantver}
806 Obsoletes:      php-enchant < 4:5.3.28-7
807 Obsoletes:      php-pecl-enchant < %{enchantver}
808
809 %description enchant
810 Enchant is a binder for libenchant. Libenchant provides a common API
811 for many spell libraries:
812 - aspell/pspell (intended to replace ispell)
813 - hspell (hebrew)
814 - ispell
815 - myspell (OpenOffice.org project, mozilla)
816 - uspell (primarily Yiddish, Hebrew, and Eastern European languages) A
817   plugin system allows to add custom spell support.
818
819 %description enchant -l pl.UTF-8
820 Enchant jest dowiązaniem do biblioteki libenchant, która udostępnia
821 ujednolicone API dla wielu narzędzi sprawdzających pisownię:
822 - aspell/pspell (w zamierzeniu ma zastąpić ispell)
823 - hspell (hebrajski)
824 - ispell
825 - myspell (projekt OpenOffice.org, mozilla)
826 - uspell (głównie Jidysz, Hebrajski oraz języki wschodnioeuropejskie)
827   System wtyczek pozwala na dodanie wsparcia dla kolejnych narzędzi.
828
829 %package exif
830 Summary:        exif extension module for PHP
831 Summary(pl.UTF-8):      Moduł exif dla PHP
832 Group:          Libraries
833 URL:            http://php.net/manual/en/book.exif.php
834 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
835 Provides:       php(exif)
836 Obsoletes:      php-exif < 4:5.3.28-7
837
838 %description exif
839 This is a dynamic shared object (DSO) for PHP that will add EXIF tags
840 support in image files.
841
842 %description exif -l pl.UTF-8
843 Moduł PHP dodający obsługę znaczników EXIF w plikach obrazków.
844
845 %package ffi
846 Summary:        Foreign Function Interface module for PHP
847 Summary(pl.UTF-8):      Moduł Foreign Function Interface (interfejsu do obcych języków) dla PHP
848 Group:          Libraries
849 URL:            https://www.php.net/manual/en/book.ffi.php
850 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
851 Provides:       php(ffi) = %{version}
852
853 %description ffi
854 FFI is a multi-platform extension for PHP that allows you to bind to
855 functions from arbitrary shared libraries and call them.
856
857 %description ffi -l pl.UTF-8
858 FFI to wieloplatformowe rozszerzenie dla PHP pozwalające dowiązywać
859 funkcje z dowolnych bibliotek współdzielonych i wywoływać je.
860
861 %package fileinfo
862 Summary:        libmagic bindings
863 Summary(pl.UTF-8):      Wiązania do libmagic
864 Group:          Libraries
865 URL:            http://php.net/manual/en/book.fileinfo.php
866 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
867 Requires:       %{name}-pcre = %{epoch}:%{version}-%{release}
868 Provides:       php(fileinfo) = %{fileinfover}
869 Obsoletes:      php-fileinfo < 4:5.3.28-7
870 Obsoletes:      php-mime_magic
871 Obsoletes:      php-pecl-fileinfo < %{fileinfover}
872
873 %description fileinfo
874 This extension allows retrieval of information regarding vast majority
875 of file. This information may include dimensions, quality, length
876 etc...
877
878 Additionally it can also be used to retrieve the MIME type for a
879 particular file and for text files proper language encoding.
880
881 %description fileinfo -l pl.UTF-8
882 To rozszerzenie pozwala na uzyskanie informacji dotyczących większości
883 plików. Informacje mogą zawierać wymiary, jakość, długość itp.
884
885 Ponadto rozszerzenie można wykorzystać do odczytania typu MIME danego
886 pliku oraz kodowania plików tekstowych.
887
888 %package filter
889 Summary:        Extension for safely dealing with input parameters
890 Summary(pl.UTF-8):      Rozszerzenie do bezpiecznej obsługi danych wejściowych
891 Group:          Libraries
892 URL:            http://php.net/manual/en/book.filter.php
893 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
894 Requires:       %{name}-pcre = %{epoch}:%{version}-%{release}
895 Provides:       php(filter)
896 Obsoletes:      php-filter < 4:5.3.28-7
897 Obsoletes:      php-pecl-filter < 0.12
898
899 %description filter
900 We all know that you should always check input variables, but PHP does
901 not offer really good functionality for doing this in a safe way. The
902 Input Filter extension is meant to address this issue by implementing
903 a set of filters and mechanisms that users can use to safely access
904 their input data.
905
906 %description filter -l pl.UTF-8
907 Wiadomo, że trzeba zawsze sprawdzać zmienne wejściowe, ale PHP nie
908 oferuje naprawdę dobrej funkcjonalności do robienia tego w sposób
909 bezpieczny. Rozszerzenie Input Filter ma rozwiązać ten problem poprzez
910 zaimplementowanie zestawu filtrów i mechanizmów, których użytkownicy
911 mogą bezpiecznie używać do dostępu do danych.
912
913 %package ftp
914 Summary:        FTP extension module for PHP
915 Summary(pl.UTF-8):      Moduł FTP dla PHP
916 Group:          Libraries
917 URL:            http://php.net/manual/en/book.ftp.php
918 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
919 Provides:       php(ftp)
920 Obsoletes:      php-ftp < 4:5.3.28-7
921
922 %description ftp
923 This is a dynamic shared object (DSO) for PHP that will add FTP
924 support.
925
926 %description ftp -l pl.UTF-8
927 Moduł PHP dodający obsługę protokołu FTP.
928
929 %package gd
930 Summary:        GD extension module for PHP
931 Summary(pl.UTF-8):      Moduł GD dla PHP
932 Group:          Libraries
933 URL:            http://php.net/manual/en/book.image.php
934 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
935 %if %{with system_gd}
936 Requires:       gd >= 2.1
937 Requires:       gd(gif)
938 %endif
939 Provides:       php(gd)
940 Obsoletes:      php-gd < 4:5.3.28-7
941
942 %description gd
943 This is a dynamic shared object (DSO) for PHP that will add GD
944 support, allowing you to create and manipulate images with PHP.
945
946 %description gd -l pl.UTF-8
947 Moduł PHP umożliwiający korzystanie z biblioteki GD, pozwalającej na
948 tworzenie i obróbkę obrazków.
949
950 %package gettext
951 Summary:        gettext extension module for PHP
952 Summary(pl.UTF-8):      Moduł gettext dla PHP
953 Group:          Libraries
954 URL:            http://php.net/manual/en/book.gettext.php
955 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
956 Provides:       php(gettext)
957 Obsoletes:      php-gettext < 4:5.3.28-7
958
959 %description gettext
960 This is a dynamic shared object (DSO) for PHP that will add gettext
961 support.
962
963 %description gettext -l pl.UTF-8
964 Moduł PHP dodający obsługę lokalizacji przez gettext.
965
966 %package gmp
967 Summary:        gmp extension module for PHP
968 Summary(pl.UTF-8):      Moduł gmp dla PHP
969 Group:          Libraries
970 URL:            http://php.net/manual/en/book.gmp.php
971 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
972 Requires:       gmp >= 4.2
973 Provides:       php(gmp)
974 Obsoletes:      php-gmp < 4:5.3.28-7
975
976 %description gmp
977 This is a dynamic shared object (DSO) for PHP that will add arbitrary
978 length number support with GNU MP library.
979
980 %description gmp -l pl.UTF-8
981 Moduł PHP umożliwiający korzystanie z biblioteki gmp do obliczeń na
982 liczbach o dowolnej długości.
983
984 %package iconv
985 Summary:        iconv extension module for PHP
986 Summary(pl.UTF-8):      Moduł iconv dla PHP
987 Group:          Libraries
988 URL:            http://php.net/manual/en/book.iconv.php
989 Requires:       %{_libdir}/gconv
990 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
991 Requires:       iconv
992 Provides:       php(iconv)
993 Obsoletes:      php-iconv < 4:5.3.28-7
994
995 %description iconv
996 This is a dynamic shared object (DSO) for PHP that will add iconv
997 support.
998
999 %description iconv -l pl.UTF-8
1000 Moduł PHP dodający obsługę iconv.
1001
1002 %package imap
1003 Summary:        IMAP extension module for PHP
1004 Summary(pl.UTF-8):      Moduł IMAP dla PHP
1005 Summary(pt_BR.UTF-8):   Um módulo para aplicações PHP que usam IMAP
1006 Group:          Libraries
1007 URL:            http://php.net/manual/en/book.imap.php
1008 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1009 Requires:       %{name}-pcre = %{epoch}:%{version}-%{release}
1010 Requires:       imap-lib >= 1:2007e-2
1011 Provides:       php(imap)
1012 Obsoletes:      php-imap < 4:5.3.28-7
1013
1014 %description imap
1015 This is a dynamic shared object (DSO) for PHP that will add IMAP
1016 support.
1017
1018 %description imap -l pl.UTF-8
1019 Moduł PHP dodający obsługę skrzynek IMAP.
1020
1021 %description imap -l pt_BR.UTF-8
1022 Um módulo para aplicações PHP que usam IMAP.
1023
1024 %package intl
1025 Summary:        Internationalization extension (ICU wrapper)
1026 Summary(pl.UTF-8):      Rozszerzenie do internacjonalizacji (interfejs do ICU)
1027 Group:          Libraries
1028 URL:            http://php.net/intl
1029 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1030 Provides:       php(intl) = %{intlver}
1031 Obsoletes:      php-intl < 4:5.3.28-7
1032 Obsoletes:      php-pecl-intl < %{intlver}
1033
1034 %description intl
1035 Internationalization extension (further is referred as Intl) is a
1036 wrapper for ICU library, enabling PHP programmers to perform
1037 UCA-conformant collation and date/time/number/currency formatting in
1038 their scripts.
1039
1040 %description intl -l pl.UTF-8
1041 Rozszerzenie do internacjonalizacji (dalej nazywane Intl) jest
1042 interfejsem do biblioteki ICU, pozwalającym programistom PHP na
1043 wykonywanie w skryptach porównań zgodnych z UCA oraz formatowania
1044 daty/czasu/walut.
1045
1046 %package json
1047 Summary:        PHP C extension for JSON serialization
1048 Summary(pl.UTF-8):      Rozszerzenie C PHP dla serializacji JSON
1049 Group:          Libraries
1050 URL:            http://php.net/manual/en/book.json.php
1051 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1052 Provides:       php(json) = %{jsonver}
1053 Obsoletes:      php-json < 4:5.3.28-7
1054 Obsoletes:      php-pecl-json < %{jsonver}
1055
1056 %description json
1057 php-json is an extremely fast PHP C extension for JSON (JavaScript
1058 Object Notation) serialisation.
1059
1060 %description json -l pl.UTF-8
1061 php-json to bardzo szybkie rozszerzenie C PHP dla serializacji JSON
1062 (JavaScript Object Notation).
1063
1064 %package ldap
1065 Summary:        LDAP extension module for PHP
1066 Summary(pl.UTF-8):      Moduł LDAP dla PHP
1067 Summary(pt_BR.UTF-8):   Um módulo para aplicações PHP que usam LDAP
1068 Group:          Libraries
1069 URL:            http://php.net/manual/en/book.ldap.php
1070 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1071 Provides:       php(ldap)
1072 Obsoletes:      php-ldap < 4:5.3.28-7
1073
1074 %description ldap
1075 This is a dynamic shared object (DSO) for PHP that will add LDAP
1076 support.
1077
1078 %description ldap -l pl.UTF-8
1079 Moduł PHP dodający obsługę LDAP.
1080
1081 %description ldap -l pt_BR.UTF-8
1082 Um módulo para aplicações PHP que usam LDAP.
1083
1084 %package mbstring
1085 Summary:        mbstring extension module for PHP
1086 Summary(pl.UTF-8):      Moduł mbstring dla PHP
1087 Group:          Libraries
1088 URL:            http://php.net/manual/en/book.mbstring.php
1089 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1090 Provides:       php(mbstring)
1091 Obsoletes:      php-mbstring < 4:5.3.28-7
1092
1093 %description mbstring
1094 This is a dynamic shared object (DSO) for PHP that will add multibyte
1095 string support.
1096
1097 %description mbstring -l pl.UTF-8
1098 Moduł PHP dodający obsługę ciągów znaków wielobajtowych.
1099
1100 %package mysqli
1101 Summary:        MySQLi module for PHP
1102 Summary(pl.UTF-8):      Moduł MySQLi dla PHP
1103 Group:          Libraries
1104 URL:            http://php.net/manual/en/book.mysqli.php
1105 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1106 %{?with_mysqlnd:Requires:       %{name}-mysqlnd = %{epoch}:%{version}-%{release}}
1107 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1108 Requires:       mysql-libs >= 4.1.13
1109 Provides:       php(mysqli)
1110 Obsoletes:      php-mysqli < 4:5.3.28-7
1111
1112 %description mysqli
1113 This is a dynamic shared object (DSO) for PHP that will add MySQLi
1114 (Improved MySQL) support. The difference between it and mysql module
1115 is that it provides access to functionality of MySQL 4.1 and above.
1116
1117 %description mysqli -l pl.UTF-8
1118 Moduł PHP umożliwiający udoskonalony dostęp do bazy danych MySQL.
1119 Różnicą między nim a modułem mysql jest dostęp do funkcjonalności
1120 MySQL w wersji 4.1 i nowszych.
1121
1122 %package mysqlnd
1123 Summary:        MySQL Native Client Driver for PHP
1124 Summary(pl.UTF-8):      Sterownik natywnego klienta MySQL dla PHP
1125 Group:          Libraries
1126 URL:            http://php.net/manual/en/book.mysqlnd.php
1127 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1128 Provides:       php(mysqlnd)
1129 Obsoletes:      php-mysqlnd < 4:5.3.28-7
1130
1131 %description mysqlnd
1132 MySQL Native Driver is a replacement for the MySQL Client Library
1133 (libmysql).
1134
1135 Because MySQL Native Driver is written as a PHP extension, it is
1136 tightly coupled to the workings of PHP. This leads to gains in
1137 efficiency, especially when it comes to memory usage, as the driver
1138 uses the PHP memory management system. It also supports the PHP memory
1139 limit. Using MySQL Native Driver leads to comparable or better
1140 performance than using MySQL Client Library, it always ensures the
1141 most efficient use of memory. One example of the memory efficiency is
1142 the fact that when using the MySQL Client Library, each row is stored
1143 in memory twice, whereas with the MySQL Native Driver each row is only
1144 stored once in memory.
1145
1146 %description mysqlnd -l pl.UTF-8
1147 MySQL Native Driver (natywny sterownik MySQL) to zamiennik biblioteki
1148 klienckiej MySQL (libmysql).
1149
1150 Ponieważ sterownik natywny jest napisany jako rozszerzenie PHP, jest
1151 ściśle powiązany z pracą PHP. Daje to większą wydajność, zwłaszcza
1152 jeśli chodzi o wykorzystanie pamięci, jako że sterownik wykorzystuje
1153 system zarządzania pamięcią PHP; obsługuje także ograniczenie pamięci
1154 z PHP. Niniejszy sterownik ma wydajność porównywalną lub lepszą niż
1155 biblioteka kliencka MySQL, a pamięć zawsze wykorzystuje efektywniej.
1156 Przykładem tego może być fakt, że w przypadku biblioteki klienckiej
1157 każdy wiersz jest przechowywany w pamięci dwukrotnie, natomiast przy
1158 tym sterowniku - tylko raz.
1159
1160 %package oci8
1161 Summary:        Oracle 8+ database module for PHP
1162 Summary(pl.UTF-8):      Moduł bazy danych Oracle 8+ dla PHP
1163 Group:          Libraries
1164 URL:            http://php.net/manual/en/book.oci8.php
1165 %{?requires_php_extension}
1166 Provides:       php(oci8)
1167 Obsoletes:      php-oci8 < 4:5.3.28-7
1168 # withdrawn module of similar functionality but different API
1169 Obsoletes:      php-oracle < 4:5.1.0
1170
1171 %description oci8
1172 This is a dynamic shared object (DSO) for PHP that will add Oracle 7,
1173 8, 9 and 10 database support through Oracle8 Call-Interface (OCI8).
1174
1175 %description oci8 -l pl.UTF-8
1176 Moduł PHP umożliwiający dostęp do bazy danych Oracle 7, 8, 9 i 10
1177 poprzez interfejs Oracle8 Call-Interface (OCI8).
1178
1179 %package odbc
1180 Summary:        ODBC extension module for PHP
1181 Summary(pl.UTF-8):      Moduł ODBC dla PHP
1182 Summary(pt_BR.UTF-8):   Um módulo para aplicações PHP que usam bases de dados ODBC
1183 Group:          Libraries
1184 URL:            http://php.net/manual/en/book.uodbc.php
1185 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1186 Requires:       unixODBC >= 2.1.1-3
1187 Provides:       php(odbc)
1188 Obsoletes:      php-odbc < 4:5.3.28-7
1189
1190 %description odbc
1191 This is a dynamic shared object (DSO) for PHP that will add ODBC
1192 support.
1193
1194 %description odbc -l pl.UTF-8
1195 Moduł PHP ze wsparciem dla ODBC.
1196
1197 %description odbc -l pt_BR.UTF-8
1198 Um módulo para aplicações PHP que usam ODBC.
1199
1200 %package opcache
1201 Summary:        Zend Optimizer+ - PHP code optimizer
1202 Summary(pl.UTF-8):      Zend Optimizer+ - optymalizator kodu PHP
1203 Group:          Libraries
1204 URL:            https://wiki.php.net/rfc/optimizerplus
1205 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1206 Requires:       %{name}-pcre = %{epoch}:%{version}-%{release}
1207 Provides:       php(opcache) = %{version}
1208
1209 %description opcache
1210 The Zend OPcache provides faster PHP execution through opcode caching
1211 and optimization. It improves PHP performance by storing precompiled
1212 script bytecode in the shared memory. This eliminates the stages of
1213 reading code from the disk and compiling it on future access. In
1214 addition, it applies a few bytecode optimization patterns that make
1215 code execution faster.
1216
1217 %description opcache -l pl.UTF-8
1218 Zend OPcache zapewnia szybsze wykonywanie kodu PHP dzięki buforowaniu
1219 i optymalizacji na poziomie opcode'ów. Poprawia wydajność PHP
1220 przechowując prekompilowany bajtkod skryptu w pamięci współdzielonej.
1221 Eliminuje etapy odczytu kodu z dysku i kompilacji przy późniejszym
1222 dostępie. Ponadto wykonuje kilka wzorców optymalizacji bajtkodu,
1223 czyniąc wykonywanie kodu szybszym.
1224
1225 %package openssl
1226 Summary:        OpenSSL extension module for PHP
1227 Summary(pl.UTF-8):      Moduł OpenSSL dla PHP
1228 Group:          Libraries
1229 URL:            http://php.net/manual/en/book.openssl.php
1230 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1231 Provides:       php(openssl)
1232 Obsoletes:      php-openssl < 4:5.3.28-7
1233
1234 %description openssl
1235 This is a dynamic shared object (DSO) for PHP that will add OpenSSL
1236 support.
1237
1238 %description openssl -l pl.UTF-8
1239 Moduł PHP umożliwiający korzystanie z biblioteki OpenSSL.
1240
1241 %package pcntl
1242 Summary:        Process Control extension module for PHP
1243 Summary(pl.UTF-8):      Moduł Process Control dla PHP
1244 Group:          Libraries
1245 URL:            http://php.net/manual/en/book.pcntl.php
1246 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1247 Provides:       php(pcntl)
1248 Obsoletes:      php-pcntl < 4:5.3.28-7
1249
1250 %description pcntl
1251 This is a dynamic shared object (DSO) for PHP that will add process
1252 spawning and control support. It supports functions like fork(),
1253 waitpid(), signal() etc.
1254
1255 %description pcntl -l pl.UTF-8
1256 Moduł PHP umożliwiający tworzenie nowych procesów i kontrolę nad nimi.
1257 Obsługuje funkcje takie jak fork(), waitpid(), signal() i podobne.
1258
1259 %package pdo
1260 Summary:        PHP Data Objects (PDO)
1261 Summary(pl.UTF-8):      Obsługa PHP Data Objects (PDO)
1262 Group:          Libraries
1263 URL:            http://php.net/manual/en/book.pdo.php
1264 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1265 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1266 Provides:       %{name}(PDO_API) = %{php_pdo_api_version}
1267 Provides:       php(pdo)
1268 Obsoletes:      php-pdo < 4:5.3.28-7
1269 Obsoletes:      php-pecl-PDO < 1.1
1270
1271 %description pdo
1272 This is a dynamic shared object (DSO) for PHP that will add PDO
1273 support.
1274
1275 %description pdo -l pl.UTF-8
1276 Moduł PHP dodający obsługę PDO (PHP Data Objects).
1277
1278 %package pdo-dblib
1279 Summary:        PHP Data Objects (PDO) FreeTDS support
1280 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą FreeTDS
1281 Group:          Libraries
1282 URL:            http://php.net/manual/en/ref.pdo-dblib.php
1283 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1284 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1285 Provides:       php(pdo_dblib)
1286 Obsoletes:      php-pdo-dblib < 4:5.3.28-7
1287
1288 %description pdo-dblib
1289 This is a dynamic shared object (DSO) for PHP that will add PDO
1290 FreeTDS support.
1291
1292 %description pdo-dblib -l pl.UTF-8
1293 Moduł dla PHP dodający obsługę baz danych FreeTDS za pośrednictwem
1294 interfejsu PDO.
1295
1296 %package pdo-firebird
1297 Summary:        PHP Data Objects (PDO) Firebird support
1298 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą Firebirda
1299 Group:          Libraries
1300 URL:            http://php.net/manual/en/ref.pdo-firebird.php
1301 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1302 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1303 Provides:       php(pdo-firebird)
1304 Provides:       php(pdo_firebird)
1305 Obsoletes:      php-pdo-firebird < 4:5.3.28-7
1306 Obsoletes:      php-pecl-PDO_FIREBIRD < 0.3
1307
1308 %description pdo-firebird
1309 This is a dynamic shared object (DSO) for PHP that will add PDO
1310 Firebird support.
1311
1312 %description pdo-firebird -l pl.UTF-8
1313 Moduł dla PHP dodający obsługę baz danych Firebird za pośrednictwem
1314 interfejsu PDO.
1315
1316 %package pdo-mysql
1317 Summary:        PHP Data Objects (PDO) MySQL support
1318 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą MySQL-a
1319 Group:          Libraries
1320 URL:            http://php.net/manual/en/ref.pdo-mysql.php
1321 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1322 %{?with_mysqlnd:Requires:       %{name}-mysqlnd = %{epoch}:%{version}-%{release}}
1323 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1324 Provides:       php(pdo-mysql)
1325 Provides:       php(pdo_mysql)
1326 Obsoletes:      php-pdo-mysql < 4:5.3.28-7
1327 Obsoletes:      php-pecl-PDO_MYSQL < 1.1
1328
1329 %description pdo-mysql
1330 This is a dynamic shared object (DSO) for PHP that will add PDO MySQL
1331 support.
1332
1333 %description pdo-mysql -l pl.UTF-8
1334 Moduł dla PHP dodający obsługę baz danych MySQL za pośrednictwem
1335 interfejsu PDO.
1336
1337 %package pdo-oci
1338 Summary:        PHP Data Objects (PDO) Oracle support
1339 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą Oracle'a
1340 Group:          Libraries
1341 URL:            http://php.net/manual/en/ref.pdo-oci.php
1342 %{?requires_php_extension}
1343 %{?requires_php_pdo_module}
1344 Provides:       php(pdo-oci)
1345 Provides:       php(pdo_oci)
1346 Obsoletes:      php-pdo-oci < 4:5.3.28-7
1347 Obsoletes:      php-pecl-PDO_OCI < 1.1
1348
1349 %description pdo-oci
1350 This is a dynamic shared object (DSO) for PHP that will add PDO Oracle
1351 support.
1352
1353 %description pdo-oci -l pl.UTF-8
1354 Moduł dla PHP dodający obsługę baz danych Oracle za pośrednictwem
1355 interfejsu PDO.
1356
1357 %package pdo-odbc
1358 Summary:        PHP Data Objects (PDO) ODBC support
1359 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą ODBC
1360 Group:          Libraries
1361 URL:            http://php.net/manual/en/ref.pdo-odbc.php
1362 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1363 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1364 Provides:       php(pdo-odbc)
1365 Provides:       php(pdo_odbc)
1366 Obsoletes:      php-pdo-odbc < 4:5.3.28-7
1367 Obsoletes:      php-pecl-PDO_ODBC < 1.1
1368
1369 %description pdo-odbc
1370 This is a dynamic shared object (DSO) for PHP that will add PDO ODBC
1371 support.
1372
1373 %description pdo-odbc -l pl.UTF-8
1374 Moduł dla PHP dodający obsługę baz danych ODBC za pośrednictwem
1375 interfejsu PDO.
1376
1377 %package pdo-pgsql
1378 Summary:        PHP Data Objects (PDO) PostgreSQL support
1379 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą PostgreSQL-a
1380 Group:          Libraries
1381 URL:            http://php.net/manual/en/ref.pdo-pgsql.php
1382 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1383 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1384 Provides:       php(pdo-pgsql)
1385 Provides:       php(pdo_pgsql)
1386 Obsoletes:      php-pdo-pgsql < 4:5.3.28-7
1387 Obsoletes:      php-pecl-PDO_PGSQL < 4:5.2.1-2
1388
1389 %description pdo-pgsql
1390 This is a dynamic shared object (DSO) for PHP that will add PDO
1391 PostgreSQL support.
1392
1393 %description pdo-pgsql -l pl.UTF-8
1394 Moduł dla PHP dodający obsługę baz danych PostgreSQL za pośrednictwem
1395 interfejsu PDO.
1396
1397 %package pdo-sqlite
1398 Summary:        PHP Data Objects (PDO) SQLite support
1399 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą SQLite
1400 Group:          Libraries
1401 URL:            http://php.net/manual/en/ref.pdo-sqlite.php
1402 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1403 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1404 Provides:       php(pdo-sqlite)
1405 Provides:       php(pdo_sqlite)
1406 Obsoletes:      php-pdo-sqlite < 4:5.3.28-7
1407 Obsoletes:      php-pecl-PDO_SQLITE < 1.1
1408
1409 %description pdo-sqlite
1410 This is a dynamic shared object (DSO) for PHP that will add PDO SQLite
1411 support.
1412
1413 %description pdo-sqlite -l pl.UTF-8
1414 Moduł dla PHP dodający obsługę baz danych SQLite za pośrednictwem
1415 interfejsu PDO.
1416
1417 %package pgsql
1418 Summary:        PostgreSQL database module for PHP
1419 Summary(pl.UTF-8):      Moduł bazy danych PostgreSQL dla PHP
1420 Group:          Libraries
1421 URL:            http://php.net/manual/en/book.pgsql.php
1422 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1423 Provides:       php(pgsql)
1424 Obsoletes:      php-pgsql < 4:5.3.28-7
1425
1426 %description pgsql
1427 This is a dynamic shared object (DSO) for PHP that will add PostgreSQL
1428 database support.
1429
1430 %description pgsql -l pl.UTF-8
1431 Moduł PHP umożliwiający dostęp do bazy danych PostgreSQL.
1432
1433 %description pgsql -l pt_BR.UTF-8
1434 Um módulo para aplicações PHP que usam bancos de dados postgresql.
1435
1436 %package phar
1437 Summary:        Phar archive module for PHP
1438 Summary(pl.UTF-8):      Moduł phar dla PHP
1439 Group:          Libraries
1440 URL:            http://php.net/manual/en/book.phar.php
1441 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1442 Requires:       %{name}-hash = %{epoch}:%{version}-%{release}
1443 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1444 %{?with_alternatives:Requires:  alternatives}
1445 Suggests:       %{name}-cli
1446 # zlib is required by phar program, but as phar cli is optional should the dep be too
1447 Suggests:       %{name}-zlib
1448 Provides:       php(phar) = %{pharver}
1449 Obsoletes:      php-pecl-phar < %{pharver}
1450 Obsoletes:      php-phar < 4:5.3.28-7
1451 Conflicts:      php-ioncube < 4.0.9
1452
1453 %description phar
1454 This is a dynamic shared object (DSO) for PHP that will add phar
1455 archive a support.
1456
1457 %description phar -l pl.UTF-8
1458 Moduł PHP umożliwiający dostęp do achiwów .phar.
1459
1460 %package posix
1461 Summary:        POSIX extension module for PHP
1462 Summary(pl.UTF-8):      Moduł POSIX dla PHP
1463 Group:          Libraries
1464 URL:            http://php.net/manual/en/book.posix.php
1465 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1466 Provides:       php(posix)
1467 Obsoletes:      php-posix < 4:5.3.28-7
1468
1469 %description posix
1470 This is a dynamic shared object (DSO) for PHP that will add POSIX
1471 functions support to PHP.
1472
1473 %description posix -l pl.UTF-8
1474 Moduł PHP umożliwiający korzystanie z funkcji POSIX.
1475
1476 %package pspell
1477 Summary:        pspell extension module for PHP
1478 Summary(pl.UTF-8):      Moduł pspell dla PHP
1479 Group:          Libraries
1480 URL:            http://php.net/manual/en/book.pspell.php
1481 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1482 Provides:       php(pspell)
1483 Obsoletes:      php-pspell < 4:5.3.28-7
1484
1485 %description pspell
1486 This is a dynamic shared object (DSO) for PHP that will add pspell
1487 support to PHP. It allows to check the spelling of a word and offer
1488 suggestions.
1489
1490 %description pspell -l pl.UTF-8
1491 Moduł PHP umożliwiający korzystanie z pspella. Pozwala on na
1492 sprawdzanie pisowni słowa i sugerowanie poprawek.
1493
1494 %package readline
1495 Summary:        readline extension module for PHP
1496 Summary(pl.UTF-8):      Moduł readline dla PHP
1497 Group:          Libraries
1498 URL:            http://php.net/manual/en/book.readline.php
1499 Requires:       %{name}-cli = %{epoch}:%{version}-%{release}
1500 Provides:       php(readline)
1501 Obsoletes:      php-readline < 4:5.3.28-7
1502
1503 %description readline
1504 This PHP module adds support for readline functions (only for cli and
1505 cgi SAPIs).
1506
1507 %description readline -l pl.UTF-8
1508 Moduł PHP dodający obsługę funkcji readline (tylko do SAPI cli i cgi).
1509
1510 %package session
1511 Summary:        session extension module for PHP
1512 Summary(pl.UTF-8):      Moduł session dla PHP
1513 Group:          Libraries
1514 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1515 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1516 Suggests:       %{name}-hash = %{epoch}:%{version}-%{release}
1517 Suggests:       tmpwatch
1518 Provides:       php(session)
1519 Obsoletes:      php-session < 4:5.3.28-7
1520
1521 %description session
1522 This is a dynamic shared object (DSO) for PHP that will add session
1523 support.
1524
1525 %description session -l pl.UTF-8
1526 Moduł PHP dodający obsługę sesji.
1527
1528 %package shmop
1529 Summary:        Shared Memory Operations extension module for PHP
1530 Summary(pl.UTF-8):      Moduł shmop dla PHP
1531 Group:          Libraries
1532 URL:            http://php.net/manual/en/book.shmop.php
1533 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1534 Provides:       php(shmop)
1535 Obsoletes:      php-shmop < 4:5.3.28-7
1536
1537 %description shmop
1538 This is a dynamic shared object (DSO) for PHP that will add Shared
1539 Memory Operations support.
1540
1541 %description shmop -l pl.UTF-8
1542 Moduł PHP umożliwiający korzystanie z pamięci dzielonej.
1543
1544 %package simplexml
1545 Summary:        Simple XML extension module for PHP
1546 Summary(pl.UTF-8):      Moduł prostego rozszerzenia XML dla PHP
1547 Group:          Libraries
1548 URL:            http://php.net/manual/en/book.simplexml.php
1549 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1550 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1551 Provides:       php(simplexml)
1552 Obsoletes:      php-simplexml < 4:5.3.28-7
1553
1554 %description simplexml
1555 This is a dynamic shared object (DSO) for PHP that will add Simple XML
1556 support.
1557
1558 %description simplexml -l pl.UTF-8
1559 Moduł PHP dodający obsługę prostego XML-a.
1560
1561 %package snmp
1562 Summary:        SNMP extension module for PHP
1563 Summary(pl.UTF-8):      Moduł SNMP dla PHP
1564 Group:          Libraries
1565 URL:            http://php.net/manual/en/book.snmp.php
1566 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1567 Requires:       %{name}-sockets = %{epoch}:%{version}-%{release}
1568 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1569 Provides:       php(snmp)
1570 Obsoletes:      php-snmp < 4:5.3.28-7
1571
1572 %description snmp
1573 This is a dynamic shared object (DSO) for PHP that will add SNMP
1574 support.
1575
1576 %description snmp -l pl.UTF-8
1577 Moduł PHP dodający obsługę SNMP.
1578
1579 %package soap
1580 Summary:        soap extension module for PHP
1581 Summary(pl.UTF-8):      Moduł soap dla PHP
1582 Group:          Libraries
1583 URL:            http://php.net/manual/en/book.soap.php
1584 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1585 Provides:       php(soap)
1586 Obsoletes:      php-soap < 4:5.3.28-7
1587
1588 %description soap
1589 This is a dynamic shared object (DSO) for PHP that will add SOAP/WSDL
1590 support.
1591
1592 %description soap -l pl.UTF-8
1593 Moduł PHP dodający obsługę SOAP/WSDL.
1594
1595 %package sockets
1596 Summary:        sockets extension module for PHP
1597 Summary(pl.UTF-8):      Moduł socket dla PHP
1598 Group:          Libraries
1599 URL:            http://php.net/manual/en/book.sockets.php
1600 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1601 Provides:       php(sockets)
1602 Obsoletes:      php-sockets < 4:5.3.28-7
1603
1604 %description sockets
1605 This is a dynamic shared object (DSO) for PHP that will add sockets
1606 support.
1607
1608 %description sockets -l pl.UTF-8
1609 Moduł PHP dodający obsługę gniazdek.
1610
1611 %package sodium
1612 Summary:        Wrapper for the Sodium cryptographic library
1613 Summary(pl.UTF-8):      Interfejs do biblioteki kryptograficznej Sodium
1614 Group:          Libraries
1615 URL:            https://paragonie.com/book/pecl-libsodium
1616 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1617 Provides:       php(sodium) = %{sodiumver}
1618
1619 %description sodium
1620 A simple, low-level PHP extension for libsodium.
1621
1622 %description sodium -l pl.UTF-8
1623 Proste, niskopoziomowe rozszerzenie PHP wykorzystując libsodium.
1624
1625 %package sqlite3
1626 Summary:        SQLite3 extension module for PHP
1627 Summary(pl.UTF-8):      Moduł SQLite3 dla PHP
1628 Group:          Libraries
1629 URL:            http://php.net/manual/en/book.sqlite3.php
1630 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1631 Provides:       php(sqlite3) = %{sqlite3ver}
1632 Obsoletes:      php-sqlite3 < 4:5.3.28-7
1633
1634 %description sqlite3
1635 SQLite is a C library that implements an embeddable SQL database
1636 engine. Programs that link with the SQLite library can have SQL
1637 database access without running a separate RDBMS process.
1638
1639 SQLite is not a client library used to connect to a big database
1640 server. SQLite is the server. The SQLite library reads and writes
1641 directly to and from the database files on disk.
1642
1643 %description sqlite3 -l pl.UTF-8
1644 SQLite jest napisaną w C biblioteką implementującą osadzalny silnik
1645 bazodanowy SQL. Program linkujący się z biblioteką SQLite może mieć
1646 dostęp do bazy SQL bez potrzeby uruchamiania dodatkowego procesu
1647 RDBMS.
1648
1649 SQLite to nie klient baz danych - biblioteka nie łączy się z serwerami
1650 baz danych. SQLite sam jest serwerem. Biblioteka SQLite czyta i
1651 zapisuje dane bezpośrednio z/do plików baz danych znajdujących się na
1652 dysku.
1653
1654 %package sysvmsg
1655 Summary:        SysV msg extension module for PHP
1656 Summary(pl.UTF-8):      Moduł SysV msg dla PHP
1657 Group:          Libraries
1658 URL:            http://php.net/manual/en/book.sem.php
1659 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1660 Provides:       php(sysvmsg)
1661 Obsoletes:      php-sysvmsg < 4:5.3.28-7
1662
1663 %description sysvmsg
1664 This is a dynamic shared object (DSO) for PHP that will add SysV
1665 message queues support.
1666
1667 %description sysvmsg -l pl.UTF-8
1668 Moduł PHP umożliwiający korzystanie z kolejek komunikatów SysV.
1669
1670 %package sysvsem
1671 Summary:        SysV sem extension module for PHP
1672 Summary(pl.UTF-8):      Moduł SysV sem dla PHP
1673 Group:          Libraries
1674 URL:            http://php.net/manual/en/book.sem.php
1675 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1676 Provides:       php(sysvsem)
1677 Obsoletes:      php-sysvsem < 4:5.3.28-7
1678
1679 %description sysvsem
1680 This is a dynamic shared object (DSO) for PHP that will add SysV
1681 semaphores support.
1682
1683 %description sysvsem -l pl.UTF-8
1684 Moduł PHP umożliwiający korzystanie z semaforów SysV.
1685
1686 %package sysvshm
1687 Summary:        SysV shm extension module for PHP
1688 Summary(pl.UTF-8):      Moduł SysV shm dla PHP
1689 Group:          Libraries
1690 URL:            http://php.net/manual/en/book.sem.php
1691 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1692 Provides:       php(sysvshm)
1693 Obsoletes:      php-sysvshm < 4:5.3.28-7
1694
1695 %description sysvshm
1696 This is a dynamic shared object (DSO) for PHP that will add SysV
1697 Shared Memory support.
1698
1699 %description sysvshm -l pl.UTF-8
1700 Moduł PHP umożliwiający korzystanie z pamięci dzielonej SysV.
1701
1702 %package tests
1703 Summary:        Contains unit test files for PHP and extensions
1704 Summary(pl.UTF-8):      Zawiera pliki testów jednostkowych dla PHP i rozszerzeń
1705 Group:          Libraries
1706 URL:            http://qa.php.net/
1707 Requires:       %{name}-cli
1708 %if "%{_rpmversion}" >= "5"
1709 BuildArch:      noarch
1710 %endif
1711
1712 %description tests
1713 This package contains unit tests for PHP and its extensions.
1714
1715 %description tests -l pl.UTF-8
1716 Ten pakiet zawiera pliki testów jednostkowych dla PHP i rozszerzeń.
1717
1718 %package tidy
1719 Summary:        Tidy extension module for PHP
1720 Summary(pl.UTF-8):      Moduł Tidy dla PHP
1721 Group:          Libraries
1722 URL:            http://php.net/manual/en/book.tidy.php
1723 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1724 Requires:       tidy
1725 Provides:       php(tidy)
1726 Obsoletes:      php-tidy < 4:5.3.28-7
1727
1728 %description tidy
1729 This is a dynamic shared object (DSO) for PHP that will add Tidy
1730 support.
1731
1732 %description tidy -l pl.UTF-8
1733 Moduł PHP umożliwiający korzystanie z tidy.
1734
1735 %package tokenizer
1736 Summary:        tokenizer extension module for PHP
1737 Summary(pl.UTF-8):      Moduł rozszerzenia tokenizer dla PHP
1738 Group:          Libraries
1739 URL:            http://php.net/manual/en/book.tokenizer.php
1740 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1741 Provides:       php(tokenizer)
1742 Obsoletes:      php-tokenizer < 4:5.3.28-7
1743
1744 %description tokenizer
1745 This is a dynamic shared object (DSO) for PHP that will add tokenizer
1746 support.
1747
1748 %description tokenizer -l pl.UTF-8
1749 Moduł PHP dodający obsługę tokenizera do PHP.
1750
1751 %package xml
1752 Summary:        XML extension module for PHP
1753 Summary(pl.UTF-8):      Moduł XML dla PHP
1754 Group:          Libraries
1755 URL:            http://php.net/manual/en/book.xml.php
1756 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1757 Provides:       php(xml)
1758 Obsoletes:      php-xml < 4:5.3.28-7
1759
1760 %description xml
1761 This is a dynamic shared object (DSO) for PHP that will add XML
1762 support. This extension lets you create XML parsers and then define
1763 handlers for different XML events.
1764
1765 %description xml -l pl.UTF-8
1766 Moduł PHP umożliwiający parsowanie plików XML i obsługę zdarzeń
1767 związanych z tymi plikami. Pozwala on tworzyć analizatory XML-a i
1768 następnie definiować procedury obsługi dla różnych zdarzeń XML.
1769
1770 %package xmlreader
1771 Summary:        XML Reader extension module for PHP
1772 Summary(pl.UTF-8):      Moduł XML Reader dla PHP
1773 Group:          Libraries
1774 URL:            http://php.net/manual/en/book.xmlreader.php
1775 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1776 Requires:       %{name}-dom = %{epoch}:%{version}-%{release}
1777 Provides:       php(xmlreader)
1778 Obsoletes:      php-xmlreader < 4:5.3.28-7
1779
1780 %description xmlreader
1781 This is a dynamic shared object (DSO) for PHP that will add XML Reader
1782 support. The XMLReader extension is an XML Pull parser. The reader
1783 acts as a cursor going forward on the document stream and stopping at
1784 each node on the way.
1785
1786 %description xmlreader -l pl.UTF-8
1787 Moduł PHP umożliwiający analizę plików XML w trybie Pull. Czytnik
1788 działa jako kursor przechodzący przez strumień dokumentu i
1789 zatrzymujący się na każdym węźle po drodze.
1790
1791 %package xmlrpc
1792 Summary:        xmlrpc extension module for PHP
1793 Summary(pl.UTF-8):      Moduł xmlrpc dla PHP
1794 Group:          Libraries
1795 URL:            http://php.net/manual/en/book.xmlrpc.php
1796 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1797 Requires:       %{name}-xml = %{epoch}:%{version}-%{release}
1798 Provides:       php(xmlrpc)
1799 Obsoletes:      php-xmlrpc < 4:5.3.28-7
1800
1801 %description xmlrpc
1802 This is a dynamic shared object (DSO) for PHP that will add XMLRPC
1803 support.
1804
1805 %description xmlrpc -l pl.UTF-8
1806 Moduł PHP dodający obsługę XMLRPC.
1807
1808 %package xmlwriter
1809 Summary:        Fast, non-cached, forward-only means to write XML data
1810 Summary(pl.UTF-8):      Szybka, nie cachowana metoda zapisu danych w formacie XML
1811 Group:          Libraries
1812 URL:            http://php.net/manual/en/book.xmlwriter.php
1813 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1814 Provides:       php(xmlwriter)
1815 Obsoletes:      php-pecl-xmlwriter < 2.1
1816 Obsoletes:      php-xmlwriter < 4:5.3.28-7
1817
1818 %description xmlwriter
1819 This extension wraps the libxml xmlWriter API. Represents a writer
1820 that provides a non-cached, forward-only means of generating streams
1821 or files containing XML data.
1822
1823 %description xmlwriter -l pl.UTF-8
1824 To rozszerzenie obudowuje API xmlWriter z libxml. Reprezentuje obsługę
1825 zapisu dostarczającą nie cachowanych metod generowania strumieni lub
1826 plików zawierających dane XML.
1827
1828 %package xsl
1829 Summary:        xsl extension module for PHP
1830 Summary(pl.UTF-8):      Moduł xsl dla PHP
1831 Group:          Libraries
1832 URL:            http://php.net/manual/en/book.xsl.php
1833 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1834 Requires:       %{name}-dom = %{epoch}:%{version}-%{release}
1835 Requires:       libxslt >= 1.1.0
1836 Provides:       php(xsl)
1837 Obsoletes:      php-xsl < 4:5.3.28-7
1838 # actually not true, functionality is similar, but API differs
1839 Obsoletes:      php-xslt <= 3:4.3.8-1
1840
1841 %description xsl
1842 This is a dynamic shared object (DSO) for PHP that will add new XSL
1843 support (using libxslt).
1844
1845 %description xsl -l pl.UTF-8
1846 Moduł PHP dodający nową obsługę XSLT (przy użyciu libxslt).
1847
1848 %package zip
1849 Summary:        Zip management extension
1850 Summary(pl.UTF-8):      Zarządzanie archiwami zip
1851 Group:          Libraries
1852 URL:            http://php.net/manual/en/book.zip.php
1853 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1854 Requires:       libzip >= 1.3.1
1855 Provides:       php(zip) = %{zipver}
1856 Obsoletes:      php-pecl-zip < %{zipver}
1857 Obsoletes:      php-zip < 4:5.3.28-7
1858
1859 %description zip
1860 Zip is an extension to create, modify and read zip files.
1861
1862 %description zip -l pl.UTF-8
1863 Zip jest rozszerzeniem umożliwiającym tworzenie, modyfikację oraz
1864 odczyt archiwów zip.
1865
1866 %package zlib
1867 Summary:        Zlib extension module for PHP
1868 Summary(pl.UTF-8):      Moduł zlib dla PHP
1869 Group:          Libraries
1870 URL:            http://php.net/manual/en/book.zlib.php
1871 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1872 Provides:       php(zlib)
1873 Obsoletes:      php-zlib < 4:5.3.28-7
1874
1875 %description zlib
1876 This is a dynamic shared object (DSO) for PHP that will add zlib
1877 compression support to PHP.
1878
1879 %description zlib -l pl.UTF-8
1880 Moduł PHP umożliwiający używanie kompresji zlib.
1881
1882 %prep
1883 %setup -q -n %{orgname}-%{version}
1884 cp -p php.ini-production php.ini
1885 %patch0 -p1
1886 %patch1 -p1
1887 %patch2 -p1
1888 %patch3 -p1
1889 %patch4 -p1
1890
1891 %patch7 -p1
1892 %patch9 -p1
1893 %patch10 -p1
1894 %patch14 -p1
1895 %patch17 -p1
1896 %patch18 -p1
1897 %patch21 -p1
1898 %patch22 -p1
1899 %patch23 -p1
1900 %patch24 -p1
1901 %patch25 -p1
1902 %patch27 -p1
1903 %patch29 -p1
1904 %patch39 -p1
1905 %patch41 -p1
1906 %patch43 -p1
1907 %patch44 -p1
1908 %patch50 -p1
1909
1910 %patch53 -p1
1911 %patch59 -p1 -b .systzdata
1912 %if %{with instantclient}
1913 %patch60 -p1 -b .instantclient
1914 %endif
1915 %patch66 -p1
1916 %patch67 -p1
1917 #%patch68 -p1 DROP or update to 7.0 APIs
1918 %patch71 -p1
1919 %patch72 -p1
1920
1921 sed -E -i -e '1s,#!\s*/usr/bin/env\s+(.*),#!%{__bindir}\1,' \
1922       ext/ext_skel.php \
1923       run-tests.php
1924
1925 %{__sed} -i -e '/PHP_ADD_LIBRARY_WITH_PATH/s#xmlrpc,#xmlrpc-epi,#' ext/xmlrpc/config.m4
1926
1927 # cleanup backups after patching
1928 find '(' -name '*~' -o -name '*.orig' ')' -print0 | xargs -0 -r -l512 rm -f
1929
1930 # com_dotnet is Win32-only
1931 %{__rm} -r ext/com_dotnet
1932
1933 # remove all bundled libraries not to link with them accidentally
1934 #%{__rm} -r ext/bcmath/libbcmath
1935 #%{__rm} -r ext/date/lib
1936 #%{__rm} -r ext/fileinfo/libmagic
1937 #%{__rm} -r ext/dba/libcdb
1938 #%{__rm} -r ext/dba/libflatfile
1939 #%{__rm} -r ext/dba/libinifile
1940 #%{__rm} -r ext/gd/libgd
1941 #%{__rm} -r ext/mbstring/libmbfl
1942 #%{__rm} -r ext/pcre/pcre2lib
1943 #%{__rm} -r ext/soap/interop
1944 %{__rm} -r ext/xmlrpc/libxmlrpc
1945 #%{__rm} -r ext/zip/lib
1946 %{__rm} ext/date/lib/timezonedb.h
1947
1948 cp -pf Zend/LICENSE{,.Zend}
1949 install -p %{SOURCE13} dep-tests.sh
1950
1951 # breaks build
1952 sed -i -e 's#-fvisibility=hidden##g' configure*
1953
1954 # disable broken tests
1955 # says just "Terminated" twice and fails
1956 %{__mv} sapi/cli/tests/022.phpt{,.broken}
1957
1958 # really dumb test, executable binary name is .libs/ something when building
1959 # https://bugs.php.net/bug.php?id=54514
1960 %{__mv} tests/basic/bug54514.phpt{,.disable}
1961
1962 # breaks whole testsuite unexpectedly:
1963 # Fatal error: Call to undefined function gzencode() in run-tests.php on line 1714
1964 # probably broken as zlib is built as shared
1965 %{__mv} ext/soap/tests/server019.phpt{,disable}
1966 # Fatal error: Call to undefined function gzcompress() in run-tests.php on line 1728
1967 %{__mv} ext/soap/tests/server020.phpt{,disable}
1968
1969 # runs out of memory and kills carme vserver
1970 # PASS Bug #39438 (Fatal error: Out of memory) [Zend/tests/bug39438.phpt]
1971 %{__mv} Zend/tests/bug39438.phpt{,.disable}
1972
1973 # php-5.3.3/ext/standard/tests/file/statpage.phpt
1974 %{__rm} ext/standard/tests/file/statpage.phpt
1975
1976 # idiotic test, it will fail if somebody else makes space on disk or if disk
1977 # space is not yet allocated (xfs). report upstream to advice bogus test is
1978 # probably pointless.
1979 %{__rm} ext/standard/tests/file/disk_free_space_basic.phpt
1980
1981 %ifarch %{x8664}
1982 # all pdo_sqlite, sqlite3 tests die with Aborted on carme
1983 %{__rm} -r ext/pdo_sqlite/tests
1984 %{__rm} -r ext/sqlite3/tests
1985 %endif
1986
1987 # ----- Manage known as failed test -------
1988 # affected by systzdata patch
1989 %{__rm} ext/date/tests/timezone_location_get.phpt
1990 %{__rm} ext/date/tests/timezone_version_get.phpt
1991 %{__rm} ext/date/tests/timezone_version_get_basic1.phpt
1992 # Should be skipped but fails sometime
1993 %{__rm} ext/standard/tests/file/file_get_contents_error001.phpt
1994 # fails sometimes
1995 %{__rm} ext/sockets/tests/mcast_ipv?_recv.phpt
1996 # causes stack exhausion
1997 %{__rm} Zend/tests/bug54268.phpt
1998 %{__rm} Zend/tests/bug68412.phpt
1999
2000 # avoid issues when two builds run simultaneously
2001 %ifarch %{x8664}
2002 sed -e 's/64321/64322/' -i ext/openssl/tests/*.phpt
2003 %endif
2004
2005 # skip XFAILs
2006 # no point testing stuff that is knowingly broken
2007 find -name '*.phpt' | xargs grep '^--XFAIL--' -l | xargs rm -v
2008
2009 env \
2010 %ifarch %{ix86}
2011 ix86= x8664=: \
2012 %endif
2013 %ifarch %{x8664}
2014 ix86=: x8664= \
2015 %endif
2016 %ifarch x32
2017 ix86=: x8664=: \
2018 %endif
2019         sh -xe %{_sourcedir}/skip-tests.sh
2020
2021 %build
2022 get_version() {
2023         local define="$1" filename="$2"
2024         awk -vdefine="$define" '/#define/ && $2 == define {print $3}' "$filename" | xargs
2025 }
2026
2027 API=$(awk '/#define PHP_API_VERSION/{print $3}' main/php.h)
2028 if [ $API != %{php_api_version} ]; then
2029         echo "Set %%define php_api_version to $API and re-run."
2030         exit 1
2031 fi
2032
2033 API=$(awk '/#define ZEND_MODULE_API_NO/{print $3}' Zend/zend_modules.h)
2034 if [ $API != %{zend_module_api} ]; then
2035         echo "Set %%define zend_module_api to $API and re-run."
2036         exit 1
2037 fi
2038
2039 API=$(awk '/#define ZEND_EXTENSION_API_NO/{print $3}' Zend/zend_extensions.h)
2040 if [ $API != %{zend_extension_api} ]; then
2041         echo "Set %%define zend_extension_api to $API and re-run."
2042         exit 1
2043 fi
2044
2045 API=$(awk '/#define PDO_DRIVER_API/{print $3}' ext/pdo/php_pdo_driver.h)
2046 if [ $API != %{php_pdo_api_version} ]; then
2047         echo "Set %%define php_pdo_api_version to $API and re-run."
2048         exit 1
2049 fi
2050
2051 # Check for some extension version
2052 ver=$(awk '/#define PHP_FILEINFO_VERSION/ {print $3}' ext/fileinfo/php_fileinfo.h | xargs)
2053 if test "$ver" != "PHP_VERSION"; then
2054         : Error: Upstream FILEINFO version is now ${ver}, expecting %{fileinfover}.
2055         : Update the fileinfover macro and rebuild.
2056         exit 1
2057 fi
2058 ver=$(get_version PHP_PHAR_VERSION ext/phar/php_phar.h)
2059 if test "$ver" != "PHP_VERSION"; then
2060         : Error: Upstream PHAR version is now ${ver}, expecting %{pharver}.
2061         : Update the pharver macro and rebuild.
2062         exit 1
2063 fi
2064 ver=$(awk '/#define PHP_SQLITE3_VERSION/ {print $3}' ext/sqlite3/php_sqlite3.h | xargs)
2065 if test "$ver" != "PHP_VERSION"; then
2066         : Error: Upstream Sqlite3 version is now ${ver}, expecting %{sqlite3ver}.
2067         : Update the sqlite3ver macro and rebuild.
2068         exit 1
2069 fi
2070 ver=$(awk '/#define PHP_SODIUM_VERSION/ {print $3}' ext/sodium/php_libsodium.h | xargs)
2071 if test "$ver" != "PHP_VERSION"; then
2072         exit 1
2073 fi
2074 ver=$(sed -n '/#define PHP_ZIP_VERSION /{s/.* "//;s/".*$//;p}' ext/zip/php_zip.h)
2075 if test "$ver" != "%{zipver}"; then
2076         : Error: Upstream ZIP version is now ${ver}, expecting %{zipver}.
2077         : Update the zipver macro and rebuild.
2078         exit 1
2079 fi
2080 ver=$(get_version PHP_JSON_VERSION ext/json/php_json.h)
2081 if test "$ver" != "PHP_VERSION"; then
2082         : Error: Upstream JSON version is now ${ver}, expecting %{jsonver}.
2083         : Update the jsonver macro and rebuild.
2084         exit 1
2085 fi
2086 ver=$(get_version PHPDBG_VERSION sapi/phpdbg/phpdbg.h)
2087 if test "$ver" != "PHP_VERSION"; then
2088         : Error: Upstream phpdbg version is now ${ver}, expecting %{phpdbgver}.
2089         : Update the phpdbgver macro and rebuild.
2090         exit 1
2091 fi
2092 ver=$(get_version PHP_BZ2_VERSION ext/bz2/php_bz2.h)
2093 if test "$ver" != "PHP_VERSION"; then
2094         : Error: Upstream BZIP2 version is now ${ver}, expecting %{bz2ver}.
2095         : Update the bz2ver macro and rebuild.
2096         exit 1
2097 fi
2098 ver=$(awk '/#define PHP_ENCHANT_VERSION/ {print $3}' ext/enchant/php_enchant.h | xargs)
2099 if test "$ver" != "PHP_VERSION"; then
2100         exit 1
2101 fi
2102 ver=$(get_version PHP_HASH_VERSION ext/hash/php_hash.h)
2103 if test "$ver" != "PHP_VERSION"; then
2104         : Error: Upstream HASH version is now ${ver}, expecting %{hashver}.
2105         : Update the hashver macro and rebuild.
2106         exit 1
2107 fi
2108 ver=$(get_version PHP_INTL_VERSION ext/intl/php_intl.h)
2109 if test "$ver" != "PHP_VERSION"; then
2110         : Error: Upstream Intl version is now ${ver}, expecting %{intlver}.
2111         : Update the intlver macro and rebuild.
2112         exit 1
2113 fi
2114
2115 export EXTENSION_DIR="%{php_extensiondir}"
2116
2117 # Set PEAR_INSTALLDIR to ensure that the hard-coded include_path
2118 # includes the PEAR directory even though pear is packaged separately.
2119 export PEAR_INSTALLDIR=%{php_pear_dir}
2120
2121 # configure once (for faster debugging purposes)
2122 if [ ! -f _built-conf ]; then
2123         # now remove Makefile copies
2124         rm -f Makefile.{cgi-fcgi,fpm,cli,apxs2,litespeed,phpdbg}
2125
2126         # Force use of system libtool:
2127         mv build/libtool.m4 build/libtool.m4.saved
2128         cat %{_aclocaldir}/{libtool,ltoptions,ltsugar,ltversion,lt~obsolete}.m4 > build/libtool.m4
2129         %{__libtoolize}
2130         %{__aclocal}
2131
2132         cp -f /usr/share/automake/config.* .
2133         ./buildconf --force
2134         touch _built-conf
2135 fi
2136 export PROG_SENDMAIL="/usr/lib/sendmail"
2137 export CPPFLAGS="-DDEBUG_FASTCGI -DHAVE_STRNDUP %{rpmcppflags} \
2138         -I%{_includedir}/xmlrpc-epi"
2139
2140 # This should be detected by configure and set there,
2141 # but looks like the build system is hosed on 7.3
2142 export CXXFLAGS="%{rpmcxxflags} -fPIC -DPIC"
2143 export CFLAGS="%{rpmcflags} -fPIC -DPIC"
2144
2145 %if %{with intl}
2146 # icu 59+ C++ API requires C++ >= 11
2147 CXXFLAGS="$CXXFLAGS -std=c++11"
2148 %endif
2149
2150 sapis="
2151 cli
2152 %if %{with cgi}
2153 cgi-fcgi
2154 %endif
2155 %if %{with litespeed}
2156 litespeed
2157 %endif
2158 %if %{with fpm}
2159 fpm
2160 %endif
2161 %if %{with embed}
2162 embed
2163 %endif
2164 %if %{with apache2}
2165 apxs2
2166 %endif
2167 %if %{with phpdbg}
2168 phpdbg
2169 %endif
2170 "
2171 for sapi in $sapis; do
2172         : SAPI $sapi
2173         # skip if already configured (for faster debugging purposes)
2174         [ -f Makefile.$sapi ] && continue
2175
2176         sapi_args=''
2177         case $sapi in
2178         cgi-fcgi)
2179                 sapi_args='--enable-cgi'
2180         ;;
2181         cli)
2182                 sapi_args='--enable-cli %{?with_gcov:--enable-gcov}'
2183         ;;
2184         fpm)
2185                 sapi_args='--enable-fpm'
2186                 ;;
2187         embed)
2188                 sapi_args='--enable-embed'
2189                 ;;
2190         apxs2)
2191                 ver=$(rpm -q --qf '%{V}' apache-devel)
2192                 sapi_args="--with-apxs2=%{apxs2} --with-apache-version=$ver"
2193         ;;
2194         litespeed)
2195                 sapi_args='--enable-litespeed'
2196         ;;
2197         phpdbg)
2198                 sapi_args='--enable-phpdbg %{?debug:--enable-phpdbg-debug}'
2199         ;;
2200         esac
2201
2202         %configure \
2203         EXTRA_LDFLAGS="%{rpmldflags}" \
2204         --disable-cgi \
2205         --disable-cli \
2206         --disable-phpdbg \
2207         $sapi_args \
2208 %if "%{!?configure_cache:0}%{?configure_cache}" == "0"
2209         --cache-file=config.cache \
2210 %endif
2211         --with-libdir=%{_lib} \
2212         --with-config-file-path=%{_sysconfdir} \
2213         --with-config-file-scan-dir=%{_sysconfdir}/conf.d \
2214         --with-system-tzdata \
2215         %{?with_argon2:--with-password-argon2} \
2216         --%{!?with_debug:dis}%{?with_debug:en}able-debug \
2217         %{?with_zts:--enable-maintainer-zts} \
2218         --enable-inline-optimization \
2219         --enable-option-checking=fatal \
2220         %{__enable_disable bcmath bcmath shared} \
2221         %{__enable_disable calendar calendar shared} \
2222         %{__enable_disable ctype ctype shared} \
2223         %{__enable_disable dba dba shared} \
2224         %{__enable_disable dom dom shared} \
2225         %{?with_systemtap:--enable-dtrace} \
2226         %{__enable_disable exif exif shared} \
2227         %{__enable_disable fileinfo fileinfo shared} \
2228         %{__enable_disable ftp ftp shared} \
2229         %{?with_intl:--enable-intl=shared} \
2230         --with-libxml \
2231         %{__enable_disable mbstring mbstring shared,all} \
2232         --enable-mbregex \
2233         %{__enable_disable pcntl pcntl shared} \
2234         %{__enable_disable pdo pdo shared} \
2235         %{__enable_disable json json shared} \
2236         --enable-xmlwriter=shared \
2237 %if %{with fpm}
2238         --with-fpm-user=http \
2239         --with-fpm-group=http \
2240 %endif
2241 %if %{with pdo_dblib}
2242         --with-pdo-dblib=shared \
2243 %endif
2244 %if %{with pdo_firebird}
2245         --with-pdo-firebird=shared \
2246 %endif
2247         %{?with_mhash:--with-mhash=yes} \
2248         --with-mysql-sock=/var/lib/mysql/mysql.sock \
2249         %{__with_without pdo_mysql pdo-mysql shared,%{!?with_mysqlnd:/usr}%{?with_mysqlnd:mysqlnd}} \
2250         %{?with_pdo_oci:--with-pdo-oci=shared%{?with_instantclient:,instantclient,%{_libdir}}} \
2251         %{?with_pdo_odbc:--with-pdo-odbc=shared,unixODBC,/usr} \
2252         %{?with_pdo_pgsql:--with-pdo-pgsql=shared} \
2253         %{?with_pdo_sqlite:--with-pdo-sqlite=shared} \
2254         %{?with_webp:--with-webp} \
2255         %{__enable_disable posix posix shared} \
2256         --enable-shared \
2257         %{__enable_disable session session shared} \
2258         --enable-shmop=shared \
2259         --enable-simplexml=shared \
2260         --enable-sysvmsg=shared \
2261         --enable-sysvsem=shared \
2262         --enable-sysvshm=shared \
2263         --enable-soap=shared \
2264         --enable-sockets=shared \
2265         %{__with_without sodium sodium shared} \
2266         --enable-tokenizer=shared \
2267         --enable-xml=shared \
2268         --enable-xmlreader=shared \
2269         %{__with_without bzip2 bz2 shared} \
2270         %{__with_without curl curl shared} \
2271         --with-db4 \
2272         %{__with_without iconv iconv shared} \
2273         %{?with_enchant:--with-enchant=shared} \
2274         --with-freetype \
2275         %{__with_without gettext gettext shared} \
2276         %{__enable_disable gd gd shared} \
2277         %{?with_system_gd:--with-external-gd} \
2278         --with-gdbm \
2279         %{__with_without gmp gmp shared} \
2280         %{__with_without ffi ffi shared} \
2281         %{?with_imap:--with-imap=shared --with-imap-ssl} \
2282         --with-jpeg \
2283         %{?with_ldap:--with-ldap=shared --with-ldap-sasl} \
2284         %{?with_mm:--with-mm} \
2285         %{?with_mysqlnd:--enable-mysqlnd=shared} \
2286         %{?with_mysqli:--with-mysqli=shared,%{!?with_mysqlnd:/usr/bin/mysql_config}%{?with_mysqlnd:mysqlnd}} \
2287         %{?with_oci:--with-oci8=shared%{?with_instantclient:,instantclient,%{_libdir}}} \
2288         %{__enable_disable opcache opcache shared} \
2289         %{?with_openssl:--with-openssl=shared} \
2290         %{?with_kerberos5:--with-kerberos} \
2291         --with-tcadb=/usr \
2292         --with-external-pcre \
2293         %{__with_without pcre_jit pcre-jit} \
2294         %{__enable_disable filter filter shared} \
2295         %{__with_without pgsql pgsql shared} \
2296         %{__enable_disable phar phar shared} \
2297         %{?with_pspell:--with-pspell=shared} \
2298         %{__with_without readline readline shared} \
2299         %{?with_snmp:--with-snmp=shared} \
2300         %{!?with_pdo_sqlite:--without-pdo-sqlite} \
2301         %{__with_without sqlite3 sqlite3 shared} \
2302         %{?with_tidy:--with-tidy=shared} \
2303         %{?with_odbc:--with-unixODBC=shared} \
2304         %{__with_without xmlrpc xmlrpc shared,/usr} \
2305         %{?with_xsl:--with-xsl=shared} \
2306         --with-zlib=shared \
2307         %{?with_zip:--with-zip=shared} \
2308
2309         # save for debug
2310         cp -f Makefile Makefile.$sapi
2311         cp -f main/php_config.h php_config.h.$sapi
2312         cp -f config.log config.log.$sapi
2313 done
2314
2315 # as we build each SAPI in own make, adjust php-config.in forehead
2316 sapis=$(%{__sed} -rne 's/^PHP_INSTALLED_SAPIS = (.+)/\1/p' Makefile.* | tr ' ' '\n' | sort -u | xargs)
2317 %{__sed} -i -e "s,@PHP_INSTALLED_SAPIS@,$sapis," scripts/php-config.in
2318
2319 # must make libphp_common first, so modules can link against it.
2320 cp -af php_config.h.cli main/php_config.h
2321 cp -af Makefile.cli Makefile
2322 %{__make} libphp_common.la
2323 # hack: MYSQLND_SHARED_LIBADD not initialized
2324 %{__make} build-modules \
2325         MYSQLND_SHARED_LIBADD="-lssl -lcrypto"
2326
2327 %if %{with apache2}
2328 %{__make} libtool-sapi LIBTOOL_SAPI=sapi/apache2handler/libphp7.la -f Makefile.apxs2
2329 %endif
2330
2331 %if %{with litespeed}
2332 %{__make} -f Makefile.litespeed litespeed
2333 %endif
2334
2335 %if %{with embed}
2336 %{__make} -f Makefile.embed libphp7.la
2337 %endif
2338
2339 %if %{with phpdbg}
2340 # PHP_READLINE_LIBS is empty, so force readline here
2341 %{__make} -f Makefile.phpdbg phpdbg \
2342         PHPDBG_EXTRA_LIBS=-lreadline
2343 %endif
2344
2345 # CGI/FCGI
2346 %if %{with cgi}
2347 cp -pf php_config.h.cgi-fcgi main/php_config.h
2348 %{__make} -f Makefile.cgi-fcgi
2349 [ "$(echo '<?=php_sapi_name();' | ./sapi/cgi/php-cgi -qn)" = "cgi-fcgi" ]
2350 %endif
2351
2352 # PHP FPM
2353 %if %{with fpm}
2354 cp -pf php_config.h.fpm main/php_config.h
2355 %{__make} -f Makefile.fpm
2356 [ $(./sapi/fpm/php-fpm -n -m | grep cgi-fcgi) = "cgi-fcgi" ]
2357 %endif
2358
2359 # CLI
2360 cp -pf php_config.h.cli main/php_config.h
2361 %{__make} -f Makefile.cli
2362 [ "$(echo '<?=php_sapi_name();' | ./sapi/cli/php -qn)" = "cli" ]
2363
2364 # check for stupid xml parse breakage where &lt; and &gt; just get lost in parse result
2365 ./sapi/cli/php -n -dextension_dir=modules -dextension=xml.so -r '$p = xml_parser_create(); xml_parse_into_struct($p, "<x>&lt;</x>", $vals, $index); exit((int )empty($vals[0]["value"]));'
2366
2367 # Generate stub .ini files for each extension
2368 GENERATE_INI=1 PHP=./sapi/cli/php EXTENSION_DIR=modules CONFIG_DIR=conf.d ./dep-tests.sh
2369
2370 # Check that the module inner-dependencies are intact
2371 PHP=./sapi/cli/php EXTENSION_DIR=modules CONFIG_DIR=conf.d ./dep-tests.sh > dep-tests.log
2372 if grep -v OK dep-tests.log; then
2373         echo >&2 "The results above were not expected"
2374         exit 1
2375 fi
2376
2377 %if %{with gcov}
2378 # Use CLI SAPI
2379 cp -pf php_config.h.cli main/php_config.h
2380 cp -pf Makefile.cli Makefile
2381 %{__make} lcov
2382 # you really don't want to package result of gcov build
2383 exit 1
2384 %endif
2385
2386 cat <<'EOF' > run-tests.sh
2387 #!/bin/sh
2388 export NO_INTERACTION=1 REPORT_EXIT_STATUS=1 MALLOC_CHECK_=2
2389 export SKIP_ONLINE_TESTS=1
2390 unset TZ LANG LC_ALL || :
2391 %{__make} test \
2392         EXTENSION_DIR=modules \
2393         PHP_TEST_SHARED_SYSTEM_EXTENSIONS= \
2394         RUN_TESTS_SETTINGS="-q $*"
2395 EOF
2396 chmod +x run-tests.sh
2397
2398 %if %{with tests}
2399 # Run tests, using the CLI SAPI
2400 cp -pf php_config.h.cli main/php_config.h
2401 cp -pf Makefile.cli Makefile
2402
2403 ./run-tests.sh -w failed.log -s tests.log || {
2404 rc=$?
2405
2406 # collect failed tests into cleanup script used in prep.
2407 sed -ne '/^FAILED TEST SUMMARY/,/^===/p' tests.log | sed -e '1,/^---/d;/^===/,$d' > tests-failed.log
2408 sed -ne '/^via/d;/\[.*\]/{s/\t*\(.*\) \[\(.*\)\]\(.*\)/# \1\3\nmv \2{,.skip}/p}' tests-failed.log \
2409         >> %{_sourcedir}/skip-tests.sh
2410
2411 # if on builders, dump test log
2412 tty -q || cat tests.log
2413
2414 test ! -s failed.log
2415 exit $rc
2416 }
2417 %endif
2418
2419 %install
2420 rm -rf $RPM_BUILD_ROOT
2421 install -d \
2422         $RPM_BUILD_ROOT%{_libdir}/{php,apache} \
2423         $RPM_BUILD_ROOT%{_sysconfdir}/{conf,cgi-fcgi,cli,apache2handler}.d \
2424         $RPM_BUILD_ROOT{%{_sbindir},%{_bindir}} \
2425         $RPM_BUILD_ROOT/etc/httpd/conf.d \
2426         $RPM_BUILD_ROOT%{_mandir}/man{1,8} \
2427
2428 cp -pf php_config.h.cli main/php_config.h
2429 cp -pf Makefile.cli Makefile
2430 %{__make} install \
2431         phpbuilddir=%{_libdir}/%{name}/build \
2432         INSTALL_ROOT=$RPM_BUILD_ROOT
2433
2434 %if %{without default_php}
2435 # version the .phar files
2436 %{__mv} $RPM_BUILD_ROOT%{_bindir}/phar{,%{php_suffix}}.phar
2437 %{__mv} $RPM_BUILD_ROOT%{_mandir}/man1/phar{,%{php_suffix}}.1
2438 %endif
2439 %if %{with alternatives}
2440 # touch for ghost
2441 %{__rm} $RPM_BUILD_ROOT%{_bindir}/phar
2442 touch $RPM_BUILD_ROOT%{_bindir}/phar
2443 touch $RPM_BUILD_ROOT%{_mandir}/man1/phar.1
2444 %endif
2445
2446 # version suffix
2447 v=$(echo %{version} | cut -d. -f1-2)
2448
2449 # install Apache2 DSO module
2450 %if %{with apache2}
2451 libtool --mode=install install -p sapi/apache2handler/libphp7.la $RPM_BUILD_ROOT%{_libdir}/apache
2452 %{__mv} $RPM_BUILD_ROOT%{_libdir}/apache/libphp7{,-$v}.so
2453 ln -s libphp7-$v.so $RPM_BUILD_ROOT%{_libdir}/apache/mod_php.so
2454 %endif
2455
2456 # install litespeed sapi
2457 %if %{with litespeed}
2458 libtool --mode=install install -p sapi/litespeed/php $RPM_BUILD_ROOT%{_sbindir}/%{name}.litespeed
2459 %endif
2460
2461 %if %{with phpdbg}
2462 %{__make} -f Makefile.phpdbg install-phpdbg \
2463         INSTALL="libtool --mode=install install -p" \
2464         INSTALL_ROOT=$RPM_BUILD_ROOT
2465
2466 %if %{without default_php}
2467 # version the phpdbg files
2468 %{__mv} $RPM_BUILD_ROOT%{_bindir}/phpdbg{,%{ver_suffix}}
2469 %{__mv} $RPM_BUILD_ROOT%{_mandir}/man1/phpdbg{,%{ver_suffix}}.1
2470 %endif
2471 %endif
2472
2473 libtool --mode=install install -p libphp_common.la $RPM_BUILD_ROOT%{_libdir}
2474
2475 # install CGI/FCGI
2476 %if %{with cgi}
2477 # install-cgi
2478 libtool --mode=install install -p sapi/cgi/php-cgi $RPM_BUILD_ROOT%{_bindir}/%{name}.cgi
2479 ln -sf %{name}.cgi $RPM_BUILD_ROOT%{_bindir}/%{name}.fcgi
2480 cp -p %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/cgi-fcgi.d/php.ini
2481 %endif
2482
2483 # install FCGI PM
2484 %if %{with fpm}
2485 install -d $RPM_BUILD_ROOT{%{_sysconfdir}/php-fpm.d,%{_sbindir}}
2486 libtool --mode=install install -p sapi/fpm/php-fpm $RPM_BUILD_ROOT%{_sbindir}/%{name}-fpm
2487 cp -p sapi/fpm/php-fpm.8 $RPM_BUILD_ROOT%{_mandir}/man8/%{name}-fpm.8
2488 cp -p sapi/fpm/php-fpm.conf $RPM_BUILD_ROOT%{_sysconfdir}
2489 cp -p sapi/fpm/www.conf $RPM_BUILD_ROOT%{_sysconfdir}/php-fpm.d
2490 install -d $RPM_BUILD_ROOT/etc/rc.d/init.d
2491 install -p %{SOURCE10} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}-fpm
2492 install -d $RPM_BUILD_ROOT/etc/logrotate.d
2493 cp -p %{SOURCE11} $RPM_BUILD_ROOT/etc/logrotate.d/%{name}-fpm
2494 %if "%{pld_release}" == "ac"
2495 %{__sed} -i -e '/su/d' $RPM_BUILD_ROOT/etc/logrotate.d/%{name}-fpm
2496 %endif
2497
2498 %if %{with alternatives}
2499 # touch for ghost for alternatives
2500 touch $RPM_BUILD_ROOT%{_sbindir}/php-fpm
2501 %endif
2502
2503 %{__sed} -i -e '
2504         s#/usr/lib/php#%{php_extensiondir}#
2505         s#/etc/php/#%{_sysconfdir}/#
2506         s#@processname@#%{name}-fpm#g
2507 ' $RPM_BUILD_ROOT{/etc/{rc.d/init.d/%{name}-fpm,logrotate.d/%{name}-fpm},%{_sysconfdir}/php-fpm.conf,%{_sysconfdir}/php-fpm.d/www.conf}
2508 %endif
2509
2510 # install Embedded API
2511 %if %{with embed}
2512 # we could use install-headers from Makefile.embed, but that would reinstall all headers
2513 # install-sapi installs to wrong dir, so just do it all manually
2514 install -d $RPM_BUILD_ROOT%{_includedir}/php/sapi/embed
2515 install -p libs/libphp7.so $RPM_BUILD_ROOT%{_libdir}
2516 cp -p sapi/embed/php_embed.h $RPM_BUILD_ROOT%{_includedir}/php/sapi/embed
2517 %endif
2518
2519 # install CLI
2520 # versioned suffix is always installed
2521 libtool --mode=install install -p sapi/cli/php $RPM_BUILD_ROOT%{_bindir}/php%{ver_suffix}
2522 cp -p sapi/cli/php.1 $RPM_BUILD_ROOT%{_mandir}/man1/php%{ver_suffix}.1
2523 echo ".so php%{ver_suffix}.1" >$RPM_BUILD_ROOT%{_mandir}/man1/php.1
2524 ln -sf php%{ver_suffix} $RPM_BUILD_ROOT%{_bindir}/php
2525
2526 cp -p php.ini $RPM_BUILD_ROOT%{_sysconfdir}/php.ini
2527 cp -p %{SOURCE6} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/timezone.ini
2528 cp -p %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/cli.d/php.ini
2529
2530 %if %{with apache2}
2531 cp -p %{SOURCE2} $RPM_BUILD_ROOT/etc/httpd/conf.d/70_mod_php.conf
2532 cp -p %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/apache2handler.d/php.ini
2533 %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/apache/libphp7.la
2534 %endif
2535
2536 # ensure that paths are correct for current php version and arch
2537 grep -El '/etc/php/|/usr/lib/php/' $RPM_BUILD_ROOT%{_sysconfdir}/*.ini | xargs -r \
2538 %{__sed} -i -e '
2539         s#/usr/lib/php#%{php_extensiondir}#
2540         s#/etc/php#%{_sysconfdir}#
2541 '
2542
2543 install -d $RPM_BUILD_ROOT%{_sysconfdir}/conf.d
2544 cp -p conf.d/*.ini $RPM_BUILD_ROOT%{_sysconfdir}/conf.d
2545 cp -p %{_sourcedir}/opcache.ini $RPM_BUILD_ROOT%{_sysconfdir}/conf.d
2546
2547 # for CLI SAPI only
2548 %{__mv} $RPM_BUILD_ROOT%{_sysconfdir}/{conf.d/??_readline.ini,cli.d}
2549
2550 sed -i -e '/^phpdir/ s,/php/build,/%{name}/build,' $RPM_BUILD_ROOT%{_bindir}/phpize
2551
2552 # for php-pecl-mailparse
2553 install -d $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring
2554 cp -p ext/mbstring/libmbfl/mbfl/*.h $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring
2555
2556 # tests
2557 install -d $RPM_BUILD_ROOT%{php_data_dir}/tests/php
2558 install -p run-tests.php $RPM_BUILD_ROOT%{php_data_dir}/tests/php/run-tests.php
2559 cp -a tests/* $RPM_BUILD_ROOT%{php_data_dir}/tests/php
2560
2561 # fix install paths, avoid evil rpaths
2562 sed -i -e "s|^libdir=.*|libdir='%{_libdir}'|" $RPM_BUILD_ROOT%{_libdir}/libphp_common.la
2563
2564 install -p ext/ext_skel.php $RPM_BUILD_ROOT%{_bindir}
2565
2566 %clean
2567 rm -rf $RPM_BUILD_ROOT
2568
2569 %post -n apache-mod_%{name}
2570 if [ "$1" = "1" ]; then
2571         %service -q httpd restart
2572 fi
2573
2574 %postun -n apache-mod_%{name}
2575 if [ "$1" = "0" ]; then
2576         %service -q httpd restart
2577 fi
2578
2579 %pre fpm
2580 %useradd -u 51 -r -s /bin/false -c "HTTP User" -g http http
2581
2582 %post fpm
2583 /sbin/chkconfig --add %{name}-fpm
2584 %service %{name}-fpm restart
2585 %if %{with alternatives}
2586 update-alternatives --install %{_sbindir}/php-fpm php-fpm %{_sbindir}/php%{ver_suffix}-fpm %{ver_suffix} || :
2587 %endif
2588
2589 %preun fpm
2590 if [ "$1" = "0" ]; then
2591         %service %{name}-fpm stop
2592         /sbin/chkconfig --del %{name}-fpm
2593 %if %{with alternatives}
2594         update-alternatives --remove php-fpm %{_sbindir}/php-fpm || :
2595 %endif
2596 fi
2597
2598 %postun fpm
2599 if [ "$1" = "0" ]; then
2600         %userremove http
2601 fi
2602
2603 %post   embedded -p /sbin/ldconfig
2604 %postun embedded -p /sbin/ldconfig
2605
2606 %posttrans common
2607 # PHP 5.3 requires timezone being setup, try setup it from tzdata
2608 if ! grep -q '^date.timezone[[:space:]]*=' %{_sysconfdir}/php.ini && [ -f /etc/sysconfig/timezone ]; then
2609         TIMEZONE=
2610         . /etc/sysconfig/timezone
2611         if [ "$TIMEZONE" ]; then
2612                 %{__sed} -i -e "s,^;date.timezone[[:space:]]*=.*,date.timezone = $TIMEZONE," %{_sysconfdir}/conf.d/timezone.ini
2613         fi
2614 fi
2615
2616 # minimizing apache restarts logics. we restart webserver:
2617 #
2618 # 1. at the end of transaction. (posttrans, feature from rpm 4.4.2)
2619 # 2. first install of extension (post: $1 = 1)
2620 # 2. uninstall of extension (postun: $1 == 0)
2621 #
2622 # the strict internal deps between extensions (and apache modules) and
2623 # common package are very important for all this to work.
2624
2625 # restart webserver at the end of transaction
2626 [ ! -f /etc/httpd/conf.d/??_mod_php.conf ] || %service -q httpd restart
2627
2628 %triggerpostun common -- %{name}-common < 4:5.6.4-2, php-common < 4:5.6.4-2
2629 # switch to browscap package if the ini file has original value
2630 %{__sed} -i -e 's#%{_sysconfdir}/browscap.ini#/usr/share/browscap/php_browscap.ini#' %{_sysconfdir}/php.ini
2631 # disable browscap, if optional package not present
2632 if [ ! -e /usr/share/browscap/php_browscap.ini ]; then
2633         %{__sed} -i -e 's#^browscap = /usr/share/browscap/php_browscap.ini#;&#' %{_sysconfdir}/php.ini
2634 fi
2635
2636 # migrate configs /etc/php/conf.d -> /etc/phpXY/conf.d/
2637 # do config migration in php-common trigger, as the trigger is ran after all packages are upgraded
2638 # this way we can stick to one trigger, instead of attaching one for each (sub)package!
2639 for f in /etc/php/*.ini.rpmsave /etc/php/*.d/*.ini.rpmsave; do
2640         test -f "$f" || continue
2641         bn=${f#/etc/php/}
2642         dn=${bn%/*}
2643         fn=${bn#*/}
2644         test "$dn" = "$fn" && dn=
2645         fn=${fn%.rpmsave}
2646         nf=%{_sysconfdir}/$dn/$fn
2647         test -f "$nf" || continue
2648         cp -vfb $nf{,.rpmnew}
2649         cp -vfb $f $nf
2650         %{__sed} -i -e '
2651                 s#%{_libdir}/php#%{_libdir}/%{name}#
2652                 s#/etc/php#%{_sysconfdir}#
2653         ' $nf
2654 done
2655
2656 %triggerpostun -n apache-mod_%{name} -- apache-mod_%{name} < 4:7.0.0-2.RC4
2657 sed -i -e 's#modules/libphp[57].so#modules/mod_php.so#g' /etc/httpd/conf.d/*_mod_php.conf
2658
2659 # common macros called at extension post/postun scriptlet
2660 %define ext_post \
2661 if [ "$1" = "1" ]; then \
2662         %php_webserver_restart \
2663 fi \
2664 %{nil}
2665
2666 %define ext_postun \
2667 if [ "$1" = "0" ]; then \
2668         %php_webserver_restart \
2669 fi \
2670 %{nil}
2671
2672 %define extension_scripts() \
2673 %post %1 \
2674 %ext_post \
2675 \
2676 %postun %1 \
2677 %ext_postun \
2678 %{nil}
2679
2680 # extension scripts defines
2681 %extension_scripts bcmath
2682 %extension_scripts bz2
2683 %extension_scripts calendar
2684 %extension_scripts ctype
2685 %extension_scripts curl
2686 %extension_scripts dba
2687 %extension_scripts dom
2688 %extension_scripts enchant
2689 %extension_scripts exif
2690 %extension_scripts ffi
2691 %extension_scripts fileinfo
2692 %extension_scripts filter
2693 %extension_scripts ftp
2694 %extension_scripts gd
2695 %extension_scripts gettext
2696 %extension_scripts gmp
2697 %extension_scripts iconv
2698 %extension_scripts imap
2699 %extension_scripts intl
2700 %extension_scripts json
2701 %extension_scripts ldap
2702 %extension_scripts mbstring
2703 %extension_scripts mysqli
2704 %extension_scripts mysqlnd
2705 %extension_scripts oci8
2706 %extension_scripts odbc
2707 %extension_scripts opcache
2708 %extension_scripts openssl
2709 %extension_scripts pcntl
2710 %extension_scripts pdo
2711 %extension_scripts pdo-dblib
2712 %extension_scripts pdo-firebird
2713 %extension_scripts pdo-mysql
2714 %extension_scripts pdo-oci
2715 %extension_scripts pdo-odbc
2716 %extension_scripts pdo-pgsql
2717 %extension_scripts pdo-sqlite
2718 %extension_scripts pgsql
2719 %extension_scripts posix
2720 %extension_scripts pspell
2721 %extension_scripts session
2722 %extension_scripts shmop
2723 %extension_scripts simplexml
2724 %extension_scripts snmp
2725 %extension_scripts soap
2726 %extension_scripts sockets
2727 %extension_scripts sodium
2728 %extension_scripts sqlite3
2729 %extension_scripts sysvmsg
2730 %extension_scripts sysvsem
2731 %extension_scripts sysvshm
2732 %extension_scripts tidy
2733 %extension_scripts tokenizer
2734 %extension_scripts xml
2735 %extension_scripts xmlreader
2736 %extension_scripts xmlrpc
2737 %extension_scripts xmlwriter
2738 %extension_scripts xsl
2739 %extension_scripts zip
2740 %extension_scripts zlib
2741
2742 %post phar
2743 %ext_post
2744 %if %{with alternatives}
2745 update-alternatives \
2746         --install %{_bindir}/phar phar %{_bindir}/phar%{ver_suffix}.phar %{ver_suffix} \
2747         --slave %{_mandir}/man1/phar.1 phar.1 %{_mandir}/man1/phar%{ver_suffix}.1* || :
2748 %endif
2749
2750 %postun phar
2751 %ext_postun
2752 %if %{with alternatives}
2753 if [ $1 -eq 0 ]; then
2754         update-alternatives --remove phar %{_bindir}/phar || :
2755 fi
2756 %endif
2757
2758 %if %{with apache2}
2759 %files -n apache-mod_%{name}
2760 %defattr(644,root,root,755)
2761 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/httpd/conf.d/*_mod_php.conf
2762 %attr(755,root,root) %{_libdir}/apache/mod_php.so
2763
2764 %files -n apache-mod_%{name}-core
2765 %defattr(644,root,root,755)
2766 %dir %{_sysconfdir}/apache2handler.d
2767 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/apache2handler.d/php.ini
2768 %attr(755,root,root) %{_libdir}/apache/libphp7-*.*.so
2769 %endif
2770
2771 %if %{with litespeed}
2772 %files litespeed
2773 %defattr(644,root,root,755)
2774 %attr(755,root,root) %{_sbindir}/%{name}.litespeed
2775 %endif
2776
2777 %if %{with cgi}
2778 %files cgi
2779 %defattr(644,root,root,755)
2780 %dir %{_sysconfdir}/cgi-fcgi.d
2781 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/cgi-fcgi.d/php.ini
2782 %attr(755,root,root) %{_bindir}/%{name}.cgi
2783 %attr(755,root,root) %{_bindir}/%{name}.fcgi
2784 %endif
2785
2786 %if %{with embed}
2787 %files embedded
2788 %defattr(644,root,root,755)
2789 %attr(755,root,root) %{_libdir}/libphp7.so
2790 %endif
2791
2792 %files cli
2793 %defattr(644,root,root,755)
2794 %dir %{_sysconfdir}/cli.d
2795 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/cli.d/php.ini
2796 %attr(755,root,root) %{_bindir}/php%{ver_suffix}
2797 %{_mandir}/man1/php%{ver_suffix}.1*
2798
2799 %files program
2800 %defattr(644,root,root,755)
2801 %attr(755,root,root) %{_bindir}/php
2802 %{_mandir}/man1/php.1*
2803
2804 %if %{with fpm}
2805 %files fpm
2806 %defattr(644,root,root,755)
2807 %doc sapi/fpm/{CREDITS,LICENSE}
2808 %dir %{_sysconfdir}/php-fpm.d
2809 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-fpm.conf
2810 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-fpm.d/www.conf
2811 %attr(755,root,root) %{_sbindir}/%{name}-fpm
2812 %if %{with alternatives}
2813 %ghost %{_sbindir}/php-fpm
2814 %endif
2815 %{_mandir}/man8/%{name}-fpm.8*
2816 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/%{name}-fpm
2817 %attr(754,root,root) /etc/rc.d/init.d/%{name}-fpm
2818 %endif
2819
2820 %if %{with phpdbg}
2821 %files phpdbg
2822 %defattr(644,root,root,755)
2823 %attr(755,root,root) %{_bindir}/phpdbg%{php_suffix}
2824 %{_mandir}/man1/phpdbg%{php_suffix}.1*
2825 %endif
2826
2827 %files common
2828 %defattr(644,root,root,755)
2829 %doc EXTENSIONS LICENSE NEWS UPGRADING* Zend/{LICENSE.Zend,README*} php.ini-* .gdbinit
2830 %dir %{_sysconfdir}
2831 %dir %{_sysconfdir}/conf.d
2832 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php.ini
2833 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/timezone.ini
2834 %attr(755,root,root) %{_libdir}/libphp_common-*.so
2835 %dir %{php_extensiondir}
2836
2837 %doc ext/session/mod_files.sh
2838
2839 %files devel
2840 %defattr(644,root,root,755)
2841 %doc CODING_STANDARDS.md docs/*.md
2842 %attr(755,root,root) %{_bindir}/ext_skel.php
2843 %attr(755,root,root) %{_bindir}/php-config
2844 %attr(755,root,root) %{_bindir}/phpize
2845 %attr(755,root,root) %{_libdir}/libphp_common.so
2846 %{_libdir}/libphp_common.la
2847 %{_includedir}/php
2848 %{_libdir}/%{name}/build
2849 %{_mandir}/man1/php-config.1*
2850 %{_mandir}/man1/phpize.1*
2851
2852 %if %{with bcmath}
2853 %files bcmath
2854 %defattr(644,root,root,755)
2855 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_bcmath.ini
2856 %attr(755,root,root) %{php_extensiondir}/bcmath.so
2857 %endif
2858
2859 %if %{with bzip2}
2860 %files bz2
2861 %defattr(644,root,root,755)
2862 %doc ext/bz2/CREDITS
2863 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_bz2.ini
2864 %attr(755,root,root) %{php_extensiondir}/bz2.so
2865 %endif
2866
2867 %if %{with calendar}
2868 %files calendar
2869 %defattr(644,root,root,755)
2870 %doc ext/calendar/CREDITS
2871 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_calendar.ini
2872 %attr(755,root,root) %{php_extensiondir}/calendar.so
2873 %endif
2874
2875 %if %{with ctype}
2876 %files ctype
2877 %defattr(644,root,root,755)
2878 %doc ext/calendar/CREDITS
2879 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_ctype.ini
2880 %attr(755,root,root) %{php_extensiondir}/ctype.so
2881 %endif
2882
2883 %if %{with curl}
2884 %files curl
2885 %defattr(644,root,root,755)
2886 %doc ext/curl/CREDITS
2887 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_curl.ini
2888 %attr(755,root,root) %{php_extensiondir}/curl.so
2889 %endif
2890
2891 %if %{with dba}
2892 %files dba
2893 %defattr(644,root,root,755)
2894 %doc ext/dba/CREDITS
2895 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_dba.ini
2896 %attr(755,root,root) %{php_extensiondir}/dba.so
2897 %endif
2898
2899 %if %{with dom}
2900 %files dom
2901 %defattr(644,root,root,755)
2902 %doc ext/dom/CREDITS
2903 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_dom.ini
2904 %attr(755,root,root) %{php_extensiondir}/dom.so
2905 %endif
2906
2907 %if %{with enchant}
2908 %files enchant
2909 %defattr(644,root,root,755)
2910 %doc ext/enchant/CREDITS
2911 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_enchant.ini
2912 %attr(755,root,root) %{php_extensiondir}/enchant.so
2913 %endif
2914
2915 %if %{with exif}
2916 %files exif
2917 %defattr(644,root,root,755)
2918 %doc ext/exif/CREDITS
2919 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_exif.ini
2920 %attr(755,root,root) %{php_extensiondir}/exif.so
2921 %endif
2922
2923 %if %{with ffi}
2924 %files ffi
2925 %defattr(644,root,root,755)
2926 %doc ext/ffi/CREDITS
2927 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_ffi.ini
2928 %attr(755,root,root) %{php_extensiondir}/ffi.so
2929 %endif
2930
2931 %if %{with fileinfo}
2932 %files fileinfo
2933 %defattr(644,root,root,755)
2934 %doc ext/fileinfo/CREDITS
2935 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_fileinfo.ini
2936 %attr(755,root,root) %{php_extensiondir}/fileinfo.so
2937 %endif
2938
2939 %if %{with filter}
2940 %files filter
2941 %defattr(644,root,root,755)
2942 %doc ext/filter/CREDITS
2943 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_filter.ini
2944 %attr(755,root,root) %{php_extensiondir}/filter.so
2945 %endif
2946
2947 %if %{with ftp}
2948 %files ftp
2949 %defattr(644,root,root,755)
2950 %doc ext/ftp/CREDITS
2951 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_ftp.ini
2952 %attr(755,root,root) %{php_extensiondir}/ftp.so
2953 %endif
2954
2955 %if %{with gd}
2956 %files gd
2957 %defattr(644,root,root,755)
2958 %doc ext/gd/CREDITS
2959 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_gd.ini
2960 %attr(755,root,root) %{php_extensiondir}/gd.so
2961 %endif
2962
2963 %if %{with gettext}
2964 %files gettext
2965 %defattr(644,root,root,755)
2966 %doc ext/gettext/CREDITS
2967 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_gettext.ini
2968 %attr(755,root,root) %{php_extensiondir}/gettext.so
2969 %endif
2970
2971 %if %{with gmp}
2972 %files gmp
2973 %defattr(644,root,root,755)
2974 %doc ext/gmp/CREDITS
2975 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_gmp.ini
2976 %attr(755,root,root) %{php_extensiondir}/gmp.so
2977 %endif
2978
2979 %if %{with iconv}
2980 %files iconv
2981 %defattr(644,root,root,755)
2982 %doc ext/iconv/CREDITS
2983 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_iconv.ini
2984 %attr(755,root,root) %{php_extensiondir}/iconv.so
2985 %endif
2986
2987 %if %{with imap}
2988 %files imap
2989 %defattr(644,root,root,755)
2990 %doc ext/imap/CREDITS
2991 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_imap.ini
2992 %attr(755,root,root) %{php_extensiondir}/imap.so
2993 %endif
2994
2995 %if %{with intl}
2996 %files intl
2997 %defattr(644,root,root,755)
2998 %doc ext/intl/CREDITS
2999 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_intl.ini
3000 %attr(755,root,root) %{php_extensiondir}/intl.so
3001 %endif
3002
3003 %if %{with json}
3004 %files json
3005 %defattr(644,root,root,755)
3006 %doc ext/json/CREDITS
3007 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_json.ini
3008 %attr(755,root,root) %{php_extensiondir}/json.so
3009 %endif
3010
3011 %if %{with ldap}
3012 %files ldap
3013 %defattr(644,root,root,755)
3014 %doc ext/ldap/CREDITS
3015 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_ldap.ini
3016 %attr(755,root,root) %{php_extensiondir}/ldap.so
3017 %endif
3018
3019 %if %{with mbstring}
3020 %files mbstring
3021 %defattr(644,root,root,755)
3022 %doc ext/mbstring/CREDITS
3023 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_mbstring.ini
3024 %attr(755,root,root) %{php_extensiondir}/mbstring.so
3025 %endif
3026
3027 %if %{with mysqli}
3028 %files mysqli
3029 %defattr(644,root,root,755)
3030 %doc ext/mysqli/CREDITS
3031 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_mysqli.ini
3032 %attr(755,root,root) %{php_extensiondir}/mysqli.so
3033 %endif
3034
3035 %if %{with mysqlnd}
3036 %files mysqlnd
3037 %defattr(644,root,root,755)
3038 %doc ext/mysqlnd/CREDITS
3039 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_mysqlnd.ini
3040 %attr(755,root,root) %{php_extensiondir}/mysqlnd.so
3041 %endif
3042
3043 %if %{with pdo_oci}
3044 %files oci8
3045 %defattr(644,root,root,755)
3046 %doc ext/oci8/{CREDITS,README}
3047 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_oci8.ini
3048 %attr(755,root,root) %{php_extensiondir}/oci8.so
3049 %endif
3050
3051 %if %{with odbc}
3052 %files odbc
3053 %defattr(644,root,root,755)
3054 %doc ext/odbc/CREDITS
3055 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_odbc.ini
3056 %attr(755,root,root) %{php_extensiondir}/odbc.so
3057 %endif
3058
3059 %if %{with opcache}
3060 %files opcache
3061 %defattr(644,root,root,755)
3062 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_opcache.ini
3063 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/opcache.ini
3064 %attr(755,root,root) %{php_extensiondir}/opcache.so
3065 %endif
3066
3067 %if %{with openssl}
3068 %files openssl
3069 %defattr(644,root,root,755)
3070 %doc ext/openssl/CREDITS
3071 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_openssl.ini
3072 %attr(755,root,root) %{php_extensiondir}/openssl.so
3073 %endif
3074
3075 %if %{with pcntl}
3076 %files pcntl
3077 %defattr(644,root,root,755)
3078 %doc ext/pcntl/CREDITS
3079 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_pcntl.ini
3080 %attr(755,root,root) %{php_extensiondir}/pcntl.so
3081 %endif
3082
3083 %if %{with pdo}
3084 %files pdo
3085 %defattr(644,root,root,755)
3086 %doc ext/pdo/CREDITS
3087 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_pdo.ini
3088 %attr(755,root,root) %{php_extensiondir}/pdo.so
3089 %endif
3090
3091 %if %{with pdo_dblib}
3092 %files pdo-dblib
3093 %defattr(644,root,root,755)
3094 %doc ext/pdo_dblib/CREDITS
3095 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_pdo_dblib.ini
3096 %attr(755,root,root) %{php_extensiondir}/pdo_dblib.so
3097 %endif
3098
3099 %if %{with pdo_firebird}
3100 %files pdo-firebird
3101 %defattr(644,root,root,755)
3102 %doc ext/pdo_firebird/CREDITS
3103 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_pdo_firebird.ini
3104 %attr(755,root,root) %{php_extensiondir}/pdo_firebird.so
3105 %endif
3106
3107 %if %{with pdo_mysql}
3108 %files pdo-mysql
3109 %defattr(644,root,root,755)
3110 %doc ext/pdo_mysql/CREDITS
3111 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_pdo_mysql.ini
3112 %attr(755,root,root) %{php_extensiondir}/pdo_mysql.so
3113 %endif
3114
3115 %if %{with oci}
3116 %files pdo-oci
3117 %defattr(644,root,root,755)
3118 %doc ext/pdo_oci/CREDITS
3119 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_pdo_oci.ini
3120 %attr(755,root,root) %{php_extensiondir}/pdo_oci.so
3121 %endif
3122
3123 %if %{with pdo_odbc}
3124 %files pdo-odbc
3125 %defattr(644,root,root,755)
3126 %doc ext/pdo_odbc/CREDITS
3127 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_pdo_odbc.ini
3128 %attr(755,root,root) %{php_extensiondir}/pdo_odbc.so
3129 %endif
3130
3131 %if %{with pdo_pgsql}
3132 %files pdo-pgsql
3133 %defattr(644,root,root,755)
3134 %doc ext/pdo_pgsql/CREDITS
3135 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_pdo_pgsql.ini
3136 %attr(755,root,root) %{php_extensiondir}/pdo_pgsql.so
3137 %endif
3138
3139 %if %{with pdo_sqlite}
3140 %files pdo-sqlite
3141 %defattr(644,root,root,755)
3142 %doc ext/pdo_sqlite/CREDITS
3143 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_pdo_sqlite.ini
3144 %attr(755,root,root) %{php_extensiondir}/pdo_sqlite.so
3145 %endif
3146
3147 %if %{with pgsql}
3148 %files pgsql
3149 %defattr(644,root,root,755)
3150 %doc ext/pgsql/CREDITS
3151 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_pgsql.ini
3152 %attr(755,root,root) %{php_extensiondir}/pgsql.so
3153 %endif
3154
3155 %if %{with phar}
3156 %files phar
3157 %defattr(644,root,root,755)
3158 %doc ext/phar/CREDITS
3159 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_phar.ini
3160 %attr(755,root,root) %{php_extensiondir}/phar.so
3161 %attr(755,root,root) %{_bindir}/phar%{php_suffix}.phar
3162 %{_mandir}/man1/phar%{php_suffix}.1*
3163 %{_mandir}/man1/phar.phar.1*
3164 %if %{with alternatives}
3165 %ghost %{_bindir}/phar
3166 %ghost %{_mandir}/man1/phar.1
3167 %else
3168 %attr(755,root,root) %{_bindir}/phar
3169 %endif
3170 %endif
3171
3172 %if %{with posix}
3173 %files posix
3174 %defattr(644,root,root,755)
3175 %doc ext/posix/CREDITS
3176 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_posix.ini
3177 %attr(755,root,root) %{php_extensiondir}/posix.so
3178 %endif
3179
3180 %if %{with pspell}
3181 %files pspell
3182 %defattr(644,root,root,755)
3183 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_pspell.ini
3184 %attr(755,root,root) %{php_extensiondir}/pspell.so
3185 %endif
3186
3187 %if %{with readline}
3188 %files readline
3189 %defattr(644,root,root,755)
3190 %doc ext/readline/CREDITS
3191 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/cli.d/??_readline.ini
3192 %attr(755,root,root) %{php_extensiondir}/readline.so
3193 %endif
3194
3195 %if %{with session}
3196 %files session
3197 %defattr(644,root,root,755)
3198 %doc ext/session/CREDITS
3199 %doc ext/session/mod_files.sh
3200 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_session.ini
3201 %attr(755,root,root) %{php_extensiondir}/session.so
3202 %endif
3203
3204 %files shmop
3205 %defattr(644,root,root,755)
3206 %doc ext/shmop/CREDITS
3207 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_shmop.ini
3208 %attr(755,root,root) %{php_extensiondir}/shmop.so
3209
3210 %files simplexml
3211 %defattr(644,root,root,755)
3212 %doc ext/simplexml/CREDITS
3213 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_simplexml.ini
3214 %attr(755,root,root) %{php_extensiondir}/simplexml.so
3215
3216 %if %{with snmp}
3217 %files snmp
3218 %defattr(644,root,root,755)
3219 %doc ext/snmp/CREDITS
3220 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_snmp.ini
3221 %attr(755,root,root) %{php_extensiondir}/snmp.so
3222 %endif
3223
3224 %files soap
3225 %defattr(644,root,root,755)
3226 %doc ext/soap/CREDITS
3227 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_soap.ini
3228 %attr(755,root,root) %{php_extensiondir}/soap.so
3229
3230 %files sockets
3231 %defattr(644,root,root,755)
3232 %doc ext/sockets/CREDITS
3233 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_sockets.ini
3234 %attr(755,root,root) %{php_extensiondir}/sockets.so
3235
3236 %if %{with sodium}
3237 %files sodium
3238 %defattr(644,root,root,755)
3239 %doc ext/sodium/{README.md,CREDITS}
3240 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_sodium.ini
3241 %attr(755,root,root) %{php_extensiondir}/sodium.so
3242 %endif
3243
3244 %if %{with sqlite3}
3245 %files sqlite3
3246 %defattr(644,root,root,755)
3247 %doc ext/sqlite3/CREDITS
3248 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_sqlite3.ini
3249 %attr(755,root,root) %{php_extensiondir}/sqlite3.so
3250 %endif
3251
3252 %files sysvmsg
3253 %defattr(644,root,root,755)
3254 %doc ext/sysvmsg/CREDITS
3255 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_sysvmsg.ini
3256 %attr(755,root,root) %{php_extensiondir}/sysvmsg.so
3257
3258 %files sysvsem
3259 %defattr(644,root,root,755)
3260 %doc ext/sysvsem/CREDITS
3261 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_sysvsem.ini
3262 %attr(755,root,root) %{php_extensiondir}/sysvsem.so
3263
3264 %files sysvshm
3265 %defattr(644,root,root,755)
3266 %doc ext/sysvshm/CREDITS
3267 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_sysvshm.ini
3268 %attr(755,root,root) %{php_extensiondir}/sysvshm.so
3269
3270 %files tests
3271 %defattr(644,root,root,755)
3272 %dir %{php_data_dir}/tests
3273 %dir %{php_data_dir}/tests/php
3274 %{php_data_dir}/tests/php/basic
3275 %{php_data_dir}/tests/php/classes
3276 %{php_data_dir}/tests/php/func
3277 %{php_data_dir}/tests/php/lang
3278 %{php_data_dir}/tests/php/output
3279 %{php_data_dir}/tests/php/run-test
3280 %{php_data_dir}/tests/php/security
3281 %{php_data_dir}/tests/php/strings
3282 %{php_data_dir}/tests/php/quicktester.inc
3283 %attr(755,root,root) %{php_data_dir}/tests/php/run-tests.php
3284
3285 %if %{with tidy}
3286 %files tidy
3287 %defattr(644,root,root,755)
3288 %doc ext/tidy/CREDITS
3289 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_tidy.ini
3290 %attr(755,root,root) %{php_extensiondir}/tidy.so
3291 %endif
3292
3293 %files tokenizer
3294 %defattr(644,root,root,755)
3295 %doc ext/tokenizer/CREDITS
3296 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_tokenizer.ini
3297 %attr(755,root,root) %{php_extensiondir}/tokenizer.so
3298
3299 %files xml
3300 %defattr(644,root,root,755)
3301 %doc ext/xml/CREDITS
3302 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_xml.ini
3303 %attr(755,root,root) %{php_extensiondir}/xml.so
3304
3305 %files xmlreader
3306 %defattr(644,root,root,755)
3307 %doc ext/xmlreader/CREDITS
3308 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_xmlreader.ini
3309 %attr(755,root,root) %{php_extensiondir}/xmlreader.so
3310
3311 %if %{with xmlrpc}
3312 %files xmlrpc
3313 %defattr(644,root,root,755)
3314 %doc ext/xmlrpc/CREDITS
3315 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_xmlrpc.ini
3316 %attr(755,root,root) %{php_extensiondir}/xmlrpc.so
3317 %endif
3318
3319 %files xmlwriter
3320 %defattr(644,root,root,755)
3321 %doc ext/xmlwriter/CREDITS
3322 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_xmlwriter.ini
3323 %attr(755,root,root) %{php_extensiondir}/xmlwriter.so
3324
3325 %if %{with xsl}
3326 %files xsl
3327 %defattr(644,root,root,755)
3328 %doc ext/xsl/CREDITS
3329 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_xsl.ini
3330 %attr(755,root,root) %{php_extensiondir}/xsl.so
3331 %endif
3332
3333 %if %{with zip}
3334 %files zip
3335 %defattr(644,root,root,755)
3336 %doc ext/zip/CREDITS
3337 %doc ext/zip/examples
3338 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_zip.ini
3339 %attr(755,root,root) %{php_extensiondir}/zip.so
3340 %endif
3341
3342 %files zlib
3343 %defattr(644,root,root,755)
3344 %doc ext/zlib/CREDITS
3345 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/??_zlib.ini
3346 %attr(755,root,root) %{php_extensiondir}/zlib.so
This page took 0.378799 seconds and 2 git commands to generate.