7
0

103 Commits

Author SHA256 Message Date
64a9656f71 Accepting request 832723 from devel:languages:perl:autoupdate
- updated to 20200907
   see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md
  ## 2020 09 07
      - Fixed bug git #37, an error when the combination -scbb -csc was used.
        It occurs in perltidy versions 20200110, 20200619, and 20200822.  What happens is
        that when two consecutive lines with isolated closing braces had new side
        comments generated by the -csc parameter, a separating newline was missing.
        The resulting script will not then run, but worse, if it is reformatted with
        the same parameters then closing side comments could be overwritten and data
        lost.
        This problem was found during automated random testing.  The parameter
        -scbb is rarely used, which is probably why this has not been reported.  Please
        upgrade your version.
      - Added parameter --non-indenting-braces, or -nib, which prevents
        code from indenting one level if it follows an opening brace marked
        with a special side comment, '#<<<'.  For example,
                      { #<<<   a closure to contain lexical vars
                      my $var;  # this line does not indent
                      }
                      # this line cannot 'see' $var;
        This is on by default.  If your code happens to have some
        opening braces followed by '#<<<', and you
        don't want this, you can use -nnib to deactivate it.
      - Side comment locations reset at a line ending in a level 0 open
        block, such as when a new multi-line sub begins.  This is intended to
        help keep side comments from drifting to far to the right.

OBS-URL: https://build.opensuse.org/request/show/832723
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=54
2020-09-07 10:00:41 +00:00
0fa43e9c28 Accepting request 828996 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/828996
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=28
2020-08-28 19:12:21 +00:00
5beac5062c Accepting request 828901 from devel:languages:perl:autoupdate
- updated to 20200822
   see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md
  ## 2020 08 22
      - Fix RT #133166, encoding not set for -st.  Also reported as RT #133171
        and git #35.
        This is a significant bug in version 20200616 which can corrupt data if
        perltidy is run as a filter on encoded text.
  **Please upgrade**
      - Fix issue RT #133161, perltidy -html was not working on pod
      - Fix issue git #33, allow control of space after '->'
      - Vertical alignment has been improved. Numerous minor issues have
        been fixed.
      - Formatting with the -lp option is improved.
      - Fixed issue git #32, misparse of bare 'ref' in ternary
      - When --assert-tidy is used and triggers an error, the first difference
        between input and output files is shown in the error output. This is
        a partial response to issue git #30.

OBS-URL: https://build.opensuse.org/request/show/828901
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=52
2020-08-24 16:02:50 +00:00
9a28b2ce9e Accepting request 818082 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/818082
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=27
2020-07-02 21:56:12 +00:00
Stephan Kulow
b6ab73c289 Accepting request 816296 from devel:languages:perl:autoupdate
- updated to 20200619
   see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md
  ## 2020 06 19
      - Added support for Switch::Plain syntax, issue git #31.
      - Fixed minor problem where trailing 'unless' clauses were not
        getting vertically aligned.
      - Added a parameter --logical-padding or -lop to allow logical padding
        to be turned off.  Requested by git #29. This flag is on by default.
        The man pages have examples.
      - Added a parameter -kpit=n to control spaces inside of parens following
        certain keywords, requested in git#26. This flag is off by default.
      - Added fix for git#25, improve vertical alignment for long lists with
        varying numbers of items per line.
      - calls to the module Perl::Tidy can now capture any output produced
        by a debug flag or one of the 'tee' flags through the new 'debugfile' and
        'teefile' call parameters.  These output streams are rarely used but
        they are now treated the same as any 'logfile' stream.
      - add option --break-at-old-semicolon-breakpoints', -bos, requested
        in RT#131644.  This flag will keep lines beginning with a semicolon.
      - Added --use-unicode-gcstring to control use of Unicode::GCString for
        evaluating character widths of encoded data.  The default is
        not to use this (--nouse-unicode-gcstring). If this flag is set,
        perltidy will look for Unicode::GCString and, if found, will use it
        to evaluate character display widths.  This can improve displayed
        vertical alignment for files with wide characters.  It is a nice
        feature but it is off by default to avoid conflicting formatting
        when there are multiple developers.  Perltidy installation does not
        require Unicode::GCString, so users wanting to use this feature need
        set this flag and also to install Unicode::GCString separately.
      - Added --character-encoding=guess or -guess to have perltidy guess
        if a file (or other input stream) is encoded as -utf8 or some
        other single-byte encoding. This is useful when processing a mixture
        of file types, such as utf8 and latin-1.
        Please Note: The default encoding has been set to be 'guess'
        instead of 'none'. This seems like the best default, since
        it allows perltidy work properly with both
        utf8 files and older latin-1 files.  The guess mode uses Encode::Guess,
        which is included in standard perl distributions, and only tries to
        guess if a file is utf8 or not, never any other encoding.  If the guess is
        utf8, and if the file successfully decodes as utf8, then it the encoding
        is assumed to be utf8.  Otherwise, no encoding is assumed.
        If you do not want to use this new default guess mode, or have a
        problem with it, you can set --character-encoding=none (the previous
        default) or --character-encoding=utf8 (if you deal with utf8 files).
      - Specific encodings of input files other than utf8 may now be given, for
        example --character-encoding=euc-jp.
      - Fix for git#22, Preserve function signature on a single line. An
        unwanted line break was being introduced when a closing signature paren
        followed a closing do brace.
      - Fix RT#132059, the -dac parameter was not working and caused an error exit
      - When -utf8 is used, any error output is encoded as utf8
      - Fix for git#19, adjust line break around an 'xor'
      - Fix for git#18, added warning for missing comma before unknown bare word.

