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