[82106] contrib/buildbot/master.cfg

jmr at macports.org jmr at macports.org
Mon Aug 8 02:30:53 PDT 2011


Revision: 82106
          http://trac.macports.org/changeset/82106
Author:   jmr at macports.org
Date:     2011-08-08 02:30:53 -0700 (Mon, 08 Aug 2011)
Log Message:
-----------
buildmaster: don't try to add subdirs of _resources to portlist (can be in file list if the changeset also touched a port dir)

Modified Paths:
--------------
    contrib/buildbot/master.cfg

Modified: contrib/buildbot/master.cfg
===================================================================
--- contrib/buildbot/master.cfg	2011-08-08 09:26:09 UTC (rev 82105)
+++ contrib/buildbot/master.cfg	2011-08-08 09:30:53 UTC (rev 82106)
@@ -142,7 +142,7 @@
             # paths should be dports/category/portdir(/...)
             for f in self.build.allFiles():
                 comps = f.split('/')
-                if len(comps) >= 3 and comps[0] == 'dports':
+                if len(comps) >= 3 and comps[0] == 'dports' and comps[1] != '_resources':
                     portset.add(comps[2])
             portlist += ' ' + ' '.join(portset)
             self.setProperty('portlist', portlist)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20110808/5617b019/attachment-0001.html>


More information about the macports-changes mailing list