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