Update to raptor v2 2.0.4
OBS-URL: https://build.opensuse.org/package/show/X11:common:Factory/raptor?expand=0&rev=6
This commit is contained in:
parent
07a3c0897b
commit
df4b0dcd67
@ -1 +1 @@
|
|||||||
libraptor1
|
libraptor2
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
Index: src/raptor_internal.h
|
|
||||||
===================================================================
|
|
||||||
--- src/raptor_internal.h.orig
|
|
||||||
+++ src/raptor_internal.h
|
|
||||||
@@ -852,7 +852,6 @@ int raptor_utf8_is_nfc(const unsigned ch
|
|
||||||
|
|
||||||
#ifdef RAPTOR_WWW_LIBCURL
|
|
||||||
#include <curl/curl.h>
|
|
||||||
-#include <curl/types.h>
|
|
||||||
#include <curl/easy.h>
|
|
||||||
#endif
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:668cb44e54dbfc8f5a67a197d15ce11131a91501915c191ea48edf4822c14687
|
|
||||||
size 1213412
|
|
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 19 11:41:09 UTC 2011 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
|
- update to raptor2 v2.0.4
|
||||||
|
+ RDF/JSON parser now supports YAJL V2
|
||||||
|
+ Support libcurl 7.21.7 that removed the curl/types.h header
|
||||||
|
+ TRiG parser now supports the optional ':' in 'uri : { }' syntax
|
||||||
|
+ WWW module now supports setting SSL client side certificates
|
||||||
|
+ various bugfixes
|
||||||
|
+ see also http://librdf.org/raptor/RELEASE.html#rel2_0_4
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 11 19:07:13 UTC 2011 - aj@suse.de
|
Thu Aug 11 19:07:13 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
25
raptor.spec
25
raptor.spec
@ -21,13 +21,12 @@
|
|||||||
Name: raptor
|
Name: raptor
|
||||||
BuildRequires: curl-devel gtkdoc libxml2-devel libxslt-devel pkg-config
|
BuildRequires: curl-devel gtkdoc libxml2-devel libxslt-devel pkg-config
|
||||||
Summary: RDF Parser Toolkit
|
Summary: RDF Parser Toolkit
|
||||||
Version: 1.4.21
|
Version: 2.0.4
|
||||||
Release: 9
|
Release: 1
|
||||||
License: LGPLv2.1+ ; ASLv..
|
License: LGPLv2.1+ ; ASLv..
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Source0: %{name}-%{version}.tar.bz2
|
Source0: %{name}2-%{version}.tar.bz2
|
||||||
Source1: baselibs.conf
|
Source1: baselibs.conf
|
||||||
Patch1: curl-types.patch
|
|
||||||
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
|
||||||
|
|
||||||
@ -39,12 +38,12 @@ Authors:
|
|||||||
--------
|
--------
|
||||||
Dave Beckett <dave@dajobe.org>
|
Dave Beckett <dave@dajobe.org>
|
||||||
|
|
||||||
%package -n libraptor1
|
%package -n libraptor2
|
||||||
License: LGPLv2.1+ ; ASLv..
|
License: LGPLv2.1+ ; ASLv..
|
||||||
Summary: RDF Parser Toolkit
|
Summary: RDF Parser Toolkit
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n libraptor1
|
%description -n libraptor2
|
||||||
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
|
||||||
standalone RDF parsers, generating triples from RDF/XML or N-Triples.
|
standalone RDF parsers, generating triples from RDF/XML or N-Triples.
|
||||||
|
|
||||||
@ -56,7 +55,7 @@ Authors:
|
|||||||
License: LGPLv2.1+ ; ASLv..
|
License: LGPLv2.1+ ; ASLv..
|
||||||
Summary: Development package for the raptor library
|
Summary: Development package for the raptor library
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: libraptor1 = %{version} glibc-devel
|
Requires: libraptor2 = %{version} glibc-devel
|
||||||
Requires: raptor = %{version}
|
Requires: raptor = %{version}
|
||||||
Provides: raptor-devel = %{version}
|
Provides: raptor-devel = %{version}
|
||||||
Obsoletes: raptor-devel < %{version}
|
Obsoletes: raptor-devel < %{version}
|
||||||
@ -71,12 +70,10 @@ Authors:
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch1 -p0
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
autoreconf -fiv
|
|
||||||
%configure --disable-static --with-pic --with-html-dir=%{_docdir}
|
%configure --disable-static --with-pic --with-html-dir=%{_docdir}
|
||||||
%{__make} %{?jobs:-j%jobs}
|
%__make %{?_smp_flags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{__make} DESTDIR="%{buildroot}" install
|
%{__make} DESTDIR="%{buildroot}" install
|
||||||
@ -89,9 +86,9 @@ export MALLOC_CHECK_=2
|
|||||||
%{__make} check
|
%{__make} check
|
||||||
unset MALLOC_CHECK_
|
unset MALLOC_CHECK_
|
||||||
|
|
||||||
%post -n libraptor1 -p /sbin/ldconfig
|
%post -n libraptor2 -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -n libraptor1 -p /sbin/ldconfig
|
%postun -n libraptor2 -p /sbin/ldconfig
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
%{__rm} -rf %{buildroot}
|
%{__rm} -rf %{buildroot}
|
||||||
@ -110,8 +107,8 @@ unset MALLOC_CHECK_
|
|||||||
%{_bindir}/*-config
|
%{_bindir}/*-config
|
||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
|
||||||
%files -n libraptor1
|
%files -n libraptor2
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/libraptor.so.1*
|
%{_libdir}/libraptor.so.2*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
3
raptor2-2.0.4.tar.bz2
Normal file
3
raptor2-2.0.4.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:bb9ede0f52949d566edae02228a4c450727affe6a1df91b8afd60e7499cada11
|
||||||
|
size 1215949
|
Loading…
Reference in New Issue
Block a user