Changeset 728
- Timestamp:
- Apr 1, 2016, 10:21:12 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified rpmbuild-bot/rpmbuild-bot.sh ¶
r724 r728 2 2 3 3 # 4 # rpmbuild-bot.sh: RPM Build Bot version 1.0. 4 # rpmbuild-bot.sh: RPM Build Bot version 1.0.1. 5 5 # 6 6 # Author: Dmitriy Kuminov <coding@dmik.org> … … 9 9 # WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 10 10 # 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 # 11 20 # Synopsis 12 21 # -------- 13 22 # 14 # This script performs a build of RPM pa kcages from a given .spec file in23 # This script performs a build of RPM packages from a given .spec file in 15 24 # controlled environment to guarantee consistent results when building RPMs 16 25 # different machines. It uses a separate file rpmbuild-bot-env.sh located … … 30 39 # with a path specification. 31 40 # 32 # The second argument defines the command to perf rm. The default command is41 # The second argument defines the command to perform. The default command is 33 42 # "build". The following sections will describe each command. 34 43 # … … 202 211 for arch in $RPMBUILD_BOT_ARCH_LIST ; do 203 212 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" 205 214 done 206 215 207 216 # Generate SRPM. 208 217 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" 210 219 211 220 # Find SRPM file name in the log. … … 213 222 [ -n "$src_rpm" ] || die "Cannot find .src.rpm file name in '$log_base.srpm.log'." 214 223 215 # Find pac akge version.224 # Find package version. 216 225 local ver_full="${src_rpm%.src.rpm}" 217 226 local ver_full="${ver_full##*/${spec_name}-}" 218 227 [ -n "$ver_full" ] || die "Cannot deduce package version from '$src_rpm'." 219 228 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"`" 222 231 [ -n "$rpms" ] || die "Cannot find .$base_arch.rpm/.noarch.rpm file names in '$log_base.base_arch.log'." 223 232 … … 231 240 run cd "$zip_dir" 232 241 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 234 244 echo "Unpacking $f..." 235 245 run rpm2cpio "$f" | cpio -idm … … 253 263 # Save other arch RPMs. 254 264 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"`" 256 266 [ -n "$rpms" ] || die "Cannot find .$arch.rpm file names in '$log_base.arch.log'." 257 for f in "$rpms"; do267 for f in $rpms ; do 258 268 echo "$f" >> "$ver_list" 259 269 done
Note:
See TracChangeset
for help on using the changeset viewer.