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