Next | Query returned 57 messages, browsing 31 to 40 | Previous

History of commit frequency

CVS Commit History:


   2014-10-09 15:45:06 by Thomas Klausner | Files touched by this commit (456)
Log message:
Remove SVR4_PKGNAME, per discussion on tech-pkg.
   2014-07-17 14:47:17 by Wen Heping | Files touched by this commit (2) | Package updated
Log message:
Update to 20140711

Upstream changes:
2014 07 11
      - Fixed RT #94902: abbreviation parsing in .perltidyrc files was not
        working for multi-line abbreviations.  Thanks to Eric Fung for
        supplying a patch.

      - Fixed RT #95708, misparsing of a hash when the first key was a perl
        keyword, causing a semicolon to be incorrectly added.

      - Fixed RT #94338 for-loop in a parenthesized block-map.  A code block within
        parentheses of a map, sort, or grep function was being mistokenized.  In
        rare cases this could produce in an incorrect error message.  The fix will
        produce some minor formatting changes.  Thanks to Daniel Trizen
        discovering and documenting this.

      - Fixed RT #94354, excess indentation for stacked tokens.  Thanks to
        Colin Williams for supplying a patch.

      - Added support for experimental postfix dereferencing notation introduced in
        perl 5.20. RT #96021.

      - Updated documentation to clarify the behavior of the -io flag
        in response to RT #95709.  You can add -noll or -l=0 to prevent
        long comments from being outdented when -io is used.

      - Added a check to prevent a problem reported in RT #81866, where large
        scripts which had been compressed to a single line could not be formatted
        because of a check for VERSION for MakeMaker. The workaround was to
        use -nvpl, but this shouldn't be necessary now.

      - Fixed RT #96101; Closing brace of anonymous sub in a list was being
        indented.  For example, the closing brace of the anonymous sub below
        will now be lined up with the word 'callback'.  This problem
        occured if there was no comma after the closing brace of the anonymous sub.
        This update may cause minor changes to formatting of code with lists
        of anonymous subs, especially TK code.
   2014-05-30 01:38:20 by Thomas Klausner | Files touched by this commit (3049)
Log message:
Bump for perl-5.20.0.
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
   2014-05-09 09:30:09 by Wen Heping | Files touched by this commit (2)
Log message:
Update to 20140328

Upstream changes:
2014 03 28
      - Fixed RT #94190 and debian Bug #742004: perltidy.LOG file left behind.
        Thanks to George Hartzell for debugging this.  The problem was
        caused by the memoization speedup patch in version 20121207.  An
        unwanted flag was being set which caused a LOG to be written if
        perltidy was called multiple times.

      - New default behavior for LOG files: If the source is from an array or
        string (through a call to the perltidy module) then a LOG output is only
        possible if a logfile stream is specified.  This is to prevent
        unexpected perltidy.LOG files.

      - Fixed debian Bug #740670, insecure temporary file usage.  File::Temp is now
        used to get a temporary file.  Thanks to Don Anderson for a patch.

      - Any -b (--backup-and-modify-in-place) flag is silently ignored when a
        source stream, destination stream, or standard output is used.
        This is because the -b flag may have been in a .perltidyrc file and
        warnings break Test::NoWarnings.  Thanks to Marijn Brand.
   2013-10-15 16:54:17 by Wen Heping | Files touched by this commit (2)
