/[smeserver]/builds_bin/build_all
ViewVC logotype

Diff of /builds_bin/build_all

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.5 by gordonr, Fri Jan 27 05:01:29 2006 UTC Revision 1.7 by gordonr, Mon Feb 13 02:31:15 2006 UTC
# Line 12  cd ~/work Line 12  cd ~/work
12    
13  for package in $(cat modules)  for package in $(cat modules)
14  do  do
15    
16      case $package in      case $package in
17          SMEServer) continue ;;          SMEServer) continue ;;
18            builds_bin) continue ;;
19            cdrom.image) continue ;;
20            e-smith-qpsmtpd) continue ;;
21            e-smith-spamassassin) continue ;;
22    
23          e-smith*) ;;          qpsmtpd) echo "$package doesn't build automagically yet";;
   
         smeserver*) ;;  
24    
25            perl-CGI-FormMagick) echo "$package doesn't build automagically yet";;
26    
27          *) echo -n "Skipping $package "; date          *) ;;
            continue  
            ;;  
28      esac      esac
29    
30      echo -n "Building $package "; date      echo -n "Checking $package "; date
31    
32      [ -d $package ] || mzget $package      [ -d $package ] || mzget $package
33    
34      (      cd $package
         cd $package  
   
         LOG=$package.log  
         mzclean >>$LOG 2>&1  
35    
36          if mzbuild >>$LOG 2>&1      LOG=$package.log
37          then      mzclean >$LOG 2>&1
38              release_rpms *.rpm    
39          else      SPEC=$(echo F/*.spec)       # XXX - FIXME - only one SPEC file
40              echo "Build of $package failed - check $LOG"  
41          fi      if [ ! -f $SPEC ]
42      )      then
43            echo "Sorry - can't find $SPEC"
44            continue
45        fi
46    
47        NVR=$(rpm -q --qf "%{NAME}-%{VERSION}-%{RELEASE}" --specfile $SPEC)
48    
49        SRPM=/builds/rpms/SRPMS/$NVR.src.rpm
50    
51        if [ -f $SRPM ]
52        then
53            echo "$SRPM already exists"
54            continue
55        fi
56    
57        if mzbuild >>$LOG 2>&1
58        then
59            release_rpms *.rpm
60        else
61            echo "Build of $package failed - check $LOG"
62        fi
63    
64        cd ~/work
65  done  done


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed