This commit is contained in:
parent
0ff36117dc
commit
55ba9610f8
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:9c1aa83def8425743328bde840940de4576f5716e38e184e1ea61e45adc996e5
|
|
||||||
size 345791
|
|
3
expat-2.0.1.tar.bz2
Normal file
3
expat-2.0.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d5ac9dc3bc284deacf64394cac8c908c5c4ada7eedefaae758d19dec43269f91
|
||||||
|
size 362355
|
@ -1,3 +1,28 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 7 16:46:32 CEST 2007 - prusnak@suse.cz
|
||||||
|
|
||||||
|
- update to 2.0.1:
|
||||||
|
( from Changes )
|
||||||
|
* Fixed bugs #1515266, 1515600: The character data handler's calling
|
||||||
|
of XML_StopParser() was not handled properly; if the parser was
|
||||||
|
stopped and the handler set to NULL, the parser would segfault.
|
||||||
|
* Fixed bug #1690883: Expat failed on EBCDIC systems as it assumed
|
||||||
|
some character constants to be ASCII encoded.
|
||||||
|
* Minor cleanups of the test harness.
|
||||||
|
* Fixed xmlwf bug #1513566: "out of memory" error on file size zero.
|
||||||
|
* Fixed outline.c bug #1543233: missing a final XML_ParserFree() call.
|
||||||
|
* Fixes and improvements for Windows platform:
|
||||||
|
bugs #1409451, #1476160, 1548182, 1602769, 1717322.
|
||||||
|
* Build fixes for various platforms:
|
||||||
|
HP-UX, Tru64, Solaris 9: patch #1437840, bug #1196180.
|
||||||
|
All Unix: #1554618 (refreshed config.sub/config.guess).
|
||||||
|
#1490371, #1613457: support both, DESTDIR and INSTALL_ROOT,
|
||||||
|
without relying on GNU-Make specific features.
|
||||||
|
#1647805: Patched configure.in to work better with Intel compiler.
|
||||||
|
* Fixes to Makefile.in to have make check work correctly:
|
||||||
|
bugs #1408143, #1535603, #1536684.
|
||||||
|
* Added Open Watcom support: patch #1523242.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 17 18:49:10 CEST 2007 - prusnak@suse.cz
|
Tue Apr 17 18:49:10 CEST 2007 - prusnak@suse.cz
|
||||||
|
|
||||||
|
39
expat.spec
39
expat.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package expat (Version 2.0.0)
|
# spec file for package expat (Version 2.0.1)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -11,10 +11,10 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
Name: expat
|
Name: expat
|
||||||
Version: 2.0.0
|
Version: 2.0.1
|
||||||
Release: 47
|
Release: 1
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
License: MOZILLA PUBLIC LICENSE (MPL/NPL)
|
License: X11/MIT
|
||||||
URL: http://expat.sourceforge.net/
|
URL: http://expat.sourceforge.net/
|
||||||
Summary: XML Parser Toolkit
|
Summary: XML Parser Toolkit
|
||||||
Source0: %{name}-%{version}.tar.bz2
|
Source0: %{name}-%{version}.tar.bz2
|
||||||
@ -121,6 +121,7 @@ Authors:
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
cp %{S:1} .
|
cp %{S:1} .
|
||||||
|
rm -f examples/*.dsp
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%configure
|
||||||
@ -129,11 +130,17 @@ make
|
|||||||
%install
|
%install
|
||||||
make DESTDIR=$RPM_BUILD_ROOT install
|
make DESTDIR=$RPM_BUILD_ROOT install
|
||||||
rm doc/xmlwf.1
|
rm doc/xmlwf.1
|
||||||
rm $RPM_BUILD_ROOT/%{_libdir}/libexpat.la
|
rm -f $RPM_BUILD_ROOT/%{_libdir}/libexpat.la
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
%post -n libexpat1
|
||||||
|
%run_ldconfig
|
||||||
|
|
||||||
|
%postun -n libexpat1
|
||||||
|
%run_ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-, root, root)
|
%defattr(-, root, root)
|
||||||
%doc COPYING Changes README examples expatfaq.html
|
%doc COPYING Changes README examples expatfaq.html
|
||||||
@ -152,6 +159,28 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_libdir}/libexpat.so
|
%{_libdir}/libexpat.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jun 07 2007 - prusnak@suse.cz
|
||||||
|
- update to 2.0.1:
|
||||||
|
( from Changes )
|
||||||
|
* Fixed bugs #1515266, 1515600: The character data handler's calling
|
||||||
|
of XML_StopParser() was not handled properly; if the parser was
|
||||||
|
stopped and the handler set to NULL, the parser would segfault.
|
||||||
|
* Fixed bug #1690883: Expat failed on EBCDIC systems as it assumed
|
||||||
|
some character constants to be ASCII encoded.
|
||||||
|
* Minor cleanups of the test harness.
|
||||||
|
* Fixed xmlwf bug #1513566: "out of memory" error on file size zero.
|
||||||
|
* Fixed outline.c bug #1543233: missing a final XML_ParserFree() call.
|
||||||
|
* Fixes and improvements for Windows platform:
|
||||||
|
bugs #1409451, #1476160, 1548182, 1602769, 1717322.
|
||||||
|
* Build fixes for various platforms:
|
||||||
|
HP-UX, Tru64, Solaris 9: patch #1437840, bug #1196180.
|
||||||
|
All Unix: #1554618 (refreshed config.sub/config.guess).
|
||||||
|
[#1490371], #1613457: support both, DESTDIR and INSTALL_ROOT,
|
||||||
|
without relying on GNU-Make specific features.
|
||||||
|
[#1647805]: Patched configure.in to work better with Intel compiler.
|
||||||
|
* Fixes to Makefile.in to have make check work correctly:
|
||||||
|
bugs #1408143, #1535603, #1536684.
|
||||||
|
* Added Open Watcom support: patch #1523242.
|
||||||
* Tue Apr 17 2007 - prusnak@suse.cz
|
* Tue Apr 17 2007 - prusnak@suse.cz
|
||||||
- split libexpat1 and libexpat-devel subpackages [#260214]
|
- split libexpat1 and libexpat-devel subpackages [#260214]
|
||||||
* Thu Oct 19 2006 - dmueller@suse.de
|
* Thu Oct 19 2006 - dmueller@suse.de
|
||||||
|
Loading…
Reference in New Issue
Block a user