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