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