]> git.pld-linux.org Git - packages/rpm-build-tools.git/blobdiff - builder.sh
- s/^Utilities/Applications
[packages/rpm-build-tools.git] / builder.sh
index 9cb5b4a78a20e540657d0e1a30bc7ebe5bda0f81..f2c514f31b47530376c8c030f5f06237714cca68 100644 (file)
@@ -23,9 +23,11 @@ CLEAN=""
 DEBUG=""
 NOURLS=""
 NOCVS=""
+ALLWAYS_CVSUP="yes"
 CVSROOT=${CVSROOT:-""}
 LOGFILE=""
 CHMOD="yes"
+RPMOPTS=""
 
 PATCHES=""
 SOURCES=""
@@ -34,6 +36,8 @@ PACKAGE_RELEASE=""
 PACKAGE_VERSION=""
 PACKAGE_NAME=""
 
+DEF_NICE_LEVEL=0
+
 if [ -f ~/etc/builderrc ]; then
   . ~/etc/builderrc
 elif [ -f ~/.builderrc ]; then
@@ -52,7 +56,7 @@ Usage: builder [-D] [--debug] [-V] [--version] [-a] [--as_anon] [-b] [-ba]
        [-d <cvsroot>] [--cvsroot <cvsroot>] [-g] [--get] [-h] [--help]
        [-l <logfile>] [-m] [--mr-proper] [--logtofile <logfile>] [-q] [--quiet]
        [-r <cvstag>] [--cvstag <cvstag>] [-u] [--no-urls] [-v] [--verbose]
-       <package>.spec
+       [--opts <rpm opts>] <package>.spec
 
        -D, --debug     - enable script debugging mode,
        -V, --version   - output builder version
@@ -74,10 +78,11 @@ Usage: builder [-D] [--debug] [-V] [--version] [-a] [--as_anon] [-b] [-ba]
                          CVS repo or HTTP/FTP,
        -h, --help      - this message,
        -l, --logtofile - log all to file,
-       -m, --mr-proper - only remove all files relayted to spec file and
+       -m, --mr-proper - only remove all files related to spec file and
                          all work resources,
        -nc, --no-cvs   - don't download from CVS, if source URL is given,
        -nu, --no-urls  - don't try to download from FTP/HTTP location,
+       --opts          - additional options for rpm
        -q, --quiet     - be quiet,
        -r, --cvstag    - build package using resources from specified CVS
                          tag,
