summaryrefslogtreecommitdiff
path: root/textproc/soprano
diff options
context:
space:
mode:
authormarkd <markd>2013-02-04 20:05:21 +0000
committermarkd <markd>2013-02-04 20:05:21 +0000
commit11996599b1f67c77883f65deb55979d5370c595f (patch)
treec84d6a02575ec04ca9c140569cdb14baa2658331 /textproc/soprano
parentceaa42bab97b0427d968c198e55241ef19c95076 (diff)
downloadpkgsrc-11996599b1f67c77883f65deb55979d5370c595f.tar.gz
Update to 2.8.0 - from Jaap Boender
2.8.0 * Improved NRLModel query prefix expansion. * Support for plain SQL queries in the Virtuoso backend. * Introduced new query language flag QueryLanguageSparqlNoInference. This language is not supported by any backends. It is supposed to be used in clients like Nepomuk to avoid the usage of long user types which are harder to read. * Convert Virtuoso IRI_ID values into simple literal strings. At some point if the need arises we might call ID_TO_IRI() to convert them into URIs. * New boolean option "noStatementSignals" in the Virtuoso backend which will disable Model::statementsAdded() and friends. * Improved local unix socket communication in the server/client system: A custom socket implementation as a replacment for QLocalSocket makes it possible to use one socket across threads. 2.7.6 * Support for the new SPARQL 1.1 DELETE statement which omits the graph to delete from for faster removeAllStatement execution. * Support for the new default graph query result format of Virtuoso >= 6.1.5 * Fixed apidox generation with Doxygen 1.8.0. 2.7.5 * Be less strict when converting a string to a QDateTime: - Allow an empty time part, ie. "2011-10-04". - Allow the usage of a space instead of "T" to separate date from time. * Fixed URI parsing in the SparqlModel. * Fixed an endless loop in the VirtuosoModel destruction which can happen in rare error cases. * Fixed serialization of non-string literal values. * Support Turtle result encoding in the SPARQL model.
Diffstat (limited to 'textproc/soprano')
-rw-r--r--textproc/soprano/Makefile5
-rw-r--r--textproc/soprano/distinfo9
-rw-r--r--textproc/soprano/patches/patch-backends_virtuoso_virtuosocontroller.cpp14
3 files changed, 6 insertions, 22 deletions
diff --git a/textproc/soprano/Makefile b/textproc/soprano/Makefile
index a2f7d99836b..ac723391b5b 100644
--- a/textproc/soprano/Makefile
+++ b/textproc/soprano/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.33 2013/01/26 21:36:48 adam Exp $
+# $NetBSD: Makefile,v 1.34 2013/02/04 20:05:21 markd Exp $
-DISTNAME= soprano-2.7.4
-PKGREVISION= 7
+DISTNAME= soprano-2.8.0
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=soprano/}
EXTRACT_SUFX= .tar.bz2
diff --git a/textproc/soprano/distinfo b/textproc/soprano/distinfo
index f699a5a4116..81b4d90804f 100644
--- a/textproc/soprano/distinfo
+++ b/textproc/soprano/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.11 2012/08/02 11:53:56 jperkin Exp $
+$NetBSD: distinfo,v 1.12 2013/02/04 20:05:21 markd Exp $
-SHA1 (soprano-2.7.4.tar.bz2) = d16231dc021bd66eebb9d1975ba075d2169a2617
-RMD160 (soprano-2.7.4.tar.bz2) = 9e4c192165616ca5eca3ed22b9f12554530c88cc
-Size (soprano-2.7.4.tar.bz2) = 1953706 bytes
-SHA1 (patch-backends_virtuoso_virtuosocontroller.cpp) = fed127450c73da19eef9a2c8a7753faa1b69b7f2
+SHA1 (soprano-2.8.0.tar.bz2) = 55882adb68f90ec36b79ecf64206521226e74c8f
+RMD160 (soprano-2.8.0.tar.bz2) = 8e980df7b5bc0596e6f6ff15b4113c07171c0756
+Size (soprano-2.8.0.tar.bz2) = 1957014 bytes
diff --git a/textproc/soprano/patches/patch-backends_virtuoso_virtuosocontroller.cpp b/textproc/soprano/patches/patch-backends_virtuoso_virtuosocontroller.cpp
deleted file mode 100644
index 52afa140165..00000000000
--- a/textproc/soprano/patches/patch-backends_virtuoso_virtuosocontroller.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-backends_virtuoso_virtuosocontroller.cpp,v 1.1 2012/08/02 11:53:56 jperkin Exp $
-
-Need unistd.h for sleep()
-
---- backends/virtuoso/virtuosocontroller.cpp.orig Thu Aug 2 11:50:43 2012
-+++ backends/virtuoso/virtuosocontroller.cpp Thu Aug 2 11:50:52 2012
-@@ -39,6 +39,7 @@
- #include <sys/types.h>
- #include <signal.h>
- #include <sys/wait.h>
-+#include <unistd.h>
- #endif
-
- Q_DECLARE_METATYPE( QProcess::ExitStatus )