OBS-URL: https://build.opensuse.org/request/show/816296
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=50
2020-07-01 11:31:53 +00:00
42d20d3a2a Accepting request 763692 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/763692
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=26
2020-01-15 15:10:44 +00:00
Lars Vogdt
c5cee4975d Accepting request 762631 from devel:languages:perl:autoupdate
- updated to 20200110
   see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md
  ## 2020 01 10
  
      - This release adds a flag to control the feature RT#130394 (allow short nested blocks)
        introduced in the previous release.  Unfortunately that feature breaks 
        RPerl installations, so a control flag has been introduced and that feature is now
        off by default.  The flag is:
  
        --one-line-block-nesting=n, or -olbn=n, where n is an integer as follows: 
  
        -olbn=0 break nested one-line blocks into multiple lines [new DEFAULT]
        -olbn=1 stable; keep existing nested-one line blocks intact [previous DEFAULT]
  
        For example, consider this input line:
  
          foreach (@list) { if ($_ eq $asked_for) { last } ++$found }
  
        The new default behavior (-olbn=0), and behavior prior to version 20191203, is to break it into multiple lines:
  
          foreach (@list) {
              if ( $_ eq $asked_for ) { last }
              ++$found;
          }
  
        To keep nested one-line blocks such as this on a single line you can add the parameter -olbn=1.
  
      - Fixed issue RT#131288: parse error for un-prototyped constant function without parenthesized
        call parameters followed by ternary.
  
      - Fixed issue RT#131360, installation documentation.  Added a note that the binary 
        'perltidy' comes with the Perl::Tidy module. They can both normally be installed with 
        'cpanm Perl::Tidy'

OBS-URL: https://build.opensuse.org/request/show/762631
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=48
2020-01-12 19:58:59 +00:00
35fef5dba4 Accepting request 754060 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/754060
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=25
2019-12-11 10:59:57 +00:00
e018d6319a Accepting request 753928 from devel:languages:perl:autoupdate
- updated to 20191203
   see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md
  ## 2019 12 03
  
      - Fixed issue RT#131115: -bli option not working correctly.
        Closing braces were not indented in some cases due to a glitch
        introduced in version 20181120.
  
      - Fixed issue RT#130394: Allow short nested blocks.  Given the following
  
          $factorial = sub { reduce { $a * $b } 1 .. 11 };
     
        Previous versions would always break the sub block because it
        contains another block (the reduce block).  The fix keeps
        short one-line blocks such as this intact.
  
      - Implement issue RT#130640: Allow different subroutine keywords.
        Added a flag --sub-alias-list=s or -sal=s, where s is a string with
        one or more aliases for 'sub', separated by spaces or commas.
        For example,
  
          perltidy -sal='method fun' 
  
        will cause the perltidy to treat the words 'method' and 'fun' to be
        treated the same as if they were 'sub'.
  
      - Added flag --space-prototype-paren=i, or -spp=i, to control spacing 
        before the opening paren of a prototype, where i=0, 1, or 2:
        i=0 no space
        i=1 follow input [current and default]
        i=2 always space
  
        Previously, perltidy always followed the input.
        For example, given the following input 
  
           sub usage();
  
        The result will be:
          sub usage();    # i=0 [no space]
          sub usage();    # i=1 [default; follows input]
          sub usage ();   # i=2 [space]
  
      - Fixed issue git#16, minor vertical alignment issue.
  
      - Fixed issue git#10, minor conflict of -wn and -ce
  
      - Improved some vertical alignments involving two lines.

