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