php81-vl.spec 72 KB

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