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