You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2016/01/09 15:41:43 UTC

[2/2] lucy-clownfish git commit: Fix rat-excludes

Fix rat-excludes

It seems that Rat's -E option expects regexes that are matched against
the filename without directory.


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/a8107de4
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/a8107de4
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/a8107de4

Branch: refs/heads/0.4
Commit: a8107de45ce349d9cf284cb77c2640af885853e9
Parents: da1f2f3
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Sat Jan 9 15:27:10 2016 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Sat Jan 9 15:27:10 2016 +0100

----------------------------------------------------------------------
 devel/conf/rat-excludes | 32 ++++++++------------------------
 1 file changed, 8 insertions(+), 24 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/a8107de4/devel/conf/rat-excludes
----------------------------------------------------------------------
diff --git a/devel/conf/rat-excludes b/devel/conf/rat-excludes
index 86525b7..50ace45 100644
--- a/devel/conf/rat-excludes
+++ b/devel/conf/rat-excludes
@@ -14,42 +14,26 @@
 # limitations under the License.
 
 # Ignore the .git directory.
-.git/**
+\.git
 
 # CHANGES and MANIFEST files do not require license headers.
 CHANGES
-compiler/perl/MANIFEST
-runtime/perl/MANIFEST
+MANIFEST
 
 # doc file does not require license.
 CONTRIBUTING
 
 # These files are autogenerated by running CFCLexHeader.l through Flex.
 # Flex's licensing explicitly disclaims copyright on generated lexers.
-compiler/src/CFCLexHeader.h
-compiler/src/CFCLexHeader.c
+CFCLexHeader\.h
+CFCLexHeader\.c
 
 # The Lemon parser generator is in the public domain.  See LUCY-173.
-lemon/lemon.c
-lemon/lempar.c
+lemon\.c
+lempar\.c
 
 # Clownfish parcel files (.cfp) are in JSON format and cannot have comments.
-compiler/c/t/cfbase/Animal.cfp
-compiler/c/t/cfext/AnimalExtension.cfp
-compiler/perl/t/cfbase/Animal.cfp
-compiler/perl/t/cfclash/bar/Bar.cfp
-compiler/perl/t/cfclash/class/AnimalExtension.cfp
-compiler/perl/t/cfclash/foo/Foo.cfp
-compiler/perl/t/cfext/AnimalExtension.cfp
-runtime/core/Clownfish.cfp
-runtime/core/TestClownfish.cfp
+.*\.cfp
 
 # gitignore files should be ignored
-.gitignore
-compiler/.gitignore
-compiler/c/.gitignore
-compiler/perl/.gitignore
-devel/benchmarks/method_dispatch/.gitignore
-lemon/.gitignore
-runtime/c/.gitignore
-runtime/perl/.gitignore
+\.gitignore