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