Subject: CVS commit: pkgsrc/lang/ruby23-base
From: Takahiro Kambe
Date: 2015-12-30 15:59:42
Message id: 20151230145942.CEB72FBFF@cvs.NetBSD.org

Log Message:
Add ruby23-base package, core part of Ruby 2.3.0 pacakge.

From release announce:

Ruby 2.3.0 Released

Posted by naruse on 25 Dec 2015

We are pleased to announce the release of Ruby 2.3.0.

This is the first stable release of Ruby 2.3 series. It introduces many new
features for example:

A Frozen String Literal Pragma is introduced. With Ruby 2.1, \ 
"str".freeze has
been optimized to reduce object allocation. Ruby 2.3 introduces a new magic
comment and command line option to freeze all string literals in the source
files. Additionally for debugging, you can get where the object is created on
"can't modify frozen String" error by --debug=frozen-string-literal command
line option.

A safe navigation operator (so-called lonely operator) &., which already
exists in C#, Groovy, and Swift, is introduced to ease nil handling as
obj&.foo. Array#dig and Hash#dig are also added. Note that this behaves as
try! of Active Support, which specially handle only nil.

The did_you_mean gem is bundled. The did_you_mean gem shows the candidates on
the NameError and NoMethodError to ease debugging.

RubyVM::InstructionSequence#to_binary and .load_from_binary are introduced as
experimental feature. With these features, we can make a ISeq (bytecode)
pre-compilation system.

It also includes many performance improvements for example, reconsider method
entry data structure, introducing new table data structure, optimize
Proc#call, machine code level tuning for object allocation and method calling
code, smarter instance variable data structure, Socket and I/O allow to use
“exception:” keywords for high-performance non-blocking I/O and so on. \ 
Check
“Implementation improvements” section in NEWS file.

For a complete list of new features and compatibility notes, please see NEWS
and ChangeLog.

Files:
RevisionActionfile
1.1addpkgsrc/lang/ruby23-base/ALTERNATIVES
1.1addpkgsrc/lang/ruby23-base/DEINSTALL
1.1addpkgsrc/lang/ruby23-base/DESCR
1.1addpkgsrc/lang/ruby23-base/INSTALL
1.1addpkgsrc/lang/ruby23-base/MESSAGE
1.1addpkgsrc/lang/ruby23-base/Makefile
1.1addpkgsrc/lang/ruby23-base/PLIST
1.1addpkgsrc/lang/ruby23-base/distinfo
1.1addpkgsrc/lang/ruby23-base/hacks.mk
1.1addpkgsrc/lang/ruby23-base/options.mk
1.1addpkgsrc/lang/ruby23-base/patches/patch-configure
1.1addpkgsrc/lang/ruby23-base/patches/patch-eval.c
1.1addpkgsrc/lang/ruby23-base/patches/patch-eval__error.c
1.1addpkgsrc/lang/ruby23-base/patches/patch-ext_dbm_extconf.rb
1.1addpkgsrc/lang/ruby23-base/patches/patch-lib_mkmf.rb
1.1addpkgsrc/lang/ruby23-base/patches/patch-lib_rdoc_ri_driver.rb
1.1addpkgsrc/lang/ruby23-base/patches/patch-lib_rubygems.rb
1.1addpkgsrc/lang/ruby23-base/patches/patch-lib_rubygems_commands_setup__command.rb
1.1addpkgsrc/lang/ruby23-base/patches/patch-lib_rubygems_config__file.rb
1.1addpkgsrc/lang/ruby23-base/patches/patch-lib_rubygems_defaults.rb
1.1addpkgsrc/lang/ruby23-base/patches/patch-lib_rubygems_dependency__installer.rb
1.1addpkgsrc/lang/ruby23-base/patches/patch-lib_rubygems_install__update__options.rb
1.1addpkgsrc/lang/ruby23-base/patches/patch-lib_rubygems_installer.rb
1.1addpkgsrc/lang/ruby23-base/patches/patch-lib_rubygems_platform.rb
1.1addpkgsrc/lang/ruby23-base/patches/patch-man_erb.1
1.1addpkgsrc/lang/ruby23-base/patches/patch-man_irb.1
1.1addpkgsrc/lang/ruby23-base/patches/patch-man_ri.1
1.1addpkgsrc/lang/ruby23-base/patches/patch-man_ruby.1
1.1addpkgsrc/lang/ruby23-base/patches/patch-test_rubygems_test__gem.rb
1.1addpkgsrc/lang/ruby23-base/patches/patch-thread.c
1.1addpkgsrc/lang/ruby23-base/patches/patch-tool_rbinstall.rb
1.1addpkgsrc/lang/ruby23-base/patches/patch-vm__eval.c
1.1addpkgsrc/lang/ruby23-base/patches/patch-vm__trace.c