pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/lang/qore Updated lang/qore to version 0.8.13.
details: https://anonhg.NetBSD.org/pkgsrc/rev/007f34eb11d5
branches: trunk
changeset: 370168:007f34eb11d5
user: nros <nros%pkgsrc.org@localhost>
date: Thu Oct 12 18:17:46 2017 +0000
description:
Updated lang/qore to version 0.8.13.
New features in Qore:
* Input/Output stream APIs
* Vastly improved type system with complex type support
* Improved operators; list, string, binary slice operators,
the ".." range operator, improved new, cast<>, and instanceof
operators, lazy evaluation of functional and list operators
* Improved encryption support including AES encryption,
encryption/decryption streams, support for AAD and MACs
* Improved HTTPS and SSL security support with addition X.509
certificate support including automatic certificate
verification in client and server contexts
* Universal connection API
* Support for binding output placeholder buffers for result sets
that return an SQLStatement object for more efficient piecewise
processing of DB stored procedure/function calls that return
very large result sets
* Strong encapsulation support (ex: private:internal)
* Deterministic garbage collection performance improvements with
large cycles
* Debugging support and APIs including remote network debugging
* Language Server Protocol support for Qore in the new astparser
module for rich language support in IDEs such as the
Visual Studio Code Qore Extension
Bug Fixes in Qore:
* fixed a bug causing AbstractQuantifiedBidirectionalIterator not
being available (issue 968)
* BulkSqlUtil module fixes:
-fixed the module to work properly even with DB drivers that
do not support parameter array binding (issue 1154)
* CsvUtil module fixes:
-fixed a bug in an error message validating input data
(issue 1062)
-added an exception when detected headers do not match the
fields option (issue 2179)
* HttpServer module fixes:
-added logic to attempt to mask passwords in log messages
(issue 1086)
* HttpServerUtil module fixes:
-fixed a bug where the msg arg to AbstractAuthenticator::do401()
was ignored (issue 1047)
* RestHandler module fixes:
-added logic to allow sensitive data to be masked in log messages
(issue 1086)
* SqlUtil module fixes:
-fixed a bug in update and upsert statement generation when the
given data does not have enough columns to use the unique index
found, an error message is generated that contains all the
columns names instead of just the column names required by the
index (issue 1013)
* WebSocketClient module fixes:
-fixed a thread lock starvation race condition (issue 2130)
* UTF-16 fixes:
-fixed a bug comparing strings in UTF-16 encodings (issue 1579)
-fixed Qore::substr() and <string>::substr() with strings in
UTF-16 encodings (issue 1586)
-fixed Qore::trim(), Qore::ltrim(), Qore::rtrim() and the trim
operator with strings with UTF-16 encodings (issue 1775)
* fixed a bug where break and continue statements were accepted
outside of loops (issue 976)
* fixed a bug compiling on Solaris SPARC with g++ where
MPFR_DECL_INIT() is compiled incorrectly with -O1 or greater
(issue 958)
* fixed a bug causing an infinite loop in decompression functions
(issue 966)
* fixed an issue where an internal C++ API
(QoreProgram::parseCmdLineDefines()) performed a needless copy
of a data structure (issue 1099)
* fixed a stack corruption bug with asynchronous I/O on UNIX
systems with ReadOnlyFile methods (issue 1106)
* fixed bugs with inconsistent conversions of int, float, and
boolean values to date/time values, now they are all converted
uniformly to relative date/time values (issue 1156)
* fixed a bug where Qore allowed code to be declared both public
and private without a warning (issue 1187)
* fixed a bug where the instanceof operator would return True with
objects that did not publically inherit the given class or where
the given class is not accessible (issue 1191)
* fixed a bug in qpp support of the 'final' class flag (issue 1222)
* fixed a bug where the + operator provided access to private
members from outside the class (issue 1209)
* fixed a bug where different overloaded method variant resolution
rules were used at parse time (best match in hierarchy) and
runtime (best match in first matching class) in a class hierarchy
(issue 1229)
* fixed a bug where exceptions in base class constructor calls did
not reflect the actual source location (issue 1230)
* fixed a bug where runtime function/method variant matching was
incorrectly biased towards default matches for missing arguments
(issue 1231)
* fixed bugs where calls to Socket::upgradeClientToSSL() and
Socket::upgradeServerToSSL() were ignored with no exception
thrown if the socket was not connected (issue 1258)
* fixed a bug where a closure created in an object scope could not be
called if the object had been deleted, even if the closure did not
refer to the object (issue 1303)
* fixed a bug where ord() would return negative numbers for bytes
with the high bit set with compilers where char is the same as
signed char (issue 1385)
* fixed a bug where int(number) returned rounded value instead of the
integer part (while int(float) behaved correctly; also
cf. initializing a softint value from a number vs. from a float)
(issue 1463)
* File::read() now uses character semantics for the length argument
(issue 1548)
* fixed a bug with strongly-typed lvalue assignments with classes
created in different Program objects (issue 1551)
* fixed a bug where an ASCII string and the same string in a different
encoding and with diacritics could incorrectly be marked as equal
(issue 1579)
* fixed bugs in HTTPClient methods where string message bodies were
not converted to the object's character encoding before transmission
(issue 1813)
* fixed a bug in the reference and *reference assignment restrictions;
previously any value was accepted, now only references are accepted
as the initial assignment values (issue 1819)
* fixed a bug in handling the SqlUtil::BLOB type in the FreetdsSqlUtil
module (issue 1852)
* fixed a bug in overloaded call variant matching where missing
arguments were counted towards the match (issue 1897)
* fixed many bugs where parse-time errors could be reported at an
incorrect source location; parse-time error location reporting has
been completely overhauled and reimplemented for correctness
(issue 1930)
* fixed a bug where code signatures would accept parameter variables
without "$" signs even when %allow-bare-refs was not in effect
(issue 1941)
* fixed memory leaks in the scanner related to EOF conditions
(issue 1976)
* rewrote Qore functions gethostbyname(), gethostbyname_long() and
gethostbyaddr() to use standard C functions getaddrinfo(3) and
getnameinfo(3) internally instead of the deprecated gethostbyname(3)
and gethostbyaddr(3) (issue 1952)
* fixed cmake builds on Darwin (issue 1980)
* fixed a bug where immediate date-time values were not marked with
their type at parse time (issue 2001)
* fixed a bug where the *data type restriction would allow all types
to be assigned at runtime (issue 2002)
* Qore::RangeIterator::constructor(int) and Qore::xrange(int) were
updated; the second arguments were removed to avoid ambiguity with
the other overloaded variants (issue 2016)
* fixed a bug where Qore::replace() could get in an infinite loop
with arguments with embededed nulls (issue 2098)
* fixed a bug in regular expression extraction where an infinite loop
could occur (issue 2083)
* fixed a bug where a call reference to an object method that crosses
Program boundaries could result in a core dump when called due to an
error managing thread-local data (issue 2145)
* fixed crashes in scanner due to EOF in comments (issue 2175)
diffstat:
lang/qore/Makefile | 7 +-
lang/qore/PLIST | 6261 ++++++++++++++++++++++++++++++++++++++++++++++++++-
lang/qore/distinfo | 10 +-
3 files changed, 6117 insertions(+), 161 deletions(-)
diffs (truncated from 8576 to 300 lines):
diff -r 1c14724ebb6b -r 007f34eb11d5 lang/qore/Makefile
--- a/lang/qore/Makefile Thu Oct 12 17:56:59 2017 +0000
+++ b/lang/qore/Makefile Thu Oct 12 18:17:46 2017 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2017/07/30 19:27:08 nros Exp $
+# $NetBSD: Makefile,v 1.15 2017/10/12 18:17:46 nros Exp $
-DISTNAME= qore-0.8.12.11
+DISTNAME= qore-0.8.13
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/}
EXTRACT_SUFX= .tar.bz2
@@ -20,7 +20,8 @@
FLEX_REQD= 2.5.31
PKGCONFIG_OVERRIDE+= qore.pc.in
-REPLACE_QORE= bin/qget bin/rest bin/schema-reverse
+REPLACE_QORE= bin/qdbg bin/qdbg-remote bin/qdbg-server
+REPLACE_QORE+= bin/qget bin/rest bin/schema-reverse
REPLACE_QORE+= bin/sfrest bin/sqlutil doxygen/qdx
CONFIGURE_ARGS+=--with-libsuffix=""
diff -r 1c14724ebb6b -r 007f34eb11d5 lang/qore/PLIST
--- a/lang/qore/PLIST Thu Oct 12 17:56:59 2017 +0000
+++ b/lang/qore/PLIST Thu Oct 12 18:17:46 2017 +0000
@@ -1,4 +1,7 @@
-@comment $NetBSD: PLIST,v 1.6 2017/07/30 19:27:08 nros Exp $
+@comment $NetBSD: PLIST,v 1.7 2017/10/12 18:17:46 nros Exp $
+bin/qdbg
+bin/qdbg-remote
+bin/qdbg-server
bin/qdx
bin/qget
bin/qore
@@ -7,6 +10,7 @@
bin/schema-reverse
bin/sfrest
bin/sqlutil
+include/qore/AbstractException.h
include/qore/AbstractPrivateData.h
include/qore/AbstractQoreNode.h
include/qore/AbstractThreadResource.h
@@ -19,7 +23,9 @@
include/qore/DateTime.h
include/qore/DateTimeNode.h
include/qore/ExceptionSink.h
+include/qore/InputStream.h
include/qore/ModuleManager.h
+include/qore/OutputStream.h
include/qore/ParseOptionMap.h
include/qore/Qore.h
include/qore/QoreBigIntNode.h
@@ -27,6 +33,7 @@
include/qore/QoreClass.h
include/qore/QoreCondition.h
include/qore/QoreCounter.h
+include/qore/QoreDebugProgram.h
include/qore/QoreEncoding.h
include/qore/QoreEvents.h
include/qore/QoreFile.h
@@ -55,6 +62,7 @@
include/qore/QoreSSLPrivateKey.h
include/qore/QoreSocket.h
include/qore/QoreSocketObject.h
+include/qore/QoreStandardException.h
include/qore/QoreString.h
include/qore/QoreStringNode.h
include/qore/QoreThreadLocalStorage.h
@@ -71,6 +79,8 @@
include/qore/SQLStatement.h
include/qore/ScopeGuard.h
include/qore/SystemEnvironment.h
+include/qore/Transform.h
+include/qore/TypedHashDecl.h
include/qore/common.h
include/qore/macros-i386.h
include/qore/macros-ia64.h
@@ -92,6 +102,7 @@
lib/cmake/Qore/QoreMacros.cmake
lib/libqore.la
lib/pkgconfig/qore.pc
+lib/qore-modules/${PKGVERSION}/astparser-api-0.20.qmod
man/man1/qore.1
share/doc/qore/lang/html/_pseudo___q_c___all_8dox_8h_source.html
share/doc/qore/lang/html/_pseudo___q_c___binary_8dox_8h_source.html
@@ -165,6 +176,7 @@
share/doc/qore/lang/html/_q_c___pipe_input_stream_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___pipe_output_stream_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___program_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___program_control_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___queue_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___r_w_lock_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___range_iterator_8dox_8h_source.html
@@ -196,12 +208,6 @@
share/doc/qore/lang/html/bdwn.png
share/doc/qore/lang/html/bug.html
share/doc/qore/lang/html/character_encoding.html
-share/doc/qore/lang/html/class_breakpoint_1_1_breakpoint-members.html
-share/doc/qore/lang/html/class_breakpoint_1_1_breakpoint.html
-share/doc/qore/lang/html/class_breakpoint_1_1_breakpoint.js
-share/doc/qore/lang/html/class_debug_program_1_1_debug_program-members.html
-share/doc/qore/lang/html/class_debug_program_1_1_debug_program.html
-share/doc/qore/lang/html/class_debug_program_1_1_debug_program.js
share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator-members.html
share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator.html
share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator.js
@@ -243,6 +249,9 @@
share/doc/qore/lang/html/class_qore_1_1_binary_output_stream__inherit__graph.map
share/doc/qore/lang/html/class_qore_1_1_binary_output_stream__inherit__graph.md5
share/doc/qore/lang/html/class_qore_1_1_binary_output_stream__inherit__graph.png
+share/doc/qore/lang/html/class_qore_1_1_breakpoint-members.html
+share/doc/qore/lang/html/class_qore_1_1_breakpoint.html
+share/doc/qore/lang/html/class_qore_1_1_breakpoint.js
share/doc/qore/lang/html/class_qore_1_1_buffered_stream_reader-members.html
share/doc/qore/lang/html/class_qore_1_1_buffered_stream_reader.html
share/doc/qore/lang/html/class_qore_1_1_buffered_stream_reader.js
@@ -255,6 +264,9 @@
share/doc/qore/lang/html/class_qore_1_1_data_line_iterator__inherit__graph.map
share/doc/qore/lang/html/class_qore_1_1_data_line_iterator__inherit__graph.md5
share/doc/qore/lang/html/class_qore_1_1_data_line_iterator__inherit__graph.png
+share/doc/qore/lang/html/class_qore_1_1_debug_program-members.html
+share/doc/qore/lang/html/class_qore_1_1_debug_program.html
+share/doc/qore/lang/html/class_qore_1_1_debug_program.js
share/doc/qore/lang/html/class_qore_1_1_dir-members.html
share/doc/qore/lang/html/class_qore_1_1_dir.html
share/doc/qore/lang/html/class_qore_1_1_dir.js
@@ -447,6 +459,9 @@
share/doc/qore/lang/html/class_qore_1_1_program-members.html
share/doc/qore/lang/html/class_qore_1_1_program.html
share/doc/qore/lang/html/class_qore_1_1_program.js
+share/doc/qore/lang/html/class_qore_1_1_program_control-members.html
+share/doc/qore/lang/html/class_qore_1_1_program_control.html
+share/doc/qore/lang/html/class_qore_1_1_program_control.js
share/doc/qore/lang/html/class_qore_1_1_range_iterator-members.html
share/doc/qore/lang/html/class_qore_1_1_range_iterator.html
share/doc/qore/lang/html/class_qore_1_1_range_iterator.js
@@ -766,6 +781,7 @@
share/doc/qore/lang/html/functions_t.html
share/doc/qore/lang/html/functions_u.html
share/doc/qore/lang/html/functions_v.html
+share/doc/qore/lang/html/functions_vars.html
share/doc/qore/lang/html/functions_w.html
share/doc/qore/lang/html/functions_y.html
share/doc/qore/lang/html/functions_z.html
@@ -786,10 +802,14 @@
share/doc/qore/lang/html/group__call__type__constants.js
share/doc/qore/lang/html/group__compression__constants.html
share/doc/qore/lang/html/group__compression__constants.js
+share/doc/qore/lang/html/group__compression__transformations.html
+share/doc/qore/lang/html/group__compression__transformations.js
share/doc/qore/lang/html/group__compresssion__functions.html
share/doc/qore/lang/html/group__compresssion__functions.js
share/doc/qore/lang/html/group__context__functions.html
share/doc/qore/lang/html/group__context__functions.js
+share/doc/qore/lang/html/group__crypto__transformations.html
+share/doc/qore/lang/html/group__crypto__transformations.js
share/doc/qore/lang/html/group__cryptographic__constants.html
share/doc/qore/lang/html/group__cryptographic__constants.js
share/doc/qore/lang/html/group__cryptographic__functions.html
@@ -802,10 +822,10 @@
share/doc/qore/lang/html/group__dbi__capabilities.js
share/doc/qore/lang/html/group__dbi__functions.html
share/doc/qore/lang/html/group__dbi__functions.js
-share/doc/qore/lang/html/group__debug__rc__options.html
-share/doc/qore/lang/html/group__debug__rc__options.js
-share/doc/qore/lang/html/group__debug__step__options.html
-share/doc/qore/lang/html/group__debug__step__options.js
+share/doc/qore/lang/html/group__debug__flow__options.html
+share/doc/qore/lang/html/group__debug__flow__options.js
+share/doc/qore/lang/html/group__debug__rs__options.html
+share/doc/qore/lang/html/group__debug__rs__options.js
share/doc/qore/lang/html/group__digest__functions.html
share/doc/qore/lang/html/group__digest__functions.js
share/doc/qore/lang/html/group__env__functions.html
@@ -852,6 +872,8 @@
share/doc/qore/lang/html/group__null__and__nothing__constants.js
share/doc/qore/lang/html/group__number__formatting__constants.html
share/doc/qore/lang/html/group__number__formatting__constants.js
+share/doc/qore/lang/html/group__number__string__formatting__constants.html
+share/doc/qore/lang/html/group__number__string__formatting__constants.js
share/doc/qore/lang/html/group__object__functions.html
share/doc/qore/lang/html/group__object__functions.js
share/doc/qore/lang/html/group__old__dbi__functions.html
@@ -876,14 +898,14 @@
share/doc/qore/lang/html/group__socket__type__constants.js
share/doc/qore/lang/html/group__sql__constants.html
share/doc/qore/lang/html/group__sql__constants.js
+share/doc/qore/lang/html/group__ssl__mode__constants.html
+share/doc/qore/lang/html/group__ssl__mode__constants.js
share/doc/qore/lang/html/group__string__functions.html
share/doc/qore/lang/html/group__string__functions.js
share/doc/qore/lang/html/group__string__type__constants.html
share/doc/qore/lang/html/group__string__type__constants.js
share/doc/qore/lang/html/group__system__and__build__constants.html
share/doc/qore/lang/html/group__system__and__build__constants.js
-share/doc/qore/lang/html/group__t.html
-share/doc/qore/lang/html/group__t.js
share/doc/qore/lang/html/group__tattr__control__character__constants.html
share/doc/qore/lang/html/group__tattr__control__character__constants.js
share/doc/qore/lang/html/group__tattr__control__mode__constants.html
@@ -910,6 +932,7 @@
share/doc/qore/lang/html/group__warning__constants.js
share/doc/qore/lang/html/group__x509__verification__constants.html
share/doc/qore/lang/html/group__x509__verification__constants.js
+share/doc/qore/lang/html/hashdecl.html
share/doc/qore/lang/html/hierarchy.html
share/doc/qore/lang/html/hierarchy.js
share/doc/qore/lang/html/identifiers.html
@@ -1001,9 +1024,36 @@
share/doc/qore/lang/html/inherit_graph_33.map
share/doc/qore/lang/html/inherit_graph_33.md5
share/doc/qore/lang/html/inherit_graph_33.png
+share/doc/qore/lang/html/inherit_graph_34.map
+share/doc/qore/lang/html/inherit_graph_34.md5
+share/doc/qore/lang/html/inherit_graph_34.png
+share/doc/qore/lang/html/inherit_graph_35.map
+share/doc/qore/lang/html/inherit_graph_35.md5
+share/doc/qore/lang/html/inherit_graph_35.png
+share/doc/qore/lang/html/inherit_graph_36.map
+share/doc/qore/lang/html/inherit_graph_36.md5
+share/doc/qore/lang/html/inherit_graph_36.png
+share/doc/qore/lang/html/inherit_graph_37.map
+share/doc/qore/lang/html/inherit_graph_37.md5
+share/doc/qore/lang/html/inherit_graph_37.png
+share/doc/qore/lang/html/inherit_graph_38.map
+share/doc/qore/lang/html/inherit_graph_38.md5
+share/doc/qore/lang/html/inherit_graph_38.png
+share/doc/qore/lang/html/inherit_graph_39.map
+share/doc/qore/lang/html/inherit_graph_39.md5
+share/doc/qore/lang/html/inherit_graph_39.png
share/doc/qore/lang/html/inherit_graph_4.map
share/doc/qore/lang/html/inherit_graph_4.md5
share/doc/qore/lang/html/inherit_graph_4.png
+share/doc/qore/lang/html/inherit_graph_40.map
+share/doc/qore/lang/html/inherit_graph_40.md5
+share/doc/qore/lang/html/inherit_graph_40.png
+share/doc/qore/lang/html/inherit_graph_41.map
+share/doc/qore/lang/html/inherit_graph_41.md5
+share/doc/qore/lang/html/inherit_graph_41.png
+share/doc/qore/lang/html/inherit_graph_42.map
+share/doc/qore/lang/html/inherit_graph_42.md5
+share/doc/qore/lang/html/inherit_graph_42.png
share/doc/qore/lang/html/inherit_graph_5.map
share/doc/qore/lang/html/inherit_graph_5.md5
share/doc/qore/lang/html/inherit_graph_5.png
@@ -1027,10 +1077,6 @@
share/doc/qore/lang/html/menudata.js
share/doc/qore/lang/html/modules.html
share/doc/qore/lang/html/modules.js
-share/doc/qore/lang/html/namespace_breakpoint.html
-share/doc/qore/lang/html/namespace_breakpoint.js
-share/doc/qore/lang/html/namespace_debug_program.html
-share/doc/qore/lang/html/namespace_debug_program.js
share/doc/qore/lang/html/namespace_qore.html
share/doc/qore/lang/html/namespace_qore.js
share/doc/qore/lang/html/namespace_qore_1_1_err.html
@@ -1126,6 +1172,7 @@
share/doc/qore/lang/html/navtreeindex10.js
share/doc/qore/lang/html/navtreeindex11.js
share/doc/qore/lang/html/navtreeindex12.js
+share/doc/qore/lang/html/navtreeindex13.js
share/doc/qore/lang/html/navtreeindex2.js
share/doc/qore/lang/html/navtreeindex3.js
share/doc/qore/lang/html/navtreeindex4.js
@@ -1346,10 +1393,6 @@
share/doc/qore/lang/html/search/mag_sel.png
share/doc/qore/lang/html/search/namespaces_0.html
share/doc/qore/lang/html/search/namespaces_0.js
-share/doc/qore/lang/html/search/namespaces_1.html
-share/doc/qore/lang/html/search/namespaces_1.js
-share/doc/qore/lang/html/search/namespaces_2.html
-share/doc/qore/lang/html/search/namespaces_2.js
share/doc/qore/lang/html/search/nomatches.html
share/doc/qore/lang/html/search/pages_0.html
share/doc/qore/lang/html/search/pages_0.js
@@ -1359,6 +1402,8 @@
share/doc/qore/lang/html/search/pages_10.js
share/doc/qore/lang/html/search/pages_11.html
share/doc/qore/lang/html/search/pages_11.js
+share/doc/qore/lang/html/search/pages_12.html
+share/doc/qore/lang/html/search/pages_12.js
share/doc/qore/lang/html/search/pages_2.html
share/doc/qore/lang/html/search/pages_2.js
share/doc/qore/lang/html/search/pages_3.html
@@ -1407,6 +1452,12 @@
share/doc/qore/lang/html/search/variables_13.js
share/doc/qore/lang/html/search/variables_14.html
share/doc/qore/lang/html/search/variables_14.js
+share/doc/qore/lang/html/search/variables_15.html
+share/doc/qore/lang/html/search/variables_15.js
+share/doc/qore/lang/html/search/variables_16.html
+share/doc/qore/lang/html/search/variables_16.js
+share/doc/qore/lang/html/search/variables_17.html
+share/doc/qore/lang/html/search/variables_17.js
share/doc/qore/lang/html/search/variables_2.html
share/doc/qore/lang/html/search/variables_2.js
share/doc/qore/lang/html/search/variables_3.html
@@ -1438,9 +1489,32 @@
share/doc/qore/lang/html/signal_handling.html
share/doc/qore/lang/html/splitbar.png
Home |
Main Index |
Thread Index |
Old Index