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