Received: by mail.netbsd.org (Postfix, from userid 605) id 0848C84E07; Wed, 28 Feb 2018 15:43:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6EA4484E02 for ; Wed, 28 Feb 2018 15:43:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id urE2Wvbn4dKd for ; Wed, 28 Feb 2018 15:43:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B48EE84C77 for ; Wed, 28 Feb 2018 15:43:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AF209FB40; Wed, 28 Feb 2018 15:43:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1519832588146830" MIME-Version: 1.0 Date: Wed, 28 Feb 2018 15:43:08 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-byebug To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20180228154308.AF209FB40@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. --_----------=_1519832588146830 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Wed Feb 28 15:43:08 UTC 2018 Modified Files: pkgsrc/devel/ruby-byebug: Makefile PLIST distinfo Log Message: devel/ruby-byebug: update to 10.0.0 10.0.0 - 2018-01-26 Changed * Breaking on methods now stops on the first effective line of a method, not on the line containing the def keyword. Added * Show valid breakpoint locations when invalid location given (#393, @ko1). * Ruby 2.5.0 support (#397, @yui-knk). * Log host & port when launching byebug's client in remote mode. * Some love & tests to remote debugging (#82). * remote_byebug shortcut to start the most common case for remote debugging (#141). Fixed * Properly ignore ruby fullpath executable when passed to byebug script (#419). * Remote server crash when interrupting client (#141, #274). * Control server thread being able to interrupt main thread only a single time. (#239). To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/ruby-byebug/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/ruby-byebug/PLIST \ pkgsrc/devel/ruby-byebug/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1519832588146830 Content-Disposition: inline Content-Length: 3141 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ruby-byebug/Makefile diff -u pkgsrc/devel/ruby-byebug/Makefile:1.3 pkgsrc/devel/ruby-byebug/Makefile:1.4 --- pkgsrc/devel/ruby-byebug/Makefile:1.3 Thu Aug 31 15:15:13 2017 +++ pkgsrc/devel/ruby-byebug/Makefile Wed Feb 28 15:43:08 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2017/08/31 15:15:13 taca Exp $ +# $NetBSD: Makefile,v 1.4 2018/02/28 15:43:08 taca Exp $ -DISTNAME= byebug-9.1.0 +DISTNAME= byebug-10.0.0 CATEGORIES= devel MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/devel/ruby-byebug/PLIST diff -u pkgsrc/devel/ruby-byebug/PLIST:1.2 pkgsrc/devel/ruby-byebug/PLIST:1.3 --- pkgsrc/devel/ruby-byebug/PLIST:1.2 Thu Aug 31 15:15:13 2017 +++ pkgsrc/devel/ruby-byebug/PLIST Wed Feb 28 15:43:08 2018 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2017/08/31 15:15:13 taca Exp $ +@comment $NetBSD: PLIST,v 1.3 2018/02/28 15:43:08 taca Exp $ bin/byebug${RUBY_SUFFIX} ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_EXTSDIR}/byebug/byebug.${RUBY_DLEXT} @@ -8,7 +8,7 @@ ${GEM_LIBDIR}/CONTRIBUTING.md ${GEM_LIBDIR}/GUIDE.md ${GEM_LIBDIR}/LICENSE ${GEM_LIBDIR}/README.md -${GEM_LIBDIR}/bin/byebug +${GEM_LIBDIR}/exe/byebug ${GEM_LIBDIR}/ext/byebug/breakpoint.c ${GEM_LIBDIR}/ext/byebug/byebug.c ${GEM_LIBDIR}/ext/byebug/byebug.h @@ -111,6 +111,8 @@ ${GEM_LIBDIR}/lib/byebug/processors/cont ${GEM_LIBDIR}/lib/byebug/processors/post_mortem_processor.rb ${GEM_LIBDIR}/lib/byebug/processors/script_processor.rb ${GEM_LIBDIR}/lib/byebug/remote.rb +${GEM_LIBDIR}/lib/byebug/remote/client.rb +${GEM_LIBDIR}/lib/byebug/remote/server.rb ${GEM_LIBDIR}/lib/byebug/runner.rb ${GEM_LIBDIR}/lib/byebug/setting.rb ${GEM_LIBDIR}/lib/byebug/settings/autoirb.rb @@ -128,6 +130,7 @@ ${GEM_LIBDIR}/lib/byebug/settings/post_m ${GEM_LIBDIR}/lib/byebug/settings/savefile.rb ${GEM_LIBDIR}/lib/byebug/settings/stack_on_error.rb ${GEM_LIBDIR}/lib/byebug/settings/width.rb +${GEM_LIBDIR}/lib/byebug/source_file_formatter.rb ${GEM_LIBDIR}/lib/byebug/subcommands.rb ${GEM_LIBDIR}/lib/byebug/version.rb ${GEM_HOME}/specifications/${GEM_NAME}.gemspec Index: pkgsrc/devel/ruby-byebug/distinfo diff -u pkgsrc/devel/ruby-byebug/distinfo:1.2 pkgsrc/devel/ruby-byebug/distinfo:1.3 --- pkgsrc/devel/ruby-byebug/distinfo:1.2 Thu Aug 31 15:15:13 2017 +++ pkgsrc/devel/ruby-byebug/distinfo Wed Feb 28 15:43:08 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2017/08/31 15:15:13 taca Exp $ +$NetBSD: distinfo,v 1.3 2018/02/28 15:43:08 taca Exp $ -SHA1 (byebug-9.1.0.gem) = b3d5197083841ac377e9a9cc526b89c3a4e7f72d -RMD160 (byebug-9.1.0.gem) = 1620c0e72ac63172d03feda830c1debffb458c4c -SHA512 (byebug-9.1.0.gem) = 45accfe0ea5e7c004dcba9796557f9efa06591eba5b306f8454dfc44d8c610f4b817e2f8837247c9fad971700b6b7eb6d4f63a5ff63d17491cdc0d5040e2ec4b -Size (byebug-9.1.0.gem) = 79872 bytes +SHA1 (byebug-10.0.0.gem) = ac7234725b9def6e03b9ab051118ba0232542f23 +RMD160 (byebug-10.0.0.gem) = d6e45e1732f32ecc9535f68c8dde1311b874c948 +SHA512 (byebug-10.0.0.gem) = 3cdf8cdd449669661ac3540b10ee3101e7f3c0d6efc39d61a048b560976eba1c8ab8a15f50355c5738c5c268b17eed87d5efeb95632c3b557e820ad79c090e5a +Size (byebug-10.0.0.gem) = 81920 bytes --_----------=_1519832588146830--