libxml2-vl.spec 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  1. Summary: Library providing XML and HTML support
  2. Summary(ja): XML や HTML サポートを提供するライブラリ
  3. Name: libxml2
  4. Version: 2.9.10
  5. Release: 5%{_dist_release}
  6. Group: system
  7. Vendor: Project Vine
  8. Distribution: Vine Linux
  9. License: MIT
  10. Source: ftp://xmlsoft.org/libxml2-%{version}.tar.gz
  11. Patch0: libxml2-multilib.patch
  12. # Patch from openSUSE.
  13. # See: https://bugzilla.gnome.org/show_bug.cgi?id=789714
  14. Patch1: libxml2-2.9.8-python3-unicode-errors.patch
  15. Patch1000: CVE-2019-20388.patch
  16. Patch1001: CVE-2020-7595.patch
  17. Patch1002: CVE-2020-24977.patch
  18. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  19. BuildRequires: python-rpm-macros
  20. BuildRequires: python python-devel python2-rpm-macros
  21. BuildRequires: python3 python3-devel python3-rpm-macros
  22. BuildRequires: libxcrypt-devel
  23. BuildRequires: zlib-devel
  24. BuildRequires: pkgconfig
  25. URL: http://xmlsoft.org/
  26. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  27. %description
  28. This library allows to manipulate XML files. It includes support
  29. to read, modify and write XML and HTML files. There is DTDs support
  30. this includes parsing and validation even with complex DtDs, either
  31. at parse time or later once the document has been modified. The output
  32. can be a simple SAX stream or and in-memory DOM like representations.
  33. In this case one can use the built-in XPath and XPointer implementation
  34. to select subnodes or ranges. A flexible Input/Output mechanism is
  35. available, with existing HTTP and FTP modules and combined to an
  36. URI library.
  37. %description -l ja
  38. このライブラリはXMLファイルを扱う事ができます。XMLやHTMLファイルを読み込み、
  39. 修正、書き込みをサポートしています。DTDに対応しており、パース時や一度
  40. ドキュメントが修正された後でも複雑なDTDであってもパースと確認が出来ます。
  41. 出力は簡単なSAXストリームやメモリ内のDOM形式を使えます。この場合、
  42. 選択したサブノードやレンジの実装に組み込まれたXPathやXPointerを使うことが
  43. 出来ます。HTTPやFTPモジュールやURIライブラリを使って柔軟な入力/出力が可能です。
  44. %package -n compat32-%{name}
  45. Summary: Library providing XML and HTML support
  46. Summary(ja): XML や HTML サポートを提供するライブラリ
  47. Group: system
  48. Requires: %{name} = %{version}-%{release}
  49. %description -n compat32-%{name}
  50. This library allows to manipulate XML files. It includes support
  51. to read, modify and write XML and HTML files. There is DTDs support
  52. this includes parsing and validation even with complex DtDs, either
  53. at parse time or later once the document has been modified. The output
  54. can be a simple SAX stream or and in-memory DOM like representations.
  55. In this case one can use the built-in XPath and XPointer implementation
  56. to select subnodes or ranges. A flexible Input/Output mechanism is
  57. available, with existing HTTP and FTP modules and combined to an
  58. URI library.
  59. %description -n compat32-%{name} -l ja
  60. このライブラリはXMLファイルを扱う事ができます。XMLやHTMLファイルを読み込み、
  61. 修正、書き込みをサポートしています。DTDに対応しており、パース時や一度
  62. ドキュメントが修正された後でも複雑なDTDであってもパースと確認が出来ます。
  63. 出力は簡単なSAXストリームやメモリ内のDOM形式を使えます。この場合、
  64. 選択したサブノードやレンジの実装に組み込まれたXPathやXPointerを使うことが
  65. 出来ます。HTTPやFTPモジュールやURIライブラリを使って柔軟な入力/出力が可能です。
  66. %package devel
  67. Summary: Libraries, includes, etc. to develop XML and HTML applications
  68. Summary(ja): XML や HTML アプリケーションを開発するためのライブラリやヘッダ類
  69. Group: programming
  70. Requires: %{name} = %{version}-%{release}
  71. Requires: zlib-devel
  72. Requires: pkgconfig
  73. %description devel
  74. Libraries, include files, etc you can use to develop XML applications.
  75. This library allows to manipulate XML files. It includes support
  76. to read, modify and write XML and HTML files. There is DTDs support
  77. this includes parsing and validation even with complex DtDs, either
  78. at parse time or later once the document has been modified. The output
  79. can be a simple SAX stream or and in-memory DOM like representations.
  80. In this case one can use the built-in XPath and XPointer implementation
  81. to select subnodes or ranges. A flexible Input/Output mechanism is
  82. available, with existing HTTP and FTP modules and combined to an
  83. URI library.
  84. %description devel -l ja
  85. XMLアプリケーションを開発するためのライブラリやヘッダファイル類。
  86. このライブラリはXMLファイルを扱う事ができます。
  87. XMLやHTMLファイルを読み込み、修正、書き込みをサポートしています。
  88. DTDに対応しており、パース時や一度ドキュメントが修正された後でも
  89. 複雑なDTDであってもパースと確認が出来ます。
  90. 出力は簡単なSAXストリームやメモリ内のDOM形式を使えます。この場合、
  91. 選択したサブノードやレンジの実装に組み込まれたXPathやXPointerを使うことが
  92. 出来ます。HTTPやFTPモジュールやURIライブラリを使って柔軟な入力/出力が可能です。
  93. %package -n compat32-%{name}-devel
  94. Summary: Libraries, includes, etc. to develop XML and HTML applications
  95. Summary(ja): XML や HTML アプリケーションを開発するためのライブラリやヘッダ類
  96. Group: programming
  97. Requires: compat32-%{name} = %{version}-%{release}
  98. Requires: %{name}-devel = %{version}-%{release}
  99. Requires: compat32-zlib-devel
  100. %description -n compat32-%{name}-devel
  101. Libraries, include files, etc you can use to develop XML applications.
  102. This library allows to manipulate XML files. It includes support
  103. to read, modify and write XML and HTML files. There is DTDs support
  104. this includes parsing and validation even with complex DtDs, either
  105. at parse time or later once the document has been modified. The output
  106. can be a simple SAX stream or and in-memory DOM like representations.
  107. In this case one can use the built-in XPath and XPointer implementation
  108. to select subnodes or ranges. A flexible Input/Output mechanism is
  109. available, with existing HTTP and FTP modules and combined to an
  110. URI library.
  111. %description -n compat32-%{name}-devel -l ja
  112. XMLアプリケーションを開発するためのライブラリやヘッダファイル類。
  113. このライブラリはXMLファイルを扱う事ができます。
  114. XMLやHTMLファイルを読み込み、修正、書き込みをサポートしています。
  115. DTDに対応しており、パース時や一度ドキュメントが修正された後でも
  116. 複雑なDTDであってもパースと確認が出来ます。
  117. 出力は簡単なSAXストリームやメモリ内のDOM形式を使えます。この場合、
  118. 選択したサブノードやレンジの実装に組み込まれたXPathやXPointerを使うことが
  119. 出来ます。HTTPやFTPモジュールやURIライブラリを使って柔軟な入力/出力が可能です。
  120. %package static
  121. Summary: Static library for libxml2
  122. Summary(ja): libxml2 のスタティックライブラリ
  123. Group: programming
  124. Requires: libxml2 = %{version}-%{release}
  125. %description static
  126. Static library for libxml2 provided for specific uses or shaving a few
  127. microseconds when parsing, do not link to them for generic purpose packages.
  128. %package python
  129. Summary: Python bindings for the libxml2 library
  130. Summary(ja): libxml2 ライブラリ用の python バインディング
  131. Group: programming
  132. Requires: %{name} = %{version}-%{release}
  133. Requires: python >= 2.2
  134. %description python
  135. The libxml2-python package contains a module that permits applications
  136. written in the Python programming language to use the interface
  137. supplied by the libxml2 library to manipulate XML files.
  138. This library allows to manipulate XML files. It includes support
  139. to read, modify and write XML and HTML files. There is DTDs support
  140. this includes parsing and validation even with complex DTDs, either
  141. at parse time or later once the document has been modified.
  142. %description python -l ja
  143. libxml2-pythonはXMLファイルを扱うlibxml2ライブラリによって提供される
  144. インターフェースを使用するためにpythonプログラム言語で書かれた
  145. アプリケーションを許可するモジュール類を含んでいます。
  146. このライブラリはXMLファイルを扱う事ができます。
  147. XMLやHTMLファイルを読み込み、修正、書き込みをサポートしています。
  148. DTDに対応しており、パース時や一度ドキュメントが修正された後でも複雑な
  149. DTDであってもパースと確認が出来ます。
  150. %package -n python3-%{name}
  151. Summary: Python bindings for the libxml2 library
  152. Summary(ja): libxml2 ライブラリ用の python バインディング
  153. Group: programming
  154. Requires: %{name} = %{version}-%{release}
  155. Requires: python3
  156. %description -n python3-%{name}
  157. The python3-libxml2 package contains a module that permits applications
  158. written in the Python 3 programming language to use the interface
  159. supplied by the libxml2 library to manipulate XML files.
  160. This library allows to manipulate XML files. It includes support
  161. to read, modify and write XML and HTML files. There is DTDs support
  162. this includes parsing and validation even with complex DTDs, either
  163. at parse time or later once the document has been modified.
  164. %description -n python3-%{name} -l ja
  165. python3-libxml2はXMLファイルを扱うlibxml2ライブラリによって提供される
  166. インターフェースを使用するためにpython3プログラム言語で書かれた
  167. アプリケーションを許可するモジュール類を含んでいます。
  168. このライブラリはXMLファイルを扱う事ができます。
  169. XMLやHTMLファイルを読み込み、修正、書き込みをサポートしています。
  170. DTDに対応しており、パース時や一度ドキュメントが修正された後でも複雑な
  171. DTDであってもパースと確認が出来ます。
  172. %debug_package
  173. %prep
  174. %setup -q
  175. %patch0 -p1
  176. %patch1 -p1
  177. %patch1000 -p1
  178. %patch1001 -p1
  179. %patch1002 -p1
  180. find doc -type f -executable -print -exec chmod 0644 {} ';'
  181. %build
  182. mkdir py2 py3
  183. %global _configure ../configure
  184. %global _configure_disable_silent_rules 1
  185. ( cd py2 && %configure --cache-file=../config.cache --with-python=%{__python2} )
  186. ( cd py3 && %configure --cache-file=../config.cache --with-python=%{__python3} )
  187. make %{?_smp_mflags} -C py2
  188. make %{?_smp_mflags} -C py3
  189. gzip -9 ChangeLog
  190. %install
  191. [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
  192. make install -C py2 DESTDIR=$RPM_BUILD_ROOT
  193. make install -C py3 DESTDIR=$RPM_BUILD_ROOT
  194. # multiarch crazyness on timestamp differences or Makefile/binaries for examples
  195. touch -m --reference=$RPM_BUILD_ROOT/%{_includedir}/libxml2/libxml/parser.h $RPM_BUILD_ROOT/%{_bindir}/xml2-config
  196. find %{buildroot} -type f -name '*.la' -print -delete
  197. rm -vf %{buildroot}{%{python2_sitearch},%{python3_sitearch}}/*.a
  198. rm -vrf %{buildroot}%{_datadir}/doc/
  199. #(cd doc/examples ; make clean ; rm -rf .deps Makefile)
  200. gzip -9 -c doc/libxml2-api.xml > doc/libxml2-api.xml.gz
  201. chmod -x python/tests/*.py
  202. chmod -x doc/*.py
  203. %clean
  204. [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
  205. %post -p /sbin/ldconfig
  206. %postun -p /sbin/ldconfig
  207. %post -n compat32-%{name} -p /sbin/ldconfig
  208. %postun -n compat32-%{name} -p /sbin/ldconfig
  209. %files
  210. %defattr(-, root, root)
  211. %license COPYING Copyright
  212. %doc AUTHORS ChangeLog.gz NEWS README TODO
  213. %{_bindir}/xmlcatalog
  214. %{_bindir}/xmllint
  215. %{_libdir}/lib*.so.*
  216. %{_mandir}/man1/xmllint.1*
  217. %{_mandir}/man1/xmlcatalog.1*
  218. %{_mandir}/man3/libxml.3*
  219. %files devel
  220. %defattr(-, root, root)
  221. %doc doc/*.html doc/html doc/*.gif doc/*.png
  222. %doc doc/tutorial doc/libxml2-api.xml.gz
  223. %{_bindir}/xml2-config
  224. %{_datadir}/aclocal/libxml.m4
  225. %{_includedir}/*
  226. %{_libdir}/lib*.so
  227. %{_libdir}/lib*.a
  228. %{_libdir}/*.sh
  229. %{_libdir}/cmake/libxml2/libxml2-config.cmake
  230. %{_libdir}/pkgconfig/libxml-2.0.pc
  231. %{_mandir}/man1/xml2-config.1*
  232. %{_datadir}/gtk-doc/html/libxml2
  233. %files static
  234. %defattr(-, root, root)
  235. %{_libdir}/lib*.a
  236. %files python
  237. %defattr(-, root, root)
  238. %doc AUTHORS ChangeLog.gz NEWS README Copyright
  239. %doc python/TODO
  240. %doc python/libxml2class.txt
  241. %doc python/tests/*.py
  242. %doc doc/*.py
  243. %doc doc/python.html
  244. %{python2_sitearch}/*
  245. %files -n python3-%{name}
  246. %defattr(-, root, root)
  247. %license Copyright
  248. %doc AUTHORS ChangeLog.gz NEWS README
  249. %doc python/TODO
  250. %doc python/libxml2class.txt
  251. %doc python/tests/*.py
  252. %doc doc/*.py
  253. %doc doc/python.html
  254. %{python3_sitearch}/*
  255. %if %{build_compat32}
  256. %files -n compat32-%{name}
  257. %defattr(-, root, root)
  258. %{_libdir}/lib*.so.*
  259. %files -n compat32-%{name}-devel
  260. %defattr(-, root, root)
  261. %{_libdir}/lib*.so
  262. %{_libdir}/lib*.a
  263. %{_libdir}/*.sh
  264. %endif
  265. %changelog
  266. * Sat Sep 26 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.9.10-5
  267. - imported Patch1002 from upstream to fix CVE-2020-24977.
  268. * Wed Aug 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.9.10-4
  269. - fixed dependency.
  270. * Sun Aug 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.9.10-3
  271. - rebuilt with python-3.8.
  272. * Sat Feb 01 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.9.10-2
  273. - imported Patch1000 and 1001 from upstream.
  274. * Wed Jan 08 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.9.10-1
  275. - updated to 2.9.10.
  276. * Mon May 13 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.9.9-1
  277. - updated to 2.9.9.
  278. - added BR:libxcrypt-devel.
  279. - added a sub-package "python3-libxml2".
  280. * Fri Dec 15 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.9.7-1
  281. - updated to 2.9.7.
  282. * Fri May 27 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.9.4-1
  283. - updated to 2.9.4.
  284. * Thu Dec 17 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.9.3-1
  285. - update to 2.9.3
  286. - remove Patch1,2
  287. * Sun Nov 16 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.9.2-2
  288. - add Patch1 (libxml2-2.9.0-do-not-check-crc.patch) from fedora
  289. - add Patch2 (libxml2-2.9.2-catalog-revert.patch) from fedora
  290. * Sat Nov 08 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.9.2-1
  291. - update to 2.9.2
  292. (including security fix for CVE-2014-0191,3660)
  293. * Fri Mar 28 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.9.1-1
  294. - update to 2.9.1
  295. * Mon Dec 30 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.9.0-2
  296. - rebuild with VineSeed environment
  297. * Wed Sep 26 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.9.0-1
  298. - new upstream release
  299. * Sun Jul 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.0-1
  300. - new upstream release
  301. - remove Patch1 (libxml2-2.7.8-reactivate-versionning-script.patch)
  302. -remove Patch10 (libxml2-2.7.8-CVE-2010-4494.patch)
  303. - remove Patch11 (libxml2-2.7.8-xpath.patch)
  304. * Wed Feb 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.7.8-3
  305. - rebuild with python-2.7.2
  306. * Wed Jun 08 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.7.8-2
  307. - add Patch11 (libxml2-2.7.8-xpath.patch)
  308. * Mon Apr 25 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.7.8-1
  309. - new upstream release with security fix (CVE-2010-4008)
  310. - add patch1 from fc16
  311. - add patch10 for fix CVE-2010-4494 (xpath)
  312. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 2.7.7-2
  313. - build with rpm-4.8.1-1 for pkg-config file
  314. * Tue Jun 29 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.7.7-1
  315. - new upstream release
  316. * Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.7.6-6
  317. - rebuilt with gcc-4.4.3-3 on ppc
  318. * Sat Feb 6 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.7.6-5
  319. - removed %%{_libdir}/python*/site-packages/*.{a,la}
  320. * Fri Feb 5 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.7.6-4
  321. - rebuilt with rpm-4.8.0-3 (on ppc)
  322. * Tue Feb 02 2010 Shu KONNO <owa@bg.wakwak.com> 2.7.6-3
  323. - rebuild with python-2.6
  324. * Tue Feb 2 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.7.6-2
  325. - rebuilt with new toolchain
  326. * Sun Nov 1 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.7.6-1
  327. - new upstream release
  328. * Wed Aug 12 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.32-4
  329. - use smp flag in make section
  330. * Wed Aug 12 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.32-3
  331. - add patch100 for fix CVE-2009-2414/2416
  332. * Fri Jul 18 2008 Shu KONNO <owa@bg.wakwak.com> 2.6.32-2
  333. - rebuilt with python-2.5.2
  334. * Tue Apr 29 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6.32-1
  335. - new upstream release
  336. - removed *.la files from devel package
  337. * Fri Feb 29 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.31-0vl1
  338. - new upstream release with security fix (CVE-2007-6284)
  339. * Wed Oct 3 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6.30-0vl1
  340. - new upstream release
  341. * Sun Feb 4 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6.27-0vl1
  342. - new upstream release
  343. * Fri Jul 14 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6.26-0vl1
  344. - new upstream release
  345. - fixed typo
  346. * Sun May 21 2006 NAKAMURA Kenta <kenta@vinelinux.org> 2.6.23-0vl3
  347. - added "libdir" options
  348. - added compat32- packages for x86_64 architecture support
  349. * Wed Jan 18 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.6.23-0vl2
  350. - fix typo
  351. * Tue Jan 17 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.6.23-0vl1
  352. - new upstream release
  353. - add Requires: zlib-devel for libxml2-devel
  354. - add gtk-doc/html/libxml2 to libxml2-devel
  355. * Sat Oct 08 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.22-0vl1
  356. - new upstream release
  357. * Mon Jul 18 2005 Satoshi MACHINO <machino@vinelinux.org> 2.6.20-0vl1
  358. - new upstream release (libxml2-2.6.20)
  359. * Mon Apr 04 2005 Satoshi MACHINO <machino@vinelinux.org> 2.6.19-0vl1
  360. - new upstream version (libxml2-2.6.19)
  361. * Sun Apr 03 2005 Shu KONNO <owa@bg.wakwak.com> 2.6.17-0vl3
  362. - rebuild with python-2.4.1-0vl1
  363. * Sun Feb 06 2005 Satoshi MACHINO <machino@vinelinux.org> 2.6.17-0vl2
  364. - fixed japanesedescription
  365. * Sun Feb 06 2005 Satoshi MACHINO <machino@vinelinux.org> 2.6.17-0vl1
  366. - new upstream version (libxml2-2.6.17)
  367. - added japanese description
  368. * Tue Dec 21 2004 Satoshi MACHINO <machino@vinelinux.org> 2.6.16-0vl1
  369. - new upstream version (libxml2-2.6.16)
  370. * Wed Nov 03 2004 Satoshi MACHINO <machino@vinelinux.org> 2.6.15-0vl1
  371. - new upstream version (libxml2-2.6.15)
  372. -- some security fixes.(See http://secunia.com/advisories/13000/)
  373. * Sun Oct 17 2004 Satoshi MACHINO <machino@vinelinux.org> 2.6.14-0vl1
  374. - new upstream version (libxml2-2.6.14)
  375. * Tue Sep 07 2004 Satoshi MACHINO <machino@vinelinux.org> 2.6.13-0vl1
  376. - new upstream version (libxml2-2.6.13)
  377. * Tue Apr 27 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.6.9-0vl1
  378. - source upgrade
  379. * Sat Apr 17 2004 Shu KONNO <owa@bg.wakwak.com> 2.6.8-0vl2
  380. - rebuild with python-2.3.3-0vl1
  381. * Sun Apr 11 2004 Shu KONNO <owa@bg.wakwak.com> 2.6.8-0vl1.1
  382. - rebuild with python-2.3.3-0vl0.3 (for TestPkg)
  383. * Thu Mar 25 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6.8-0vl1
  384. - new upstream release
  385. * Wed Jan 28 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6.5-0vl1
  386. - new upstream release
  387. * Thu Sep 11 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.5.11-0vl1
  388. - new upstream release
  389. * Fri Sep 05 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.5.10-0vl1
  390. - new upstream release
  391. * Sun Jul 20 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.5.8-0vl1
  392. - source upgrade
  393. * Sat May 17 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.5.7-0vl1
  394. - source upgrade
  395. * Tue Feb 18 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.5.3-0vl1
  396. - source upgrade
  397. * Tue Jan 21 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.5.1-0vl2
  398. - rebuild with python-2.2.2-9vl0
  399. - add BuildPrereq: automake14
  400. * Fri Jan 10 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.5.1-0vl1
  401. - source upgrade
  402. - update and cleanup %files section
  403. * Sun Dec 15 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.4.30-0vl1
  404. - source upgrade
  405. - build with new toolchains
  406. * Tue Oct 29 2002 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.4.26-0vl1
  407. - source update to 2.4.26
  408. * Sun May 26 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.4.21-1vl1
  409. - merged with 2.4.21-1
  410. -- Fri Feb 1 2002 Daniel Veillard <veillard@redhat.com>
  411. - Added the python package
  412. - clean up spec
  413. * Mon Mar 18 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.4.13-0vl2
  414. - changed License to MIT (not LGPL)
  415. - add BuildPrereq: zlib-devel >= 1.1.4
  416. * Sat Feb 23 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.4.13-0vl1
  417. - source update
  418. - cleaned up specfile
  419. * Sun Oct 14 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.4.12-0vl1
  420. - source update
  421. * Sun Oct 14 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.4.6-1vl1
  422. - Build for VineSeed
  423. * Thu Apr 26 2001 Toshio Kuratomi <badger@prtr-13.ucsc.edu>
  424. [2.3.7]
  425. - Added libxml.m4 to the distribution file list
  426. - Moved the man pages from /usr/man to /usr/share/man to conform to FHS2.0
  427. - Moved programmer documentation into the devel package
  428. * Thu Sep 23 1999 Daniel Veillard <daniel@veillard.com>
  429. - corrected the spec file alpha stuff
  430. - switched to version 1.7.1
  431. - Added validation, XPath, nanohttp, removed memory leaks
  432. - Renamed CHAR to xmlChar
  433. * Wed Jun 2 1999 Daniel Veillard <daniel@veillard.com>
  434. - Switched to version 1.1: SAX extensions, better entities support, lots of
  435. bug fixes.
  436. * Sun Oct 4 1998 Daniel Veillard <daniel@veillard.com>
  437. - Added xml-config to the package
  438. * Thu Sep 24 1998 Michael Fulbright <msf@redhat.com>
  439. - Built release 0.30