Changeset 728


Ignore:
Timestamp:
Apr 1, 2016, 10:21:12 PM (9 years ago)
Author:
dmik
Message:

rpmbuild-bot: Fix bad variable name error and release version 1.0.1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified rpmbuild-bot/rpmbuild-bot.sh

    r724 r728  
    22
    33#
    4 # rpmbuild-bot.sh: RPM Build Bot version 1.0.
     4# rpmbuild-bot.sh: RPM Build Bot version 1.0.1.
    55#
    66# Author: Dmitriy Kuminov <coding@dmik.org>
     
    99# WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
    1010#
     11# History
     12# -------
     13#
     14# 1.0.1 [01.04.2016]
     15#   - Fix bad variable name error.
     16#   - Understand .CMD extension in REXX wrapper.
     17# 1.0 [01.04.2016]
     18#   - Initial version.
     19#
    1120# Synopsis
    1221# --------
    1322#
    14 # This script performs a build of RPM pakcages from a given .spec file in
     23# This script performs a build of RPM packages from a given .spec file in
    1524# controlled environment to guarantee consistent results when building RPMs
    1625# different machines. It uses a separate file rpmbuild-bot-env.sh located
     
    3039# with a path specification.
    3140#
    32 # The second argument defines the command to perfrm. The default command is
     41# The second argument defines the command to perform. The default command is
    3342# "build". The following sections will describe each command.
    3443#
     
    202211  for arch in $RPMBUILD_BOT_ARCH_LIST ; do
    203212    echo "Creating RPMs for '$arch' target (logging to $log_base.$arch.log)..."
    204     log_run "$log_base.$arch.log" rpmbuild.exe --target=$arch -bb "$spec_full"
     213#    log_run "$log_base.$arch.log" rpmbuild.exe --target=$arch -bb "$spec_full"
    205214  done
    206215
    207216  # Generate SRPM.
    208217  echo "Creating SRPM (logging to $log_base.srpm.log)..."
    209   log_run "$log_base.srpm.log" rpmbuild -bs "$spec_full"
     218#  log_run "$log_base.srpm.log" rpmbuild -bs "$spec_full"
    210219
    211220  # Find SRPM file name in the log.
     
    213222  [ -n "$src_rpm" ] || die "Cannot find .src.rpm file name in '$log_base.srpm.log'."
    214223
    215   # Find pacakge version.
     224  # Find package version.
    216225  local ver_full="${src_rpm%.src.rpm}"
    217226  local ver_full="${ver_full##*/${spec_name}-}"
    218227  [ -n "$ver_full" ] || die "Cannot deduce package version from '$src_rpm'."
    219228
    220   # Find all RPM packages for the base arch.
    221   local rpms=`grep "^Wrote: \+.*\.\($base_arch\.rpm\|noarch\.rpm\)$" "$log_base.$base_arch.log" | sed -e "s#^Wrote: \+##g"`
     229  # Find all RPM packages for the base arch (note the quotes around `` - it's to preserve multi-line result).
     230  local rpms="`grep "^Wrote: \+.*\.\($base_arch\.rpm\|noarch\.rpm\)$" "$log_base.$base_arch.log" | sed -e "s#^Wrote: \+##g"`"
    222231  [ -n "$rpms" ] || die "Cannot find .$base_arch.rpm/.noarch.rpm file names in '$log_base.base_arch.log'."
    223232
     
    231240    run cd "$zip_dir"
    232241    rm -r "@unixroot" 2> /dev/null
    233     for f in "$rpms" ; do
     242    # Note no quoters around $rpms - it's to split at EOL.
     243    for f in $rpms ; do
    234244      echo "Unpacking $f..."
    235245      run rpm2cpio "$f" | cpio -idm
     
    253263  # Save other arch RPMs.
    254264  for arch in ${RPMBUILD_BOT_ARCH_LIST%${base_arch}} ; do
    255     rpms=`grep "^Wrote: \+.*\.$arch\.rpm$" "$log_base.$arch.log" | sed -e "s#^Wrote: \+##g"`
     265    rpms="`grep "^Wrote: \+.*\.$arch\.rpm$" "$log_base.$arch.log" | sed -e "s#^Wrote: \+##g"`"
    256266    [ -n "$rpms" ] || die "Cannot find .$arch.rpm file names in '$log_base.arch.log'."
    257     for f in "$rpms" ; do
     267    for f in $rpms ; do
    258268      echo "$f" >> "$ver_list"
    259269    done
Note: See TracChangeset for help on using the changeset viewer.