OBS-URL: https://build.opensuse.org/request/show/753928
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=46
2019-12-04 14:04:47 +00:00
a129e60e8a Accepting request 731471 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/731471
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=24
2019-09-24 23:02:58 +00:00
76b4904520 Accepting request 731272 from devel:languages:perl:autoupdate
- updated to 20190915
   see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md
  ## 2019 09 15
  
      - fixed issue RT#130344: false warning "operator in print statement" 
        for "use lib". 
  
      - fixed issue RT#130304: standard error output should include filename.
        When perltidy error messages are directed to the standard error output 
        with -se or --standard-error-output, the message lines now have a prefix 
        'filename:' for clarification in case multiple files 
        are processed, where 'filename' is the name of the input file.  If 
        input is from the standard input the displayed filename is '<stdin>', 
        and if it is from a data structure then displayed filename 
        is '<source_stream>'.
  
      - implement issue RT#130425: check mode.  A new flag '--assert-tidy'
        will cause an error message if the output script is not identical to
        the input script. For completeness, the opposite flag '--assert-untidy'
        has also been added.  The next item, RT#130297, insures that the script
        will exit with a non-zero exit flag if the assertion fails.
  
      - fixed issue RT#130297; the perltidy script now exits with a nonzero exit 
        status if it wrote to the standard error output. Prevously only fatal
        run errors produced a non-zero exit flag. Now, even non-fatal messages
        requested with the -w flag will cause a non-zero exit flag.  The exit
        flag now has these values:
  
           0 = no errors
           1 = perltidy could not run to completion due to errors
           2 = perltidy ran to completion with error messages
  
      - added warning message for RT#130008, which warns of conflicting input
        parameters -iob and -bom or -boc.
  
      - fixed RT#129850; concerning a space between a closing block brace and
        opening bracket or brace, as occurs before the '[' in this line:
  
         my @addunix = map { File::Spec::Unix->catfile( @ROOT, @$_ ) } ['b'];
  
        Formerly, any space was removed. Now it is optional, and the output will
        follow the input.
  
      - fixed issue git#13, needless trailing whitespace in error message
  
      - fixed issue git#9: if the -ce (--cuddled-else) flag is used,
        do not try to form new one line blocks for a block type 
        specified with -cbl, particularly map, sort, grep
  
      - iteration speedup for unchanged code.  Previously, when iterations were
        requested, at least two formatting passes were made. Now just a single pass
        is made if the formatted code is identical to the input code.
  
      - some improved vertical alignments

OBS-URL: https://build.opensuse.org/request/show/731272
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=44
2019-09-17 10:05:52 +00:00
2b3aeef3e5 Accepting request 706890 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/706890
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=23
2019-06-04 10:10:08 +00:00
Lars Vogdt
ab274dadc7 Accepting request 706767 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/706767
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=42
2019-06-02 11:08:23 +00:00
976b902eef Accepting request 655788 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/655788
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=22
2018-12-12 16:24:30 +00:00
ce65e52fa6 Accepting request 655781 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/655781
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=40
2018-12-06 16:17:10 +00:00
9ca4f962de Accepting request 579742 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/579742
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=21
2018-02-27 15:57:20 +00:00
Stephan Kulow
1c5e29de76 Accepting request 578601 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/578601
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=38
2018-02-24 07:00:10 +00:00
c3cc9c1ae8 Accepting request 577948 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/577948
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=20
2018-02-22 14:00:32 +00:00
Stephan Kulow
4d6770f00b Accepting request 577944 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/577944
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=36
2018-02-19 07:21:38 +00:00
3ecff453c1 Accepting request 568403 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/568403
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=19
2018-01-24 14:30:20 +00:00
b00104d4c0 Accepting request 560953 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/560953
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=34
2018-01-22 21:15:55 +00:00
ac49071a72 Accepting request 557138 from devel:languages:perl
- updated to 20171214
   see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES
    2017 12 14
        - RT #123749, partial fix.  "Continuation indentation" is removed from lines 
          with leading closing parens which are part of a call chain. 
          For example, the call to pack() is is now outdented to the starting 
          indentation in the following experession:  
  
              # OLD
              $mw->Button(
                  -text    => "New Document",
                  -command => \&new_document
                )->pack(
                  -side   => 'bottom',
                  -anchor => 'e'
                );
  
              # NEW
              $mw->Button(
                  -text    => "New Document",
                  -command => \&new_document
              )->pack(
                  -side   => 'bottom',
                  -anchor => 'e'
              );
  
          This modification improves readability of complex expressions, especially
          when the user uses the same value for continuation indentation (-ci=n) and 
          normal indentation (-i=n).  Perltidy was already programmed to
          do this but a minor bug was preventing it.

