source: projects/specs/trunk/p/php74/php74-vl.spec @ 12325

Revision 12325, 71.4 KB checked in by tomop, 4 years ago (diff)

updated 2 packages

php73-7.3.15-1

php74-7.4.3-1

Line 
1%bcond_with debug
2%bcond_without apache2
3
4%if %{with debug}
5%define __spec_install_post /usr/lib/rpm/brp-compress
6%endif
7
8%global majorver 74
9%global ap_suffix 7
10%global _name php%{majorver}
11
12%global php_extension_api 20190902
13%global zend_extension_api 320190902
14
15%global srcname php-%{version}
16
17%global php_confdir %{_sysconfdir}/%{_name}
18
19%if %{?_dist_release} == "vl6"
20%define gd_name gd21
21%else
22%define gd_name gd
23%endif
24
25%{!?_without_pear:%global _with_pear 1}
26%global with_pear %{?_with_pear:1}%{!?_with_pear:0}
27%if %{with_pear}
28%global pear_rootdir %{_datadir}/%{_name}-pear
29%global pear_cachedir %{_localstatedir}/cache/%{_name}-pear
30%endif
31
32%global apache2_confdir %{_sysconfdir}/apache2/conf.d
33%global apache2_moduledir %{_libdir}/apache2/modules
34%global apache2_contentdir /var/www
35%global apache2_cgidir %{apache2_contentdir}/cgi-bin
36%global apache2_fcgidir %{apache2_contentdir}/fcgi-bin
37
38%if %{?_dist_release} == "vl6"
39%define www_user apache
40%define www_group apache
41%define fpm_user nobody
42%define fpm_group nobody
43%else
44%define www_user www-data
45%define www_group www-data
46%define fpm_user www-data
47%define fpm_group www-data
48%endif
49
50Name: php%{majorver}
51Summary: The PHP HTML-embedded scripting language. (PHP: Hypertext Preprocessor)
52Summary(ja): HTML 埋め込み型スクリプト言語 PHP
53Version: 7.4.3
54Release: 1%{_dist_release}
55Conflicts: php5 < 5.6.11
56
57Vendor: Project Vine
58Distribution: Vine Linux
59Packager: tomop
60
61License: The PHP License
62Group: Development/Languages
63URL: http://www.php.net/
64
65Source0: http://www.php.net/distributions/%{srcname}.tar.xz
66
67# borrowed from Fedora's php-pear 1:1.9.4-5
68Source13: macros.pear
69
70Source20: README.vine
71Source21: php.ini-vine
72Source24: php.conf-apache2
73Source25: php-fpm.init
74Source26: php-fpm.conf
75Source27: default-pool.conf.in
76Source28: php-fpm.logrotate
77Source29: php_params
78Source31: macros.pear.ver
79
80Patch33: php-5.2.4-phpincludedir.patch
81
82# Additional feature
83#Patch100: php55-htmlspecialchars-compat53.patch
84
85# security fix
86#Patch1000: php-5.3.7-bug55439.patch
87
88#bugfix
89#Patch2000: fix319823.patch
90
91BuildRoot: %{_tmppath}/%{name}-%{version}-root
92BuildRequires: autoconf
93BuildRequires: automake
94BuildRequires: bison
95BuildRequires: bzip2
96BuildRequires: bzip2-devel
97BuildRequires: curl-devel
98%if %{?_dist_release} == "vl6"
99BuildRequires: db4-devel
100%else
101BuildRequires: libdb-devel
102%endif
103BuildRequires: coreutils
104BuildRequires: flex
105BuildRequires: freetype2-devel
106BuildRequires: gcc-c++
107BuildRequires: %{gd_name}-devel
108BuildRequires: gdbm-devel
109BuildRequires: gmp-devel
110BuildRequires: libedit-devel
111BuildRequires: libjpeg-devel
112BuildRequires: libpng-devel
113BuildRequires: libstdc++-devel
114BuildRequires: libtool-ltdl-devel
115BuildRequires: libxcrypt-devel
116BuildRequires: libxml2-devel
117BuildRequires: libxslt-devel >= 1.0.18
118BuildRequires: ncurses-devel
119BuildRequires: oniguruma-devel
120BuildRequires: openssl-devel
121BuildRequires: pam-devel
122BuildRequires: pcre-devel
123BuildRequires: perl
124BuildRequires: pkgconfig
125BuildRequires: postfix
126BuildRequires: sqlite3-devel
127BuildRequires: zlib-devel
128BuildRequires: libicu-devel >= 3.6
129BuildRequires: libXpm-devel
130BuildRequires: libzip-devel
131%if %{?_dist_release} != "vl4"
132BuildRequires: krb5-devel
133%endif
134
135%if %{?_dist_release} != "vl6"
136BuildRequires: www-common
137Requires: www-common
138%endif
139
140Requires(post,preun): alternatives
141%{?_with_pear:Requires: %{name}-pear = %{version}-%{release}}
142Conflicts: php <= 4.4.2-0vl1.2
143Provides: php = %{version}-%{release}
144Provides: php_extension_api(%{php_extension_api})
145Provides: php_zend_extension_api(%{zend_extension_api})
146Obsoletes: php5-sqlite < 5.5.0
147
148%description
149PHP is an HTML-embedded scripting language. PHP attempts to make it
150easy for developers to write dynamically generated webpages. PHP also
151offers built-in database integration for several commercial and
152non-commercial database management systems, so writing a
153database-enabled webpage with PHP is fairly simple. The most common
154use of PHP coding is probably as a replacement for CGI scripts. The
155mod_php module enables the Apache Web server to understand and process
156the embedded PHP language in Web pages.
157
158%description -l ja
159PHP は HTML 埋め込み型のスクリプト言語です.開発者にとって,動的に生成
160される Web ページを簡単に書けるように考えて作られています.さらに,商用,
161非商用を問わず,数々のデータベース管理システムについての統合データベース
162環境が組み込まれています.そのため,データベースを使った Web ページを簡
163単に書くことができます.PHP の用途のほとんどは、既存の CGI スクリプトの
164置き換えに使われているのではないでしょうか.また,mod_php を使うことで,
165Apache Web サーバが Web ページに埋めこまれた PHP 言語を理解して処理でき
166るようになります.
167
168#----------------------------------------------------------------------
169%package devel
170Summary: Files needed for building PHP extensions.
171Group: Development/Libraries
172Requires: %{name} = %{version}-%{release}
173Requires: autoconf
174Requires: automake
175Conflicts: php-devel
176
177%description devel
178The php-devel package contains the files needed for building PHP
179extensions. If you need to compile your own PHP extensions, you will
180need to install this package.
181
182#----------------------------------------------------------------------
183%if %{with_pear}
184%package pear
185Group: Development/Languages
186Summary: PHP Extension and Application Repository Components
187Requires(post): alternatives
188Requires: %{name} = %{version}-%{release}
189Conflicts: php-pear <= 4.4.2-0vl2
190Provides: php-pear = %{version}-%{release}
191# pear's version itself is 1.9.4
192Provides: php-pear(PEAR) = 1.9.4
193Conflicts: php5-pear < 5.6.11
194
195%description pear
196PEAR is a framework and distribution system for reusable PHP
197components.  This package contains the basic PEAR components.
198%endif
199
200#----------------------------------------------------------------------
201%if %{with apache2}
202%package apache2
203Group: System Environment/Daemons
204Summary: php5 module for Apache version 2
205Summary(ja): Apache バージョン 2 用の php5 モジュール
206BuildRequires: apache2-devel >= 2.0.50-0vl2
207Requires: %{name} = %{version}-%{release}
208Requires: apache2 >= 2.0.50-0vl2
209Requires(post): sed, file
210Provides: php-apache2 = %{version}-%{release}
211Conflicts: php5-pache2 < 5.6.11
212
213%description apache2
214 This package contains the php5 module for Apache version 2.
215
216 Apache2 must be configured to use prefork MPM because
217this module is not threadsafe.
218%endif
219
220#----------------------------------------------------------------------
221%package fpm
222Group: System Environment/Daemons
223Summary: PHP with FastCGI Process Manager (FPM)
224Summary(ja): FastCGI Process Manager (FPM) が組み込まれたPHP
225Requires: %{name} = %{version}-%{release}
226
227%description fpm
228 PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI
229implementation with some additional features useful for sites of
230any size, especially busier sites.
231
232#----------------------------------------------------------------------
233%package nginx
234Group: System Environment/Daemons
235Summary: Nginx configuration for php-fpm
236Summary(ja): php-fpmを利用するためのNginx設定ファイル
237Requires: %{name}-fpm = %{version}-%{release}
238Requires: nginx
239
240%description nginx
241 This package inckudes FastCGI parameters for Nginx.
242
243#======================================================================
244# modules
245#----------------------------------------------------------------------
246%package dba
247Summary: A database abstraction layer module for PHP applications
248Group: Development/Languages
249Requires: %{name} = %{version}-%{release}
250Provides: php-dba = %{version}-%{release}
251Conflicts: php5-dba < 5.6.11
252
253%description dba
254The php-dba package contains a dynamic shared object that will add
255support for using the DBA database abstraction layer to PHP.
256
257#----------------------------------------------------------------------
258%package imap
259Summary: A module for PHP applications that use IMAP.
260Group: Development/Languages
261BuildRequires: uw-imap-devel >= 2000c-1.6.0
262BuildRequires: openssl-devel
263Requires: %{name} = %{version}-%{release}
264Provides: php-imap = %{version}-%{release}
265Conflicts: php5-imap < 5.6.11
266
267%description imap
268The php-imap package contains a dynamic shared object (DSO) for the
269Apache Web server. When compiled into Apache, the php-imap module will
270add IMAP (Internet Message Access Protocol) support to PHP. IMAP is a
271protocol for retrieving and uploading e-mail messages on mail
272servers. PHP is an HTML-embedded scripting language. If you need IMAP
273support for PHP applications, you will need to install this package
274and the php package.
275
276#----------------------------------------------------------------------
277%package ldap
278Summary: A module for PHP applications that use LDAP.
279Group: Development/Languages
280BuildRequires: cyrus-sasl-devel
281BuildRequires: openldap-devel
282BuildRequires: openssl-devel
283Requires: %{name} = %{version}-%{release}
284Provides: php-ldap = %{version}-%{release}
285Conflicts: php5-ldap < 5.6.11
286
287%description ldap
288The php-ldap package is a dynamic shared object (DSO) for the Apache
289Web server that adds Lightweight Directory Access Protocol (LDAP)
290support to PHP. LDAP is a set of protocols for accessing directory
291services over the Internet. PHP is an HTML-embedded scripting
292language. If you need LDAP support for PHP applications, you will
293need to install this package in addition to the php package.
294
295#----------------------------------------------------------------------
296%package mysql
297Summary: A module for PHP applications that use MySQL databases.
298Group: Development/Languages
299##BuildRequires: MySQL-devel >= 5.1.40
300# for MySQL-devel Requires bug..
301Requires: %{name} = %{version}-%{release}
302Requires: %{name}-pdo
303Provides: %{name}_database
304Provides: php-mysql = %{version}-%{release}
305Conflicts: php5-mysql < 5.6.11
306
307%description mysql
308The php-mysql package contains a dynamic shared object that will add
309MySQL database support to PHP. MySQL is an object-relational database
310management system. PHP is an HTML-embeddable scripting language. If
311you need MySQL support for PHP applications, you will need to install
312this package and the php or mod_php package.
313
314#----------------------------------------------------------------------
315%package odbc
316Group: Development/Languages
317Summary: A module for PHP applications that use ODBC databases.
318BuildRequires: unixODBC-devel
319Requires: %{name} = %{version}-%{release}
320Requires: %{name}-pdo
321Provides: %{name}_database
322Provides: php-odbc = %{version}-%{release}
323Conflicts: php5-odbc < 5.6.11
324
325%description odbc
326The php-odbc package contains a dynamic shared object that will add
327database support through ODBC to PHP. ODBC is an open specification
328which provides a consistent API for developers to use for accessing
329data sources (which are often, but not always, databases). PHP is an
330HTML-embeddable scripting language. If you need ODBC support for PHP
331applications, you will need to install this package and the php
332package.
333
334#----------------------------------------------------------------------
335%package pdo
336Summary: A database access abstraction module for PHP applications
337Group: Development/Languages
338Requires: %{name} = %{version}-%{release}
339Provides: php-pdo = %{version}-%{release}
340Conflicts: php5-pdo < 5.6.11
341
342%description pdo
343The php-pdo package contains a dynamic shared object that will add
344a database access abstraction layer to PHP.  This module provides
345a common interface for accessing MySQL, PostgreSQL or other
346databases.
347
348#----------------------------------------------------------------------
349%package pgsql
350Summary: A PostgreSQL database module for PHP.
351Group: Development/Languages
352BuildRequires: openssl-devel
353%if %{?_dist_release} == "vl6"
354BuildRequires: postgresql-devel
355%else
356BuildRequires: libpq-devel
357%endif
358Requires: %{name} = %{version}-%{release}
359Requires: %{name}-pdo
360Provides: %{name}_database
361Provides: php-pgsql = %{version}-%{release}
362Conflicts: php5-pgsql < 5.6.11
363
364%description pgsql
365The php-pgsql package includes a dynamic shared object (DSO) that can
366be compiled in to the Apache Web server to add PostgreSQL database
367support to PHP. PostgreSQL is an object-relational database management
368system that supports almost all SQL constructs. PHP is an
369HTML-embedded scripting language. If you need back-end support for
370PostgreSQL, you should install this package in addition to the main
371php package.
372
373#----------------------------------------------------------------------
374%package snmp
375Summary: A module for PHP applications that query SNMP-managed devices.
376Group: Development/Languages
377BuildRequires: bzip2-devel
378BuildRequires: glibc-devel
379BuildRequires: libelf-devel
380BuildRequires: net-snmp-devel >= 5.1.1
381BuildRequires: popt-devel
382BuildRequires: rpm-devel
383BuildRequires: zlib-devel
384Requires: %{name} = %{version}-%{release}
385Provides: php-snmp = %{version}-%{release}
386Conflicts: php5-snmp < 5.6.11
387
388%description snmp
389The php-snmp package contains a dynamic shared object that will add
390support for querying SNMP devices to PHP.  PHP is an HTML-embeddable
391scripting language. If you need SNMP support for PHP applications, you
392will need to install this package and the php package.
393
394#----------------------------------------------------------------------
395%package xmlrpc
396Summary: A module for PHP applications which use the XML-RPC protocol
397Group: Development/Languages
398Requires: %{name} = %{version}-%{release}
399Provides: php-xmlrpc = %{version}-%{release}
400Conflicts: php5-xmlrpc < 5.6.11
401
402%description xmlrpc
403The php-xmlrpc package contains a dynamic shared object that will add
404support for the XML-RPC protocol to PHP.
405
406#----------------------------------------------------------------------
407%package intl
408Summary: A module for PHP applications to use the ICU APIs
409Group: Development/Languages
410Requires: %{name} = %{version}-%{release}
411Provides: php-intl = %{version}-%{release}
412Conflicts: php5-intl < 5.6.11
413
414%description intl
415 The php-intl package is a wrapper for ICU library, enabling PHP programmers
416to perform UCA-conformant collation and date/time/number/currency formatting
417in their scripts.
418
419#----------------------------------------------------------------------
420%package zip
421Summary: A module for PHP applications to manipulate the ZIP archives
422Group: Development/Languages
423Requires: %{name} = %{version}-%{release}
424Provides: php-zip = %{version}-%{release}
425Provides: php-ext-zip
426Obsoletes: php-ext-zip < 1.12.4
427Conflicts: php5-zip < 5.6.11
428
429%description zip
430 The php-zip package is an extension to create, modify and read zip files.
431
432#----------------------------------------------------------------------
433%package pcntl
434Summary: A module for PHP-CLI applications to use Process Control (pcntl)
435Group: Development/Languages
436Requires: %{name} = %{version}-%{release}
437Provides: php-pcntl = %{version}-%{release}
438Conflicts: php5-pcntl < 5.6.11
439
440%description pcntl
441 Process Control support in PHP implements the Unix style of process
442creation, program execution, signal handling and process termination.
443Process Control should not be enabled within a web server environment
444and unexpected results may happen if any Process Control functions are
445used within a web server environment.
446
447#----------------------------------------------------------------------
448%package opcache
449Summary: A zend extension to cache script bytecode
450Group: Development/Languages
451Requires: %{name} = %{version}-%{release}
452Provides: php-opcache = %{version}-%{release}
453Conflicts: php5-opcache < 5.6.11
454
455%description opcache
456 OPcache improves PHP performance by storing precompiled script bytecode
457in shared memory, thereby removing the need for PHP to load and parse scripts
458on each request.
459
460
461#======================================================================
462%prep
463%setup -q -n %{srcname}
464
465%patch33 -p1 -b .phpincludedir
466
467# Prevent %%doc confusion over LICENSE files
468cp Zend/LICENSE Zend/ZEND_LICENSE
469#cp Zend/ChangeLog Zend/ZEND_ChangeLog
470cp TSRM/LICENSE TSRM_LICENSE
471
472mkdir -p %{_name}-apache2
473cp %{SOURCE20} %{_name}-apache2/README.vine
474
475#perl -pi -e 's,/freetype2/freetype/,/freetype2/,g' configure
476perl -pi -e 's/for LIB in .+ db4 db; do/for LIB in db; do/' configure
477
478# Source is built three times:
479# once for /usr/bin/php, once for the Apache1 module, once for the Apache2 module.
480mkdir build-cgi build-fpm build-apache2
481
482#======================================================================
483%build
484# Regenerate configure scripts (patches change config.m4's)
485# ./buildconf --force
486
487# Install extension modules in %{_libdir}/%{_name}
488export EXTENSION_DIR=%{_libdir}/%{_name}
489
490# Shell function to configure and build a PHP tree.
491build() {
492ln -sf ../configure
493
494%if %{with debug}
495export CFLAGS="%{optflags} -fPIC -g"
496export CXXFLAGS="%{optflags} -fPIC --std=c++0x -g"
497%else
498export CFLAGS="%{optflags} -fPIC"
499export CXXFLAGS="%{optflags} -fPIC --std=c++0x"
500%endif
501
502
503%configure \
504  --cache-file=../config.cache \
505  --prefix=%{_prefix} \
506  --libdir=%{_libdir}/%{_name} \
507  --with-libdir=%{_lib} \
508  --sysconfdir=%{php_confdir} \
509  --with-layout=GNU \
510  --with-config-file-path=%{php_confdir} \
511  --with-config-file-scan-dir=%{php_confdir}/php.d \
512  --program-suffix=%{majorver} \
513  --disable-rpath \
514  --enable-bcmath \
515  --enable-calendar \
516  --enable-dba=shared --with-gdbm --with-db4 \
517  --enable-exif \
518  --enable-ftp \
519  --enable-inline-optimization \
520  --enable-intl=shared \
521  --enable-mbstring \
522  --enable-pcntl=shared \
523  --enable-pdo=shared \
524  --enable-shmop \
525  --enable-soap \
526  --enable-sockets \
527  --enable-sysvmsg --enable-sysvsem --enable-sysvshm \
528  --enable-zip=shared --with-libzip \
529  --with-bz2 \
530  --with-curl \
531  --enable-gd=shared \
532  --with-external-gd \
533  --with-iconv \
534  --with-gettext \
535  --with-gmp \
536  --with-imap=shared --with-imap-ssl \
537  --with-kerberos \
538  --with-ldap=shared \
539  --with-mysqli=shared,mysqlnd --with-pdo-mysql=shared,mysqlnd \
540  --with-openssl \
541  --with-pgsql=shared --with-pdo-pgsql=shared,%{_prefix} \
542  --with-pic \
543  --with-snmp=shared,%{_prefix} \
544  --with-pdo-sqlite=shared,%{_prefix} \
545  --with-unixODBC=shared,%{_prefix} --with-pdo-odbc=shared,unixODBC,%{_prefix} \
546  --with-xmlrpc=shared \
547  --with-xsl \
548  --with-zip=shared \
549  --with-zlib \
550  %{?_with_pear:--with-pear=%{pear_rootdir}}%{!?_with_pear:--without-pear} \
551  $*
552if test $? != 0; then
553  tail -500 config.log
554  : configure failed
555  exit 1
556fi
557
558make %{?_smp_mflags}
559}
560
561#----------------------------------------------------------------------
562# Build /usr/bin/php{,-cgi}, and all the shared extensions
563pushd build-cgi
564build \
565  --with-libedit
566popd
567
568#----------------------------------------------------------------------
569# Build /usr/sbin/php-fpm
570pushd build-fpm
571build \
572  --enable-fpm
573popd
574
575sed -e 's/@WWWUSER@/%{fpm_user}/' -e 's/@WWWGROUP@/%{fpm_group}/' \
576    -e 's/@majorver@/%{majorver}/'< %{SOURCE27} > default-pool.conf
577
578#----------------------------------------------------------------------
579# Build Apache2 module
580%if %{with apache2}
581pushd build-apache2
582build \
583  --with-apxs2=%{_bindir}/apxs
584popd
585%endif
586#======================================================================
587%install
588[ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
589
590#export PHP_PEAR_SYSCONF_DIR=%{php_confdir}
591#export PHP_PEAR_TEMP_DIR=%{pear_cachedir}
592#export PHP_PEAR_CACHE_DIR=%{buildroot}%{pear_cachedir}
593#export PHP_PEAR_DOWNLOAD_DIR=%{pear_cachedir}
594#export PHP_PEAR_PHP_BIN=%{_bindir}/%{_name}
595
596export PHP_PEAR_SYSCONF_DIR=%{php_confdir}
597export PHP_PEAR_TEMP_DIR=%{buildroot}%{pear_cachedir}
598export PHP_PEAR_CACHE_DIR=%{buildroot}%{pear_cachedir}
599export PHP_PEAR_DOWNLOAD_DIR=%{buildroot}%{pear_cachedir}
600export PHP_PEAR_PHP_BIN=%{buildroot}%{_bindir}/%{_name}
601unset http_proxy
602
603#----------------------------------------------------------------------
604pushd build-cgi
605# Install everything from the CGI SAPI build
606make install INSTALL_ROOT=%{buildroot}
607#cp %{buildroot}%{_bindir}/%{_name}{,-cgi}
608# Install the CLI SAPI as /usr/bin/%{_name}
609#make install-cli INSTALL_ROOT=%{buildroot}
610popd
611
612# Install the default configuration file
613%{__install} -m 755 -d %{buildroot}%{php_confdir}
614%{__install} -m 644 php.ini-production %{buildroot}%{php_confdir}/php.ini
615
616# Append php.ini-vine
617cat %{SOURCE21} >> %{buildroot}%{php_confdir}/php.ini
618# Use correct libdir
619sed -i \
620  -e 's|%{_prefix}/lib|%{_libdir}|' \
621  -e 's/@majorver@/%{majorver}/g' \
622  %{buildroot}%{php_confdir}/php.ini
623
624# fix path in phar
625
626perl -pi -e 's|^#!/.+/build-cgi/sapi/cli/php$|#!/usr/bin/%{_name}|' %{buildroot}%{_bindir}/phar.phar
627mv %{buildroot}%{_bindir}/phar.phar %{buildroot}%{_bindir}/phar%{majorver}.phar
628mv %{buildroot}%{_mandir}/man1/phar.1 %{buildroot}%{_mandir}/man1/phar%{majorver}.1
629rm %{buildroot}%{_mandir}/man1/phar.phar.1
630
631%if %{with_pear}
632# http://pear.php.net/bugs/bug.php?id=6154
633perl -pi -e 's#s:([0-9]+):(.)(%{buildroot})+#"s:".($1-length($3)).":$2"#eg;' %{buildroot}%{php_confdir}/pear.conf
634
635for cmd in pear peardev pecl; do
636  cp %{buildroot}%{_bindir}/${cmd}{,%{majorver}}
637done
638%{__install} -m 755 -d %{buildroot}%{pear_cachedir}
639
640# install rpmmacro file for pear
641mkdir -p %{buildroot}%{_datadir}/php%{majorver}
642install -m 644 -c %{SOURCE13} \
643  %{buildroot}%{_datadir}/php%{majorver}/macros.pear
644sed -i -e 's/@majorver@/%{majorver}/g' \
645  %{buildroot}%{_datadir}/php%{majorver}/macros.pear
646
647mkdir -p %{buildroot}%{_sysconfdir}/rpm
648install -m 644 -c %{SOURCE31} \
649        %{buildroot}%{_sysconfdir}/rpm/macros.pear%{majorver}
650sed -i -e 's/@majorver@/%{majorver}/g' \
651  %{buildroot}%{_sysconfdir}/rpm/macros.pear%{majorver}
652%endif
653
654# Install cgi/fcgi binaries
655mv %{buildroot}%{_bindir}/php-cgi%{majorver} %{buildroot}%{_bindir}/%{_name}-cgi
656
657# Install fpm binaries
658%{__install} -d %{buildroot}%{_sbindir}
659%{__install} -d %{buildroot}%{_initdir}
660%{__install} -m 755 -d %{buildroot}%{php_confdir}/fpm.d
661%{__install} -d %{buildroot}%{_mandir}/man8
662%{__install} -d %{buildroot}%{_sysconfdir}/logrotate.d
663%{__install} -m 755 build-fpm/sapi/fpm/php-fpm %{buildroot}%{_sbindir}/%{_name}-fpm
664%{__install} -m 755 %{SOURCE25} %{buildroot}%{_initdir}/%{_name}-fpm
665sed -i -e 's/@majorver@/%{majorver}/g' %{buildroot}%{_initdir}/%{_name}-fpm
666%{__install} -m 644 build-fpm/sapi/fpm/php-fpm.8 %{buildroot}%{_mandir}/man8/%{_name}-fpm.8
667%{__install} -m 644 %{SOURCE26} %{buildroot}%{php_confdir}/php-fpm.conf
668sed -i -e 's/@majorver@/%{majorver}/g' %{buildroot}%{php_confdir}/php-fpm.conf
669%{__install} -m 644 default-pool.conf %{buildroot}%{php_confdir}/fpm.d/default-pool.conf
670%{__install} -m 644 %{SOURCE28} %{buildroot}%{_sysconfdir}/logrotate.d/%{_name}-fpm
671sed -i \
672  -e 's/@majorver@/%{majorver}/g' \
673  %{buildroot}%{_sysconfdir}/logrotate.d/%{_name}-fpm
674
675
676# Install the Apache2 module, CGI SAPI, config fragment
677%if %{with apache2}
678%{__install} -m 755 -d %{buildroot}%{apache2_moduledir}
679%{__install} -m 755 build-apache2/libs/libphp%{ap_suffix}.so %{buildroot}%{apache2_moduledir}/lib%{_name}.so
680%{__install} -m 755 -d %{buildroot}%{apache2_cgidir}
681%{__install} -m 755 -d %{buildroot}%{apache2_fcgidir}
682ln -sf %{_bindir}/%{_name}-cgi %{buildroot}%{apache2_cgidir}/%{_name}-cgi
683ln -sf %{_bindir}/%{_name}-cgi %{buildroot}%{apache2_fcgidir}/%{_name}-fcgi
684%{__install} -m 755 -d %{buildroot}%{apache2_confdir}
685%{__install} -m 644 %{SOURCE24} %{buildroot}%{apache2_confdir}/%{_name}.conf
686sed -i \
687  -e 's/@majorver@/%{majorver}/g' \
688  -e 's/@ap_suffix@/%{ap_suffix}/g' \
689  %{buildroot}%{apache2_confdir}/%{_name}.conf
690%endif
691
692# Install the configuration file for Nginx
693mkdir -p %{buildroot}%{_sysconfdir}/nginx
694%{__install} -m 644 %{SOURCE29} %{buildroot}%{_sysconfdir}/nginx/%{_name}_params
695sed -i -e 's/@majorver@/%{majorver}/g' \
696  %{buildroot}%{_sysconfdir}/nginx/%{_name}_params
697
698%{__install} -m 755 -d %{buildroot}%{php_confdir}/php.d
699%{__install} -m 755 -d %{buildroot}%{_localstatedir}/%{_name}
700# for session.save_path
701%{__install} -m 770 -d %{buildroot}%{_localstatedir}/%{_name}/session
702# for extension modules
703%{__install} -m 755 -d %{buildroot}%{_libdir}/%{_name}
704# for --with-exec-dir
705%{__install} -m 755 -d %{buildroot}%{_libdir}/%{_name}/bin
706
707#----------------------------------------------------------------------
708# Generate files lists and stub .ini files for each subpackage
709for mod in dba imap ldap snmp xmlrpc intl gd zip \
710    mysqli odbc pgsql \
711    pdo pdo_odbc pdo_mysql pdo_pgsql pdo_sqlite; do
712    cat > %{buildroot}%{php_confdir}/php.d/${mod}.ini <<EOF
713; Enable ${mod} extension module
714extension=${mod}.so
715EOF
716    cat > files.${mod} <<EOF
717%attr(0755,root,root) %{_libdir}/%{_name}/${mod}.so
718%config(noreplace) %attr(0644,root,root) %{php_confdir}/php.d/${mod}.ini
719EOF
720done
721
722# Zend extensions
723for mod in opcache; do
724    cat > %{buildroot}%{php_confdir}/php.d/${mod}.ini <<EOF
725; Enable ${mod} zend extension module
726zend_extension=${mod}.so
727EOF
728    cat > files.${mod} <<EOF
729%attr(0755,root,root) %{_libdir}/%{_name}/${mod}.so
730%config(noreplace) %attr(0644,root,root) %{php_confdir}/php.d/${mod}.ini
731EOF
732done
733
734# pcntl extension should be enabled with CLI/CGI SAPI only.
735cat > %{buildroot}%{php_confdir}/php.d/pcntl.ini <<EOF
736; Enable pcntl extension module
737;extension=pcntl.so
738EOF
739cat > files.pcntl <<EOF
740%attr(0755,root,root) %{_libdir}/%{_name}/pcntl.so
741%config(noreplace) %attr(0644,root,root) %{php_confdir}/php.d/pcntl.ini
742EOF
743
744
745
746# rename mysqli to mysql.
747mv -f files.mysqli files.mysql
748
749# Split out the PDO modules
750cat files.pdo_mysql >> files.mysql
751cat files.pdo_odbc >> files.odbc
752cat files.pdo_pgsql >> files.pgsql
753
754# Package pdo_sqlite with pdo; isolating the sqlite dependency
755# isn't useful at this time since rpm itself requires sqlite.
756cat files.pdo_sqlite >> files.pdo
757
758#----------------------------------------------------------------------
759# Remove unpackaged files
760rm -f %{buildroot}%{_libdir}/%{_name}/*.a
761
762# Remove irrelevant docs
763rm -f README.{Zeus,QNX,CVS-RULES}
764
765# ad-hoc fix for incorrect paths to php5
766for X in pear%{majorver} peardev%{majorver} pecl%{majorver} ; do
767  sed -i -e 's|%{buildroot}||g' %{buildroot}%{_bindir}/$X
768done
769
770rm -rf %{buildroot}/{.channels,.depdb*,.filemap,.lock}
771rm -f %{buildroot}%{_bindir}/{pear,peardev,pecl,phar}
772
773#----------------------------------------------------------------------
774%post
775/sbin/update-alternatives \
776  --install %{_bindir}/php     php  %{_bindir}/php%{majorver} %{majorver} \
777  --slave   %{_bindir}/php-cgi php-cgi  %{_bindir}/php%{majorver}-cgi \
778  --slave   %{_bindir}/phar    phar %{_bindir}/phar%{majorver}.phar \
779  --slave   %{_bindir}/phar.phar phar.phar %{_bindir}/phar%{majorver}.phar \
780  --slave   %{_bindir}/phpdbg  phpdbg %{_bindir}/phpdbg%{majorver} \
781  --slave   %{_mandir}/man1/php.1.gz php.1.gz %{_mandir}/man1/%{_name}.1.gz \
782  --slave   %{_mandir}/man1/php-cgi.1.gz php-cgi.1.gz %{_mandir}/man1/php-cgi%{majorver}.1.gz \
783  --slave   %{_mandir}/man1/phar.1.gz phar.1.gz %{_mandir}/man1/phar%{majorver}.1.gz \
784  --slave   %{_mandir}/man1/phpdbg.1.gz phpdbg.1.gz %{_mandir}/man1/phpdbg%{majorver}.1.gz
785
786# fix broken symlink if it's there
787if [ ! -f %{_bindir}/php ] ; then
788    /sbin/update-alternatives --auto php
789fi
790
791%triggerpostun -- php5 < 5.1.4-0vl1
792/sbin/update-alternatives --auto php
793
794%preun
795if [ "$1" = 0 ]; then
796  /sbin/update-alternatives --remove php %{_bindir}/php%{majorver}
797fi
798
799%post fpm
800/sbin/update-alternatives \
801  --install %{_sbindir}/php-fpm php-fpm %{_sbindir}/%{_name}-fpm %{majorver} \
802  --slave   %{_mandir}/man8/php-fpm.8.gz php-fpm.8.gz %{_mandir}/man8/%{_name}-fpm.8.gz
803
804# fix broken symlink if it's there
805if [ ! -f %{_sbindir}/php-fpm ] ; then
806    /sbin/update-alternatives --auto php-fpm
807fi
808/sbin/chkconfig --add %{_name}-fpm
809
810%triggerun fpm -- php5-fpm < 5.6.11
811/sbin/chkconfig --del php-fpm 2>/dev/null ||:
812
813%preun fpm
814if [ "$1" = 0 ]; then
815  /sbin/chkconfig --del %{_name}-fpm
816  /sbin/update-alternatives --remove php-fpm %{_sbindir}/php%{majorver}-fpm
817fi
818
819%post nginx
820/sbin/update-alternatives \
821  --install %{_sysconfdir}/nginx/php_params \
822            php-nginx \
823            %{_sysconfdir}/nginx/%{_name}_params \
824            %{majorver}
825
826# fix broken symlink if it's there
827if [ ! -f %{_sysconfdir}/nginx/php_params ] ; then
828    /sbin/update-alternatives --auto php-nginx
829fi
830
831%preun nginx
832if [ "$1" = 0 ]; then
833  /sbin/update-alternatives --remove php-nginx %{_sysconfdir}/nginx/%{_name}_params
834fi
835
836%post pear
837/sbin/update-alternatives \
838  --install %{_bindir}/pear     pear    %{_bindir}/pear%{majorver} %{majorver} \
839  --slave   %{_bindir}/peardev  peardev %{_bindir}/peardev%{majorver} \
840  --slave   %{_bindir}/pecl     pecl    %{_bindir}/pecl%{majorver} \
841  --slave   %{_sysconfdir}/rpm/macros.pear macros.pear %{_datadir}/php%{majorver}/macros.pear
842
843
844# fix broken symlink if it's there
845if [ ! -f %{_bindir}/pear ] ; then
846    /sbin/update-alternatives --auto pear
847fi
848
849%triggerpostun pear -- php5-pear < 5.1.4-0vl1
850/sbin/update-alternatives --auto pear
851
852%preun pear
853if [ "$1" = 0 ]; then
854  /sbin/update-alternatives --remove pear %{_bindir}/pear%{majorver}
855fi
856
857%post devel
858/sbin/update-alternatives \
859  --install %{_bindir}/php-config php-devel   %{_bindir}/php-config%{majorver} %{majorver} \
860  --slave   %{_bindir}/phpize     phpize      %{_bindir}/phpize%{majorver} \
861  --slave   %{_mandir}/man1/php-config.1.gz php-config.1.gz %{_mandir}/man1/php-config%{majorver}.1.gz \
862  --slave   %{_mandir}/man1/phpize.1.gz phpize.1.gz %{_mandir}/man1/phpize%{majorver}.1.gz
863
864
865# fix broken symlink if it's there
866if [ ! -f %{_bindir}/php-config ] ; then
867    /sbin/update-alternatives --auto php-config
868fi
869
870%preun devel
871if [ "$1" = 0 ]; then
872  /sbin/update-alternatives --remove php-devel %{_bindir}/php-config%{majorver}
873fi
874
875%if %{with apache2}
876%post apache2
877%if %{?_dist_release} == "vl6"
878chown root:apache %{_localstatedir}/%{_name}/session 2>/dev/null || true
879
880MPM=`file /etc/alternatives/apache2 | sed -e 's/^.*apache2\.\([a-z]*\).*$/\1/'`
881if [ "$MPM" != "prefork" ]; then
882  cat <<EOF
883
884 Apache2 is configured to use $MPM MPM. But php%{majorver}-apache2 requires
885prefork MPM. Run the following command as root to switch MPM:
886
887    /sbin/update-alternatives --config apache2
888
889EOF
890fi
891
892%else
893
894MPM=`/usr/sbin/apache2ctl -V | grep "Server MPM:" | sed -e 's/^.*: *//'`
895if [ "$MPM" != "prefork" ]; then
896  cat <<EOF
897
898 Apache2 is configured to use $MPM MPM. But php%{majorver}-apache2 requires
899prefork MPM. Configure Apache2 to use prefork MPM or use PHP%{majorver}-FPM
900via FastCGI.
901
902EOF
903fi
904
905%endif
906%endif
907
908
909%clean
910[ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
911rm -f files.*
912
913#======================================================================
914%files
915%defattr(-,root,root)
916%license LICENSE
917%doc CODING_STANDARDS CREDITS EXTENSIONS INSTALL NEWS README*
918%doc Zend/ZEND_* TSRM_LICENSE
919%doc php.ini-{development,production}
920%doc php.gif
921%{_mandir}/man1/%{_name}.1*
922%{_mandir}/man1/php-cgi%{majorver}.1*
923%{_mandir}/man1/phar%{majorver}.1*
924%{_mandir}/man1/phpdbg%{majorver}.1*
925%config(noreplace) %{php_confdir}/php.ini
926%{_bindir}/%{_name}
927%{_bindir}/%{_name}-cgi
928%{_bindir}/phar%{majorver}.phar
929%{_bindir}/phpdbg%{majorver}
930%dir %{php_confdir}
931%dir %{php_confdir}/php.d
932%dir %{_libdir}/%{_name}
933%dir %{_libdir}/%{_name}/bin
934%dir %{_localstatedir}/%{_name}
935%attr(0770,root,%{www_group}) %dir %{_localstatedir}/%{_name}/session
936# gd extension (should be separated package?)
937%config(noreplace) %{php_confdir}/php.d/gd.ini
938%{_libdir}/%{_name}/gd.so
939
940%files devel
941%defattr(-,root,root)
942%{_mandir}/man1/php-config%{majorver}.1*
943%{_mandir}/man1/phpize%{majorver}.1*
944%{_bindir}/php-config%{majorver}
945%{_bindir}/phpize%{majorver}
946%{_includedir}/%{_name}
947%{_libdir}/%{_name}/build
948
949%if %{with_pear}
950%files pear
951%defattr(-,root,root)
952%config %{php_confdir}/pear.conf
953%config %{_datadir}/%{_name}/macros.pear
954%config %{_sysconfdir}/rpm/macros.pear%{majorver}
955%{_bindir}/pear%{majorver}
956%{_bindir}/peardev%{majorver}
957%{_bindir}/pecl%{majorver}
958%{pear_rootdir}
959%dir %{pear_cachedir}
960%endif
961
962%if %{with apache2}
963%files apache2
964%defattr(-,root,root)
965%doc %{_name}-apache2/README.vine
966%config %{apache2_confdir}/%{_name}.conf
967%{apache2_moduledir}/lib%{_name}.so
968%{apache2_cgidir}/%{_name}-cgi
969%{apache2_fcgidir}/%{_name}-fcgi
970%endif
971
972%files fpm
973%defattr(-,root,root)
974%{_sbindir}/%{_name}-fpm
975%{_initdir}/%{_name}-fpm
976%{_mandir}/man8/%{_name}-fpm.8*
977%dir %{php_confdir}/fpm.d
978%config(noreplace) %{php_confdir}/php-fpm.conf
979%config(noreplace) %{php_confdir}/fpm.d/*.conf
980%config(noreplace) %{_sysconfdir}/logrotate.d/%{_name}-fpm
981
982%files nginx
983%defattr(-,root,root)
984%config(noreplace) %{_sysconfdir}/nginx/%{_name}_params
985
986%files dba -f files.dba
987%files imap -f files.imap
988%files ldap -f files.ldap
989%files mysql -f files.mysql
990%files odbc -f files.odbc
991%files pdo -f files.pdo
992%files pgsql -f files.pgsql
993%files snmp -f files.snmp
994%files xmlrpc -f files.xmlrpc
995%files intl -f files.intl
996%files zip -f files.zip
997%files pcntl -f files.pcntl
998%files opcache -f files.opcache
999
1000#======================================================================
1001%changelog
1002* Thu Feb 20 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.4.3-1
1003- new upstream release.
1004
1005* Fri Jan 24 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.4.2-1
1006- new upstream release.
1007
1008* Thu Dec 19 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.4.1-1
1009- new upstream release.
1010
1011* Thu Nov 21 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.3.12-1
1012- new upstream release.
1013
1014* Thu Oct 24 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.3.11-1
1015- new upstream release.
1016
1017* Sun Oct 13 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.3.10-1
1018- new upstream release.
1019- built with icu65.
1020
1021* Fri Aug 30 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.3.9-1
1022- new upstream release.
1023
1024* Fri Aug 02 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.3.8-1
1025- new upstream release.
1026
1027* Fri May 31 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.3.6-1
1028- new upstream release.
1029
1030* Tue May 14 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.3.5-2
1031- rebuilt with gdbm-1.18.1.
1032
1033* Thu May 02 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.3.5-1
1034- new upstream release.
1035
1036* Fri Apr 05 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.3.4-1
1037- new upstream release.
1038
1039* Thu Feb 07 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.3.2-1
1040- new upstream release.
1041
1042* Fri Jan 25 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.3.1-1
1043- new upstream release.
1044
1045* Fri Dec 07 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.3.0-1
1046- new upstream release.
1047- changed %%name.
1048
1049* Thu Nov 08 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.2.11-2
1050- rebuilt with net-snmp-5.8.
1051
1052* Sun Nov 04 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.2.11-1
1053- new upstream release.
1054
1055* Fri Jul 20 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.2.8-1
1056- new upstream release.
1057
1058* Fri Mar 30 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.2.4-1
1059- new upstream release.
1060
1061* Fri Mar 02 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.2.3-1
1062- new upstream release.
1063
1064* Fri Feb 02 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.2.2-1
1065- new upstream release.
1066
1067* Mon Jan 08 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.2.1-2
1068- rebuilt with libicu-60.2.
1069
1070* Thu Jan 04 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.2.1-1
1071- new upstream release.
1072
1073* Mon Dec 18 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.2.0-1
1074- new upstream release.
1075- changed %%name.
1076- dropped mcrypt extension: dropped in upstream.
1077
1078* Sat Jul 15 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.1.7-1
1079- new upstream release.
1080
1081* Sun Mar 19 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.1.3-1
1082- new upstream release.
1083
1084* Thu Mar 16 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.1.2-1
1085- new upstream release.
1086- changed %%name.
1087
1088* Fri Jul 22 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.9-1
1089- new upstream release.
1090
1091* Fri Jun 24 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.8-1
1092- new upstream release.
1093
1094* Fri May 27 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.7-1
1095- new upstream release.
1096
1097* Fri Apr 29 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.6-1
1098- new upstream release.
1099
1100* Thu Mar 31 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.5-1
1101- new upstream release.
1102
1103* Fri Mar  4 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.4-1
1104- new upstream release.
1105
1106* Thu Feb  4 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.3-1
1107- new upstream release.
1108
1109* Fri Jan  8 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.2-1
1110- made API version hardcoded in specfile.
1111- new upstream release.
1112
1113* Fri Dec 18 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.1-1
1114- new upstream release.
1115
1116* Fri Dec  4 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.0-1
1117- updated to 7.0.0.
1118
1119* Fri Oct 30 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.0-0.rc6.1
1120- updated to 7.0.0RC6.
1121
1122* Fri Jul 24 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.0-0.beta2.1
1123- updated to 7.0.0beta2.
1124
1125* Sat Jul 11 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.0-0.beta1.1
1126- updated to 7.0.0beta1.
1127- removed stuff for vl5.
1128
1129* Wed Jul  1 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.0-0.alpha2.1
1130- new upstream release.
1131- made ready for alternatives.
1132
1133* Fri Jun 12 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.6.10-1
1134- new upstream release.
1135
1136* Fri May 15 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.6.9-1
1137- new upstream release.
1138
1139* Fri Apr 17 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.6.8-1
1140- new upstream release.
1141
1142* Fri Apr 10 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.6.7-1
1143- new upstream release.
1144- removed patch100 (no longer needed).
1145
1146* Sun Mar 22 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net>  5.5.23-1
1147- new upstream release.
1148- replaced readline with libedit.
1149
1150* Fri Feb 20 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.22-1
1151- new upstream release.
1152
1153* Fri Jan 23 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.21-1
1154- new upstream release.
1155
1156* Fri Dec 19 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.20-1
1157- new upstream release.
1158
1159* Wed Nov 19 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.19-2
1160- rebuilt with libicu-54.1.
1161
1162* Fri Nov 14 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.19-1
1163- new upstream release.
1164
1165* Thu Sep 18 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.17-1
1166- new upstream release.
1167
1168* Sun Aug 24 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.16-1
1169- new upstream release.
1170
1171* Fri Jun 27 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.14-1
1172- new upstream release.
1173
1174* Fri May 30 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.13-1
1175- new upstream release.
1176
1177* Thu May  1 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.12-1
1178- new upstream release.
1179
1180* Fri Apr  4 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.11-1
1181- new upstream release.
1182
1183* Thu Mar  6 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.10-1
1184- new upstream release.
1185
1186* Tue Feb 11 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.9-1
1187- new upstream release.
1188
1189* Sat Jan 11 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.8-1
1190- new upstream release.
1191- added a sub-package 'php5-zip'.
1192
1193* Tue Dec 31 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.7-2
1194- rebuilt with icu-52.1.
1195
1196* Fri Dec 13 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.7-1
1197- new upstream release.
1198
1199* Thu Nov 14 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.6-1
1200- new upstream release.
1201
1202* Mon Oct 28 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.5-2
1203- added Patch100.
1204
1205* Thu Oct 17 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.5-1
1206- new upstream release.
1207
1208* Mon Oct 07 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.4-2
1209- built for VinePlus/6.
1210
1211* Wed Oct 02 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.4-1
1212- new upstream release.
1213- removed %%patch51 (commited to upstream).
1214
1215* Sun Jun 23 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.0-1
1216- new upstream release.
1217- removed a sub-package "sqlite".
1218- fixed invalid date in %%changelog.
1219
1220* Tue Feb 19 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 5.3.21-1
1221- new upstream release
1222- add configure options to fix broken fonts in some
1223  applications (e.g.: zabbix)
1224  (--with-gd=shared,/usr --enable-gd-native-ttf --with-iconv)
1225- add gd.so and gd.ini to %%files
1226
1227* Fri Dec 21 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.20-1
1228- new upstream release.
1229
1230* Sun Nov 25 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.19-1
1231- new upstream release.
1232
1233* Fri Oct 19 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.18-1
1234- new upstream release.
1235- dropped %%Patch2000 (fixed in upstream).
1236
1237* Fri Sep 14 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.17-1
1238- new upstream release.
1239
1240* Fri Aug 17 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.16-1
1241- new upstream release.
1242
1243* Sat Jul 21 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.15-2
1244- owner of /var/www/session was changed to "www-data".
1245
1246* Fri Jul 20 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.15-1
1247- new upstream release.
1248
1249* Fri Jun 15 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.14-1
1250- new upstream release.
1251
1252* Wed May 09 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.13-1
1253- new upstream release.
1254
1255* Fri May 04 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.12-1
1256- new upstream release.
1257- fixed initscript.
1258
1259* Sat Apr 28 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.11-2
1260- added API versions to 'Provides'.
1261
1262* Thu Apr 26 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.11-1
1263- new upstream release.
1264
1265* Thu Apr 26 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.10-6
1266- added a sub-package "php-pcntl".
1267- added a sub-package "php-nginx".
1268
1269* Tue Mar 13 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 5.3.10-5
1270- fix Source13
1271
1272* Sun Mar 11 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 5.3.10-4
1273- add /etc/rpm/macros.pear (Source13) from Fedora
1274
1275* Wed Mar 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 5.3.10-3
1276- rebuild with net-snmp-5.7.1
1277- update Source21 (php.ini-vine)
1278
1279* Fri Feb 03 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.10-2
1280- fixed %%preun scripts.
1281
1282* Fri Feb 03 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.10-1
1283- new upstream release.
1284- reverted revision #319823 (bug#60723).
1285
1286* Thu Jan 12 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.9-1
1287- new upstream release.
1288
1289* Sat Oct 29 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.8-1
1290- new upstream release.
1291- added a subpackage "php5-fpm".
1292
1293* Tue Aug 23 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.7-2
1294- fixed bug#55439.
1295
1296* Thu Aug 18 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.7-1
1297- new upstream release.
1298
1299* Mon Jun 13 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 5.3.6-4
1300- rebuild with unixODBC-2.2.14-2
1301
1302* Tue Apr 12 2011 Shu KONNO <owa@bg.wakwak.com> 5.3.6-3
1303- rebuilt with postgresql-9.0.3
1304
1305* Sat Apr  9 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.3.6-2
1306- new upstream release
1307- dropt apache subpackage on VineSeed (apache1 will be orphaned on Vine 6)
1308
1309* Mon Mar 28 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.6-1
1310- new upstream release.
1311- added tags "Vendor:", "Distribution:" and "Packager:".
1312
1313* Mon Jan 10 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.5-1
1314- new upstream release.
1315
1316* Fri Dec 10 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.4-1
1317- new upstream release.
1318- added a sub-package "php5-intl".
1319
1320* Sun Sep  5 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.3.3-1
1321- new upstream release
1322
1323* Fri Nov 20 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.1-1
1324- new upstream release.
1325
1326* Tue Sep  1 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 5.3.0-2
1327- fix incorrect path in {pear,peardev,pecl}5 ([vine-users:079537])
1328
1329* Thu Jul  2 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.3.0-1
1330- new upstream release.
1331- updated patch51.
1332- removed /usr/bin/php5-fcgi.
1333
1334* Sat Jun 20 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.2.10-1
1335- new upstream release.
1336- updated patch51.
1337
1338* Tue Jun 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 5.2.9-6
1339- update php.ini
1340  - use UTF-8 for default charset and internal_encoding
1341
1342* Thu May 21 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.2.9-5
1343- rebuilt with MySQL-shared-5.1.34.
1344
1345* Sat May 16 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.2.9-4
1346- rebuilt with libc-client-2007e
1347- added --with-kerberos option (VineSeed)
1348
1349* Fri Apr 03 2009 NAKAMURA Kenta <kenta@vinelinux.org> 5.2.9-3
1350- rebuilt with openldap-2.4.11
1351
1352* Fri Mar 27 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.2.9-2
1353- rebuilt with net-snmp-5.4.2.1-3 (VineSeed x86_64).
1354
1355* Thu Mar 19 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.2.9-1
1356- new upstream release.
1357- wrote specfile in UTF-8.
1358
1359* Tue May  6 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.2.6-2
1360- move php5-{cgi,fcgi} to %%{_bindir}.
1361
1362* Tue May  6 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.2.6-1
1363- new upstream release.
1364- update %%Patch51.
1365
1366* Sat Apr 26 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.2.5-1
1367- add FastCGI support.
1368
1369* Tue Jan 08 2008 Shu KONNO <owa@bg.wakwak.com> 5.2.5-0vl5
1370- rebuilt with postgresql-8.2.6
1371
1372* Sun Jan 06 2008 Shu KONNO <owa@bg.wakwak.com> 5.2.5-0vl4
1373- rebuilt with net-snmp-5.4.1
1374
1375* Thu Dec 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.2.5-0vl3
1376- for VineSeed: rebuilt with MySQL-5.0.27-0vl7
1377
1378* Thu Dec 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.2.5-0vl2
1379- rebuilt with MySQL-5.0.27-0vl6
1380
1381* Fri Nov 23 2007 Atsushi SHICHI <ats777@gmail.com> 5.2.5-0vl1
1382- new upstream release.
1383
1384* Thu Sep 20 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.2.4-0vl3
1385- rebuilt with postgresql-devel 8.2.5
1386
1387* Sat Sep 15 2007 NAKAMURA Kenta <kenta@vinelinux.org> 5.2.4-0vl2
1388- replaced BuildRequires: libstdc++3-devel with libstdc++34-devel
1389
1390* Sun Sep  9 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.2.4-0vl1
1391- rebuilt for VineSeed
1392
1393* Tue Sep  4 2007 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.2.4-0vl0.40
1394- new upstream release.
1395- update Patch33.
1396
1397* Thu Jun  7 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.2.3-0vl2
1398- rebuilt for VineSeed
1399
1400* Tue Jun 05 2007 Atsushi SHICHI <ats777@gmail.com> 5.2.3-0vl1
1401- new upstream release.
1402- fix install script.
1403
1404* Sun May 27 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.2.2-0vl5
1405- rebuilt with new toolchain (for VineSeed)
1406
1407* Wed May 16 2007 Atsushi SHICHI <ats777@gmail.com> 5.2.2-0vl4
1408- remove "Provides: php-devel" from devel subpackage
1409
1410* Mon May 14 2007 Atsushi SHICHI <ats777@gmail.com> 5.2.2-0vl3
1411- fix Source24(php5.conf-apache2)
1412
1413* Fri May 11 2007 Atsushi SHICHI <ats777@gmail.com> 5.2.2-0vl2
1414- add Provides tag to subpackages.
1415
1416* Tue May 08 2007 Atsushi SHICHI <ats777@gmail.com> 5.2.2-0vl1
1417- new upstream release.
1418- add 'Provides: php = %%{version}-%%{release}' to main package.
1419
1420* Sun Mar 25 2007 NAKAMURA Kenta <kenta@vinelinux.org> 5.2.1-0vl3
1421- added --with-libdir=%%{_lib} configure option
1422
1423* Mon Feb 26 2007 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.2.1-0vl2
1424- built for VineSeed.
1425
1426* Fri Feb 16 2007 Atsushi SHICHI <ats777@gmail.com> 5.2.1-0vl1
1427- new upstream release.
1428- remove unnecessary 'Obsoletes: php-domxml, php-manual'
1429
1430* Sat Dec 02 2006 Atsushi SHICHI <ats777@gmail.com> 5.2.0-0vl4
1431- change session.save_path to /var/php5/session in php.ini-vine <BTS:412>
1432- unset http_proxy in %%install
1433
1434* Tue Nov  7 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.2.0-0vl3
1435- new upstream release.
1436
1437* Sun Oct 29 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.1.6-0vl6
1438- build with MySQL-5.0.27.
1439
1440* Fri Oct 27 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.1.6-0vl5
1441- build with MySQL-5.0.26.
1442- add mysqli module.
1443- modify %%BuildRequires 'imap-devel' to 'uw-imap-devel'.
1444
1445* Sun Oct 22 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.1.6-0vl4
1446- fixed %triggerpostun section
1447- added update-alternatives for checking symlink to %post section
1448
1449* Sat Oct 21 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.1.6-0vl3
1450- rebuilt for Vine Linux 4.0 <BTS:289>
1451- added Patch1000 for building with uw-imap-2006b
1452
1453* Mon Sep 11 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.6-0vl2
1454- rebuild for VinePlus/4.0
1455- change 'BuildRequires: fileutils' to coreutils
1456- add 'BuildRequires: libtool-ltdl-devel' to main package
1457
1458* Fri Aug 25 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.6-0vl1
1459- new upstream release
1460
1461* Wed Aug 23 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.5-0vl1
1462- new upstream release
1463- fix bug [vine-users:074749]
1464-- move php.gif from apache{,2} subpackage to main package
1465- fix bug [VineLinux:0070], [VineLinux:0106]
1466-- add 'Conflicts: php-devel' to devel subpackage
1467-- remove suffix from {php-config,phpize,phpextdist}
1468-- add alternatives support for {peardev5,pecl5}
1469
1470* Mon Jun 19 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.4-0vl1.4
1471- add 'Requires: %%{name}-pdo' to sqlite subpackage [vine-php:137]
1472
1473* Sun Jun 18 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.4-0vl1.3
1474- enable sqlite extension and add sqlite subpackage [vine-users:074695]
1475
1476* Tue May 30 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.4-0vl1.2
1477- update Source0
1478- change Requires: to PreReq: in apache{,2} subpackages [vine-php:113]
1479- fix %%post apache{,2} script
1480
1481* Tue May 16 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.4-0vl1.1
1482- fix /etc/httpd/conf.d/php5.conf [VinePlus:02967]
1483
1484* Sat May 13 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.4-0vl1
1485- new upstream release
1486- revive apache{,2} subpackage
1487- add 'Source24: php.conf-apache2'
1488- remove php-dbg, mod_php, phpfi, stronghold-php from Obsoletes
1489- fix Requires of main package and dba subpackage
1490- remove 'Conflicts: php-apache' from apache subpackage
1491- remove 'Conflicts: php-apache2' from apache2 subpackage
1492- add %%post apache{,2} script to chown session directory to root:apache
1493- modify %%files section
1494
1495* Sun Apr 30 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.3-0vl0.3
1496- update to 5.1.3RC3
1497- fix %%post script and add %%triggerpostun script
1498
1499* Sat Apr 08 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.3-0vl0.2.3
1500- drop 'Source10: pear.sh'
1501- fix 'Source20: README.vine', 'Source21: php.ini-vine', 'Source23: php.conf'
1502- add alternatives support
1503-- add 'PreReq: alternatives' to main package and pear subpackage
1504-- add 'Conflicts: php < 4.4.2-0vl1.1' to main package
1505-- add 'Conflicts: php-pear < 4.4.2-0vl1.1' to pear subpackage
1506-- add %%post, %%preun scripts
1507
1508* Wed Apr 05 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.3-0vl0.2.2
1509- fix 'Source10: pear.sh'
1510- add --sysconfdir=%%{php_confdir} to configure
1511
1512* Tue Apr 04 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.3-0vl0.2.1
1513- add 'Source10: pear.sh' to replace /usr/bin/{pear,peardev,pecl}
1514- add 'Patch33: php-5.1.3RC2-phpincludedir.patch'
1515- remove 'Conflicts: php, php-*'
1516- add 'export PHP_PEAR_SYSCONF_DIR, PHP_PEAR_CACHE_DIR, PHP_PEAR_PHP_BIN'
1517  to %%Install section
1518  -- move pear.conf to %%{_sysconfdir}/%%{_name}
1519  -- add '%%dir %%{pear_cachedir}' to '%%files pear'
1520  -- fix php_bin in pear.conf
1521- rename phpextdist to phpextdist5
1522
1523* Fri Mar 31 2006 Atsushi SHICHI <ats777@gmail.com> 5.1.3-0vl0.2
1524- update to 5.1.3RC2
1525
1526* Mon Mar 20 2006 Atsushi SHICHI <ats7@a.email.ne.jp> 5.1.3-0vl0.1
1527- new upstream release
1528- add Source23: php5.conf
1529- drop Patch21: php-4.3.1-odbc.patch
1530- drop Patch30: php-4.3.6-dlopen.patch
1531- drop Patch32: php-4.3.11-mbfilter.patch
1532- apply strict session patch, thanks to Yasuo Ohgaki
1533  -- add Patch51: php-5.1.2-session_strict_mode.patch
1534  -- add session.use_strict_mode = 1 to php.ini-vine
1535- add BuildRequires: autoconf, automake, bison, flex, gcc-c++,
1536  readline-devel, sqlite3-devel
1537- drop BuildRequires: automake15, expat-devel, unixODBC-devel
1538- build with Apache2. Apache1.3 is still able to used by rebuilding
1539  with --with apache1
1540  -- add Requires: apache2
1541  -- merge apache{,2} subpackage into main package
1542  -- add Obsoletes: php5-apache, php5-apache2
1543- add Requires: autoconf, automake to devel subpackage
1544- add dba, pdo subpackage
1545- add Requires: php5-pdo to {mysql,odbc,pgsql} subpackage
1546- drop BuildRequires: expat-devel from xmlrpc subpackage
1547- add --program-suffix=5 to configure
1548- add missing files to %%files
1549
1550* Thu Jan 12 2006 Atsushi SHICHI <ats7@a.email.ne.jp> 5.1.2-0vl1
1551- new upstream release
1552- remove workaround for install-pear-nozlib.phar bug (PHP Bug #35780, PEAR Bug #6154)
1553  -- remove Source2: relocate.php
1554  -- remove Source10: pear.sh
1555  -- remove Source11: pecl.sh
1556  -- remove Source12: peardev.sh
1557- remove old XSLT extension stuff
1558  -- remove BuildRequires: libsablotron0-devel
1559  -- remove --enable-xslt, --with-xslt-sablot configure option
1560
1561* Wed Dec 07 2005 Atsushi SHICHI <ats7@a.email.ne.jp> 5.1.1-0vl2
1562- add %%{with_test}
1563- drop Patch5: php-4.3.3-install.patch
1564- drop Patch6: php-5.1.0-tests.patch
1565- drop Patch7: php-5.1.0-libtool15.patch
1566- drop Patch8: php-5.0.0RC3-miscfix.patch
1567- drop Patch10: php-5.1.0-sqlite_m4.patch
1568- change BuildPrereq tag to BuildRequires tag
1569- add BuildRequires: rpm-devel, popt, bzip2-devel, zlib-devel, glibc-devel
1570  to snmp subpackage
1571- comment out CFLAGS, LIBS, IMAP_SHARED_LIBADD environment variable settings
1572- remove support for FreeType 1.x
1573  -- remove BuildRequires: freetype, freetype-devel from main package
1574  -- remove --enable-gd-native-ttf, --with-ttf configure option
1575- drop --enable-ucd-snmp-hack configure option
1576- add workaround for install-pear-nozlib.phar bug
1577  -- add Source2: relocate.php
1578  -- add Source10: pear.sh
1579  -- add Source11: pecl.sh
1580  -- add Source12: peardev.sh
1581  -- remove include_path entry from vine.ini
1582- include phpextdist in devel subpackage again
1583- move pear.conf from main package to pear subpackage
1584- include pecl, peardev in pear subpackage
1585- move php.gif from main package to apache/apache2 subpackage
1586  -- fix %%{contentdir}
1587- fix typo in %%changelog
1588
1589* Tue Dec 06 2005 HOTTA Michihide <hotta@net-newbie.com> 5.1.1-0vl1
1590- new upstream release
1591- drop Patch #4 (php-4.2.2-cxx.patch)
1592- change Patch #6 (php-4.3.1-tests.patch) to php-5.1.0-tests.patch
1593- change Patch #7 (php-4.3.2-libtool15.patch) to php-5.1.0-libtool15.patch
1594- change Patch #10 (php-5.0.5-sqlite_m4.patch) to php-5.1.0-sqlite_m4.patch
1595- drop Patch #101 (php-5.0.5-mbfilter.patch)
1596- append include_path entry to vine.ini
1597
1598* Sat Oct 15 2005 HOTTA Michihide <hotta@net-newbie.com> 5.0.5-0vl5
1599- rebuild for VineSeedPlus
1600
1601* Thu Oct 06 2005 Atsushi SHICHI <ats7@a.email.ne.jp> 5.0.5-0vl4
1602- modify Source21: vine.ini
1603
1604* Thu Oct 06 2005 HOTTA Michihide <hotta@net-newbie.com> 5.0.5-0vl3
1605- drop Patch3: php-5.0.5-lib64.patch
1606- drop Patch11: php-5.0.5-phpize_in.patch [VinePlus:02737]
1607- add --libdir=%%{_libdir}/php option to configure [VinePlus:02737]
1608
1609* Tue Oct 04 2005 HOTTA Michihide <hotta@net-newbie.com> 5.0.5-0vl2
1610- add mbfilter.c.patch
1611
1612* Sun Sep 18 2005 Atsushi SHICHI <ats7@a.email.ne.jp> 5.0.5-0vl1
1613- upstream release
1614- add Source21: vine.ini (additional settings to php.ini-recommened)
1615- add Source22: ltmain.sh.vine
1616- drop Patch2: php-5.0.3-config.patch
1617- fix Patch3: php-5.0.5-lib64.patch
1618- drop Patch9: php-5.0.0RC3-oniguruma.patch
1619- fix Patch10: php-5.0.5-sqlite_m4.patch
1620- add Patch11: php-5.0.5-phpize_in.patch
1621- drop Patch246: php-4.3.6-fixattr.patch
1622- add %%define __libtoolize true
1623- drop %%{_bindir}phpextdist
1624
1625* Fri Jun 17 2005 IKEDA Katsumi <ikeda@webmasters.gr.jp> 5.0.3-0vl3.2
1626- added a security patch for CAN-2005-0524 and CAN-2005-0525 from SuSE.
1627
1628* Mon May 16 2005 HOTTA Michihide <hotta@net-newbie.com> 5.0.3-0vl3.1
1629- for VinePlus/3.0
1630- add README.vine again
1631- add php-4.3.11-mbfilter.patch for workaround against degrade at 5.0.3
1632- remove veserion specification on BuildPrereq: curl-devel
1633
1634* Fri Feb 25 2005 HOTTA Michihide <hotta@net-newbie.com> 5.0.3-0vl3
1635- drop BuildPrereq: apache2-apr-devel
1636- drop php-4.2.1-ldap-TSRM.patch
1637
1638* Sat Dec 25 2004 HOTTA Michihide <hotta@net-newbie.com> 5.0.3-0vl1
1639- upstream release
1640- drop php-4.3.2-db4.patch
1641- add BuildPrereq: apache2-apr-devel
1642
1643* Mon Oct 18 2004 HOTTA Michihide <hotta@net-newbie.com> 5.0.2-0vl1
1644- upstream release
1645- regenerate php5-imap
1646
1647* Fri Aug 13 2004 HOTTA Michihide <hotta@net-newbie.com> 5.0.1-0vl1
1648- upstream release
1649
1650* Tue Aug 03 2004 HOTTA Michihide <hotta@net-newbie.com> 5.0.0-0vl1
1651- upstream release : many thanks to YOSHIMURA Keitaro <ramsy AT ramix DOT jp>
1652- remove php4_{namazu,kakasi,chasen} (not supported)
1653- drop some patches for 4.3.x
1654- Build fix for oniguruma(re_registers dups)
1655- remove domxml (updated to libxml2)
1656- add Conflicts: php, php-*
1657- add php-5.0.0-authuser.patch (BUG#29129)
1658
1659* Thu Jul 15 2004 HOTTA Michihide <hotta@net-newbie.com> 4.3.8-0vl1
1660- upstream release
1661- add BuildPrereq: freetype
1662
1663* Sun Jul 11 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 4.3.7-0vl5
1664- remove explicit buildprereq to build-essential
1665- build apache2 module
1666  split apache1/2 module to php-apache/php-apache2
1667  thanks to jax <jax AT morejams DOT no-ip DOT com>
1668- add Obsoletes: php < %%{version}-%%{release} in php-apache sub-package
1669  for upgrade.
1670
1671* Wed Jul 07 2004 HOTTA Michihide <hotta@net-newbie.com> 4.3.7-0vl4
1672- add Obsoletes: php-imap, php-manual
1673
1674* Sat Jun 26 2004 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 4.3.7-0vl3
1675- enable mcrypt module.
1676
1677* Mon Jun 07 2004 HOTTA Michihide <hotta@net-newbie.com> 4.3.7-0vl2
1678- fix bug #28385 <http://bugs.php.net/bug.php?id=28385>
1679
1680* Fri Jun 04 2004 HOTTA Michihide <hotta@net-newbie.com> 4.3.7-0vl1
1681- upstream release
1682
1683* Wed May 12 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.3.6-0vl2
1684- rebuild with namazu-2.0.13
1685
1686* Fri Apr 30 2004 HOTTA Michihide <hotta@net-newbie.com> 4.3.6-0vl1
1687- upstream release
1688
1689* Mon Mar 15 2004 Tomoya TAKA <taka@vinelinux.org> 4.3.4-0vl2
1690- fix location of session save path, %%{_localstatedir} is defined as
1691  /var/lib in Vine's rpm
1692
1693* Sat Feb 21 2004 HOTTA Michihide <hotta@net-newbie.com> 4.3.4-0vl1
1694- upstream release
1695- sync to fedora(php-4.3.4-7)
1696- drop BuildRequires : aspell
1697- add workaround for inconsistent dependency of php-devel
1698- drop --enable-versioning to prevent ext modules loading error
1699
1700* Thu Feb 05 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.3.2-0vl4
1701- rebuild with new toolchains (and resolved dependancy about libxslt)
1702- added patch7 to build with libtool-1.5
1703- added patch100 to build newest freetype2 library
1704- force to use automake-1.5
1705- added BuildPrereq: curl-devel, automake15
1706- fixed BuildRequires of php-snmp: net-snmp-devel
1707
1708* Tue Jul 08 2003 HOTTA Michihide <hotta@net-newbie.com> 4.3.2-0vl3
1709- add README.vine
1710
1711* Tue Jul 08 2003 HOTTA Michihide <hotta@net-newbie.com> 4.3.2-0vl2
1712- install sapi/cgi/php as php-cgi, sapi/cli/php as php
1713
1714* Tue Jul 08 2003 HOTTA Michihide <hotta@net-newbie.com> 4.3.2-0vl1
1715- upstream release (sync to rawhide)
1716- add printf patch, PEAR_Registry patch etc.
1717- drop package php-manual
1718
1719* Fri Jan 24 2003 HOTTA Michihide <hotta@net-newbie.com> 4.2.3-0vl3
1720- add zend_highlight.c-patch
1721- add -DHAVE_PQESCAPE to build_ext pgsql
1722
1723* Wed Jan 22 2003 MACHINO Satoshi <machino@vinelinux.org> 4.2.3-0vl2
1724- rebuild against gmp-4.1 and sablotron-0.97
1725
1726* Mon Sep 9 2002 HOTTA Michihide <hotta@net-newbie.com> 4.2.3-0vl1
1727- for VineSeedPlus
1728  -- Updated to 4.2.3
1729  -- added php-4.2.3-mbstr-20020908-2.patch
1730
1731* Sun Aug 18 2002 Rui HIROKAWA <hirokawa@php.gr.jp> 4.2.2-0vl3
1732- applied php-4.2.2-mb_output_handler.patch to enable output encoding
1733for text/hdml.     
1734- applied php-4.2.2-mb-decode.patch to fix decode problem of GET parameters.
1735- Patch to fix a problem where, given multiple cookies to set, only the last one would be made (#67853)
1736
1737* Wed Jul 24 2002 HOTTA Michihide <hotta@net-newbie.com> 4.2.2-0vl2
1738- for VineSeedPlus
1739  -- applied php-4.2.2-multibyte.patch.gz which obsolets 4.2.1's
1740  -- dropped --enable-trans-sid configure option which is no longer meaningful
1741
1742* Tue Jul 23 2002 HOTTA Michihide <hotta@net-newbie.com> 4.2.2-0vl1
1743- for VineSeedPlus
1744  -- Updated to 4.2.2
1745  -- dropped domxml.patch (merged into original)
1746
1747* Fri Jul 05 2002 HOTTA Michihide <hotta@net-newbie.com> 4.2.1-0vl8
1748- for VineSeedPlus
1749  -- added i18n patch by Fujimoto
1750  -- dropped php4_mbregex extention (merged into original)
1751
1752* Tue Jun 04 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.1-0vl7
1753- added gmp support
1754- for VineSeedPlus
1755
1756* Tue Jun 04 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.1-0vl6
1757- for VineSeedPlus
1758        -- added xslt support
1759       
1760* Tue Jun 04 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.1-0vl5
1761- added expat-devel in BuildPreReq
1762
1763* Tue Jun 04 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.1-0vl4
1764- added mail functions
1765- added postfix in BuildPreReq
1766- updated manual_en(03-Jun-2002)
1767- updated manual_ja(29-May-2002)
1768- for VinePlus
1769        -- dropped xslt support
1770
1771* Thu May 16 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.1-0vl3
1772- for VineSeed Plus
1773- added xslt support
1774        -- added enable-xslt, with-xslt-sablot, with-dom-xslt
1775        -- added BuildPrereq: libxslt-devel, libsablotron0-devel
1776
1777* Thu May 16 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.1-0vl2
1778- for VinePlus 2.5
1779- added php.in-dist.patch
1780
1781* Wed May 15 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.1-0vl1
1782- updated php-4.2.1
1783- updated php_manual_en
1784- dropped reg.patch
1785- modified configured option
1786  -- added --with-dom, --with-bz2, --with-png-dir, --with-expat-dir
1787
1788* Thu May 09 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.0-99vl1
1789- updated php-4.2.1RC1
1790- fixed ereg_replace patch (4.2.1-reg.patch)
1791
1792* Thu May 09 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.0-0vl2
1793- added ereg_replace patch (4.2.0-reg.patch)
1794- updated manual(en, ja)
1795
1796* Tue Apr 30 2002 Satoshi MACHINO <machino@vinelinux.org> 4.2.0-0vl1
1797- updated php-4.2.0
1798
1799* Fri Mar 01 2002 Satoshi MACHINO <machino@vinelinux.org> 4.1.2-0vl1
1800- updated php-4.1.2
1801- updated php4_mbregex-1.3.1
1802- updated php4_namazu-2.1.0
1803- updated php4_kakasi-0.3.0
1804- REMOVED php4_iconv
1805- fixed patch
1806        -- added domxml.patch
1807        -- dropped old patches
1808
1809* Mon Dec  3 2001 Jun Nishii <jun@vinelinux.org>
1810- 4.0.6-5vl3
1811- added --enable-mbstr-enc-trans
1812
1813* Wed Aug 22 2001 Hisao SHIBUYA <shibuya@alpha.or.jp>
1814- 4.0.6-5vl2
1815- fix contentdir
1816
1817* Tue Aug 21 2001 Hisao SHIBUYA <shibuya@alpha.or.jp>
1818- 4.0.6-5vl1
1819- add configure options for Vine
1820- add ldap, mysql and odbc modules.
1821
1822* Fri Aug 10 2001 Tim Powers <timp@redhat.com>
1823- only english in php-manuals, space constraints :P
1824
1825* Thu Aug  9 2001 Nalin Dahyabhai <nalin@redhat.com>
1826- include %{_libdir}/%{name}/build instead of %{_libdir}/%{name}4/build (#51141)
1827
1828* Mon Aug  6 2001 Nalin Dahyabhai <nalin@redhat.com>
1829- add build deps on pam-devel, pspell-devel, gdbm-devel (#49878)
1830- add some conditional logic if %%{oracle} is defined (from Antony Nguyen)
1831
1832* Mon Jul  9 2001 Nalin Dahyabhai <nalin@redhat.com>
1833- don't obsolete subpackages we ended up not merging
1834
1835* Mon Jul  2 2001 Nalin Dahyabhai <nalin@redhat.com>
1836- cleanups
1837- add manuals in multiple languages (using ko instead of kr for Korean)
1838- merge all of the manuals into a single -manual subpackage
1839- use libtool to install binary files which libtool builds
1840- don't strip any binaries; let the buildroot policies take care of it
1841
1842* Thu Jun 28 2001 Nalin Dahyabhai <nalin@redhat.com>
1843- update to 4.0.6 (preliminary)
1844
1845* Mon Jun 25 2001 Nalin Dahyabhai <nalin@redhat.com>
1846- enable ttf in the build because the gd support needs it
1847- add -lfreetype to the LIBS for the same reason
1848
1849* Wed Jun  6 2001 Nalin Dahyabhai <nalin@redhat.com>
1850- rebuild in new environment
1851
1852* Wed May 16 2001 Nalin Dahyabhai <nalin@redhat.com>
1853- actually use two source trees to build things
1854- add %%post and %%postun scriptlets to run ldconfig
1855
1856* Tue May 15 2001 Nalin Dahyabhai <nalin@redhat.com>
1857- quote part of the AC_ADD_LIBRARY macro to make newer autoconf happy
1858
1859* Mon May 14 2001 Nalin Dahyabhai <nalin@redhat.com>
1860- fix error in %%install
1861- depend on the imap-devel which supplies linkage.c
1862- modify trigger to disable php versions less than 4.0.0 instead of 3.0.15
1863- enable DOM support via libxml2 (suggested by Sylvain Berg
1864- build the OpenSSL extension again
1865
1866* Mon May  7 2001 Nalin Dahyabhai <nalin@redhat.com>
1867- enable pspell extensions
1868- update to 4.0.5
1869
1870* Mon Apr 30 2001 Nalin Dahyabhai <nalin@redhat.com>
1871- build the ODBC extension
1872
1873* Mon Apr 30 2001 Bill Nottingham <notting@redhat.com>
1874- build on ia64
1875
1876* Fri Mar  2 2001 Nalin Dahyabhai <nalin@redhat.com>
1877- rebuild in new environment
1878
1879* Fri Feb 23 2001 Nalin Dahyabhai <nalin@redhat.com>
1880- obsolete the old phpfi (PHP 2.x) package
1881
1882* Thu Feb  8 2001 Nalin Dahyabhai <nalin@redhat.com>
1883- add a commented-out curl extension to the config file (part of #24933)
1884- fix the PEAR-installation-directory-not-being-eval'ed problem (#24938)
1885- find the right starting point for multipart form data (#24933)
1886
1887* Tue Jan 30 2001 Nalin Dahyabhai <nalin@redhat.com>
1888- aaarrgh, the fix breaks something else, aaarrgh; revert it (#24933)
1889- terminate variable names at the right place (#24933)
1890
1891* Sat Jan 20 2001 Nalin Dahyabhai <nalin@redhat.com>
1892- tweak the fix some more
1893
1894* Thu Jan 18 2001 Nalin Dahyabhai <nalin@redhat.com>
1895- extract stas's fix for quoting problems from CVS for testing
1896- tweak the fix, ask the PHP folks about the tweak
1897- tweak the fix some more
1898
1899* Wed Jan 17 2001 Nalin Dahyabhai <nalin@redhat.com>
1900- merge mod_php into the main php package (#22906)
1901
1902* Fri Dec 29 2000 Nalin Dahyabhai <nalin@redhat.com>
1903- try to fix a quoting problem
1904
1905* Wed Dec 20 2000 Nalin Dahyabhai <nalin@redhat.com>
1906- update to 4.0.4 to get a raft of bug fixes
1907- enable sockets
1908- enable wddx
1909
1910* Fri Nov  3 2000 Nalin Dahyabhai <nalin@redhat.com>
1911- rebuild in updated environment
1912
1913* Thu Nov  2 2000 Nalin Dahyabhai <nalin@redhat.com>
1914- add more commented-out modules to the default config file (#19276)
1915
1916* Wed Nov  1 2000 Nalin Dahyabhai <nalin@redhat.com>
1917- fix not-using-gd problem (#20137)
1918
1919* Tue Oct 17 2000 Nalin Dahyabhai <nalin@redhat.com>
1920- update to 4.0.3pl1 to get some bug fixes
1921
1922* Sat Oct 14 2000 Nalin Dahyabhai <nalin@redhat.com>
1923- build for errata
1924
1925* Wed Oct 11 2000 Nalin Dahyabhai <nalin@redhat.com>
1926- update to 4.0.3 to get security fixes integrated
1927- patch around problems configuring without Oracle support
1928- add TSRM to include path when building individual modules
1929
1930* Fri Sep  8 2000 Nalin Dahyabhai <nalin@redhat.com>
1931- rebuild in new environment
1932- enable OpenSSL support
1933
1934* Wed Sep  6 2000 Nalin Dahyabhai <nalin@redhat.com>
1935- update to 4.0.2, and move the peardir settings to configure (#17171)
1936- require %%{version}-%%{release} for subpackages
1937- add db2-devel and db3-devel prereqs (#17168)
1938
1939* Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
1940- rebuild in new environment (new imap-devel)
1941
1942* Wed Aug 16 2000 Nalin Dahyabhai <nalin@redhat.com>
1943- fix summary and descriptions to match the specspo package
1944
1945* Wed Aug  9 2000 Nalin Dahyabhai <nalin@redhat.com>
1946- hard-code the path to apxs in build_ext() (#15799)
1947
1948* Tue Aug  1 2000 Nalin Dahyabhai <nalin@redhat.com>
1949- add "." to the include path again, which is the default
1950
1951* Wed Jul 19 2000 Nalin Dahyabhai <nalin@redhat.com>
1952- enable PEAR and add it to the include path
1953- add the beginnings of a -devel subpackage
1954
1955* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
1956- automatic rebuild
1957
1958* Fri Jul  7 2000 Nalin Dahyabhai <nalin@redhat.com>
1959- tweaks to post and postun from Bill Peck
1960
1961* Thu Jul  6 2000 Nalin Dahyabhai <nalin@redhat.com>
1962- fixes from Nils for building the MySQL client
1963- change back to requiring %{version} instead of %{version}-%{release}
1964
1965* Sat Jul  1 2000 Nalin Dahyabhai <nalin@redhat.com>
1966- update to 4.0.1pl2
1967- enable MySQL client
1968- move the php.ini file to %{_sysconfdir}
1969
1970* Fri Jun 30 2000 Nils Philippsen <nils@redhat.de>
1971- build_ext defines HAVE_PGSQL so pgsql.so in fact contains symbols
1972- post/un scripts tweak php.ini correctly now
1973
1974* Wed Jun 28 2000 Nalin Dahyabhai <nalin@redhat.com>
1975- update to 4.0.1
1976- refresh manual
1977
1978* Mon Jun 26 2000 Nalin Dahyabhai <nalin@redhat.com>
1979- rebuild against new krb5 package
1980
1981* Mon Jun 19 2000 Nalin Dahyabhai <nalin@redhat.com>
1982- rebuild against new db3 package
1983
1984* Sat Jun 17 2000 Nalin Dahyabhai <nalin@redhat.com>
1985- Fix syntax error in post and preun scripts.
1986- Disable IMAP, LDAP, PgSql in the standalone version because it picks up
1987  the extensions.
1988
1989* Fri Jun 16 2000 Nalin Dahyabhai <nalin@redhat.com>
1990- Unexclude the Sparc arch.
1991- Exclude the ia64 arch until we get a working Postgres build.
1992- Stop stripping extensions as aggressively.
1993- Start linking the IMAP module to libpam again.
1994- Work around extension loading problems.
1995- Reintroduce file-editing post and preun scripts for the mod_php extensions
1996  until we come up with a better way to do it.
1997
1998* Mon Jun  5 2000 Nalin Dahyabhai <nalin@redhat.com>
1999- ExcludeArch: sparc for now
2000
2001* Sun Jun  4 2000 Nalin Dahyabhai <nalin@redhat.com>
2002- add Obsoletes: phpfi, because their content handler names are the same
2003- add standalone binary, rename module packages to mod_php
2004- FHS fixes
2005
2006* Tue May 23 2000 Nalin Dahyabhai <nalin@redhat.com>
2007- change license from "GPL" to "PHP"
2008- add URL: tag
2009- disable mysql support by default (license not specified)
2010
2011* Mon May 22 2000 Nalin Dahyabhai <nalin@redhat.com>
2012- update to PHP 4.0.0
2013- nuke the -mysql subpackage (php comes with a bundled mysql client lib now)
2014
2015* Tue May 16 2000 Nalin Dahyabhai <nalin@redhat.com>
2016- link IMAP module against GSS-API and PAM to get dependencies right
2017- change most of the Requires to Prereqs, because the post edits config files
2018- move the PHP *Apache* module back to the right directory
2019- fix broken postun trigger that broke the post
2020- change most of the postuns to preuns in case php gets removed before subpkgs
2021
2022* Thu May 11 2000 Trond Eivind Glomsr <teg@redhat.com>
2023- rebuilt against new postgres libraries
2024
2025* Tue May 09 2000 Preston Brown <pbrown@redhat.com>
2026- php3 .so modules moved to /usr/lib/php3 from /usr/lib/apache (was incorrect)
2027
2028* Mon Apr 10 2000 Nalin Dahyabhai <nalin@redhat.com>
2029- make subpackages require php = %{version} (bug #10671)
2030
2031* Thu Apr 06 2000 Nalin Dahyabhai <nalin@redhat.com>
2032- update to 3.0.16
2033
2034* Fri Mar 03 2000 Cristian Gafton <gafton@redhat.com>
2035- fixed the post script to work when upgrading a package
2036- add triggere to fix the older packages
2037
2038* Tue Feb 29 2000 Nalin Dahyabhai <nalin@redhat.com>
2039- update to 3.0.15
2040- add build-time dependency for openldap-devel
2041- enable db,ftp,shm,sem support to fix bug #9648
2042
2043* Fri Feb 25 2000 Nalin Dahyabhai <nalin@redhat.com>
2044- add dependency for imap subpackage
2045- rebuild against Apache 1.3.12
2046
2047* Thu Feb 24 2000 Preston Brown <pbrown@redhat.com>
2048- don't include old, outdated manual.  package one from the php distribution.
2049
2050* Tue Feb 01 2000 Cristian Gafton <gafton@redhat.com>
2051- rebuild to fix dependency problem
2052
2053* Fri Jan 14 2000 Preston Brown <pbrown@redhat.com>
2054- added commented out mysql module, thanks to Jason Duerstock
2055  (jason@sdi.cluephone.com). Uncomment to build if you have mysql installed.
2056
2057* Thu Jan 13 2000 Preston Brown <pbrown@redhat.com>
2058- rely on imap-devel, don't include imap in src.rpm (#5099).
2059- xml enabled (#5393)
2060
2061* Tue Nov 02 1999 Preston Brown <pborwn@redhat.com>
2062- added post/postun sections to modify httpd.conf (#5259)
2063- removed old obsolete faq and gif (#5260)
2064- updated manual.tar.gz package (#5261)
2065
2066* Thu Oct 07 1999 Matt Wilson <msw@redhat.com>
2067- rebuilt for sparc glibc brokenness
2068
2069* Fri Sep 24 1999 Preston Brown <pbrown@redhat.com>
2070- --with-apxs --> --with-apxs=/usr/sbin/apxs (# 5094)
2071- ldap support (# 5097)
2072
2073* Thu Sep 23 1999 Preston Brown <pbrown@redhat.com>
2074- fix cmdtuples for postgresql, I had it slightly wrong
2075
2076* Tue Aug 31 1999 Bill Nottingham <notting@redhat.com>
2077- subpackages must obsolete old stuff...
2078
2079* Sun Aug 29 1999 Preston Brown <pbrown@redhat.com>
2080- added -DHAVE_PGCMDTUPLES for postgresql module (bug # 4767)
2081
2082* Fri Aug 27 1999 Preston Brown <pbrown@redhat.com>
2083- name change to php to follow real name of package
2084- fix up references to php3 to refer to php
2085- upgrade to 3.0.12
2086- fixed typo in pgsql postun script (bug # 4686)
2087
2088* Mon Jun 14 1999 Preston Brown <pbrown@redhat.com>
2089- upgraded to 3.0.9
2090- fixed postgresql module and made separate package
2091- separated manual into separate documentation package
2092
2093* Mon May 24 1999 Preston Brown <pbrown@redhat.com>
2094- upgraded to 3.0.8, which fixes problems with glibc 2.1.
2095- took some ideas grom Gomez's RPM.
2096
2097* Tue May 04 1999 Preston Brown <pbrown@redhat.com>
2098- hacked in imap support in an ugly way until imap gets an official
2099  shared library implementation
2100
2101* Fri Apr 16 1999 Preston Brown <pbrown@redhat.com>
2102- pick up php3.ini
2103
2104* Wed Mar 24 1999 Preston Brown <pbrown@redhat.com>
2105- build against apache 1.3.6
2106
2107* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
2108- auto rebuild in the new build environment (release 2)
2109
2110* Mon Mar 08 1999 Preston Brown <pbrown@redhat.com>
2111- upgraded to 3.0.7.
2112
2113* Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
2114- Injected new description and group.
2115
2116* Sun Feb 07 1999 Preston Brown <pbrown@redhat.com>
2117- upgrade to php 3.0.6, built against apache 1.3.4
2118
2119* Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
2120- rebuild for apache 1.3.3
2121
2122* Thu Oct 08 1998 Preston Brown <pbrown@redhat.com>
2123- updated to 3.0.5, fixes nasty bugs in 3.0.4.
2124
2125* Sun Sep 27 1998 Cristian Gafton <gafton@redhat.com>
2126- updated to 3.0.4 and recompiled for apache 1.3.2
2127
2128* Thu Sep 03 1998 Preston Brown <pbrown@redhat.com>
2129- improvements; builds with apache-devel package installed.
2130
2131* Tue Sep 01 1998 Preston Brown <pbrown@redhat.com>
2132- Made initial cut for PHP3.
Note: See TracBrowser for help on using the repository browser.