Next | Query returned 26 messages, browsing 11 to 20 | Previous

History of commit frequency

CVS Commit History:


   2015-11-03 04:29:40 by Alistair G. Crooks | Files touched by this commit (1995)
Log message:
Add SHA512 digests for distfiles for devel category

Issues found with existing distfiles:
	distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip
	distfiles/fortran-utils-1.1.tar.gz
	distfiles/ivykis-0.39.tar.gz
	distfiles/enum-1.11.tar.gz
	distfiles/pvs-3.2-libraries.tgz
	distfiles/pvs-3.2-linux.tgz
	distfiles/pvs-3.2-solaris.tgz
	distfiles/pvs-3.2-system.tgz
No changes made to these distinfo files.

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
   2015-06-04 16:44:58 by Takahiro Kambe | Files touched by this commit (4)
Log message:
Update ruby2ruby to 2.2.0.

pkgsrc change: add support for pkg_alternatives.

=== 2.2.0 / 2015-05-27

* 1 minor enhancement:

  * Normalized block arg goalposts (always there unless arg slot == 0).

=== 2.1.4 / 2015-04-13

* 1 minor enhancement:

  * Wrap fewer hash values in parentheses. (jaredbeck)

* 1 bug fix:

  * Fixed handling of kwsplat args.
   2015-02-02 16:30:22 by Takahiro Kambe | Files touched by this commit (2)
Log message:
Update ruby2ruby to 2.1.3.

=== 2.1.3 / 2014-09-26

* 1 bug fix:

  * Fixed handling of kwargs. (joenas)

=== 2.1.2 / 2014-08-28

* 1 bug fix:

  * Fixed readme to point out that deep_clone may be needed. (heathd)

=== 2.1.1 / 2014-06-09

* 1 bug fix:

  * Moved Regexp::CODES out of guard on ::ENC_NONE. (presidentbeef)

=== 2.1.0 / 2014-04-23

* 4 minor enhancements:

  * Don't indent defn body extra if it has a top-level rescue.
  * Don't indent defn body until fully processed.
  * Don't use simple rescue form if resbody is a return (statement keyword). (eyberg)
  * Remove superfluous begin/end for top-level defn rescue.

=== 2.0.8 / 2014-03-24

* 1 bug fix:

  * 2.0/2.1: Fixed support for **kwsplat. (troessner)
   2014-03-14 18:02:34 by Takahiro Kambe | Files touched by this commit (2)
Log message:
Update ruby2ruby to 2.0.7.

=== 2.0.7 / 2013-12-13

* 4 minor enhancements:

  * Add != to list of binary operators. (camertron) *le sigh*
  * Clean out cruft from process_masgn that I can't reproduce anymore.
  * Extend process_args to deal with masgn (eg: a.b { |(c, d)| ... }).
  * Extend process_masgn to deal with both sexps and var lists.

* 1 bug fix:

  * Ensure proper parens on rescue subexpressions. (Bocete)
   2013-09-15 12:26:29 by Takahiro Kambe | Files touched by this commit (2)
Log message:
Update ruby2ruby 2.0.6.

=== 2.0.6 / 2013-06-20

* 2 bug fixes:

  * Fixed bug with complex rescue but short enough to trigger 1-liner.
    (Confusion)
  * Fixed multiple expressions inside sclass
   2013-06-16 18:55:49 by Takahiro Kambe | Files touched by this commit (2)
Log message:
Update ruby2ruby to 2.0.5.

=== 2.0.5 / 2013-04-25

* 2 bug fixes:

  * Fixed attrasgn w/ multiple keys: a[x, y] = z. (derula)
  * Fixed error w/ attr_* detection when more than 1 ivar/iasgn exist in body.

=== 2.0.4 / 2013-03-28

* 1 bug fix:

  * Fixed attr_* generators in cases where the body isn't
    idiomatic. (robertfeldt)
   2013-02-11 04:06:57 by Takahiro Kambe | Files touched by this commit (2)
Log message:
Update ruby2ruby to 2.0.3.

=== 2.0.3 / 2013-02-07

* 2 minor enhancements:

  * 1.9: Added support for ! call to go back to (not ...).
  * 2nd and 3rd order testing now uses RubyPraser.for_current_ruby for maximal \ 
carnage.

* 1 bug fix:

  * On failure (eg ruby 2.0), fall back to compound RubyParser instance for 2nd \ 
& 3rd order testing

=== 2.0.2 / 2013-01-16

* 1 minor enhancement:

  * Updated to ruby_parser 3.1 and up
   2012-12-16 17:30:50 by Takahiro Kambe | Files touched by this commit (2)
Log message:
Update ruby2ruby to 2.0.1.

=== 2.0.1 / 2012-11-02

* 1 bug fix:

  * Fixed dependency on alpha ruby_parser. *sigh*

=== 2.0.0 / 2012-11-02

* 1 minor enhancement:

  * Only do phase 1 testing if $SIMPLE=1.

* 1 bug fix:

  * Fixed block args processing for RP 3.0 sexp changes

=== 2.0.0.b1 / 2012-07-27

* 4 major enhancements:

  * Made it work without arglist in call.
  * Made it work without scope/block in class/module/defn/defs.
  * Removed block from resbody
  * Removed block from when node

* 4 minor enhancements:

  * Added debug task to help isolate an error
  * Empty hash is now a proper {}
  * Refactored and added finish method.
  * Switched to new Ruby18Parser to avoid deprecation warnings

* 4 bug fixes:

  * Fixed call with empty hash arg. (neilconway)
  * OMG WTF... removed long decrepit ParseTree dependency
  * Removed isolate/rake require to reduce minimum bootstrap to hoe + rake + \ 
rake install_plugins (*2)
  * Skip 1.9 tests for now.
   2011-12-15 16:12:41 by Takahiro Kambe | Files touched by this commit (2)
Log message:
Update ruby2ruby package to 1.3.1.

=== 1.3.1 / 2011-09-22

* 1 minor enhancement:

  * Added parenthesize to add parens in certain contexts.

* 10 bug fixes:

  * Add newline to 'do nothing' comment in a block... seems contrived. (andreacampi)
  * Binary operations not work properly with some complex statements. (smorss)
  * Fixed if statements with no body (smorss)
  * Fixed logic for call with hash args in various locations (smorss)
  * Fixed match3 on an assignment. (smorss)
  * Fixed multiple nested rescue/ensure exprs (larsch)
  * Fixed process_alias to parenthesize (smorss)
  * Fixed process_and to parenthenize only when it makes sense.
  * Fixed rescue with 2+ statements in resbody (smorss)
  * Regexps with options other than /o were not showing flags. (smorss)
   2011-09-12 13:57:49 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update ruby2ruby pacakge to 1.3.0.

=== 1.3.0 / 2011-09-01

* 1 minor enhancement:

  * output comments for class and method definitions. (pythonic)

Next | Query returned 26 messages, browsing 11 to 20 | Previous