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