[PATCH] testbot: Add some section headers in PatchUtils.

Francois Gouget fgouget at codeweavers.com
Fri Aug 10 13:09:19 CDT 2018


Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
---
 testbot/lib/WineTestBot/PatchUtils.pm | 74 +++++++++++++++------------
 1 file changed, 41 insertions(+), 33 deletions(-)

diff --git a/testbot/lib/WineTestBot/PatchUtils.pm b/testbot/lib/WineTestBot/PatchUtils.pm
index be5ce14d1..d399ced54 100644
--- a/testbot/lib/WineTestBot/PatchUtils.pm
+++ b/testbot/lib/WineTestBot/PatchUtils.pm
@@ -36,39 +36,9 @@ our @EXPORT = qw(GetPatchImpact UpdateWineData);
 use WineTestBot::Config;
 
 
-# These paths are too generic to be proof that this is a Wine patch.
-my $AmbiguousPathsRe = join('|',
-  'Makefile\.in$',
-  # aclocal.m4 gets special treatment
-  # configure gets special treatment
-  # configure.ac gets special treatment
-  'include/Makefile\.in$',
-  'include/config\.h\.in$',
-  'po/',
-  'tools/Makefile.in',
-  'tools/config.guess',
-  'tools/config.sub',
-  'tools/install-sh',
-  'tools/makedep.c',
-);
-
-# Patches to these paths don't impact the Wine build. So ignore them.
-my $IgnoredPathsRe = join('|',
-  '\.mailmap$',
-  'ANNOUNCE$',
-  'AUTHORS$',
-  'COPYING\.LIB$',
-  'LICENSE\$',
-  'LICENSE\.OLD$',
-  'MAINTAINERS$',
-  'README$',
-  'VERSION$',
-  'documentation/',
-  'tools/c2man\.pl$',
-  'tools/winapi/',
-  'tools/winemaker/',
-);
-
+#
+# Source repository maintenance
+#
 
 =pod
 =over 12
@@ -140,6 +110,44 @@ sub _LoadWineFiles()
   }
 }
 
+
+#
+# Wine patch analysis
+#
+
+# These paths are too generic to be proof that this is a Wine patch.
+my $AmbiguousPathsRe = join('|',
+  'Makefile\.in$',
+  # aclocal.m4 gets special treatment
+  # configure gets special treatment
+  # configure.ac gets special treatment
+  'include/Makefile\.in$',
+  'include/config\.h\.in$',
+  'po/',
+  'tools/Makefile.in',
+  'tools/config.guess',
+  'tools/config.sub',
+  'tools/install-sh',
+  'tools/makedep.c',
+);
+
+# Patches to these paths don't impact the Wine build. So ignore them.
+my $IgnoredPathsRe = join('|',
+  '\.mailmap$',
+  'ANNOUNCE$',
+  'AUTHORS$',
+  'COPYING\.LIB$',
+  'LICENSE\$',
+  'LICENSE\.OLD$',
+  'MAINTAINERS$',
+  'README$',
+  'VERSION$',
+  'documentation/',
+  'tools/c2man\.pl$',
+  'tools/winapi/',
+  'tools/winemaker/',
+);
+
 sub _HandleFile($$$)
 {
   my ($Impacts, $FilePath, $Change) = @_;
-- 
2.18.0




More information about the wine-devel mailing list