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