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