php74-vl.spec 74 KB

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