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