summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2014-12-30 14:32:59 +0000
committerwiz <wiz@pkgsrc.org>2014-12-30 14:32:59 +0000
commit5b281f612c0b2fedc6db10906553346dff1f3fda (patch)
treedb81d005a9e2081b7732ebd3e5d9d7b3495635a9 /textproc
parent0238021bc4fe0f4f2022d0ff50887da02420ab15 (diff)
downloadpkgsrc-5b281f612c0b2fedc6db10906553346dff1f3fda.tar.gz
Update to 0.9.33:
Rasqal 0.9.33 changes Issues Fixed: 0000546: Can't take query from URI when using -p 0000568: Filter expression with division does not work 0000583: CONSTRUCT halts at a template triple with unbound variable 0000588: roqet: select from SERVICE returns all NULLs SPARQL changes Fixed BASE to override any API base URI. Datetime class changes Fixed storing timezone minutes correctly. Graph pattern class changes Added new getter functions rasqal_graph_pattern_get_triples(), rasqal_literal_get_type() and rasqal_literal_get_language() from Pull Request #1 by Cosmin Basca. Thanks. Query engine changes Fixed the aggregation total evaluation of AVG. Fixed STRBEFORE and STRAFTER evaluation to match languages if present and add the needle language to the result. Fixed CONCAT() evaluation to return the correct types and languages. Sorting now uses sort utility function raptor_sort_r() with context args provided by Raptor 2.0.15+ or an internal simple (not so performant) replacement, if too old. Query result class changes Can write variable bindings query results in mKR relation CSV format. Made internal changes to support reading and writing boolean result formats. That means rasqal_query_results_formatter_read() may now return boolean results if the formatter supports it, such as SPARQL XML. Added rasqal_new_query_results_from_string() to make a query results from a string (with optional length). The results format is guessed from the input data - base_uri and string content using rasqal_world_guess_query_results_format_name(). Added rasqal_query_results_formats_check2() deprecating rasqal_query_results_formats_check(). The API change is due to the return value; the result is now non-0 if the format exists. Added rasqal_new_query_results2() deprecating rasqal_new_query_results() removing the now ignored vars_table parameter. A query result now manages it's own variables table. Results class changes Fixed returning the correct variables count for reading SPARQL XML results sets. This caused some queries to fail if the projected variables count did not match the count in the result set. Fixes Issue #0000588 Variables table class changes Added rasqal_variables_table_add2() deprecating rasqal_variables_table_add(). This takes a more sensible argument style with copying the input parameters name and value, and allowing name length to be optionally given. This results in smaller calling code and better ownership semantics. Utility changes roqet(1) now supports using a URI or local file to send to a SPARQL protocol service URI. Fixes Issue #0000546 Other changes Fixes to make Rasqal build in Travis CI, testing against newest and oldest raptors. Use __FUNCTION__ (c99) replacing __func__ (c90) in debug macros. Fixes in Pull Request #3 for building with icc from Sebastian Freundt. Thanks. Many code quality fixes from clang and coverity primarily in error path cleanups (out of memory cases) and dead code. Updated the fix-flex and fix-bison scripts to remove dead code that clang and coverity complain about. Added new C testrunner utility to run the tests to eventually replace the (perl) improve and check-sparql scripts. Fixed some API changelog mistakes. Updated gcc / clang warning args used (-Wxxxx) and made multiple minor code fixes such as replacing %d with %u in debug messages or adding missing default: to switches even when all cases were covered. Added many more internal casts to make -Wconversion happier when enabled.
Diffstat (limited to 'textproc')
-rw-r--r--textproc/rasqal/Makefile4
-rw-r--r--textproc/rasqal/PLIST5
-rw-r--r--textproc/rasqal/distinfo8
3 files changed, 10 insertions, 7 deletions
diff --git a/textproc/rasqal/Makefile b/textproc/rasqal/Makefile
index e6b1f1dc1ec..d3db4315ce1 100644
--- a/textproc/rasqal/Makefile
+++ b/textproc/rasqal/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.23 2014/05/04 17:06:35 wiz Exp $
+# $NetBSD: Makefile,v 1.24 2014/12/30 14:32:59 wiz Exp $
-DISTNAME= rasqal-0.9.32
+DISTNAME= rasqal-0.9.33
CATEGORIES= textproc
MASTER_SITES= http://download.librdf.org/source/
diff --git a/textproc/rasqal/PLIST b/textproc/rasqal/PLIST
index 3f005d7c4e0..563173721ac 100644
--- a/textproc/rasqal/PLIST
+++ b/textproc/rasqal/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2014/05/04 17:06:35 wiz Exp $
+@comment $NetBSD: PLIST,v 1.11 2014/12/30 14:32:59 wiz Exp $
bin/rasqal-config
bin/roqet
include/rasqal/rasqal.h
@@ -18,9 +18,12 @@ share/gtk-doc/html/rasqal/rasqal-changes-0-9-23-to-0-9-24.html
share/gtk-doc/html/rasqal/rasqal-changes-0-9-24-to-0-9-25.html
share/gtk-doc/html/rasqal/rasqal-changes-0-9-25-to-0-9-26.html
share/gtk-doc/html/rasqal/rasqal-changes-0-9-26-to-0-9-27.html
+share/gtk-doc/html/rasqal/rasqal-changes-0-9-27-to-0-9-28.html
share/gtk-doc/html/rasqal/rasqal-changes-0-9-28-to-0-9-29.html
share/gtk-doc/html/rasqal/rasqal-changes-0-9-29-to-0-9-30.html
+share/gtk-doc/html/rasqal/rasqal-changes-0-9-30-to-0-9-30.html
share/gtk-doc/html/rasqal/rasqal-changes-0-9-30-to-0-9-31.html
+share/gtk-doc/html/rasqal/rasqal-changes-0-9-32-to-0-9-33.html
share/gtk-doc/html/rasqal/rasqal-changes.html
share/gtk-doc/html/rasqal/rasqal-section-data.html
share/gtk-doc/html/rasqal/rasqal-section-expression.html
diff --git a/textproc/rasqal/distinfo b/textproc/rasqal/distinfo
index 624439f4b1b..4bf7b2edf73 100644
--- a/textproc/rasqal/distinfo
+++ b/textproc/rasqal/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.10 2014/05/04 17:06:35 wiz Exp $
+$NetBSD: distinfo,v 1.11 2014/12/30 14:32:59 wiz Exp $
-SHA1 (rasqal-0.9.32.tar.gz) = e16621cdc939cba3e35a9205fa4697de4940961b
-RMD160 (rasqal-0.9.32.tar.gz) = 1997e3d4247eb6ce901048b03922852032fc5cc5
-Size (rasqal-0.9.32.tar.gz) = 1544623 bytes
+SHA1 (rasqal-0.9.33.tar.gz) = 281c2e0a352c53ef1656bfe778c380226d61726f
+RMD160 (rasqal-0.9.33.tar.gz) = def2b5f5510596a1b2508f19493ecdeed8ef9e47
+Size (rasqal-0.9.33.tar.gz) = 1595647 bytes