@@ -88,7 +93,10 @@ Usage: builder [-D] [--debug] [-V] [--version] [-a] [--as_anon] [-b] [-ba]
 
 parse_spec()
 {
-    if [ -n "$DEBUG" ]; then set -xv; fi
+    if [ -n "$DEBUG" ]; then 
+       set -x;
+       set -v; 
+    fi
 
     sed -e "s#%prep#%dump#I" $SPECFILE | grep -v -i "^Icon\:" > $SPECFILE.__
 
@@ -121,7 +129,10 @@ parse_spec()
 
 Exit_error()
 {
-    if [ -n "$DEBUG" ]; then set -xv; fi
+    if [ -n "$DEBUG" ]; then 
+       set -x;
+       set -v; 
+    fi
 
     cd $__PWD
 
@@ -143,7 +154,10 @@ Exit_error()
 
 init_builder()
 {
-    if [ -n "$DEBUG" ]; then set -xv; fi
+    if [ -n "$DEBUG" ]; then 
+       set -x;
+       set -v; 
+    fi
 
     SOURCE_DIR="`rpm --eval "%{_sourcedir}"`"
     SPECS_DIR="`rpm --eval "%{_specdir}"`"
@@ -153,7 +167,10 @@ init_builder()
 
 get_spec()
 {
-    if [ -n "$DEBUG" ]; then set -xv; fi
+    if [ -n "$DEBUG" ]; then 
+       set -x;
+       set -v; 
+    fi
 
     cd $SPECS_DIR
 
@@ -184,7 +201,10 @@ get_spec()
 
 get_all_files()
 {
-    if [ -n "$DEBUG" ]; then set -xv; fi
+    if [ -n "$DEBUG" ]; then 
+       set -x;
+       set -v; 
+    fi
 
     if [ -n "$SOURCES$PATCHES$ICONS" ]; then
        cd $SOURCE_DIR
@@ -199,28 +219,31 @@ get_all_files()
            OPTIONS="$OPTIONS -A"
        fi
        for i in $SOURCES $PATCHES $ICONS; do
+           if [ ! -f `nourl $i` ] || [ $ALLWAYS_CVSUP = "yes" ] 
+             then
                if 
-                       echo $i | grep -v '^\(http\|ftp\)://' |\
-                       grep -q '\.\(gz\|bz2\)$'
+                       echo $i | grep -vE '(http|ftp|https|cvs)://' |\
+                       grep -qE '\.(gz|bz2)$'
                then
                        echo "Warning: no URL given for $i"
                fi
                
                if      [ -z "$NOCVS" ]||\
-                       [ `echo $i | egrep -v '^ftp://\|^http://'` ]
+                       [ `echo $i | grep -vE '(ftp|http|https)://'` ]
                then
                        cvs $OPTIONS `nourl $i`
                fi
                
                if      [ -z "$NOURLS" ]&&[ ! -f "`nourl $i`" ]&&\
-                       [ `echo $i | egrep 'ftp://\|http://'` ]
+                       [ `echo $i | grep -E 'ftp://|http://|https://'` ]
                then
-                       wget -c -t0 "$i"
+                       wget -c -nd -t0 "$i"
                fi
 
                if [ ! -f "`nourl $i`" ]; then
                        Exit_error err_no_source_in_repo;
                fi
+           fi
        done
        
        if [ "$CHMOD" = "yes" ]; then
@@ -232,7 +255,10 @@ get_all_files()
 
 build_package()
 {
-    if [ -n "$DEBUG" ]; then set -xv; fi
+    if [ -n "$DEBUG" ]; then 
+       set -x;
+       set -v; 
+    fi
 
     cd $SPECS_DIR
     case "$COMMAND" in
@@ -241,9 +267,9 @@ build_package()
        build-binary )
            BUILD_SWITCH="-bb" ;;
        build-source )
-           BUILD_SWITCH="-bs" ;;
+           BUILD_SWITCH="-bs --nodeps" ;;
     esac
-    rpm $BUILD_SWITCH -v $QUIET $CLEAN $SPECFILE
+    nice -n ${DEF_NICE_LEVEL} rpm $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $SPECFILE 
 
     if [ "$?" -ne "0" ]; then
        Exit_error err_build_fail;
@@ -253,7 +279,7 @@ build_package()
 
 nourl()
 {
-       echo "$@" | sed 's#\<\(ftp\|http\)://.*/##g'
+       echo "$@" | sed 's#\<\(ftp\|http\|https\|cvs\)://.*/##g'
 }
 #---------------------------------------------
 # main()
@@ -287,12 +313,16 @@ while test $# -gt 0 ; do
            COMMAND="usage"; shift ;;
        -l | --logtofile )
            shift; LOGFILE="${1}"; shift ;;
+       -ni| --nice )
+           shift; DEF_NICE_LEVEL=${1}; shift ;;
        -m | --mr-proper )
            COMMAND="mr-proper"; shift ;;
        -nc | --no-cvs )
            NOCVS="yes"; shift ;;
        -nu | --no-urls )
            NOURLS="yes"; shift ;;
+       --opts )
+           shift; RPMOPTS="${1}"; shift ;;
        -q | --quiet )
            QUIET="--quiet"; shift ;;
        -r | --cvstag )
@@ -304,7 +334,10 @@ while test $# -gt 0 ; do
     esac
 done
 
-if [ -n "$DEBUG" ]; then set -xv; fi
+if [ -n "$DEBUG" ]; then 
+       set -x;
+       set -v; 
+fi
 
 case "$COMMAND" in
     "build" | "build-binary" | "build-source" )
This page took 0.037835 seconds and 4 git commands to generate.