Subversion Repositories DevTools

Rev

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

Rev 848 Rev 852
Line 346... Line 346...
346
            {
346
            {
347
              // check package version archive existence
347
              // check package version archive existence
348
              if (!p.exists())
348
              if (!p.exists())
349
              {
349
              {
350
                mLogger.info("planRelease package not found in archive " + p.mName);
350
                mLogger.info("planRelease package not found in archive " + p.mName);
-
 
351
                // DEVI 47395 the cause of this build is not WIP or ripple induced,
-
 
352
                // it simply does not exist in the archive (has been removed)
-
 
353
                // prevent source control interaction
-
 
354
                p.mRequiresSourceControlInteraction = false;
351
                rippleIndirectlyPlanned(p);
355
                rippleIndirectlyPlanned(p);
352
              }
356
              }
353
            }
357
            }
354
          }
358
          }
355
        }
359
        }
Line 550... Line 554...
550
    
554
    
551
                  if ( extension.length() > 0 )
555
                  if ( extension.length() > 0 )
552
                  {
556
                  {
553
                    version += extension;
557
                    version += extension;
554
                  }
558
                  }
555
                  else
-
 
556
                  {
-
 
557
                    extension = ".";
-
 
558
                  }
-
 
559
    
559
    
560
                  rtagIdOfficialFileWriter.append("packageExtension=" + extension + lf);
560
                  rtagIdOfficialFileWriter.append("packageExtension=" + extension + lf);
561
                  rtagIdOfficialFileWriter.append("packageVersion=" + version + lf);
561
                  rtagIdOfficialFileWriter.append("packageVersion=" + version + lf);
562
                  
562
                  
563
                  // depends in the form 'cs','25.1.0000.cr';'Dinkumware_STL','1.0.0.cots'
563
                  // depends in the form 'cs','25.1.0000.cr';'Dinkumware_STL','1.0.0.cots'
Line 1174... Line 1174...
1174
        if ( p.mDirectlyPlanned )
1174
        if ( p.mDirectlyPlanned )
1175
        {
1175
        {
1176
          retVal += "<property name=\"" + p.mAlias + "directchange\" value=\"\"/>" + lf;
1176
          retVal += "<property name=\"" + p.mAlias + "directchange\" value=\"\"/>" + lf;
1177
        }
1177
        }
1178
        
1178
        
-
 
1179
        if ( ! p.mRequiresSourceControlInteraction )
-
 
1180
        {
-
 
1181
          retVal += "<property name=\"" + p.mAlias + "doesnotrequiresourcecontrolinteraction\" value=\"\"/>" + lf;
-
 
1182
        }
-
 
1183
        
1179
        mAddendum = "non generic";
1184
        mAddendum = "non generic";
1180
  
1185
  
1181
        if ( p.isGeneric() )
1186
        if ( p.isGeneric() )
1182
        {
1187
        {
1183
          mAddendum = "generic";
1188
          mAddendum = "generic";
Line 1281... Line 1286...
1281
        if ( p.mDirectlyPlanned )
1286
        if ( p.mDirectlyPlanned )
1282
        {
1287
        {
1283
          retVal += "<property name=\"AbtPublishdirectchange\" value=\"\"/>" + lf;
1288
          retVal += "<property name=\"AbtPublishdirectchange\" value=\"\"/>" + lf;
1284
        }
1289
        }
1285
        
1290
        
-
 
1291
        if ( ! p.mRequiresSourceControlInteraction )
-
 
1292
        {
-
 
1293
          retVal += "<property name=\"AbtPublishdoesnotrequiresourcecontrolinteraction\" value=\"\"/>" + lf;
-
 
1294
        }
-
 
1295
        
1286
        if ( p.isGeneric() )
1296
        if ( p.isGeneric() )
1287
        {
1297
        {
1288
          retVal += "<property name=\"AbtPublishgeneric\" value=\"\"/>" + lf;
1298
          retVal += "<property name=\"AbtPublishgeneric\" value=\"\"/>" + lf;
1289
        }
1299
        }
1290
 
1300