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