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