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