php70-vl.spec 69 KB

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