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