This commit is contained in:
parent
766f5e1ea2
commit
51be604f97
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:995033d33c41f99c3a24a4f4b0e5c893b740658c4f3edfbbd3c290dc80ba79a2
|
|
||||||
size 268434
|
|
3
mxml-2.5.tar.bz2
Normal file
3
mxml-2.5.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6725a701bd3cf4e6e121eb9d08433dcd7cf5c890727d9323cb88978427182d03
|
||||||
|
size 191933
|
10
mxml.changes
10
mxml.changes
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon May 19 17:27:50 CEST 2008 - mrueckert@suse.de
|
||||||
|
|
||||||
|
- update to version 2.5
|
||||||
|
The new release fixes some XML parsing problems and adds many
|
||||||
|
new mxmldoc features.
|
||||||
|
- additional changes from 2.4
|
||||||
|
fixes some build and XML parsing bugs, adds support for the apos
|
||||||
|
character entity, and adds per-thread global settings.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 13 01:27:12 CEST 2007 - mrueckert@suse.de
|
Fri Jul 13 01:27:12 CEST 2007 - mrueckert@suse.de
|
||||||
|
|
||||||
|
36
mxml.spec
36
mxml.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package mxml (Version 2.3)
|
# spec file for package mxml (Version 2.5)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 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
|
||||||
# package are under the same license as the package itself.
|
# package are under the same license as the package itself.
|
||||||
#
|
#
|
||||||
@ -10,11 +10,12 @@
|
|||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
|
|
||||||
Name: mxml
|
Name: mxml
|
||||||
URL: http://www.easysw.com/~mike/mxml
|
Url: http://www.easysw.com/~mike/mxml
|
||||||
License: GPL v2 or later
|
License: LGPL v2.1 or later
|
||||||
Group: Development/Libraries/Other
|
Group: Development/Libraries/Other
|
||||||
Version: 2.3
|
Version: 2.5
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: Small XML Parsing Library
|
Summary: Small XML Parsing Library
|
||||||
Source: %{name}-%{version}.tar.bz2
|
Source: %{name}-%{version}.tar.bz2
|
||||||
@ -33,6 +34,7 @@ Authors:
|
|||||||
Michael Sweet
|
Michael Sweet
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
|
License: GPL v2 or later
|
||||||
Group: Development/Libraries/Other
|
Group: Development/Libraries/Other
|
||||||
Requires: %{name} = %{version}
|
Requires: %{name} = %{version}
|
||||||
#
|
#
|
||||||
@ -72,8 +74,7 @@ Authors:
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_bindir}/mxmldoc
|
%{_bindir}/mxmldoc
|
||||||
%{_libdir}/libmxml.so.1
|
%{_libdir}/libmxml.so.1*
|
||||||
%{_libdir}/libmxml.so.1.3
|
|
||||||
%{_mandir}/man1/mxmldoc.1*
|
%{_mandir}/man1/mxmldoc.1*
|
||||||
%doc %{_docdir}/%{name}
|
%doc %{_docdir}/%{name}
|
||||||
%exclude %{_docdir}/%{name}/mxml.html
|
%exclude %{_docdir}/%{name}/mxml.html
|
||||||
@ -89,7 +90,14 @@ Authors:
|
|||||||
%doc %{_docdir}/%{name}/*gif
|
%doc %{_docdir}/%{name}/*gif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Jul 13 2007 - mrueckert@suse.de
|
* Mon May 19 2008 mrueckert@suse.de
|
||||||
|
- update to version 2.5
|
||||||
|
The new release fixes some XML parsing problems and adds many
|
||||||
|
new mxmldoc features.
|
||||||
|
- additional changes from 2.4
|
||||||
|
fixes some build and XML parsing bugs, adds support for the apos
|
||||||
|
character entity, and adds per-thread global settings.
|
||||||
|
* Fri Jul 13 2007 mrueckert@suse.de
|
||||||
- update to version 2.3
|
- update to version 2.3
|
||||||
- adds several new features and fixes all known bugs.
|
- adds several new features and fixes all known bugs.
|
||||||
- adds a SAX API, more convenience functions, a user data pointer
|
- adds a SAX API, more convenience functions, a user data pointer
|
||||||
@ -101,18 +109,18 @@ Authors:
|
|||||||
new name mxml-2.3-nobinstrip.patch
|
new name mxml-2.3-nobinstrip.patch
|
||||||
- do not include the static library
|
- do not include the static library
|
||||||
- move the html docs to the devel package
|
- move the html docs to the devel package
|
||||||
* Wed Apr 25 2007 - mrueckert@suse.de
|
* Wed Apr 25 2007 mrueckert@suse.de
|
||||||
- removed valgrind and g++ from the buildrequires.
|
- removed valgrind and g++ from the buildrequires.
|
||||||
- splitted out a devel package.
|
- splitted out a devel package.
|
||||||
- enabled building of the shared library. (#255916)
|
- enabled building of the shared library. (#255916)
|
||||||
* Wed May 17 2006 - schwab@suse.de
|
* Wed May 17 2006 schwab@suse.de
|
||||||
- Don't strip binaries.
|
- Don't strip binaries.
|
||||||
* Wed Jan 25 2006 - mls@suse.de
|
* Wed Jan 25 2006 mls@suse.de
|
||||||
- converted neededforbuild to BuildRequires
|
- converted neededforbuild to BuildRequires
|
||||||
* Mon Jan 16 2006 - mrueckert@suse.de
|
* Tue Jan 17 2006 mrueckert@suse.de
|
||||||
- update to version 2.2.2
|
- update to version 2.2.2
|
||||||
* Tue Feb 15 2005 - kssingvo@suse.de
|
* Tue Feb 15 2005 kssingvo@suse.de
|
||||||
- updated to version 2.1
|
- updated to version 2.1
|
||||||
- rewrote many parts of the spec file to get it more SUSE like
|
- rewrote many parts of the spec file to get it more SUSE like
|
||||||
* Wed Aug 25 2004 - mana@suse.de
|
* Thu Aug 26 2004 mana@suse.de
|
||||||
- initial package for mxml-2.0
|
- initial package for mxml-2.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user