php5-vl.spec 72 KB

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