Subversion Repositories DevTools

Rev

Rev 900 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 900 Rev 902
Line 182... Line 182...
182
        for (Iterator<String> it2 = p.mDependencyCollection.iterator(); it2.hasNext(); )
182
        for (Iterator<String> it2 = p.mDependencyCollection.iterator(); it2.hasNext(); )
183
        {
183
        {
184
          String alias = it2.next();
184
          String alias = it2.next();
185
          Package dependency = findPackage(alias);
185
          Package dependency = findPackage(alias);
186
          
186
          
-
 
187
          p.mPackageDependencyCollection.add(dependency);
-
 
188
        }
-
 
189
      }
-
 
190
 
-
 
191
      // DEVI 55483 now use the fully built mPackageDependencyCollection (in rippleBuildExclude)
-
 
192
      for (Iterator<Package> it = mPackageCollection.iterator(); it.hasNext(); )
-
 
193
      {
-
 
194
        Package p = it.next();
-
 
195
         
-
 
196
        for (Iterator<String> it2 = p.mDependencyCollection.iterator(); it2.hasNext(); )
-
 
197
        {
-
 
198
          String alias = it2.next();
-
 
199
          Package dependency = findPackage(alias);
-
 
200
          
187
          if (dependency == ReleaseManager.NULL_PACKAGE)
201
          if (dependency == ReleaseManager.NULL_PACKAGE)
188
          {
202
          {
189
            mLogger.info("planRelease dependency is not in the baseline " + alias);
203
            mLogger.info("planRelease dependency is not in the baseline " + alias);
190
            // exclude all dependent packages
204
            // exclude all dependent packages
191
            // max 50 chars
205
            // max 50 chars
Line 194... Line 208...
194
            // take the package out of the build
208
            // take the package out of the build
195
            p.mBuildFile = -4;
209
            p.mBuildFile = -4;
196
            mLogger.info("planRelease set mBuildFile to -4 for package " + p.mAlias );
210
            mLogger.info("planRelease set mBuildFile to -4 for package " + p.mAlias );
197
            break;
211
            break;
198
          }
212
          }
199
          
-
 
200
          p.mPackageDependencyCollection.add(dependency);
-
 
201
        }
213
        }
202
      }
214
      }
203
      
215
 
204
      // process packages which are not reproducible, and all packages dependent upon them      
216
      // process packages which are not reproducible, and all packages dependent upon them      
205
      for (Iterator<Package> it = mPackageCollection.iterator(); it.hasNext(); )
217
      for (Iterator<Package> it = mPackageCollection.iterator(); it.hasNext(); )
206
      {
218
      {
207
        Package p = it.next();
219
        Package p = it.next();
208
  
220