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