pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/lang/qore
Module Name: pkgsrc
Committed By: nros
Date: Fri Dec 9 19:00:18 UTC 2016
Modified Files:
pkgsrc/lang/qore: Makefile PLIST distinfo
Log Message:
Updated qore to version 0.8.12.4.
Changelog from release notes:
Bug Fixes in Qore:
* fixed a reference bug in the Queue class introduced in the last release
(issue 1309)
* fixed a bug where database types could not be correctly aligned if they had
dependencies (issue 1314); entailed updates in the following modules:
SqlUtil
FreetdsSqlUtil
MysqlSqlUtil
OracleSqlUtil
PgsqlSqlUtil
Schema
* fixed a bug in trunc_str() where an infinite loop could be triggered with
certain arguments and multi-byte character encodings (issue 1327)
* improved prompt collection performance with larger graphs of objects by
eliminating unnecessary graph scans made during object method calls
(issue 1363)
* fixed bugs in date(string) and date(string, string) where invalid input data
was ignored and invalid dates were returned (issue 1369)
* CsvUtil.qm module:
fixed a bug in AbstractCsvIterator::identifyTypeImpl() generating an
error message (issue 1355)
* MailMessage.qm module:
fixed a bug using the default encoding in Message::attach()
(issue issue 1352)
* SqlUtil.qm module:
* fixed the ignored character_semantics column option in schema alignmed
(issue 1379)
* implemented the cop_length() column function (issue 1395)
* OracleSqlUtil.qm module:
OraclePackage attribute body_src is now public to access package bodies
* Qorize.qm module:
Qorize module: new qorize_val() set of functions; qorize_named()
introduced; qorize tests
* TableMapper.qm module:
* fixed runtime option propagation to
TableMapper::SqlStatementMapperIterator from
TableMapper::AbstractSqlStatementOutboundMapper::iterator()
(issue 1418)
* fixed SqlStatementMapperIterator::getCount() (issue 1417)
* added the following methods:
TableMapper::AbstractSqlStatementOutboundMapper::getRowIterator()
TableMapper::InboundTableMapper::iterator()
TableMapper::InboundTableMapperIterator::getRuntime()
TableMapper::InboundTableMapperIterator::replaceRuntime()
TableMapper::InboundTableMapperIterator::setRuntime()
TableMapper::SqlStatementMapperIterator::getRuntime()
TableMapper::SqlStatementMapperIterator::replaceRuntime()
TableMapper::SqlStatementMapperIterator::setRuntime()
* QUnit.qm module:
fixed showing the assertion location when there are test modules on
top of QUnit.qm (issue 1046)
* fixed inconsistency between list splice operator and splice function
(issue 1380)
* fixed the documentation (and DB modules) where
SQLStatement::fetchColumns() was inconsistent; now it will return a
empty hash when no more rows are available to fetch (issue 1241)
* added I/O timeout support to the FtpClient class (issue 1252)
* fixed bugs in Socket::recv() and Socket::recvBinary() with size = 0
where NOTHING could be returned which is invalid according to the
methods' declared return types (issue 1260)
* fixed a bug where FtpClient:get() would fail with an exception when
retrieving an empty file (issue 1255)
* fixed a bug where executing a call reference to a deleted object
method would cause a crash (issue 1268)
* fixed a bug where Qore would allow methods to be called on already
deleted objects under certain conditions (issue 1270)
* fixed a bug where calling exit() in a multithreaded program could
result in a segmentation fault (issue 1215)
* fixed a bug where HttpServer::addListener() could not accept a bind on
port 0 to mean any random port (issue 1284)
* fixed a race condition in prompt collection that could lead to a crash
(issue 1084)
* fixed a bug clearing Socket event queues when the Socket goes out of
scope that could lead to a crash (issue 1292)
* fixed a bug with FtpClient::setWarningQueue() that could cause a crash
(issue 1293)
* fixed a bug where Qore::FtpClient::pwd() returned invalid directory
names (issue 1295)
* fixed bugs in handling websocket close status codes in the
WebSocketUtil, WebSocketClient, and WebSocketHandler modules
(issue 1216)
* TableMapper module fixes:
* fixed a bug with the SqlStatementOutboundMapper::iterator() method;
corrected the iterator object return value which was causing
AbstractMapperIterator::mapBulk() to fail (issue 979)
* fixed a bug with SqlStatementOutboundMapper; it would throw an error
if the required "table" or "sh" options were used and only worked
with subclasses that declared these options (issue 981)
* fixed a bug where AbstractSqlStatementOutboundMapper::iterator()
failed to use options when creating the new Mapper object
(issue 1088)
* fixed a bug where optional arguments were not handled correctly in
some rare cases (issue 974)
* fixed a bug causing a crash when parse_base64_string_to_string() was
called with an empty string (issue 996)
* fixed a bug resolving base class method calls during parse
initialization (issue 1075)
* fixed thread memory handling bug with some operator expressions and
the background operator (issue 1096)
* fixed a race condition in the prompt collection of closure-bound local
variables in the garbage collector (issue 1103)
* fixed a bug where HTTPClient class method variants such as
HTTPClient::get() without a callback would fail to return the message
body when the server sent a reply with chunked transfer encoding
(issue 1117)
* fixed a bug in CsvUtil where backward compatibility was broken for
single-row-type format (issue 1124)
* fixed bugs where declared public functions were missing from the
library ABI (issue 1126)
* fixed bugs where Qore::format_number() and <float>::format() gave
incorrect results when rounding to the significant decimals given in
the format string (issue 1149)
* fixed a bug referencing self in base class constructor arguments
(issue 1169)
* fixed a bug where the incorrect class destructor was called in the
openldap module (issue 1174)
* fixed a bug where declaring a copy() method as synchronized would
result in a crash when the method was called (issue 1188)
* fixed bugs in <string>::getEncoded() and <string>::getDecoded()
regarding CE_XML and CE_NONASCII (issue 1193)
* fixed bugs where Qore::call_object_method() and
Qore::call_object_method_args() allowed private methods to be called
from outside the class (issue 1194)
* fixed a bug where "Deprecated" Functions methods were being internally
registered as RUNTIME_NOOP (issue 1197)
* fixed bugs where the Datasource class would open a connection to the
server in the constructor before options were set and where a server
connection was required to call Datasource::getOption() or
Datasource::setOption() (issue 1201)
* fixed memory errors in the Queue class where spurious exceptions could
be raised (issue 1202)
* fixed a memory leak with static class member initializers (issue 1206)
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 pkgsrc/lang/qore/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/lang/qore/PLIST
cvs rdiff -u -r1.5 -r1.6 pkgsrc/lang/qore/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/lang/qore/Makefile
diff -u pkgsrc/lang/qore/Makefile:1.10 pkgsrc/lang/qore/Makefile:1.11
--- pkgsrc/lang/qore/Makefile:1.10 Sun Aug 7 10:12:58 2016
+++ pkgsrc/lang/qore/Makefile Fri Dec 9 19:00:18 2016
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.10 2016/08/07 10:12:58 nros Exp $
+# $NetBSD: Makefile,v 1.11 2016/12/09 19:00:18 nros Exp $
-DISTNAME= qore-0.8.12
+DISTNAME= qore-0.8.12.4
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/}
EXTRACT_SUFX= .tar.bz2
Index: pkgsrc/lang/qore/PLIST
diff -u pkgsrc/lang/qore/PLIST:1.3 pkgsrc/lang/qore/PLIST:1.4
--- pkgsrc/lang/qore/PLIST:1.3 Mon Jul 25 10:27:52 2016
+++ pkgsrc/lang/qore/PLIST Fri Dec 9 19:00:18 2016
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2016/07/25 10:27:52 jperkin Exp $
+@comment $NetBSD: PLIST,v 1.4 2016/12/09 19:00:18 nros Exp $
bin/qdx
bin/qore
bin/qpp
@@ -105,6 +105,7 @@ share/doc/qore/lang/html/_pseudo___q_c__
share/doc/qore/lang/html/_q_c___abstract_bidirectional_iterator_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___abstract_datasource_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___abstract_iterator_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___abstract_line_iterator_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___abstract_quantified_bidirectional_iterator_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___abstract_quantified_iterator_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___abstract_smart_lock_8dox_8h_source.html
@@ -115,6 +116,7 @@ share/doc/qore/lang/html/_q_c___auto_rea
share/doc/qore/lang/html/_q_c___auto_write_lock_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___binary_input_stream_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___binary_output_stream_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___buffered_stream_reader_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___condition_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___counter_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___data_line_iterator_8dox_8h_source.html
@@ -122,6 +124,7 @@ share/doc/qore/lang/html/_q_c___datasour
share/doc/qore/lang/html/_q_c___datasource_pool_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___dir_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___encoding_conversion_input_stream_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___encoding_conversion_output_stream_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___file_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___file_input_stream_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___file_line_iterator_8dox_8h_source.html
@@ -139,6 +142,7 @@ share/doc/qore/lang/html/_q_c___hash_pai
share/doc/qore/lang/html/_q_c___hash_pair_reverse_iterator_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___hash_reverse_iterator_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___input_stream_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___input_stream_line_iterator_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___list_hash_iterator_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___list_hash_reverse_iterator_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___list_iterator_8dox_8h_source.html
@@ -151,6 +155,8 @@ share/doc/qore/lang/html/_q_c___object_p
share/doc/qore/lang/html/_q_c___object_pair_reverse_iterator_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___object_reverse_iterator_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___output_stream_8dox_8h_source.html
+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___queue_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___r_w_lock_8dox_8h_source.html
@@ -162,9 +168,19 @@ share/doc/qore/lang/html/_q_c___s_s_l_pr
share/doc/qore/lang/html/_q_c___sequence_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___single_value_iterator_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___socket_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___stderr_output_stream_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___stdout_output_stream_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___stream_pipe_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___stream_reader_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___stream_writer_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___string_input_stream_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___string_output_stream_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___term_i_o_s_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___thread_pool_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___time_zone_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___transform_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___transform_input_stream_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___transform_output_stream_8dox_8h_source.html
share/doc/qore/lang/html/_q_c___tree_map_8dox_8h_source.html
share/doc/qore/lang/html/annotated.html
share/doc/qore/lang/html/annotated_dup.js
@@ -187,6 +203,12 @@ share/doc/qore/lang/html/class_qore_1_1_
share/doc/qore/lang/html/class_qore_1_1_abstract_iterator__inherit__graph.map
share/doc/qore/lang/html/class_qore_1_1_abstract_iterator__inherit__graph.md5
share/doc/qore/lang/html/class_qore_1_1_abstract_iterator__inherit__graph.png
+share/doc/qore/lang/html/class_qore_1_1_abstract_line_iterator-members.html
+share/doc/qore/lang/html/class_qore_1_1_abstract_line_iterator.html
+share/doc/qore/lang/html/class_qore_1_1_abstract_line_iterator.js
+share/doc/qore/lang/html/class_qore_1_1_abstract_line_iterator__inherit__graph.map
+share/doc/qore/lang/html/class_qore_1_1_abstract_line_iterator__inherit__graph.md5
+share/doc/qore/lang/html/class_qore_1_1_abstract_line_iterator__inherit__graph.png
share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_bidirectional_iterator-members.html
share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_bidirectional_iterator.html
share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_bidirectional_iterator__inherit__graph.map
@@ -210,6 +232,12 @@ share/doc/qore/lang/html/class_qore_1_1_
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_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
+share/doc/qore/lang/html/class_qore_1_1_buffered_stream_reader__inherit__graph.map
+share/doc/qore/lang/html/class_qore_1_1_buffered_stream_reader__inherit__graph.md5
+share/doc/qore/lang/html/class_qore_1_1_buffered_stream_reader__inherit__graph.png
share/doc/qore/lang/html/class_qore_1_1_data_line_iterator-members.html
share/doc/qore/lang/html/class_qore_1_1_data_line_iterator.html
share/doc/qore/lang/html/class_qore_1_1_data_line_iterator.js
@@ -225,6 +253,12 @@ share/doc/qore/lang/html/class_qore_1_1_
share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_input_stream__inherit__graph.map
share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_input_stream__inherit__graph.md5
share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_input_stream__inherit__graph.png
+share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_output_stream-members.html
+share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_output_stream.html
+share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_output_stream.js
+share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_output_stream__inherit__graph.map
+share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_output_stream__inherit__graph.md5
+share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_output_stream__inherit__graph.png
share/doc/qore/lang/html/class_qore_1_1_file-members.html
share/doc/qore/lang/html/class_qore_1_1_file.html
share/doc/qore/lang/html/class_qore_1_1_file.js
@@ -315,6 +349,12 @@ share/doc/qore/lang/html/class_qore_1_1_
share/doc/qore/lang/html/class_qore_1_1_input_stream__inherit__graph.map
share/doc/qore/lang/html/class_qore_1_1_input_stream__inherit__graph.md5
share/doc/qore/lang/html/class_qore_1_1_input_stream__inherit__graph.png
+share/doc/qore/lang/html/class_qore_1_1_input_stream_line_iterator-members.html
+share/doc/qore/lang/html/class_qore_1_1_input_stream_line_iterator.html
+share/doc/qore/lang/html/class_qore_1_1_input_stream_line_iterator.js
+share/doc/qore/lang/html/class_qore_1_1_input_stream_line_iterator__inherit__graph.map
+share/doc/qore/lang/html/class_qore_1_1_input_stream_line_iterator__inherit__graph.md5
+share/doc/qore/lang/html/class_qore_1_1_input_stream_line_iterator__inherit__graph.png
share/doc/qore/lang/html/class_qore_1_1_list_hash_iterator-members.html
share/doc/qore/lang/html/class_qore_1_1_list_hash_iterator.html
share/doc/qore/lang/html/class_qore_1_1_list_hash_iterator.js
@@ -381,6 +421,18 @@ share/doc/qore/lang/html/class_qore_1_1_
share/doc/qore/lang/html/class_qore_1_1_output_stream__inherit__graph.map
share/doc/qore/lang/html/class_qore_1_1_output_stream__inherit__graph.md5
share/doc/qore/lang/html/class_qore_1_1_output_stream__inherit__graph.png
+share/doc/qore/lang/html/class_qore_1_1_pipe_input_stream-members.html
+share/doc/qore/lang/html/class_qore_1_1_pipe_input_stream.html
+share/doc/qore/lang/html/class_qore_1_1_pipe_input_stream.js
+share/doc/qore/lang/html/class_qore_1_1_pipe_input_stream__inherit__graph.map
+share/doc/qore/lang/html/class_qore_1_1_pipe_input_stream__inherit__graph.md5
+share/doc/qore/lang/html/class_qore_1_1_pipe_input_stream__inherit__graph.png
+share/doc/qore/lang/html/class_qore_1_1_pipe_output_stream-members.html
+share/doc/qore/lang/html/class_qore_1_1_pipe_output_stream.html
+share/doc/qore/lang/html/class_qore_1_1_pipe_output_stream.js
+share/doc/qore/lang/html/class_qore_1_1_pipe_output_stream__inherit__graph.map
+share/doc/qore/lang/html/class_qore_1_1_pipe_output_stream__inherit__graph.md5
+share/doc/qore/lang/html/class_qore_1_1_pipe_output_stream__inherit__graph.png
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
@@ -438,6 +490,42 @@ share/doc/qore/lang/html/class_qore_1_1_
share/doc/qore/lang/html/class_qore_1_1_socket__inherit__graph.map
share/doc/qore/lang/html/class_qore_1_1_socket__inherit__graph.md5
share/doc/qore/lang/html/class_qore_1_1_socket__inherit__graph.png
+share/doc/qore/lang/html/class_qore_1_1_stderr_output_stream-members.html
+share/doc/qore/lang/html/class_qore_1_1_stderr_output_stream.html
+share/doc/qore/lang/html/class_qore_1_1_stderr_output_stream.js
+share/doc/qore/lang/html/class_qore_1_1_stderr_output_stream__inherit__graph.map
+share/doc/qore/lang/html/class_qore_1_1_stderr_output_stream__inherit__graph.md5
+share/doc/qore/lang/html/class_qore_1_1_stderr_output_stream__inherit__graph.png
+share/doc/qore/lang/html/class_qore_1_1_stdout_output_stream-members.html
+share/doc/qore/lang/html/class_qore_1_1_stdout_output_stream.html
+share/doc/qore/lang/html/class_qore_1_1_stdout_output_stream.js
+share/doc/qore/lang/html/class_qore_1_1_stdout_output_stream__inherit__graph.map
+share/doc/qore/lang/html/class_qore_1_1_stdout_output_stream__inherit__graph.md5
+share/doc/qore/lang/html/class_qore_1_1_stdout_output_stream__inherit__graph.png
+share/doc/qore/lang/html/class_qore_1_1_stream_pipe-members.html
+share/doc/qore/lang/html/class_qore_1_1_stream_pipe.html
+share/doc/qore/lang/html/class_qore_1_1_stream_pipe.js
+share/doc/qore/lang/html/class_qore_1_1_stream_reader-members.html
+share/doc/qore/lang/html/class_qore_1_1_stream_reader.html
+share/doc/qore/lang/html/class_qore_1_1_stream_reader.js
+share/doc/qore/lang/html/class_qore_1_1_stream_reader__inherit__graph.map
+share/doc/qore/lang/html/class_qore_1_1_stream_reader__inherit__graph.md5
+share/doc/qore/lang/html/class_qore_1_1_stream_reader__inherit__graph.png
+share/doc/qore/lang/html/class_qore_1_1_stream_writer-members.html
+share/doc/qore/lang/html/class_qore_1_1_stream_writer.html
+share/doc/qore/lang/html/class_qore_1_1_stream_writer.js
+share/doc/qore/lang/html/class_qore_1_1_string_input_stream-members.html
+share/doc/qore/lang/html/class_qore_1_1_string_input_stream.html
+share/doc/qore/lang/html/class_qore_1_1_string_input_stream.js
+share/doc/qore/lang/html/class_qore_1_1_string_input_stream__inherit__graph.map
+share/doc/qore/lang/html/class_qore_1_1_string_input_stream__inherit__graph.md5
+share/doc/qore/lang/html/class_qore_1_1_string_input_stream__inherit__graph.png
+share/doc/qore/lang/html/class_qore_1_1_string_output_stream-members.html
+share/doc/qore/lang/html/class_qore_1_1_string_output_stream.html
+share/doc/qore/lang/html/class_qore_1_1_string_output_stream.js
+share/doc/qore/lang/html/class_qore_1_1_string_output_stream__inherit__graph.map
+share/doc/qore/lang/html/class_qore_1_1_string_output_stream__inherit__graph.md5
+share/doc/qore/lang/html/class_qore_1_1_string_output_stream__inherit__graph.png
share/doc/qore/lang/html/class_qore_1_1_term_i_o_s-members.html
share/doc/qore/lang/html/class_qore_1_1_term_i_o_s.html
share/doc/qore/lang/html/class_qore_1_1_term_i_o_s.js
@@ -495,6 +583,20 @@ share/doc/qore/lang/html/class_qore_1_1_
share/doc/qore/lang/html/class_qore_1_1_time_zone-members.html
share/doc/qore/lang/html/class_qore_1_1_time_zone.html
share/doc/qore/lang/html/class_qore_1_1_time_zone.js
+share/doc/qore/lang/html/class_qore_1_1_transform-members.html
+share/doc/qore/lang/html/class_qore_1_1_transform.html
+share/doc/qore/lang/html/class_qore_1_1_transform_input_stream-members.html
+share/doc/qore/lang/html/class_qore_1_1_transform_input_stream.html
+share/doc/qore/lang/html/class_qore_1_1_transform_input_stream.js
+share/doc/qore/lang/html/class_qore_1_1_transform_input_stream__inherit__graph.map
+share/doc/qore/lang/html/class_qore_1_1_transform_input_stream__inherit__graph.md5
+share/doc/qore/lang/html/class_qore_1_1_transform_input_stream__inherit__graph.png
+share/doc/qore/lang/html/class_qore_1_1_transform_output_stream-members.html
+share/doc/qore/lang/html/class_qore_1_1_transform_output_stream.html
+share/doc/qore/lang/html/class_qore_1_1_transform_output_stream.js
+share/doc/qore/lang/html/class_qore_1_1_transform_output_stream__inherit__graph.map
+share/doc/qore/lang/html/class_qore_1_1_transform_output_stream__inherit__graph.md5
+share/doc/qore/lang/html/class_qore_1_1_transform_output_stream__inherit__graph.png
share/doc/qore/lang/html/class_qore_1_1_tree_map-members.html
share/doc/qore/lang/html/class_qore_1_1_tree_map.html
share/doc/qore/lang/html/class_qore_1_1_tree_map.js
@@ -672,6 +774,8 @@ share/doc/qore/lang/html/group__call__ty
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
@@ -714,8 +818,6 @@ share/doc/qore/lang/html/group__filesyst
share/doc/qore/lang/html/group__filesystem__functions.js
share/doc/qore/lang/html/group__hmac__functions.html
share/doc/qore/lang/html/group__hmac__functions.js
-share/doc/qore/lang/html/group__input__stream__function.html
-share/doc/qore/lang/html/group__input__stream__function.js
share/doc/qore/lang/html/group__io__constants.html
share/doc/qore/lang/html/group__io__constants.js
share/doc/qore/lang/html/group__library__functions.html
@@ -736,6 +838,8 @@ share/doc/qore/lang/html/group__null__an
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
@@ -864,9 +968,21 @@ share/doc/qore/lang/html/inherit_graph_2
share/doc/qore/lang/html/inherit_graph_27.map
share/doc/qore/lang/html/inherit_graph_27.md5
share/doc/qore/lang/html/inherit_graph_27.png
+share/doc/qore/lang/html/inherit_graph_28.map
+share/doc/qore/lang/html/inherit_graph_28.md5
+share/doc/qore/lang/html/inherit_graph_28.png
+share/doc/qore/lang/html/inherit_graph_29.map
+share/doc/qore/lang/html/inherit_graph_29.md5
+share/doc/qore/lang/html/inherit_graph_29.png
share/doc/qore/lang/html/inherit_graph_3.map
share/doc/qore/lang/html/inherit_graph_3.md5
share/doc/qore/lang/html/inherit_graph_3.png
+share/doc/qore/lang/html/inherit_graph_30.map
+share/doc/qore/lang/html/inherit_graph_30.md5
+share/doc/qore/lang/html/inherit_graph_30.png
+share/doc/qore/lang/html/inherit_graph_31.map
+share/doc/qore/lang/html/inherit_graph_31.md5
+share/doc/qore/lang/html/inherit_graph_31.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
@@ -886,7 +1002,6 @@ share/doc/qore/lang/html/inherit_graph_9
share/doc/qore/lang/html/inherit_graph_9.md5
share/doc/qore/lang/html/inherit_graph_9.png
share/doc/qore/lang/html/inherits.html
-share/doc/qore/lang/html/intro.html
share/doc/qore/lang/html/jquery.js
share/doc/qore/lang/html/keywords.html
share/doc/qore/lang/html/lvalue_references.html
@@ -5029,7 +5144,6 @@ share/doc/qore/modules/HttpServer/html/g
share/doc/qore/modules/HttpServer/html/group__file__stat__constants.js
share/doc/qore/modules/HttpServer/html/group__filesystem__functions.js
share/doc/qore/modules/HttpServer/html/group__hmac__functions.js
-share/doc/qore/modules/HttpServer/html/group__input__stream__function.js
share/doc/qore/modules/HttpServer/html/group__io__constants.js
share/doc/qore/modules/HttpServer/html/group__library__functions.js
share/doc/qore/modules/HttpServer/html/group__list__functions.js
@@ -5040,6 +5154,7 @@ share/doc/qore/modules/HttpServer/html/g
share/doc/qore/modules/HttpServer/html/group__network__address__information__constants.js
share/doc/qore/modules/HttpServer/html/group__null__and__nothing__constants.js
share/doc/qore/modules/HttpServer/html/group__number__formatting__constants.js
+share/doc/qore/modules/HttpServer/html/group__number__string__formatting__constants.js
share/doc/qore/modules/HttpServer/html/group__object__functions.js
share/doc/qore/modules/HttpServer/html/group__old__dbi__functions.js
share/doc/qore/modules/HttpServer/html/group__option__constants.js
@@ -5076,6 +5191,9 @@ share/doc/qore/modules/HttpServer/html/i
share/doc/qore/modules/HttpServer/html/inherit_graph_0.map
share/doc/qore/modules/HttpServer/html/inherit_graph_0.md5
share/doc/qore/modules/HttpServer/html/inherit_graph_0.png
+share/doc/qore/modules/HttpServer/html/inherit_graph_1.map
+share/doc/qore/modules/HttpServer/html/inherit_graph_1.md5
+share/doc/qore/modules/HttpServer/html/inherit_graph_1.png
share/doc/qore/modules/HttpServer/html/inherits.html
share/doc/qore/modules/HttpServer/html/jquery.js
share/doc/qore/modules/HttpServer/html/modules.html
@@ -5493,7 +5611,6 @@ share/doc/qore/modules/HttpServerUtil/ht
share/doc/qore/modules/HttpServerUtil/html/group__file__stat__constants.js
share/doc/qore/modules/HttpServerUtil/html/group__filesystem__functions.js
share/doc/qore/modules/HttpServerUtil/html/group__hmac__functions.js
-share/doc/qore/modules/HttpServerUtil/html/group__input__stream__function.js
share/doc/qore/modules/HttpServerUtil/html/group__io__constants.js
share/doc/qore/modules/HttpServerUtil/html/group__library__functions.js
share/doc/qore/modules/HttpServerUtil/html/group__list__functions.js
@@ -5504,6 +5621,7 @@ share/doc/qore/modules/HttpServerUtil/ht
share/doc/qore/modules/HttpServerUtil/html/group__network__address__information__constants.js
share/doc/qore/modules/HttpServerUtil/html/group__null__and__nothing__constants.js
share/doc/qore/modules/HttpServerUtil/html/group__number__formatting__constants.js
+share/doc/qore/modules/HttpServerUtil/html/group__number__string__formatting__constants.js
share/doc/qore/modules/HttpServerUtil/html/group__object__functions.js
share/doc/qore/modules/HttpServerUtil/html/group__old__dbi__functions.js
share/doc/qore/modules/HttpServerUtil/html/group__option__constants.js
@@ -5936,7 +6054,6 @@ share/doc/qore/modules/MailMessage/html/
share/doc/qore/modules/MailMessage/html/group__file__stat__constants.js
share/doc/qore/modules/MailMessage/html/group__filesystem__functions.js
share/doc/qore/modules/MailMessage/html/group__hmac__functions.js
-share/doc/qore/modules/MailMessage/html/group__input__stream__function.js
share/doc/qore/modules/MailMessage/html/group__io__constants.js
share/doc/qore/modules/MailMessage/html/group__library__functions.js
share/doc/qore/modules/MailMessage/html/group__list__functions.js
@@ -5947,6 +6064,7 @@ share/doc/qore/modules/MailMessage/html/
share/doc/qore/modules/MailMessage/html/group__network__address__information__constants.js
share/doc/qore/modules/MailMessage/html/group__null__and__nothing__constants.js
share/doc/qore/modules/MailMessage/html/group__number__formatting__constants.js
+share/doc/qore/modules/MailMessage/html/group__number__string__formatting__constants.js
share/doc/qore/modules/MailMessage/html/group__object__functions.js
share/doc/qore/modules/MailMessage/html/group__old__dbi__functions.js
share/doc/qore/modules/MailMessage/html/group__option__constants.js
@@ -6715,7 +6833,6 @@ share/doc/qore/modules/Mime/html/group__
share/doc/qore/modules/Mime/html/group__file__stat__constants.js
share/doc/qore/modules/Mime/html/group__filesystem__functions.js
share/doc/qore/modules/Mime/html/group__hmac__functions.js
-share/doc/qore/modules/Mime/html/group__input__stream__function.js
share/doc/qore/modules/Mime/html/group__io__constants.js
share/doc/qore/modules/Mime/html/group__library__functions.js
share/doc/qore/modules/Mime/html/group__list__functions.js
@@ -6726,6 +6843,7 @@ share/doc/qore/modules/Mime/html/group__
share/doc/qore/modules/Mime/html/group__network__address__information__constants.js
share/doc/qore/modules/Mime/html/group__null__and__nothing__constants.js
share/doc/qore/modules/Mime/html/group__number__formatting__constants.js
+share/doc/qore/modules/Mime/html/group__number__string__formatting__constants.js
share/doc/qore/modules/Mime/html/group__object__functions.js
share/doc/qore/modules/Mime/html/group__old__dbi__functions.js
share/doc/qore/modules/Mime/html/group__option__constants.js
@@ -7511,6 +7629,12 @@ share/doc/qore/modules/OracleSqlUtil/htm
share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base__inherit__graph.map
share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base__inherit__graph.md5
share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base__inherit__graph.png
+share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base_no_rename-members.html
+share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base_no_rename.html
+share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base_no_rename.js
+share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base_no_rename__inherit__graph.map
+share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base_no_rename__inherit__graph.md5
+share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base_no_rename__inherit__graph.png
share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_column-members.html
share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_column.html
share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_column.js
@@ -9254,7 +9378,6 @@ share/doc/qore/modules/Qorize/html/group
share/doc/qore/modules/Qorize/html/group__filesystem__functions.js
share/doc/qore/modules/Qorize/html/group__hmac__functions.js
share/doc/qore/modules/Qorize/html/group__info__actions.js
-share/doc/qore/modules/Qorize/html/group__input__stream__function.js
share/doc/qore/modules/Qorize/html/group__io__constants.js
share/doc/qore/modules/Qorize/html/group__library__functions.js
share/doc/qore/modules/Qorize/html/group__list__functions.js
@@ -9265,6 +9388,7 @@ share/doc/qore/modules/Qorize/html/group
share/doc/qore/modules/Qorize/html/group__network__address__information__constants.js
share/doc/qore/modules/Qorize/html/group__null__and__nothing__constants.js
share/doc/qore/modules/Qorize/html/group__number__formatting__constants.js
+share/doc/qore/modules/Qorize/html/group__number__string__formatting__constants.js
share/doc/qore/modules/Qorize/html/group__object__functions.js
share/doc/qore/modules/Qorize/html/group__old__dbi__functions.js
share/doc/qore/modules/Qorize/html/group__opcodes.js
@@ -11325,7 +11449,6 @@ share/doc/qore/modules/SqlUtil/html/grou
share/doc/qore/modules/SqlUtil/html/group__hmac__functions.js
share/doc/qore/modules/SqlUtil/html/group__info__actions.html
share/doc/qore/modules/SqlUtil/html/group__info__actions.js
-share/doc/qore/modules/SqlUtil/html/group__input__stream__function.js
share/doc/qore/modules/SqlUtil/html/group__io__constants.js
share/doc/qore/modules/SqlUtil/html/group__library__functions.js
share/doc/qore/modules/SqlUtil/html/group__list__functions.js
@@ -11336,6 +11459,7 @@ share/doc/qore/modules/SqlUtil/html/grou
share/doc/qore/modules/SqlUtil/html/group__network__address__information__constants.js
share/doc/qore/modules/SqlUtil/html/group__null__and__nothing__constants.js
share/doc/qore/modules/SqlUtil/html/group__number__formatting__constants.js
+share/doc/qore/modules/SqlUtil/html/group__number__string__formatting__constants.js
share/doc/qore/modules/SqlUtil/html/group__object__functions.js
share/doc/qore/modules/SqlUtil/html/group__old__dbi__functions.js
share/doc/qore/modules/SqlUtil/html/group__option__constants.js
@@ -11456,7 +11580,6 @@ share/doc/qore/modules/SqlUtil/html/navt
share/doc/qore/modules/SqlUtil/html/navtreeindex6.js
share/doc/qore/modules/SqlUtil/html/navtreeindex7.js
share/doc/qore/modules/SqlUtil/html/navtreeindex8.js
-share/doc/qore/modules/SqlUtil/html/navtreeindex9.js
share/doc/qore/modules/SqlUtil/html/open.png
share/doc/qore/modules/SqlUtil/html/pages.html
share/doc/qore/modules/SqlUtil/html/resize.js
@@ -12213,7 +12336,6 @@ share/doc/qore/modules/TelnetClient/html
share/doc/qore/modules/TelnetClient/html/group__filesystem__functions.js
share/doc/qore/modules/TelnetClient/html/group__hmac__functions.js
share/doc/qore/modules/TelnetClient/html/group__info__actions.js
-share/doc/qore/modules/TelnetClient/html/group__input__stream__function.js
share/doc/qore/modules/TelnetClient/html/group__io__constants.js
share/doc/qore/modules/TelnetClient/html/group__library__functions.js
share/doc/qore/modules/TelnetClient/html/group__list__functions.js
@@ -12224,6 +12346,7 @@ share/doc/qore/modules/TelnetClient/html
share/doc/qore/modules/TelnetClient/html/group__network__address__information__constants.js
share/doc/qore/modules/TelnetClient/html/group__null__and__nothing__constants.js
share/doc/qore/modules/TelnetClient/html/group__number__formatting__constants.js
+share/doc/qore/modules/TelnetClient/html/group__number__string__formatting__constants.js
share/doc/qore/modules/TelnetClient/html/group__object__functions.js
share/doc/qore/modules/TelnetClient/html/group__old__dbi__functions.js
share/doc/qore/modules/TelnetClient/html/group__opcodes.js
@@ -13660,7 +13783,6 @@ share/doc/qore/modules/WebSocketUtil/htm
share/doc/qore/modules/WebSocketUtil/html/group__file__stat__constants.js
share/doc/qore/modules/WebSocketUtil/html/group__filesystem__functions.js
share/doc/qore/modules/WebSocketUtil/html/group__hmac__functions.js
-share/doc/qore/modules/WebSocketUtil/html/group__input__stream__function.js
share/doc/qore/modules/WebSocketUtil/html/group__io__constants.js
share/doc/qore/modules/WebSocketUtil/html/group__library__functions.js
share/doc/qore/modules/WebSocketUtil/html/group__list__functions.js
@@ -13671,6 +13793,7 @@ share/doc/qore/modules/WebSocketUtil/htm
share/doc/qore/modules/WebSocketUtil/html/group__network__address__information__constants.js
share/doc/qore/modules/WebSocketUtil/html/group__null__and__nothing__constants.js
share/doc/qore/modules/WebSocketUtil/html/group__number__formatting__constants.js
+share/doc/qore/modules/WebSocketUtil/html/group__number__string__formatting__constants.js
share/doc/qore/modules/WebSocketUtil/html/group__object__functions.js
share/doc/qore/modules/WebSocketUtil/html/group__old__dbi__functions.js
share/doc/qore/modules/WebSocketUtil/html/group__opcodes.html
@@ -14388,32 +14511,32 @@ share/doc/qore/modules/WebUtil/html/tab_
share/doc/qore/modules/WebUtil/html/tab_h.png
share/doc/qore/modules/WebUtil/html/tab_s.png
share/doc/qore/modules/WebUtil/html/tabs.css
-share/qore-modules/${PKGVERSION}/BulkSqlUtil.qm
-share/qore-modules/${PKGVERSION}/CsvUtil.qm
-share/qore-modules/${PKGVERSION}/Diff.qm
-share/qore-modules/${PKGVERSION}/FilePoller.qm
-share/qore-modules/${PKGVERSION}/FixedLengthUtil.qm
-share/qore-modules/${PKGVERSION}/FreetdsSqlUtil.qm
-share/qore-modules/${PKGVERSION}/HttpServer.qm
-share/qore-modules/${PKGVERSION}/HttpServerUtil.qm
-share/qore-modules/${PKGVERSION}/MailMessage.qm
-share/qore-modules/${PKGVERSION}/Mapper.qm
-share/qore-modules/${PKGVERSION}/Mime.qm
-share/qore-modules/${PKGVERSION}/MysqlSqlUtil.qm
-share/qore-modules/${PKGVERSION}/OracleSqlUtil.qm
-share/qore-modules/${PKGVERSION}/PgsqlSqlUtil.qm
-share/qore-modules/${PKGVERSION}/Pop3Client.qm
-share/qore-modules/${PKGVERSION}/QUnit.qm
-share/qore-modules/${PKGVERSION}/Qorize.qm
-share/qore-modules/${PKGVERSION}/RestClient.qm
-share/qore-modules/${PKGVERSION}/RestHandler.qm
-share/qore-modules/${PKGVERSION}/Schema.qm
-share/qore-modules/${PKGVERSION}/SmtpClient.qm
-share/qore-modules/${PKGVERSION}/SqlUtil.qm
-share/qore-modules/${PKGVERSION}/TableMapper.qm
-share/qore-modules/${PKGVERSION}/TelnetClient.qm
-share/qore-modules/${PKGVERSION}/Util.qm
-share/qore-modules/${PKGVERSION}/WebSocketClient.qm
-share/qore-modules/${PKGVERSION}/WebSocketHandler.qm
-share/qore-modules/${PKGVERSION}/WebSocketUtil.qm
-share/qore-modules/${PKGVERSION}/WebUtil.qm
+share/qore-modules/0.8.12/BulkSqlUtil.qm
+share/qore-modules/0.8.12/CsvUtil.qm
+share/qore-modules/0.8.12/Diff.qm
+share/qore-modules/0.8.12/FilePoller.qm
+share/qore-modules/0.8.12/FixedLengthUtil.qm
+share/qore-modules/0.8.12/FreetdsSqlUtil.qm
+share/qore-modules/0.8.12/HttpServer.qm
+share/qore-modules/0.8.12/HttpServerUtil.qm
+share/qore-modules/0.8.12/MailMessage.qm
+share/qore-modules/0.8.12/Mapper.qm
+share/qore-modules/0.8.12/Mime.qm
+share/qore-modules/0.8.12/MysqlSqlUtil.qm
+share/qore-modules/0.8.12/OracleSqlUtil.qm
+share/qore-modules/0.8.12/PgsqlSqlUtil.qm
+share/qore-modules/0.8.12/Pop3Client.qm
+share/qore-modules/0.8.12/QUnit.qm
+share/qore-modules/0.8.12/Qorize.qm
+share/qore-modules/0.8.12/RestClient.qm
+share/qore-modules/0.8.12/RestHandler.qm
+share/qore-modules/0.8.12/Schema.qm
+share/qore-modules/0.8.12/SmtpClient.qm
+share/qore-modules/0.8.12/SqlUtil.qm
+share/qore-modules/0.8.12/TableMapper.qm
+share/qore-modules/0.8.12/TelnetClient.qm
+share/qore-modules/0.8.12/Util.qm
+share/qore-modules/0.8.12/WebSocketClient.qm
+share/qore-modules/0.8.12/WebSocketHandler.qm
+share/qore-modules/0.8.12/WebSocketUtil.qm
+share/qore-modules/0.8.12/WebUtil.qm
Index: pkgsrc/lang/qore/distinfo
diff -u pkgsrc/lang/qore/distinfo:1.5 pkgsrc/lang/qore/distinfo:1.6
--- pkgsrc/lang/qore/distinfo:1.5 Wed Jul 20 11:58:40 2016
+++ pkgsrc/lang/qore/distinfo Fri Dec 9 19:00:18 2016
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.5 2016/07/20 11:58:40 nros Exp $
+$NetBSD: distinfo,v 1.6 2016/12/09 19:00:18 nros Exp $
-SHA1 (qore-0.8.12.tar.bz2) = 9c9465559536053b7303c73f17b5243adc52ecab
-RMD160 (qore-0.8.12.tar.bz2) = 312751b59156aaa813e4fce4d0876c376b6fd1d0
-SHA512 (qore-0.8.12.tar.bz2) = 2f7bd62ed93a5e64fd4fb77b0e62162d9f1cfa0c0bf9e5b0270cf1b5a150aa13c4283fac9a805a4e6e52d95647253de27c48cb7f9251d53a2a265624f43b31af
-Size (qore-0.8.12.tar.bz2) = 21703171 bytes
+SHA1 (qore-0.8.12.4.tar.bz2) = 6c39c36a146c0c53a28024681d5b535d40788d1c
+RMD160 (qore-0.8.12.4.tar.bz2) = 05b9590e2cac53e24acd44417c4fc16bc27e7254
+SHA512 (qore-0.8.12.4.tar.bz2) = cfd730ce710e70e874813fbc7fe16a763a6b78f58de384ac00bca81022549e09f16d562dfbe221a03f800e0cc86035efd9dc900f6bdf385132feceaada726529
+Size (qore-0.8.12.4.tar.bz2) = 22136459 bytes
Home |
Main Index |
Thread Index |
Old Index