diff options
author | Andreas Enge <andreas@enge.fr> | 2014-04-28 20:09:27 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2014-04-28 20:09:27 +0200 |
commit | c69fe8306d7fa69fa67c31b296ae25353f73a2a0 (patch) | |
tree | 5030197587a747ea254f93f4e6c1cfdd641ed101 /gnu/packages/rdf.scm | |
parent | 06ed59825ecc0dc78d4d16d06c129e2f4879201a (diff) | |
download | patches-c69fe8306d7fa69fa67c31b296ae25353f73a2a0.tar patches-c69fe8306d7fa69fa67c31b296ae25353f73a2a0.tar.gz |
gnu: soprano: Upgrade to 2.9.4.
* gnu/packages/rdf.scm (soprano): Upgrade to 2.9.4.
Diffstat (limited to 'gnu/packages/rdf.scm')
-rw-r--r-- | gnu/packages/rdf.scm | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/gnu/packages/rdf.scm b/gnu/packages/rdf.scm index 7bf75eeb28..b297b5209b 100644 --- a/gnu/packages/rdf.scm +++ b/gnu/packages/rdf.scm @@ -98,12 +98,7 @@ Java Lucene text search engine API to C++.") (define-public soprano (package (name "soprano") - (version "2.9.3") - ;; 2.9.4 requires clucene, see - ;; http://www.mailinglistarchive.com/html/lfs-book@linuxfromscratch.org/2013-10/msg00285.html - ;; The stable clucene-0.9.21b fails one of its tests; - ;; in the unstable clucene-2.3.3.4 the binary cl_test is not found. - ;; In any case, the library seems to be unmaintained. + (version "2.9.4") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/soprano/Soprano/" @@ -111,14 +106,16 @@ Java Lucene text search engine API to C++.") "soprano-" version ".tar.bz2")) (sha256 (base32 - "08gb5d8bgy7vc6qd6r1kkmmc5rli67dlglpjqjlahpnvs26r1cwl")))) + "1rg0x7yg0a1cbnxz7kqk52580wla8jbnj4d4r3j7l7g7ajyny1k4")))) (build-system cmake-build-system) - ;; FIXME: Add optional dependencies: Redland, odbci, clucene + ;; FIXME: Add optional dependencies: Redland, odbci. (native-inputs `(("doxygen" ,doxygen) ("pkg-config" ,pkg-config))) (inputs - `(("qt" ,qt-4) + `(("clucene" ,clucene) ; is not yet "fully found", but sufficiently + ; so to allow for compilation... + ("qt" ,qt-4) ("raptor2" ,raptor2))) (home-page "http://soprano.sourceforge.net/") (synopsis "RDF data library for Qt") |