blob: 4feaea2ed17c2737abf0737ef3a75e07c19bcfdc [file] [log] [blame]
Daniel Veillard1a123612001-09-19 08:06:23 +00001Summary: Library providing XML and HTML support
2Name: libxml2
Daniel Veillardea898282001-11-04 22:13:45 +00003Version: @VERSION@
Daniel Veillarda7084cd2002-04-15 17:12:47 +00004Release: 1
Daniel Veillardc575b992002-02-08 13:28:40 +00005License: MIT
Daniel Veillard1a123612001-09-19 08:06:23 +00006Group: Development/Libraries
Daniel Veillardea898282001-11-04 22:13:45 +00007Source: ftp://xmlsoft.org/libxml2-%{version}.tar.gz
8BuildRoot: %{_tmppath}/%{name}-%{version}-root
Daniel Veillard253aa2c2002-02-02 09:17:16 +00009BuildRequires: python python-devel
Daniel Veillard1a123612001-09-19 08:06:23 +000010URL: http://xmlsoft.org/
Daniel Veillardea898282001-11-04 22:13:45 +000011Prefix: %{_prefix}
12Docdir: %{_docdir}
Michael Fulbright62e8e801998-09-25 16:58:38 +000013
14%description
Daniel Veillard6db58192000-10-30 09:27:53 +000015This library allows to manipulate XML files. It includes support
16to read, modify and write XML and HTML files. There is DTDs support
17this includes parsing and validation even with complex DtDs, either
18at parse time or later once the document has been modified. The output
19can be a simple SAX stream or and in-memory DOM like representations.
20In this case one can use the built-in XPath and XPointer implementation
21to select subnodes or ranges. A flexible Input/Output mechanism is
22available, with existing HTTP and FTP modules and combined to an
23URI library.
Michael Fulbright62e8e801998-09-25 16:58:38 +000024
25%package devel
Daniel Veillard1a123612001-09-19 08:06:23 +000026Summary: Libraries, includes, etc. to develop XML and HTML applications
27Group: Development/Libraries
28Requires: libxml2 = %{version}
Daniel Veillardc6924812002-05-24 11:10:43 +000029Requires: zlib-devel
Michael Fulbright62e8e801998-09-25 16:58:38 +000030
31%description devel
Daniel Veillard6db58192000-10-30 09:27:53 +000032Libraries, include files, etc you can use to develop XML applications.
33This library allows to manipulate XML files. It includes support
34to read, modify and write XML and HTML files. There is DTDs support
35this includes parsing and validation even with complex DtDs, either
36at parse time or later once the document has been modified. The output
37can be a simple SAX stream or and in-memory DOM like representations.
38In this case one can use the built-in XPath and XPointer implementation
39to select subnodes or ranges. A flexible Input/Output mechanism is
40available, with existing HTTP and FTP modules and combined to an
41URI library.
Michael Fulbright62e8e801998-09-25 16:58:38 +000042
Daniel Veillard253aa2c2002-02-02 09:17:16 +000043%package python
44Summary: Python bindings for the libxml2 library
45Group: Development/Libraries
46Requires: libxml2 = %{version}
47Requires: python
48
49%description python
50The libxml2-python package contains a module that permits applications
51written in the Python programming language to use the interface
52supplied by the libxml2 library to manipulate XML files.
53
54This library allows to manipulate XML files. It includes support
55to read, modify and write XML and HTML files. There is DTDs support
56this includes parsing and validation even with complex DTDs, either
57at parse time or later once the document has been modified.
Daniel Veillard366a9152002-10-23 20:43:53 +000058
Daniel Veillardea898282001-11-04 22:13:45 +000059%prep
60%setup -q
61
62%build
Daniel Veillard366a9152002-10-23 20:43:53 +000063%configure
Daniel Veillard231d7912003-02-09 14:22:17 +000064make LIBTOOL=/usr/bin/libtool
Daniel Veillardea898282001-11-04 22:13:45 +000065
66%install
Daniel Veillard366a9152002-10-23 20:43:53 +000067rm -fr %{buildroot}
Daniel Veillardea898282001-11-04 22:13:45 +000068
Daniel Veillard5643b5a2002-09-04 12:27:06 +000069%makeinstall
Daniel Veillardea898282001-11-04 22:13:45 +000070
Daniel Veillard9589d452002-02-02 10:28:17 +000071#
72# this is a bit ugly but tries to generate the bindings for all versions
73# of python installed
Daniel Veillard366a9152002-10-23 20:43:53 +000074#
Daniel Veillard9589d452002-02-02 10:28:17 +000075for i in %{prefix}/include/python*
76do
77 py_version=`echo $i | sed "s+%{prefix}/include/python++"`
78 if test -x %{prefix}/bin/python$py_version
79 then
80 echo generating bindings for Python $py_version
Daniel Veillard366a9152002-10-23 20:43:53 +000081 (cd python ; make clean ; \
Daniel Veillard9589d452002-02-02 10:28:17 +000082 make PYTHON="%{prefix}/bin/python$py_version" \
Daniel Veillard366a9152002-10-23 20:43:53 +000083 PYTHON_INCLUDES="%{prefix}/include/python$py_version" \
84 PYTHON_VERSION="$py_version"; \
85%makeinstall PYTHON="%{prefix}/bin/python$py_version" \
86 PYTHON_INCLUDES="%{prefix}/include/python$py_version" \
87 PYTHON_VERSION="$py_version" )
Daniel Veillard9589d452002-02-02 10:28:17 +000088 fi
89done
Daniel Veillard366a9152002-10-23 20:43:53 +000090
Daniel Veillardea898282001-11-04 22:13:45 +000091%clean
Daniel Veillard366a9152002-10-23 20:43:53 +000092rm -fr %{buildroot}
Daniel Veillardea898282001-11-04 22:13:45 +000093
Daniel Veillard366a9152002-10-23 20:43:53 +000094%post
95/sbin/ldconfig
Daniel Veillardea898282001-11-04 22:13:45 +000096
Daniel Veillard366a9152002-10-23 20:43:53 +000097%postun
98/sbin/ldconfig
Daniel Veillardea898282001-11-04 22:13:45 +000099
100%files
101%defattr(-, root, root)
102
Daniel Veillardc575b992002-02-08 13:28:40 +0000103%doc AUTHORS ChangeLog NEWS README Copyright TODO
Daniel Veillardea898282001-11-04 22:13:45 +0000104%doc %{_mandir}/man1/xmllint.1*
105%doc %{_mandir}/man1/xmlcatalog.1*
Daniel Veillarde915b2d2002-03-06 18:42:40 +0000106%doc %{_mandir}/man3/libxml.3*
Daniel Veillardea898282001-11-04 22:13:45 +0000107
Daniel Veillard5643b5a2002-09-04 12:27:06 +0000108%{_libdir}/lib*.so.*
Daniel Veillardea898282001-11-04 22:13:45 +0000109%{prefix}/bin/xmllint
110%{prefix}/bin/xmlcatalog
111
112%files devel
113%defattr(-, root, root)
114
115%doc %{_mandir}/man1/xml2-config.1*
Daniel Veillardc575b992002-02-08 13:28:40 +0000116%doc AUTHORS ChangeLog NEWS README Copyright TODO
Daniel Veillardf5a457a2002-03-07 10:25:29 +0000117%doc doc/*.html doc/html doc/*.gif doc/*.png
Daniel Veillarda9b66d02002-12-11 14:23:49 +0000118%doc doc/tutorial doc/libxml2-api.xml
Daniel Veillardea898282001-11-04 22:13:45 +0000119
Daniel Veillard5643b5a2002-09-04 12:27:06 +0000120%{_libdir}/lib*.so
121%{_libdir}/*a
122%{_libdir}/*.sh
Daniel Veillardea898282001-11-04 22:13:45 +0000123%{prefix}/include/*
124%{prefix}/bin/xml2-config
125%{prefix}/share/aclocal/libxml.m4
Daniel Veillard5643b5a2002-09-04 12:27:06 +0000126%{_libdir}/pkgconfig/libxml-2.0.pc
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000127%files python
128%defattr(-, root, root)
129
Daniel Veillardc575b992002-02-08 13:28:40 +0000130%doc AUTHORS ChangeLog NEWS README Copyright
Daniel Veillard5643b5a2002-09-04 12:27:06 +0000131%{_libdir}/python*/site-packages/libxml2.py
Daniel Veillard4f860202003-01-02 13:00:02 +0000132%{_libdir}/python*/site-packages/drv_libxml2.py
Daniel Veillard366a9152002-10-23 20:43:53 +0000133%{_libdir}/python*/site-packages/libxml2mod*
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000134%doc python/TODO
135%doc python/libxml2class.txt
136%doc python/tests/*.py
Daniel Veillardf9c4cad2002-11-22 15:57:07 +0000137%doc doc/*.py
138%doc doc/python.html
Michael Fulbright62e8e801998-09-25 16:58:38 +0000139
140%changelog
Daniel Veillard9715c172002-11-25 16:33:40 +0000141* @RELDATE@ Daniel Veillard <veillard@redhat.com>
142- upstream release @VERSION@ see http://xmlsoft.org/news.html
143
Daniel Veillard4f860202003-01-02 13:00:02 +0000144* Thu Jan 2 2003 Daniel Veillard <veillard@redhat.com>
145- integrated drv_libxml2 xml.sax driver from Stéphane Bidoul
146- provides the new XmlTextReader interfaces based on C# XML APIs
147
Daniel Veillard366a9152002-10-23 20:43:53 +0000148* Wed Oct 23 2002 Daniel Veillard <veillard@redhat.com>
149- revamped the spec file, cleaned up some rpm building problems
150
151* Fri Oct 4 2002 Jeremy Katz <katzj@redhat.com>
152- build with 'make LIBTOOL=/usr/bin/libtool' to use system libtool
153
Daniel Veillard5643b5a2002-09-04 12:27:06 +0000154* Wed Sep 4 2002 Daniel Veillard <veillard@redhat.com>
155
156- library paths fixed for x86-64
157
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000158* Fri Feb 1 2002 Daniel Veillard <veillard@redhat.com>
159
160- Added the python package
Michael Fulbright62e8e801998-09-25 16:58:38 +0000161
Daniel Veillardcd21dc72001-11-04 20:03:38 +0000162* Sun Nov 4 2001 Daniel Veillard <veillard@redhat.com>
163
Daniel Veillardea898282001-11-04 22:13:45 +0000164- cleaned up the specfile
Daniel Veillardcd21dc72001-11-04 20:03:38 +0000165- 2.4.7 broke SGML catalogs badly. this fixes it.
166
Daniel Veillard2913e4c2001-04-26 19:29:02 +0000167* Thu Apr 26 2001 Toshio Kuratomi <badger@prtr-13.ucsc.edu>
Daniel Veillard1a123612001-09-19 08:06:23 +0000168
169[2.3.7]
Daniel Veillard2913e4c2001-04-26 19:29:02 +0000170- Added libxml.m4 to the distribution file list
171- Moved the man pages from /usr/man to /usr/share/man to conform to FHS2.0
172- Moved programmer documentation into the devel package
173
Daniel Veillardc5d64342001-06-24 12:13:24 +0000174* Thu Sep 23 1999 Daniel Veillard <daniel@veillard.com>
Daniel Veillarddd6b3671999-09-23 22:19:22 +0000175
176- corrected the spec file alpha stuff
177- switched to version 1.7.1
178- Added validation, XPath, nanohttp, removed memory leaks
179- Renamed CHAR to xmlChar
180
Daniel Veillardc5d64342001-06-24 12:13:24 +0000181* Wed Jun 2 1999 Daniel Veillard <daniel@veillard.com>
Daniel Veillard011b63c1999-06-02 17:44:04 +0000182
183- Switched to version 1.1: SAX extensions, better entities support, lots of
184 bug fixes.
185
Daniel Veillardc5d64342001-06-24 12:13:24 +0000186* Sun Oct 4 1998 Daniel Veillard <daniel@veillard.com>
Daniel Veillard8631b781998-10-04 14:50:58 +0000187
188- Added xml-config to the package
189
Michael Fulbright62e8e801998-09-25 16:58:38 +0000190* Thu Sep 24 1998 Michael Fulbright <msf@redhat.com>
191
192- Built release 0.30
Daniel Veillard1a123612001-09-19 08:06:23 +0000193