Received: by mail.netbsd.org (Postfix, from userid 605) id EDD638534A; Sat, 3 Feb 2024 16:24:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EDA2F8532E for ; Sat, 3 Feb 2024 16:24:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id yHuN_j7HusUH for ; Sat, 3 Feb 2024 16:24:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3FEF184CFA for ; Sat, 3 Feb 2024 16:24:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3C80FFA42; Sat, 3 Feb 2024 16:24:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170697746048340" MIME-Version: 1.0 Date: Sat, 3 Feb 2024 16:24:20 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/security/ruby-sshkit To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20240203162420.3C80FFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_170697746048340 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sat Feb 3 16:24:20 UTC 2024 Modified Files: pkgsrc/security/ruby-sshkit: Makefile PLIST distinfo Log Message: security/ruby-sshkit: update to 1.22.0 1.21.7 (2023-12-26) Bug Fixes * Add mutex_m dependency to fix Ruby 3.3 warning (#525) @mattbrictson Housekeeping * Add Ruby 3.3 to CI (#526) @mattbrictson * Disable functional tests in CI for now (#523) @mattbrictson 1.22.0 (2024-01-09) With this release, SSHKit now supports SFTP file transfers. For backwards-compatibility, SCP is still the default. To enable SFTP globally or per host, see more details in #524. New Features * Allow SFTP to be used for upload!/download! instead of SCP (#524, #529) @mattbrictson Documentation * EXAMPLES.md corrections (#527) @JasonPoll To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/security/ruby-sshkit/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/security/ruby-sshkit/PLIST cvs rdiff -u -r1.22 -r1.23 pkgsrc/security/ruby-sshkit/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170697746048340 Content-Disposition: inline Content-Length: 3102 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/ruby-sshkit/Makefile diff -u pkgsrc/security/ruby-sshkit/Makefile:1.20 pkgsrc/security/ruby-sshkit/Makefile:1.21 --- pkgsrc/security/ruby-sshkit/Makefile:1.20 Sun Dec 17 15:20:31 2023 +++ pkgsrc/security/ruby-sshkit/Makefile Sat Feb 3 16:24:20 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.20 2023/12/17 15:20:31 taca Exp $ +# $NetBSD: Makefile,v 1.21 2024/02/03 16:24:20 taca Exp $ -DISTNAME= sshkit-1.21.6 +DISTNAME= sshkit-1.22.0 CATEGORIES= security MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/security/ruby-sshkit/PLIST diff -u pkgsrc/security/ruby-sshkit/PLIST:1.11 pkgsrc/security/ruby-sshkit/PLIST:1.12 --- pkgsrc/security/ruby-sshkit/PLIST:1.11 Thu Feb 23 15:13:35 2023 +++ pkgsrc/security/ruby-sshkit/PLIST Sat Feb 3 16:24:20 2024 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.11 2023/02/23 15:13:35 taca Exp $ +@comment $NetBSD: PLIST,v 1.12 2024/02/03 16:24:20 taca Exp $ ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/.github/dependabot.yml ${GEM_LIBDIR}/.github/release-drafter.yml @@ -34,6 +34,8 @@ ${GEM_LIBDIR}/lib/sshkit/backends/connec ${GEM_LIBDIR}/lib/sshkit/backends/local.rb ${GEM_LIBDIR}/lib/sshkit/backends/netssh.rb ${GEM_LIBDIR}/lib/sshkit/backends/netssh/known_hosts.rb +${GEM_LIBDIR}/lib/sshkit/backends/netssh/scp_transfer.rb +${GEM_LIBDIR}/lib/sshkit/backends/netssh/sftp_transfer.rb ${GEM_LIBDIR}/lib/sshkit/backends/printer.rb ${GEM_LIBDIR}/lib/sshkit/backends/skipper.rb ${GEM_LIBDIR}/lib/sshkit/color.rb @@ -61,8 +63,11 @@ ${GEM_LIBDIR}/lib/sshkit/runners/sequent ${GEM_LIBDIR}/lib/sshkit/version.rb ${GEM_LIBDIR}/sshkit.gemspec ${GEM_LIBDIR}/test/boxes.json +${GEM_LIBDIR}/test/functional/backends/netssh_transfer_tests.rb ${GEM_LIBDIR}/test/functional/backends/test_local.rb ${GEM_LIBDIR}/test/functional/backends/test_netssh.rb +${GEM_LIBDIR}/test/functional/backends/test_netssh_scp.rb +${GEM_LIBDIR}/test/functional/backends/test_netssh_sftp.rb ${GEM_LIBDIR}/test/functional/test_ssh_server_comes_up_for_functional_tests.rb ${GEM_LIBDIR}/test/helper.rb ${GEM_LIBDIR}/test/known_hosts/github Index: pkgsrc/security/ruby-sshkit/distinfo diff -u pkgsrc/security/ruby-sshkit/distinfo:1.22 pkgsrc/security/ruby-sshkit/distinfo:1.23 --- pkgsrc/security/ruby-sshkit/distinfo:1.22 Sun Dec 17 15:20:31 2023 +++ pkgsrc/security/ruby-sshkit/distinfo Sat Feb 3 16:24:20 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.22 2023/12/17 15:20:31 taca Exp $ +$NetBSD: distinfo,v 1.23 2024/02/03 16:24:20 taca Exp $ -BLAKE2s (sshkit-1.21.6.gem) = aaa1fc3a6097d96b8b44c1ce2c684fdaa8a4bdc3359cd8c43d337fc3c2bfb580 -SHA512 (sshkit-1.21.6.gem) = 8f6db82cd3607e947b6fd7ad0c5010b631254bcd12c19489e8446d83b352f9333baf9ed77aa197a4f0a081f75363404f5e48289f2d1f701c1a23cd834cca0ac4 -Size (sshkit-1.21.6.gem) = 145408 bytes +BLAKE2s (sshkit-1.22.0.gem) = ae1bd8e074ce7d52dabab0185a86c8b3fb7d6c3257a60886efb85cc9913ab377 +SHA512 (sshkit-1.22.0.gem) = fea5d130c0821f8762f76fa3eb9daa6104bea0f1dd59a0cf3845becc96773d2ac81b909151c9535d68dd1fd17a6f6071cde048d74c9c46105ac3d5d143c20d3b +Size (sshkit-1.22.0.gem) = 146944 bytes --_----------=_170697746048340--