OBS User unknown 2007-05-02 18:15:05 +00:00 committed by Git OBS Bridge
parent 80608609b2
commit a1b051a5a9
4 changed files with 101 additions and 30 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fb3a7c44bc90afb4e96904208e510ec8e853c556e83519a454cd955e5dfd4891
size 1021906

3
raptor-1.4.15.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:df391e58c8ee3cd1efd8f1bef7ae6dc103c1479ec9e54511e5a933d057983efc
size 1445553

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Wed May 2 15:48:53 CEST 2007 - wstephenson@suse.de
- updated to version 1.4.15:
* Mostly pass GRDDL W3C Working Draft 2 March 2007 parser test suite
* Turtle parser was changed to accept the N3 mime type text/rdf+n3
at low Q(quality) so it might work for N3 that is the RDF subset.
* Changed the RSS Tag Soup parser and RSS 1.0 serializer to stop
sharing use of the declared namespaces so that when using both
at the same time, there is no double-free of the same objects.
* Correct the content: namespace URI in the RSS parser and serializers.
* rapper gains a -t/--trace option to show URIs traversed.
* raptor_uri_resolve_uri_reference() buffer overrun fixed
* Enhanced XML error message reporting
- version 1.4.14:
* Added a Turtle Terse RDF Triple Language serialiser by Dave Robillard
based on the existing RDF/XML-Abbrev serialiser.
* Added a GraphViz DOT format serialiser by Evan Nemerson.
* The GRDDL parser now does namespace and profile URI recursion and
has other improvements and fixes.
* The libxml minimum version is now 2.6.8
- version 1.4.13:
* Prevent losing memory for a raptor_xml_writer when a serializer
is reused several times.
* Fixed Issue#0000134: Check for equal scheme and authority during
construction of relative URIs from two absolute URIs, from the
Redland Issue Tracker.
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Oct 12 18:23:41 CEST 2006 - tiwai@suse.de Thu Oct 12 18:23:41 CEST 2006 - tiwai@suse.de

View File

@ -1,7 +1,7 @@
# #
# spec file for package raptor (Version 1.4.12) # spec file for package raptor (Version 1.4.15)
# #
# Copyright (c) 2006 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
# package are under the same license as the package itself. # package are under the same license as the package itself.
# #
@ -13,13 +13,14 @@
Name: raptor Name: raptor
BuildRequires: gtkdoc libxml2-devel BuildRequires: gtkdoc libxml2-devel
Summary: Raptor RDF Parser Toolkit Summary: Raptor RDF Parser Toolkit
Version: 1.4.12 Version: 1.4.15
Release: 1 Release: 1
License: LGPL License: The Apache Software License
Group: System/Libraries Group: System/Libraries
Source: %{name}-%{version}.tar.bz2 Source: %{name}-%{version}.tar.gz
URL: http://www.redland.opensource.ac.uk/raptor/ URL: http://www.redland.opensource.ac.uk/raptor/
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: libraptor1
%description %description
Raptor is the RDF Parser Toolkit for Redland that provides a set of Raptor is the RDF Parser Toolkit for Redland that provides a set of
@ -29,22 +30,7 @@ standalone RDF parsers, generating triples from RDF/XML or N-Triples.
Authors: Authors:
-------- --------
Dave Beckett <Dave.Beckett@bristol.ac.uk> Dave Beckett <dave@dajobe.org>
%package devel
Summary: Development package for the raptor library
Group: Development/Libraries/C and C++
Requires: raptor = %{version} glibc-devel libxml2-devel
%description devel
This package contains the files needed to compile programs that use the
raptor library.
Authors:
--------
Dave Beckett <Dave.Beckett@bristol.ac.uk>
%prep %prep
%setup %setup
@ -67,15 +53,41 @@ mv $RPM_BUILD_ROOT%{_docdir}/raptor $RPM_BUILD_ROOT%{_docdir}/raptor-devel
%clean %clean
test "$RPM_BUILD_ROOT" != "/" -a -d "$RPM_BUILD_ROOT" && rm -rf $RPM_BUILD_ROOT test "$RPM_BUILD_ROOT" != "/" -a -d "$RPM_BUILD_ROOT" && rm -rf $RPM_BUILD_ROOT
%package -n libraptor1
Summary: Raptor RDF Parser Toolkit
Group: System/Libraries
%files %description -n libraptor1
Raptor is the RDF Parser Toolkit for Redland that provides a set of
standalone RDF parsers, generating triples from RDF/XML or N-Triples.
Authors:
--------
Dave Beckett <dave@dajobe.org>
%files -n libraptor1
%defattr(-,root,root) %defattr(-,root,root)
%doc AUTHORS COPYING COPYING.LIB ChangeLog LICENSE.txt NEWS README
%{_libdir}/lib*.so.* %{_libdir}/lib*.so.*
%{_bindir}/rapper %package -n libraptor1-devel
%{_mandir}/man?/* Summary: Development package for the raptor library
Group: Development/Libraries/C and C++
Requires: libraptor1 = %{version} glibc-devel libxml2-devel
%files devel %description -n libraptor1-devel
This package contains the files needed to compile programs that use the
raptor library.
Authors:
--------
Dave Beckett <dave@dajobe.org>
%files -n libraptor1-devel
%defattr(-,root,root) %defattr(-,root,root)
%doc %{_docdir}/raptor-devel %doc %{_docdir}/raptor-devel
%{_libdir}/lib*.so %{_libdir}/lib*.so
@ -85,7 +97,38 @@ test "$RPM_BUILD_ROOT" != "/" -a -d "$RPM_BUILD_ROOT" && rm -rf $RPM_BUILD_ROOT
%{_bindir}/*-config %{_bindir}/*-config
%{_libdir}/pkgconfig/*.pc %{_libdir}/pkgconfig/*.pc
%changelog -n raptor %files
%defattr(-,root,root)
%doc AUTHORS COPYING COPYING.LIB ChangeLog LICENSE.txt NEWS README
%{_bindir}/rapper
%{_mandir}/man?/*
%changelog
* Wed May 02 2007 - wstephenson@suse.de
- updated to version 1.4.15:
* Mostly pass GRDDL W3C Working Draft 2 March 2007 parser test suite
* Turtle parser was changed to accept the N3 mime type text/rdf+n3
at low Q(quality) so it might work for N3 that is the RDF subset.
* Changed the RSS Tag Soup parser and RSS 1.0 serializer to stop
sharing use of the declared namespaces so that when using both
at the same time, there is no double-free of the same objects.
* Correct the content: namespace URI in the RSS parser and serializers.
* rapper gains a -t/--trace option to show URIs traversed.
* raptor_uri_resolve_uri_reference() buffer overrun fixed
* Enhanced XML error message reporting
- version 1.4.14:
* Added a Turtle Terse RDF Triple Language serialiser by Dave Robillard
based on the existing RDF/XML-Abbrev serialiser.
* Added a GraphViz DOT format serialiser by Evan Nemerson.
* The GRDDL parser now does namespace and profile URI recursion and
has other improvements and fixes.
* The libxml minimum version is now 2.6.8
- version 1.4.13:
* Prevent losing memory for a raptor_xml_writer when a serializer
is reused several times.
* Fixed Issue#0000134: Check for equal scheme and authority during
construction of relative URIs from two absolute URIs, from the
Redland Issue Tracker.
* Thu Oct 12 2006 - tiwai@suse.de * Thu Oct 12 2006 - tiwai@suse.de
- updated to version 1.4.12: - updated to version 1.4.12:
* Make serialization order compatible with 1.4.10 * Make serialization order compatible with 1.4.10