OBS-URL: https://build.opensuse.org/request/show/557138
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=18
2017-12-18 07:57:53 +00:00
Stephan Kulow
1116b8dad2 - updated to 20171214
see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES
    2017 12 14
        - RT #123749, partial fix.  "Continuation indentation" is removed from lines 
          with leading closing parens which are part of a call chain. 
          For example, the call to pack() is is now outdented to the starting 
          indentation in the following experession:  
  
              # OLD
              $mw->Button(
                  -text    => "New Document",
                  -command => \&new_document
                )->pack(
                  -side   => 'bottom',
                  -anchor => 'e'
                );
  
              # NEW
              $mw->Button(
                  -text    => "New Document",
                  -command => \&new_document
              )->pack(
                  -side   => 'bottom',
                  -anchor => 'e'
              );
  
          This modification improves readability of complex expressions, especially
          when the user uses the same value for continuation indentation (-ci=n) and 
          normal indentation (-i=n).  Perltidy was already programmed to
          do this but a minor bug was preventing it.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=32
2017-12-14 19:09:32 +00:00
674713d513 Accepting request 498319 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/498319
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=17
2017-05-27 11:19:02 +00:00
Stephan Kulow
52a6f23d7f Accepting request 498254 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/498254
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=30
2017-05-25 14:59:16 +00:00
6c6444e37b Accepting request 368868 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/368868
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=16
2016-03-16 09:34:02 +00:00
Stephan Kulow
6adb3821ac Accepting request 368316 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/368316
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=28
2016-03-09 06:33:32 +00:00
Stephan Kulow
1025417321 Accepting request 327310 from devel:languages:perl
- updated to 20150815
   see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES
    2015 08 15
        - Fixed RT# 105484, Invalid warning about 'else' in 'switch' statement.  The
          warning happened if a 'case' statement did not use parens.
  
        - Fixed RT# 101547, misparse of // caused error message.  Also..
  
        - Fixed RT# 102371, misparse of // caused unwated space in //=
  
        - Fixed RT# 100871, "silent failure of HTML Output on Windows". 
          Changed calls to tempfile() from:
            my ( $fh_tmp, $tmpfile ) = tempfile();
          to have the full path name:
            my ( $fh_tmp, $tmpfile ) = File::Temp::tempfile()
          because of problems in the Windows version reported by Dean Pearce.
  
        - Fixed RT# 99514, calling the perltidy module multiple times with 
          a .perltidyrc file containing the parameter --output-line-ending 
          caused a crash.  This was a glitch in the memoization logic. 
  
        - Fixed RT#99961, multiple lines inside a cast block caused unwanted
          continuation indentation.  
  
        - RT# 32905, broken handling of UTF-8 strings. 
          A new flag -utf8 causes perltidy assume UTF-8 encoding for input and 
          output of an io stream.  Thanks to Sebastian Podjasek for a patch.  
          This feature may not work correctly in older versions of Perl. 
          It worked in a linux version 5.10.1 but not in a Windows version 5.8.3 (but
          otherwise perltidy ran correctly).

OBS-URL: https://build.opensuse.org/request/show/327310
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=15
2015-08-29 18:04:37 +00:00
Stephan Kulow
479c3b5d86 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=26 2015-08-27 09:51:47 +00:00
Stephan Kulow
d910f71d9d Accepting request 325495 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/325495
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=25
2015-08-23 14:13:26 +00:00
Stephan Kulow
7fd09c7de7 Accepting request 249359 from devel:languages:perl
- updated to 20140711
       - 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

