Received: by mail.netbsd.org (Postfix, from userid 605) id 182D984CE7; Mon, 23 Mar 2020 17:09:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9343E84CDB for ; Mon, 23 Mar 2020 17:09:21 +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 U_faC1T76wQb for ; Mon, 23 Mar 2020 17:09:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B85A584CCD for ; Mon, 23 Mar 2020 17:09:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B1EABFB27; Mon, 23 Mar 2020 17:09:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1584983360192610" MIME-Version: 1.0 Date: Mon, 23 Mar 2020 17:09:20 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/misc/ruby-pry To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20200323170920.B1EABFB27@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. --_----------=_1584983360192610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Mon Mar 23 17:09:20 UTC 2020 Modified Files: pkgsrc/misc/ruby-pry: Makefile Log Message: misc/ruby-pry: update to 0.13.0 Update ruby-pry to 0.13.0. pkgsrc change: add "USE_LANGAUGES= # none". 0.13.0 (March 21, 2020) Features * Added metadata to the gem (such as changelog URI, source code URI & bug tracker URI), so it shows on https://rubygems.org/gems/pry (#1869) * Added ability to forward ARGV to a Pry session via -- (or -) when launching Pry from shell (#1902) * Added Pry::Config::LazyValue & Pry::Config::MemoizedValue, which allow storing callable procs in the config (#2024) * Added the rc_file config option that tells Pry the path to pryrc (#2027) * Added the --code flag to the wtf command, which shows code for each backtrace frame (#2037) * Added the ability to paste method call chains with leading dots (#2060) API changes * Pry::Prompt is a class now and it can be instantiated to create new prompts on the fly that are not registered with Pry::Prompt#add. Learn more about its API in the docs (#1877) Deprecations * Deprecated Pry.config.exception_whitelist in favor of Pry.config.unrescued_exceptions (#1874) * Deprecated Pry.config.prompt = Pry::Prompt[:simple][:value] in favor of Pry.config.prompt = Pry::Prompt[:simple] when setting Pry prompt via pryrc. Pry::Prompt[:simple] would return an instance of Pry::Prompt instead of Hash (#1877) * Deprecated setting prompt via an array of two procs: (#1877) # Deprecated, emits a warning. Pry.config.prompt = [proc {}, proc {}] This will be removed in the next release. * Deprecated the show-doc command. The show-source -d is the new recommended way of reading docs (#1934) * Deprecated Pry::Command#_pry_. Use Pry::Command#pry_instance instead (#1989) Breaking changes * Deleted deprecated Pry::Platform (#1863) * Deleted deprecated Pry#{input/output}_array (#1884) * Deleted deprecated Pry::Prompt::MAP (#1866) * Deleted deprecated methods of Pry::Helpers::BaseHelpers such as mac_osx?, linux?, windows?, windows_ansi?, jruby?, jruby_19?, mri?, mri_19?, mri_2? (#1867) * Deleted deprecated Pry::Command#text (#1865) * Deleted deprecated Pry::Method#all_from_common (#1868) * Deleted install-command (#1979) * Deleted Pry::Helpers::BaseHelpers#command_dependencies_met? (#1979) * Deleted commands: gem-cd, gem-install, gem-list, gem-open, gem-readme, gem-search, gem-stats (#1981) * Deleted deprecated commands: edit-method and show-command (#2001) * Deleted Pry::Command#disabled_commands (#2001) * Deleted Pry::BlockCommand#opts (use #context instead) (#2003) * Deleted Pry.lazy (use Pry::Config::LazyValue instead) (#2024) Bug fixes * Fixed bug where using Pry.config.prompt_name can return a Pry::Config::Lazy instead of expected instance of String (#1890) * Fixed LoadError being raised when using auto completions and Bundler (#1896) * Fixed bug where Pry.input_ring doesn't append duplicate elements (#1898) * Fixed Ruby 2.6 warning about Binding#source_location (#1904) * Fixed wrong winsize when custom output is passed to Pry (#2045) * Fixed XDG_CONFIG_HOME & XDG_DATA_HOME precedence. When these env variables are set, Pry no longer uses traditional files like ~/.pryrc & ~/.pry_history. Instead, the env variable paths are loaded first (#2056) * Fixed the $SAFE will become a normal global variable in Ruby 3.0 warning on Ruby 2.7 (#2107) * Fixed bug when whereami -c cannot show beginning of the class, which is on the same line as another expression (#2098) * Fixed bug when Object#owner is defined, which results into somewhat broken method introspection (#2113) * Fixed bug when indentation leaves parts of input after pressing enter when Readline is enabled with mode indicators for vi mode. This was supposed to be fixed in v0.12.2 but it regressed (#2114) To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/misc/ruby-pry/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1584983360192610 Content-Disposition: inline Content-Length: 946 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/misc/ruby-pry/Makefile diff -u pkgsrc/misc/ruby-pry/Makefile:1.10 pkgsrc/misc/ruby-pry/Makefile:1.11 --- pkgsrc/misc/ruby-pry/Makefile:1.10 Sat Dec 22 17:27:58 2018 +++ pkgsrc/misc/ruby-pry/Makefile Mon Mar 23 17:09:20 2020 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2018/12/22 17:27:58 taca Exp $ +# $NetBSD: Makefile,v 1.11 2020/03/23 17:09:20 taca Exp $ -DISTNAME= pry-0.12.2 -PKGREVISION= 1 +DISTNAME= pry-0.13.0 CATEGORIES= misc MAINTAINER= pkgsrc-users@NetBSD.org @@ -10,7 +9,7 @@ COMMENT= IRB alternative and runtime dev LICENSE= mit DEPENDS+= ${RUBY_PKGPREFIX}-readline>=${RUBY_VERSION}:../../devel/ruby-readline -DEPENDS+= ${RUBY_PKGPREFIX}-method_source>=0.9.0<0.10:../../misc/ruby-method_source +DEPENDS+= ${RUBY_PKGPREFIX}-method_source>=1.0<2:../../misc/ruby-method_source DEPENDS+= ${RUBY_PKGPREFIX}-coderay>=1.1.0<2.0:../../textproc/ruby-coderay RUBYGEM_OPTIONS+= --format-executable --_----------=_1584983360192610--