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