Daniel Veillard | 1a12361 | 2001-09-19 08:06:23 +0000 | [diff] [blame] | 1 | Summary: Library providing XML and HTML support |
| 2 | Name: libxml2 |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 3 | Version: @VERSION@ |
Daniel Veillard | 6f7e24b | 2003-05-14 19:45:50 +0000 | [diff] [blame] | 4 | Release: 1 |
Daniel Veillard | c575b99 | 2002-02-08 13:28:40 +0000 | [diff] [blame] | 5 | License: MIT |
Daniel Veillard | 1a12361 | 2001-09-19 08:06:23 +0000 | [diff] [blame] | 6 | Group: Development/Libraries |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 7 | Source: ftp://xmlsoft.org/libxml2-%{version}.tar.gz |
| 8 | BuildRoot: %{_tmppath}/%{name}-%{version}-root |
Daniel Veillard | da3336f | 2004-08-26 22:14:34 +0000 | [diff] [blame] | 9 | BuildRequires: python python-devel zlib-devel |
Daniel Veillard | 1a12361 | 2001-09-19 08:06:23 +0000 | [diff] [blame] | 10 | URL: http://xmlsoft.org/ |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 11 | Prefix: %{_prefix} |
| 12 | Docdir: %{_docdir} |
Michael Fulbright | 62e8e80 | 1998-09-25 16:58:38 +0000 | [diff] [blame] | 13 | |
| 14 | %description |
Daniel Veillard | 6db5819 | 2000-10-30 09:27:53 +0000 | [diff] [blame] | 15 | This library allows to manipulate XML files. It includes support |
| 16 | to read, modify and write XML and HTML files. There is DTDs support |
| 17 | this includes parsing and validation even with complex DtDs, either |
| 18 | at parse time or later once the document has been modified. The output |
| 19 | can be a simple SAX stream or and in-memory DOM like representations. |
| 20 | In this case one can use the built-in XPath and XPointer implementation |
| 21 | to select subnodes or ranges. A flexible Input/Output mechanism is |
| 22 | available, with existing HTTP and FTP modules and combined to an |
| 23 | URI library. |
Michael Fulbright | 62e8e80 | 1998-09-25 16:58:38 +0000 | [diff] [blame] | 24 | |
| 25 | %package devel |
Daniel Veillard | 1a12361 | 2001-09-19 08:06:23 +0000 | [diff] [blame] | 26 | Summary: Libraries, includes, etc. to develop XML and HTML applications |
| 27 | Group: Development/Libraries |
| 28 | Requires: libxml2 = %{version} |
Daniel Veillard | c692481 | 2002-05-24 11:10:43 +0000 | [diff] [blame] | 29 | Requires: zlib-devel |
Michael Fulbright | 62e8e80 | 1998-09-25 16:58:38 +0000 | [diff] [blame] | 30 | |
| 31 | %description devel |
Daniel Veillard | 6db5819 | 2000-10-30 09:27:53 +0000 | [diff] [blame] | 32 | Libraries, include files, etc you can use to develop XML applications. |
| 33 | This library allows to manipulate XML files. It includes support |
| 34 | to read, modify and write XML and HTML files. There is DTDs support |
| 35 | this includes parsing and validation even with complex DtDs, either |
| 36 | at parse time or later once the document has been modified. The output |
| 37 | can be a simple SAX stream or and in-memory DOM like representations. |
| 38 | In this case one can use the built-in XPath and XPointer implementation |
| 39 | to select subnodes or ranges. A flexible Input/Output mechanism is |
| 40 | available, with existing HTTP and FTP modules and combined to an |
| 41 | URI library. |
Michael Fulbright | 62e8e80 | 1998-09-25 16:58:38 +0000 | [diff] [blame] | 42 | |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 43 | %package python |
| 44 | Summary: Python bindings for the libxml2 library |
| 45 | Group: Development/Libraries |
| 46 | Requires: libxml2 = %{version} |
Daniel Veillard | f70f7b2 | 2004-04-18 22:09:47 +0000 | [diff] [blame] | 47 | Requires: %{_libdir}/python%(echo `python -c "import sys; print sys.version[0:3]"`) |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 48 | |
| 49 | %description python |
| 50 | The libxml2-python package contains a module that permits applications |
| 51 | written in the Python programming language to use the interface |
| 52 | supplied by the libxml2 library to manipulate XML files. |
| 53 | |
| 54 | This library allows to manipulate XML files. It includes support |
| 55 | to read, modify and write XML and HTML files. There is DTDs support |
| 56 | this includes parsing and validation even with complex DTDs, either |
| 57 | at parse time or later once the document has been modified. |
Daniel Veillard | 366a915 | 2002-10-23 20:43:53 +0000 | [diff] [blame] | 58 | |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 59 | %prep |
| 60 | %setup -q |
| 61 | |
| 62 | %build |
Daniel Veillard | baad788 | 2005-08-25 22:52:51 +0000 | [diff] [blame] | 63 | %configure |
| 64 | make |
Daniel Veillard | ee1d692 | 2004-04-18 14:58:57 +0000 | [diff] [blame] | 65 | gzip -9 ChangeLog |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 66 | |
| 67 | %install |
Daniel Veillard | 366a915 | 2002-10-23 20:43:53 +0000 | [diff] [blame] | 68 | rm -fr %{buildroot} |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 69 | |
Daniel Veillard | 5643b5a | 2002-09-04 12:27:06 +0000 | [diff] [blame] | 70 | %makeinstall |
Daniel Veillard | 771971f | 2005-04-02 10:49:51 +0000 | [diff] [blame] | 71 | (cd doc/examples ; make clean ; rm -rf .deps) |
| 72 | gzip -9 doc/libxml2-api.xml |
Daniel Veillard | 9fcb491 | 2005-03-16 12:57:31 +0000 | [diff] [blame] | 73 | rm -f $RPM_BUILD_ROOT%{_libdir}/*.la |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 74 | |
| 75 | %clean |
Daniel Veillard | 366a915 | 2002-10-23 20:43:53 +0000 | [diff] [blame] | 76 | rm -fr %{buildroot} |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 77 | |
Daniel Veillard | 366a915 | 2002-10-23 20:43:53 +0000 | [diff] [blame] | 78 | %post |
| 79 | /sbin/ldconfig |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 80 | |
Daniel Veillard | 366a915 | 2002-10-23 20:43:53 +0000 | [diff] [blame] | 81 | %postun |
| 82 | /sbin/ldconfig |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 83 | |
| 84 | %files |
| 85 | %defattr(-, root, root) |
| 86 | |
Daniel Veillard | ee1d692 | 2004-04-18 14:58:57 +0000 | [diff] [blame] | 87 | %doc AUTHORS ChangeLog.gz NEWS README Copyright TODO |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 88 | %doc %{_mandir}/man1/xmllint.1* |
| 89 | %doc %{_mandir}/man1/xmlcatalog.1* |
Daniel Veillard | e915b2d | 2002-03-06 18:42:40 +0000 | [diff] [blame] | 90 | %doc %{_mandir}/man3/libxml.3* |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 91 | |
Daniel Veillard | 5643b5a | 2002-09-04 12:27:06 +0000 | [diff] [blame] | 92 | %{_libdir}/lib*.so.* |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 93 | %{prefix}/bin/xmllint |
| 94 | %{prefix}/bin/xmlcatalog |
| 95 | |
| 96 | %files devel |
| 97 | %defattr(-, root, root) |
| 98 | |
| 99 | %doc %{_mandir}/man1/xml2-config.1* |
Daniel Veillard | ee1d692 | 2004-04-18 14:58:57 +0000 | [diff] [blame] | 100 | %doc AUTHORS ChangeLog.gz NEWS README Copyright TODO |
Daniel Veillard | f5a457a | 2002-03-07 10:25:29 +0000 | [diff] [blame] | 101 | %doc doc/*.html doc/html doc/*.gif doc/*.png |
Daniel Veillard | 771971f | 2005-04-02 10:49:51 +0000 | [diff] [blame] | 102 | %doc doc/tutorial doc/libxml2-api.xml.gz |
Daniel Veillard | 8d7b5c7 | 2003-11-15 18:24:36 +0000 | [diff] [blame] | 103 | %doc doc/examples |
Daniel Veillard | 1db4a66 | 2005-09-12 13:10:09 +0000 | [diff] [blame] | 104 | %doc %{_datadir}/gtk-doc/html/libxml2/*.devhelp |
| 105 | %doc %{_datadir}/gtk-doc/html/libxml2/*.html |
| 106 | %doc %{_datadir}/gtk-doc/html/libxml2/*.png |
| 107 | %doc %{_datadir}/gtk-doc/html/libxml2/*.css |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 108 | |
Daniel Veillard | 5643b5a | 2002-09-04 12:27:06 +0000 | [diff] [blame] | 109 | %{_libdir}/lib*.so |
| 110 | %{_libdir}/*a |
| 111 | %{_libdir}/*.sh |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 112 | %{prefix}/include/* |
| 113 | %{prefix}/bin/xml2-config |
| 114 | %{prefix}/share/aclocal/libxml.m4 |
Daniel Veillard | 5643b5a | 2002-09-04 12:27:06 +0000 | [diff] [blame] | 115 | %{_libdir}/pkgconfig/libxml-2.0.pc |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 116 | %files python |
| 117 | %defattr(-, root, root) |
| 118 | |
Daniel Veillard | ee1d692 | 2004-04-18 14:58:57 +0000 | [diff] [blame] | 119 | %doc AUTHORS ChangeLog.gz NEWS README Copyright |
Daniel Veillard | 8240f51 | 2005-09-04 23:04:44 +0000 | [diff] [blame] | 120 | %{_libdir}/python*/site-packages/libxml2.py* |
| 121 | %{_libdir}/python*/site-packages/drv_libxml2.py* |
Daniel Veillard | 366a915 | 2002-10-23 20:43:53 +0000 | [diff] [blame] | 122 | %{_libdir}/python*/site-packages/libxml2mod* |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 123 | %doc python/TODO |
| 124 | %doc python/libxml2class.txt |
| 125 | %doc python/tests/*.py |
Daniel Veillard | f9c4cad | 2002-11-22 15:57:07 +0000 | [diff] [blame] | 126 | %doc doc/*.py |
| 127 | %doc doc/python.html |
Michael Fulbright | 62e8e80 | 1998-09-25 16:58:38 +0000 | [diff] [blame] | 128 | |
| 129 | %changelog |
Daniel Veillard | 9715c17 | 2002-11-25 16:33:40 +0000 | [diff] [blame] | 130 | * @RELDATE@ Daniel Veillard <veillard@redhat.com> |
| 131 | - upstream release @VERSION@ see http://xmlsoft.org/news.html |
| 132 | |
Daniel Veillard | 4f86020 | 2003-01-02 13:00:02 +0000 | [diff] [blame] | 133 | * Thu Jan 2 2003 Daniel Veillard <veillard@redhat.com> |
| 134 | - integrated drv_libxml2 xml.sax driver from Stéphane Bidoul |
| 135 | - provides the new XmlTextReader interfaces based on C# XML APIs |
| 136 | |
Daniel Veillard | 366a915 | 2002-10-23 20:43:53 +0000 | [diff] [blame] | 137 | * Wed Oct 23 2002 Daniel Veillard <veillard@redhat.com> |
| 138 | - revamped the spec file, cleaned up some rpm building problems |
| 139 | |
| 140 | * Fri Oct 4 2002 Jeremy Katz <katzj@redhat.com> |
| 141 | - build with 'make LIBTOOL=/usr/bin/libtool' to use system libtool |
| 142 | |
Daniel Veillard | 5643b5a | 2002-09-04 12:27:06 +0000 | [diff] [blame] | 143 | * Wed Sep 4 2002 Daniel Veillard <veillard@redhat.com> |
| 144 | |
| 145 | - library paths fixed for x86-64 |
| 146 | |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 147 | * Fri Feb 1 2002 Daniel Veillard <veillard@redhat.com> |
| 148 | |
| 149 | - Added the python package |
Michael Fulbright | 62e8e80 | 1998-09-25 16:58:38 +0000 | [diff] [blame] | 150 | |
Daniel Veillard | cd21dc7 | 2001-11-04 20:03:38 +0000 | [diff] [blame] | 151 | * Sun Nov 4 2001 Daniel Veillard <veillard@redhat.com> |
| 152 | |
Daniel Veillard | ea89828 | 2001-11-04 22:13:45 +0000 | [diff] [blame] | 153 | - cleaned up the specfile |
Daniel Veillard | cd21dc7 | 2001-11-04 20:03:38 +0000 | [diff] [blame] | 154 | - 2.4.7 broke SGML catalogs badly. this fixes it. |
| 155 | |
Daniel Veillard | 2913e4c | 2001-04-26 19:29:02 +0000 | [diff] [blame] | 156 | * Thu Apr 26 2001 Toshio Kuratomi <badger@prtr-13.ucsc.edu> |
Daniel Veillard | 1a12361 | 2001-09-19 08:06:23 +0000 | [diff] [blame] | 157 | |
| 158 | [2.3.7] |
Daniel Veillard | 2913e4c | 2001-04-26 19:29:02 +0000 | [diff] [blame] | 159 | - Added libxml.m4 to the distribution file list |
| 160 | - Moved the man pages from /usr/man to /usr/share/man to conform to FHS2.0 |
| 161 | - Moved programmer documentation into the devel package |
| 162 | |
Daniel Veillard | c5d6434 | 2001-06-24 12:13:24 +0000 | [diff] [blame] | 163 | * Thu Sep 23 1999 Daniel Veillard <daniel@veillard.com> |
Daniel Veillard | dd6b367 | 1999-09-23 22:19:22 +0000 | [diff] [blame] | 164 | |
| 165 | - corrected the spec file alpha stuff |
| 166 | - switched to version 1.7.1 |
| 167 | - Added validation, XPath, nanohttp, removed memory leaks |
| 168 | - Renamed CHAR to xmlChar |
| 169 | |
Daniel Veillard | c5d6434 | 2001-06-24 12:13:24 +0000 | [diff] [blame] | 170 | * Wed Jun 2 1999 Daniel Veillard <daniel@veillard.com> |
Daniel Veillard | 011b63c | 1999-06-02 17:44:04 +0000 | [diff] [blame] | 171 | |
| 172 | - Switched to version 1.1: SAX extensions, better entities support, lots of |
| 173 | bug fixes. |
| 174 | |
Daniel Veillard | c5d6434 | 2001-06-24 12:13:24 +0000 | [diff] [blame] | 175 | * Sun Oct 4 1998 Daniel Veillard <daniel@veillard.com> |
Daniel Veillard | 8631b78 | 1998-10-04 14:50:58 +0000 | [diff] [blame] | 176 | |
| 177 | - Added xml-config to the package |
| 178 | |
Michael Fulbright | 62e8e80 | 1998-09-25 16:58:38 +0000 | [diff] [blame] | 179 | * Thu Sep 24 1998 Michael Fulbright <msf@redhat.com> |
| 180 | |
| 181 | - Built release 0.30 |
Daniel Veillard | 1a12361 | 2001-09-19 08:06:23 +0000 | [diff] [blame] | 182 | |