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