~ubuntu-branches/ubuntu/saucy/padre/saucy-proposed

« back to all changes in this revision

Viewing changes to lib/Padre/Project/Perl.pm

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont, gregor herrmann, Dominique Dumont
  • Date: 2012-01-04 12:04:20 UTC
  • mfrom: (1.3.3)
  • Revision ID: package-import@ubuntu.com-20120104120420-i5oybqwf91m1d3il
Tags: 0.92.ds1-1
[ gregor herrmann ]
* Remove debian/source/local-options; abort-on-upstream-changes
  and unapply-patches are default in dpkg-source since 1.16.1.
* Swap order of alternative (build) dependencies after the perl
  5.14 transition.

[ Dominique Dumont ]
* Imported Upstream version 0.92.ds1
* removed fix-spelling patch (applied upstream)
* lintian-override: use wildcard to avoid listing a gazillion files
* updated size of some 'not-real-man-page' entries
* rules: remove dekstop cruft (replaced by a file provided in debian
  directory)
* control: removed Breaks statement. Add /me to uploaders. Updated
  dependencies
* rules: make sure that non-DFSG file (i.e. the cute butterfly, sigh)
  is not distributed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package Padre::Project::Perl;
2
2
 
3
 
# This is not usable yet
4
 
 
5
3
use 5.008;
6
4
use strict;
7
5
use warnings;
9
7
use Padre::Util    ();
10
8
use Padre::Project ();
11
9
 
12
 
our $VERSION = '0.90';
 
10
our $VERSION = '0.92';
13
11
our @ISA     = 'Padre::Project';
14
12
 
15
13
 
141
139
                return 0 unless $super->();
142
140
 
143
141
                # In a distribution, we can ignore more things
144
 
                return 0 if $_->{name} =~ /^(?:blib|_build|inc|Makefile(?:\.old)?|pm_to_blib)\z/;
 
142
                return 0 if $_->{name} =~ /^(?:blib|_build|inc|Makefile(?:\.old)?|pm_to_blib|MYMETA\.(?:yml|json))\z/;
145
143
 
146
144
                # It is fairly common to get bogged down in NYTProf output
147
145
                return 0 if $_->{name} =~ /^nytprof(?:\.out)?\z/;
156
154
        my $rule = $self->SUPER::ignore_skip();
157
155
 
158
156
        # Ignore typical build files
159
 
        push @$rule, '(?:^|\\/)(?:blib|_build|inc|Makefile(?:\.old)?|pm_to_blib)\z';
 
157
        push @$rule, '(?:^|\\/)(?:blib|_build|inc|Makefile(?:\.old)?|pm_to_blib|MYMETA\.(?:yml|json))\z';
160
158
 
161
159
        # Ignore the enormous NYTProf output
162
160
        push @$rule, '(?:^|\\/)nytprof(?:\.out)?\z';