]> git.pld-linux.org Git - packages/rpm-build-tools.git/commitdiff
- shell title fixes
authorElan Ruusamäe <glen@pld-linux.org>
Sat, 3 Dec 2005 03:01:43 +0000 (03:01 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    builder.sh -> 1.354

builder.sh

index 55dce254ea7366dc77c8c8ac7c07c56b1322e80c..5218179d487e46d05162f3a0cd4c90e1cef4678e 100644 (file)
@@ -1268,19 +1268,22 @@ _rpm_cnfl_check()
 fetch_build_requires()
 {
        if [ "${FETCH_BUILD_REQUIRES}" = "yes" ]; then
-               update_shell_title "fetc_build_requires: $SPECFILE"
+               update_shell_title "fetch_build_requires[$SPECFILE]"
                if [ "$FETCH_BUILD_REQUIRES_RPMGETDEPS" = "yes" ]; then
                        CONF=$(rpm-getdeps $BCOND $SPECFILE 2> /dev/null | awk '/^\-/ { print $3 } ' | _rpm_cnfl_check | xargs)
                        DEPS=$(rpm-getdeps $BCOND $SPECFILE 2> /dev/null | awk '/^\+/ { print $3 } ' | _rpm_prov_check | xargs)
 
+                       update_shell_title "fetch_build_requires[$SPECFILE]: update indexes"
                        if [ -n "$CONF" ] || [ -n "$DEPS" ]; then
                                $SU_SUDO /usr/bin/poldek --update || $SU_SUDO /usr/bin/poldek --upa
                        fi
                        if [ -n "$CONF" ]; then
+                                update_shell_title "fetch_build_requires[$SPECFILE]: uninstall conflicting packages"
                                echo "Trying to uninstall conflicting packages ($CONF):"
                                $SU_SUDO /usr/bin/poldek --noask --nofollow -ev $CONF
                        fi
                        if [ -n "$DEPS" ]; then
+                               update_shell_title "fetch_build_requires[$SPECFILE]: install deps ($DEPS)"
                                echo "Trying to install dependencies ($DEPS):"
                                $SU_SUDO /usr/bin/poldek --caplookup -uGv $DEPS
                        fi
This page took 0.112024 seconds and 4 git commands to generate.