Changeset 739
- Timestamp:
- Apr 11, 2016, 8:56:45 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified rpmbuild-bot/rpmbuild-bot.sh ¶
r738 r739 32 32 # 33 33 # > rpmbuild-bot.sh SPEC[=VERSION] 34 # > [ upload[=REPO] | test[=MODE] | clean | remove[=REPO] ]34 # > [ upload[=REPO] | test[=MODE] | clean[=test] | remove[=REPO] ] 35 35 # > [-f] 36 36 # … … 124 124 # tree state, wrong patches etc.). Note that normally you don't need to use 125 125 # this command; it's an emergency-only tool. 126 # 127 # The "clean" command needs log files from the "build" command and will fail 128 # otherwise. 129 # 130 # If the "clean" command is given a "test" argument, it will clean up the 131 # results of the "test" command instead of "build". The log file from the 132 # "test" command needs to be present or the command will fail. 126 133 # 127 134 # Removing packages … … 237 244 build_cmd() 238 245 { 239 # Check settings.240 test -n "$RPMBUILD_BOT_ARCH_LIST" || die "RPMBUILD_BOT_ARCH_LIST is empty."241 242 246 local base_arch="${RPMBUILD_BOT_ARCH_LIST##* }" 243 247 … … 382 386 if [ -n "$rpms" ] ; then 383 387 echo "Successfully generated the following RPMs:" 384 for f in $rpms 388 for f in $rpms; do 385 389 echo "$f" 386 390 done … … 463 467 clean_cmd() 464 468 { 469 if [ "$command_arg" = "test" ] ; then 470 # Cleanup after "test" command. 471 local base_arch="${RPMBUILD_BOT_ARCH_LIST##* }" 472 local log_file="$log_dir/test/$spec_name.log" 473 474 [ -f "$log_file" ] || die "File '$test_log' is not found." 475 476 local rpms=`grep "^Wrote: \+.*\.\($base_arch\.rpm\|noarch\.rpm\)$" "$log_file" | sed -e "s#^Wrote: \+##g"` 477 if [ -n "$rpms" ] ; then 478 for f in $rpms; do 479 echo "Removing $f..." 480 run rm -f "$f" 481 done 482 echo "Removing $log_file[.bak]..." 483 run rm -f "$log_file" "$log_file".bak 484 else 485 die "Cannot find .$base_arch.rpm/.noarch.rpm file names in '$log_file'." 486 fi 487 488 return 489 fi 490 491 # Cleanup after "build command". 465 492 [ -f "$spec_list" ] || die \ 466 493 "File '$spec_list' is not found. … … 613 640 . "${0%%.sh}-env.sh" 614 641 642 # Check common settings. 643 test -n "$RPMBUILD_BOT_ARCH_LIST" || die "RPMBUILD_BOT_ARCH_LIST is empty." 644 615 645 run eval "${command_name}_cmd" 616 646
Note:
See TracChangeset
for help on using the changeset viewer.