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