pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/security/qore-ssh2-module Updated security/qore-ssh2-m...
details: https://anonhg.NetBSD.org/pkgsrc/rev/437f6b68ae3e
branches: trunk
changeset: 309095:437f6b68ae3e
user: nros <nros%pkgsrc.org@localhost>
date: Fri Jun 08 20:02:30 2018 +0000
description:
Updated security/qore-ssh2-module to version 1.2 .
Changes from release notes:
* added the Ssh2Connections user module
* added the following SFTPClient methods supporting
streams:SFTPClient::get(), SFTPClient::put()
* fixed bugs retrieving zero-length text files with
SFTPClient::getFile(), SFTPClient::getTextFile(),
SFTPClient::get(), and SFTPClient::retrieveFile()
* fixed bugs streaming data with SFTPClient::transferFile()
and SFTPClient::put()
* argument error in SFTPClient disconnection with
socket errors causes a crash
* infinite loop in SftpPoller polling when
PO_NO_PROCESS_CONTROL is not set and no sleep
option is given
* implement support for additional directories
in SftpPoller
* SftpPoller::run() cannot be synchronized
* compile fixes for Solaris 10 g++
* add constructor option to SftpPoller for checking
if polled directories are writable
* fixed a bug that could cause a crash when an error
occurs in the SFTPClient class
* streaming from SFTP server impossible without user
re-implementing SftpPoller methods
* fixed a bug in libssh2 library initialization
error reporting
diffstat:
security/qore-ssh2-module/Makefile | 5 ++---
security/qore-ssh2-module/PLIST | 10 ++++------
security/qore-ssh2-module/buildlink3.mk | 4 ++--
security/qore-ssh2-module/distinfo | 10 +++++-----
4 files changed, 13 insertions(+), 16 deletions(-)
diffs (86 lines):
diff -r a2b01303becf -r 437f6b68ae3e security/qore-ssh2-module/Makefile
--- a/security/qore-ssh2-module/Makefile Fri Jun 08 19:59:01 2018 +0000
+++ b/security/qore-ssh2-module/Makefile Fri Jun 08 20:02:30 2018 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2018/01/28 16:24:11 wiz Exp $
+# $NetBSD: Makefile,v 1.9 2018/06/08 20:02:30 nros Exp $
-DISTNAME= qore-ssh2-module-1.0
-PKGREVISION= 2
+DISTNAME= qore-ssh2-module-1.2
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/}
EXTRACT_SUFX= .tar.bz2
diff -r a2b01303becf -r 437f6b68ae3e security/qore-ssh2-module/PLIST
--- a/security/qore-ssh2-module/PLIST Fri Jun 08 19:59:01 2018 +0000
+++ b/security/qore-ssh2-module/PLIST Fri Jun 08 20:02:30 2018 +0000
@@ -1,11 +1,9 @@
-@comment $NetBSD: PLIST,v 1.2 2016/07/20 14:54:57 nros Exp $
+@comment $NetBSD: PLIST,v 1.3 2018/06/08 20:02:30 nros Exp $
${QORE_MODULE_DIR}/ssh2-api-${QORE_LATEST_MODULE_API}.qmod
share/doc/qore-ssh2-module/COPYING.LGPL
share/doc/qore-ssh2-module/COPYING.MIT
share/doc/qore-ssh2-module/html/annotated.html
share/doc/qore-ssh2-module/html/annotated_dup.js
-share/doc/qore-ssh2-module/html/arrowdown.png
-share/doc/qore-ssh2-module/html/arrowright.png
share/doc/qore-ssh2-module/html/bc_s.png
share/doc/qore-ssh2-module/html/bdwn.png
share/doc/qore-ssh2-module/html/classQore_1_1SSH2_1_1SFTPClient-members.html
@@ -32,9 +30,6 @@
share/doc/qore-ssh2-module/html/classes.html
share/doc/qore-ssh2-module/html/closed.png
share/doc/qore-ssh2-module/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html
-share/doc/qore-ssh2-module/html/dir_68267d1309a1af8e8297ef4c3efbcdba_dep.map
-share/doc/qore-ssh2-module/html/dir_68267d1309a1af8e8297ef4c3efbcdba_dep.md5
-share/doc/qore-ssh2-module/html/dir_68267d1309a1af8e8297ef4c3efbcdba_dep.png
share/doc/qore-ssh2-module/html/doc.png
share/doc/qore-ssh2-module/html/doxygen.css
share/doc/qore-ssh2-module/html/doxygen.png
@@ -57,6 +52,8 @@
share/doc/qore-ssh2-module/html/inherit_graph_1.png
share/doc/qore-ssh2-module/html/inherits.html
share/doc/qore-ssh2-module/html/jquery.js
+share/doc/qore-ssh2-module/html/menu.js
+share/doc/qore-ssh2-module/html/menudata.js
share/doc/qore-ssh2-module/html/namespaceQore_1_1SSH2.html
share/doc/qore-ssh2-module/html/namespaceQore_1_1SSH2.js
share/doc/qore-ssh2-module/html/namespaces.html
@@ -148,3 +145,4 @@
share/doc/qore-ssh2-module/html/tab_s.png
share/doc/qore-ssh2-module/html/tabs.css
${QORE_USER_MODULE_DIR}/SftpPoller.qm
+${QORE_USER_MODULE_DIR}/Ssh2Connections.qm
diff -r a2b01303becf -r 437f6b68ae3e security/qore-ssh2-module/buildlink3.mk
--- a/security/qore-ssh2-module/buildlink3.mk Fri Jun 08 19:59:01 2018 +0000
+++ b/security/qore-ssh2-module/buildlink3.mk Fri Jun 08 20:02:30 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.5 2018/01/28 16:24:11 wiz Exp $
+# $NetBSD: buildlink3.mk,v 1.6 2018/06/08 20:02:30 nros Exp $
BUILDLINK_TREE+= qore-ssh2-module
@@ -6,7 +6,7 @@
QORE_SSH2_MODULE_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.qore-ssh2-module+= qore-ssh2-module>=0.9.9
-BUILDLINK_ABI_DEPENDS.qore-ssh2-module?= qore-ssh2-module>=1.0nb2
+BUILDLINK_ABI_DEPENDS.qore-ssh2-module?= qore-ssh2-module>=1.2
BUILDLINK_PKGSRCDIR.qore-ssh2-module?= ../../security/qore-ssh2-module
.include "../../lang/qore/buildlink3.mk"
diff -r a2b01303becf -r 437f6b68ae3e security/qore-ssh2-module/distinfo
--- a/security/qore-ssh2-module/distinfo Fri Jun 08 19:59:01 2018 +0000
+++ b/security/qore-ssh2-module/distinfo Fri Jun 08 20:02:30 2018 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2016/07/20 14:54:57 nros Exp $
+$NetBSD: distinfo,v 1.4 2018/06/08 20:02:30 nros Exp $
-SHA1 (qore-ssh2-module-1.0.tar.bz2) = fdec8a5d0cf292eb5818813bb6d28e8994e84fa4
-RMD160 (qore-ssh2-module-1.0.tar.bz2) = 02a2b504cb838d6854b73edc93406d03d103ba63
-SHA512 (qore-ssh2-module-1.0.tar.bz2) = b9af0453f07326fdde99feddb1b2f78fa884c46838eeb3752ee28871f7edb4901b1ab278a2f49d27f467858f71c8c2d1a519fb35c4ae69637d26e8b51923152e
-Size (qore-ssh2-module-1.0.tar.bz2) = 599221 bytes
+SHA1 (qore-ssh2-module-1.2.tar.bz2) = 27a297be8dcc02214015af7a34dd7ea05317cb15
+RMD160 (qore-ssh2-module-1.2.tar.bz2) = cd31cc9c32418a5a9a93a6b3cd5c95a002c10295
+SHA512 (qore-ssh2-module-1.2.tar.bz2) = 1324fe23b520986d2976f2b38c1ecd0d4f7584d68d005af07746d452b848e751ee58503096874f7c061f7232837718ecd3225a6ebb154d38d7dd2a111c6135ab
+Size (qore-ssh2-module-1.2.tar.bz2) = 766015 bytes
Home |
Main Index |
Thread Index |
Old Index