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