Log message:
Update to 20130922
(Upstream changelog is too long, please visit:
 http://cpansearch.perl.org/src/SHANCOCK/Perl-Tidy-20130922/CHANGES)

Update MASTER_SITES to CPAN
   2013-05-31 14:42:58 by Thomas Klausner | Files touched by this commit (2880)
Log message:
Bump all packages for perl-5.18, that
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package

Like last time, where this caused no complaints.
   2012-10-31 12:19:55 by Aleksej Saushev | Files touched by this commit (1460)
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
   2012-10-03 23:59:10 by Thomas Klausner | Files touched by this commit (2798)
Log message:
Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.

I hope that's all of them.
   2012-09-13 18:03:16 by Jens Rehsack | Files touched by this commit (2) | Package updated
Log message:
Updating package for Perl5 code beautifier Perl::Tidy in devel/p5-Perl-Tidy
from 20120701 to 20120714.

Upstream changes:
  2012 07 14
     - Added flag -iscl (--ignore-side-comment-lengths) which causes perltidy
       to ignore the length of side comments when setting line breaks,
       RT #71848.  The default is to include the length of side comments when
       breaking lines to stay within the length prescribed by the -l=n
       maximum line length parameter.  For example,

         Default behavior on a single line with long side comment:
            $vmsfile =~ s/;[\d\-]*$//
              ;    # Clip off version number; we can use a newer version as well

         perltidy -iscl leaves the line intact:

            $vmsfile =~ s/;[\d\-]*$//; # Clip off version number; we can use a \ 
newer version as well

     - Fixed RT #78182, side effects with STDERR.  Error handling has been
       revised and the documentation has been updated.  STDERR can now be
       redirected to a string reference, and perltidy now returns an
       error flag instead of calling die when input errors are detected.
       If the error flag is set then no tidied output was produced.
       See man Perl::Tidy for an example.

     - Fixed RT #78156, erroneous warning message for package VERSION syntax.

     - Added abbreviations -conv (--converge) to simplify iteration control.
       -conv is equivalent to -it=4 and will insure that the tidied code is
       converged to its final state with the minimum number of iterations.

     - Minor formatting modifications have been made to insure convergence.

     - Simplified and hopefully improved the method for guessing the starting
       indentation level of entabbed code.  Added flag -dt=n (--default_tabsize=n)
       which might be helpful if the guessing method does not work well for
       some editors.

     - Added support for stacked labels, upper case X/B in hex and binary, and
       CORE:: namespace.

     - Eliminated warning messages for using keyword names as constants.
   2012-07-06 11:28:32 by Jens Rehsack | Files touched by this commit (2)
Log message:
Updating package for Perl 5 module Perl::Tidy (including neat util perltidy)
in devel/p5-Perl-Tidy from 20101217 to 20120701.

Upstream changes:
2012 07 01
     - Corrected problem introduced by using a chomp on scalar references, RT #77978

     - Added support for Perl 5.14 package block syntax, RT #78114.

     - A convergence test is made if three or more iterations are requested with
       the -it=n parameter to avoid wasting computer time.  Several hundred Mb of
       code gleaned from the internet were searched with the results that:
        - It is unusual for two iterations to be required unless a major
          style change is being made.
        - Only one case has been found where three iterations were required.
        - No cases requiring four iterations have been found with this version.
       For the previous version several cases where found the results could
       oscillate between two semi-stable states. This version corrects this.

       So if it is important that the code be converged it is okay to set -it=4
       with this version and it will probably stop after the second iteration.

     - Improved ability to identify and retain good line break points in the
       input stream, such as at commas and equals. You can always tell
       perltidy to ignore old breakpoints with -iob.

     - Fixed glitch in which a terminal closing hash brace followed by semicolon
       was not outdented back to the leading line depth like other closing
       tokens.  Thanks to Keith Neargarder for noting this.

         OLD:
            my ( $pre, $post ) = @{
                {
                    "pp_anonlist" => [ "[", "]" ],
                    "pp_anonhash" => [ "{", "}" ]
                }->{ $kid->ppaddr }
              };   # terminal brace

         NEW:
            my ( $pre, $post ) = @{
                {
                    "pp_anonlist" => [ "[", "]" ],
                    "pp_anonhash" => [ "{", "}" ]
                }->{ $kid->ppaddr }
            };    # terminal brace

     - Removed extra indentation given to trailing 'if' and 'unless' clauses
       without parentheses because this occasionally produced undesirable
       results.  This only applies where parens are not used after the if or
       unless.

        OLD:
            return undef
              unless my ( $who, $actions ) =
                  $clause =~ /^($who_re)((?:$action_re)+)$/o;

        NEW:
            return undef
              unless my ( $who, $actions ) =
              $clause =~ /^($who_re)((?:$action_re)+)$/o;

Next | Query returned 57 messages, browsing 31 to 40 | Previous