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