source: projects/specs/trunk/lib/libx/libxml2/libxml2-vl.spec @ 12469

Revision 12469, 20.4 KB checked in by tomop, 4 years ago (diff)

python-3.8.5 and related packages.

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