From owner-svn-ports-head@freebsd.org Tue Jan 26 17:20:22 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id B11014F6DA2; Tue, 26 Jan 2021 17:20:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DQD5J2D7Cz4krK; Tue, 26 Jan 2021 17:20:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9CF9156A1; Tue, 26 Jan 2021 17:20:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 10QHKIRp006115; Tue, 26 Jan 2021 17:20:18 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10QHKH7T006111; Tue, 26 Jan 2021 17:20:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202101261720.10QHKH7T006111@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 26 Jan 2021 17:20:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r562728 - in head/devel: . rubygem-pry-remote X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . rubygem-pry-remote X-SVN-Commit-Revision: 562728 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Jan 2021 17:20:23 -0000 Author: sunpoet Date: Tue Jan 26 17:20:17 2021 New Revision: 562728 URL: https://svnweb.freebsd.org/changeset/ports/562728 Log: Add rubygem-pry-remote 0.1.8 A way to start Pry remotely and to connect to it using DRb. This allows to access the state of the running program from anywhere. WWW: https://github.com/Mon-Ouie/pry-remote Added: head/devel/rubygem-pry-remote/ head/devel/rubygem-pry-remote/Makefile (contents, props changed) head/devel/rubygem-pry-remote/distinfo (contents, props changed) head/devel/rubygem-pry-remote/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jan 26 17:20:11 2021 (r562727) +++ head/devel/Makefile Tue Jan 26 17:20:17 2021 (r562728) @@ -6390,6 +6390,7 @@ SUBDIR += rubygem-pry SUBDIR += rubygem-pry-byebug SUBDIR += rubygem-pry-rails + SUBDIR += rubygem-pry-remote SUBDIR += rubygem-pry-remote-em SUBDIR += rubygem-ptreloaded SUBDIR += rubygem-puppet-resource_api Added: head/devel/rubygem-pry-remote/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-pry-remote/Makefile Tue Jan 26 17:20:17 2021 (r562728) @@ -0,0 +1,25 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= pry-remote +PORTVERSION= 0.1.8 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Connect to Pry remotely using DRb + +LICENSE= ZLIB +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= rubygem-pry>=0.9<1:devel/rubygem-pry \ + rubygem-slop3>=3.0<4:devel/rubygem-slop3 + +USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +PLIST_FILES= bin/pry-remote + +.include Added: head/devel/rubygem-pry-remote/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-pry-remote/distinfo Tue Jan 26 17:20:17 2021 (r562728) @@ -0,0 +1,3 @@ +TIMESTAMP = 1611665307 +SHA256 (rubygem/pry-remote-0.1.8.gem) = d59e065bfe13f3793200761a1303653497679e62815f979ec76517cf66e6e181 +SIZE (rubygem/pry-remote-0.1.8.gem) = 8192 Added: head/devel/rubygem-pry-remote/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-pry-remote/pkg-descr Tue Jan 26 17:20:17 2021 (r562728) @@ -0,0 +1,4 @@ +A way to start Pry remotely and to connect to it using DRb. This allows to +access the state of the running program from anywhere. + +WWW: https://github.com/Mon-Ouie/pry-remote