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