Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id BB7127A175 for ; Sat, 10 Jun 2017 16:28:23 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 6874B84DB2; Sat, 10 Jun 2017 16:28:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E9AE484D88 for ; Sat, 10 Jun 2017 16:28:22 +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 S3I_hlQzZcBv for ; Sat, 10 Jun 2017 16:28:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 5E1A684CDD for ; Sat, 10 Jun 2017 16:28:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5AC2BFAA4; Sat, 10 Jun 2017 16:28:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1497112102124180" MIME-Version: 1.0 Date: Sat, 10 Jun 2017 16:28:22 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/net/ruby-net-telnet To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20170610162822.5AC2BFAA4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1497112102124180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sat Jun 10 16:28:22 UTC 2017 Added Files: pkgsrc/net/ruby-net-telnet: DESCR Makefile PLIST distinfo Log Message: Add ruby-net-telnet package version 0.1.1. Provides telnet client functionality. This class also has, through delegation, all the methods of a socket object (by default, a TCPSocket, but can be set by the Proxy option to new()). This provides methods such as close() to end the session and sysread() to read data directly from the host, instead of via the waitfor() mechanism. Note that if you do use sysread() directly when in telnet mode, you should probably pass the output through preprocess() to extract telnet command sequences. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/net/ruby-net-telnet/DESCR \ pkgsrc/net/ruby-net-telnet/Makefile pkgsrc/net/ruby-net-telnet/PLIST \ pkgsrc/net/ruby-net-telnet/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1497112102124180 Content-Disposition: inline Content-Length: 2634 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/net/ruby-net-telnet/DESCR diff -u /dev/null pkgsrc/net/ruby-net-telnet/DESCR:1.1 --- /dev/null Sat Jun 10 16:28:22 2017 +++ pkgsrc/net/ruby-net-telnet/DESCR Sat Jun 10 16:28:22 2017 @@ -0,0 +1,11 @@ +Provides telnet client functionality. + +This class also has, through delegation, all the methods of a socket object +(by default, a TCPSocket, but can be set by the Proxy option to new()). + +This provides methods such as close() to end the session and sysread() to read +data directly from the host, instead of via the waitfor() mechanism. + +Note that if you do use sysread() directly when in telnet mode, you should +probably pass the output through preprocess() to extract telnet command +sequences. Index: pkgsrc/net/ruby-net-telnet/Makefile diff -u /dev/null pkgsrc/net/ruby-net-telnet/Makefile:1.1 --- /dev/null Sat Jun 10 16:28:22 2017 +++ pkgsrc/net/ruby-net-telnet/Makefile Sat Jun 10 16:28:22 2017 @@ -0,0 +1,12 @@ +# $NetBSD: Makefile,v 1.1 2017/06/10 16:28:22 taca Exp $ + +DISTNAME= net-telnet-0.1.1 +CATEGORIES= net + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/ruby/net-telnet +COMMENT= Provides telnet client functionality +LICENSE= ruby-license OR 2-clause-bsd + +.include "../../lang/ruby/gem.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/net/ruby-net-telnet/PLIST diff -u /dev/null pkgsrc/net/ruby-net-telnet/PLIST:1.1 --- /dev/null Sat Jun 10 16:28:22 2017 +++ pkgsrc/net/ruby-net-telnet/PLIST Sat Jun 10 16:28:22 2017 @@ -0,0 +1,15 @@ +@comment $NetBSD: PLIST,v 1.1 2017/06/10 16:28:22 taca Exp $ +${GEM_HOME}/cache/${GEM_NAME}.gem +${GEM_LIBDIR}/.gitignore +${GEM_LIBDIR}/.travis.yml +${GEM_LIBDIR}/Gemfile +${GEM_LIBDIR}/LICENSE.txt +${GEM_LIBDIR}/README.md +${GEM_LIBDIR}/Rakefile +${GEM_LIBDIR}/bin/console +${GEM_LIBDIR}/bin/setup +${GEM_LIBDIR}/lib/net-telnet.rb +${GEM_LIBDIR}/lib/net/telnet.rb +${GEM_LIBDIR}/lib/net/telnet/version.rb +${GEM_LIBDIR}/net-telnet.gemspec +${GEM_HOME}/specifications/${GEM_NAME}.gemspec Index: pkgsrc/net/ruby-net-telnet/distinfo diff -u /dev/null pkgsrc/net/ruby-net-telnet/distinfo:1.1 --- /dev/null Sat Jun 10 16:28:22 2017 +++ pkgsrc/net/ruby-net-telnet/distinfo Sat Jun 10 16:28:22 2017 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2017/06/10 16:28:22 taca Exp $ + +SHA1 (net-telnet-0.1.1.gem) = c03ff1049fa135da019959d488c612ed754e6380 +RMD160 (net-telnet-0.1.1.gem) = b9243098fc72081cfcbad5afc9d2cd302960ae96 +SHA512 (net-telnet-0.1.1.gem) = d3b80e296a530173bf4741bbc98c03b89b920833b9254714bfb013f532106feb4cd82b81316fdc557b027cd3a0514a6be95a9d0a22d5dea340e801f7628edce2 +Size (net-telnet-0.1.1.gem) = 16896 bytes --_----------=_1497112102124180--