Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 2a0cff8

Browse files
committed
more whitesource-bolt-for-github porting fixes
and re-enable porting/author.t on travis for cperl, which was disabled very early (5.22c) but is now patched in checkAUTHORS.pl
1 parent 6e77be3 commit 2a0cff8

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.git-rr-cache

Submodule .git-rr-cache updated 311 files

MANIFEST

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1+
.whitesource WhiteSource configuration on github
12
.cirrus.yml Cirrus CI (continuous integration) for FreeBSD
23
.dir-locals.el Emacs control file
34
.gitlab-ci.yml Gitlab CI (continuous integration) on gitlab (where enabled)
45
.lgtm.yml LGTM.com configuration file
56
.metaconf-exclusions.txt Symbols that should ignored when generating Configure
67
.travis.yml Travis CI (continuous integration) on github (where enabled)
7-
.whitesource WhiteSource configuration on github
88
amigaos4/amigaio.c AmigaOS4 port
99
amigaos4/amigaio.h AmigaOS4 port
1010
amigaos4/amigaos.c AmigaOS4 port

Porting/checkAUTHORS.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,8 @@ sub parse_commits_from_stdin {
115115
unless ($author) { die $_ }
116116
chomp($committer);
117117
unless ($committer) { die $_ }
118+
next if $author eq 'whitesource-bolt-for-github[bot]'
119+
.' <whitesource-bolt-for-github[bot]@users.noreply.github.com>';
118120
process( $committer, $patch, $author );
119121
} else {
120122
die "XXX $_ did not match";
@@ -130,6 +132,8 @@ sub parse_commits_from_stdin_authors {
130132
while (<>) {
131133
next unless /^Author:\s*(.*)$/;
132134
$author = $1;
135+
next if $author eq 'whitesource-bolt-for-github[bot]'
136+
.' <whitesource-bolt-for-github[bot]@users.noreply.github.com>';
133137
$author = _raw_address($author);
134138
$patchers{$author}++;
135139
}

t/porting/authors.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require './t/test.pl';
1414
set_up_inc('lib', '.');
1515

1616
find_git_or_skip('all');
17-
skip_all("on Travis CI" ) if $ENV{TRAVIS} and $^V =~ /c$/; # cperl #32
17+
#skip_all("on Travis CI" ) if $ENV{TRAVIS} and $^V =~ /c$/; # cperl #32
1818
skip_all("This distro may have modified some files in cpan/. Skipping validation.")
1919
if $ENV{'PERL_BUILD_PACKAGING'};
2020

0 commit comments

Comments
 (0)