OBS-URL: https://build.opensuse.org/request/show/249359
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=14
2014-09-17 15:25:51 +00:00
Stephan Kulow
9ed02b6151 update
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=23
2014-09-15 15:48:23 +00:00
Tomáš Chvátal
347ec59844 Accepting request 202227 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/202227
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=12
2013-10-06 12:55:29 +00:00
Stephan Kulow
e33b6e3887 update
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=21
2013-10-04 12:09:18 +00:00
Tomáš Chvátal
c0c903d37d Accepting request 186506 from devel:languages:perl
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/186506
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=10
2013-08-13 08:18:59 +00:00
Stephan Kulow
69c9b9b568 - updated to 20130806
- Fixed RT #87107, spelling
      - Fixed RT #87502, incorrect of parsing of smartmatch before hash brace
  
      - Added feature request RT #87330, trim whitespace after POD.
        The flag -trp (--trim-pod) will trim trailing whitespace from lines of POD

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=19
2013-08-06 18:05:10 +00:00
Stephan Kulow
ee5ad0c5d9 Accepting request 184837 from devel:languages:perl
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/184837
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=9
2013-07-30 12:03:50 +00:00
Stephan Kulow
70547e95c4 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=17 2013-07-27 12:44:55 +00:00
Stephan Kulow
5ed03dc3f9 - updated to 20130717
- Fixed RT #86929, #86930, missing lhs of assignment.
      - Fixed RT #84922, moved pod from Tidy.pm into Tidy.pod

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=16
2013-07-27 12:44:22 +00:00
Stephan Kulow
00930d46a8 Accepting request 178311 from devel:languages:perl
update (forwarded request 178283 from coolo)

OBS-URL: https://build.opensuse.org/request/show/178311
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=8
2013-06-13 18:06:51 +00:00
Stephan Kulow
1fa4552f97 Accepting request 178283 from home:coolo:update-perl
update

OBS-URL: https://build.opensuse.org/request/show/178283
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=14
2013-06-10 10:35:31 +00:00
Stephan Kulow
a8654273a7 Accepting request 97023 from devel:languages:perl
- update to 20101217
   - added new flag -it=n or --iterations=n
   - A configuration file pathname begins with three dots, e.g.
     ".../.perltidyrc", indicates that the file should be searched for starting
     in the current directory and working upwards. 
   - Added flag --notidy which disables all formatting and causes the input to be
     copied unchanged. 
   - Added prefilters and postfilters in the call to the Tidy.pm module.
   - The starting indentation level of sections of code entabbed with -et=n
     is correctly guessed if it was also produced with the same -et=n flag.  This
     keeps the indentation stable on repeated formatting passes within an editor.
     Thanks to Sam Kington and Glenn.
   - Functions with prototype '&' had a space between the function and opening peren.
   - Patch to never put spaces around a bare word in braces beginning with ^

OBS-URL: https://build.opensuse.org/request/show/97023
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=5
2011-12-21 11:18:23 +00:00
Stephan Kulow
9dff4892a0 - update to 20101217
- added new flag -it=n or --iterations=n
   - A configuration file pathname begins with three dots, e.g.
     ".../.perltidyrc", indicates that the file should be searched for starting
     in the current directory and working upwards. 
   - Added flag --notidy which disables all formatting and causes the input to be
     copied unchanged. 
   - Added prefilters and postfilters in the call to the Tidy.pm module.
   - The starting indentation level of sections of code entabbed with -et=n
     is correctly guessed if it was also produced with the same -et=n flag.  This
     keeps the indentation stable on repeated formatting passes within an editor.
     Thanks to Sam Kington and Glenn.
   - Functions with prototype '&' had a space between the function and opening peren.
   - Patch to never put spaces around a bare word in braces beginning with ^

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=11
2011-12-19 10:52:53 +00:00
Stephan Kulow
ac3662da11 use original .tar.gz
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=10
2011-11-18 11:34:45 +00:00
Stephan Kulow
de565fa16c OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=9 2011-11-11 11:21:33 +00:00
Stephan Kulow
85a09a858e sync with O:F
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=8
2011-01-04 14:29:56 +00:00
Stephan Kulow
5b4510569f prepare_spec
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=7
2011-01-04 14:29:24 +00:00
Lars Vogdt
9dffc29270 Autobuild autoformatter for 55213
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=2
2010-12-19 13:07:54 +00:00
Lars Vogdt
6ea09c2c7c Accepting request 55213 from devel:languages:perl
Accepted submit request 55213 from user rjschwei

OBS-URL: https://build.opensuse.org/request/show/55213
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Perl-Tidy?expand=0&rev=1
2010-12-19 13:07:49 +00:00
Stephan Kulow
b04f9209c1 always buildrequire perl-macros if not present, move %perl_requires behind buildroot (script commit)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Perl-Tidy?expand=0&rev=4
2010-12-03 14:46:55 +00:00