]> git.pld-linux.org Git - packages/rpm-build-tools.git/commitdiff
- now you see what is lagging!
authorElan Ruusamäe <glen@pld-linux.org>
Mon, 16 Jan 2006 23:49:03 +0000 (23:49 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    builder.sh -> 1.378

builder.sh

index 308054f172d8e9b64986cf497fc3f8f8aa0b7214..88d2044b7a2cb11fa839f42187995e492175b941 100644 (file)
@@ -331,6 +331,7 @@ cache_rpm_dump () {
                  set -v;
         fi
 
+       update_shell_title "cache_rpm_dump"
 rpm_dump_cache=`
        case "$RPMBUILD" in
                rpm )
@@ -340,6 +341,7 @@ rpm_dump_cache=`
                        rpmbuild --nodigest --nosignature --define 'prep %dump' $BCOND $TARGET_SWITCH $SPECFILE 2>&1
                        ;;
        esac`
+       update_shell_title "cache_rpm_dump: OK!"
 }
 
 rpm_dump () {
@@ -368,10 +370,15 @@ parse_spec()
                FAIL_IF_NO_SOURCES="no"
        fi
 
+       update_shell_title "parse_spec: Patches!"
        PATCHES="`rpm_dump | awk '/PATCHURL[0-9]+/ {print $3}'`"
+       update_shell_title "parse_spec: Icons!"
        ICONS="`awk '/^Icon:/ {print $2}' ${SPECFILE}`"
+       update_shell_title "parse_spec: PACKAGE_NAME!"
        PACKAGE_NAME="`$RPM -q --qf '%{NAME}\n' --specfile ${SPECFILE} 2> /dev/null | head -n 1`"
+       update_shell_title "parse_spec: PACKAGE_VERSION!"
        PACKAGE_VERSION="`$RPM -q --qf '%{VERSION}\n' --specfile ${SPECFILE} 2> /dev/null| head -n 1`"
+       update_shell_title "parse_spec: PACKAGE_RELEASE!"
        PACKAGE_RELEASE="`$RPM -q --qf '%{RELEASE}\n' --specfile ${SPECFILE} 2> /dev/null | head -n 1`"
 
 # These variables may be unset after first cache_rpm_dump call
@@ -397,6 +404,8 @@ parse_spec()
                echo "- Version : $PACKAGE_VERSION"
                echo "- Release : $PACKAGE_RELEASE"
        fi
+
+       update_shell_title "parse_spec: OK!"
 }
 
 Exit_error()
This page took 0.197703 seconds and 4 git commands to generate.