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