Capitalize output messages

Some of the output/error messages were capitalized, some were
not. This patch capitalize everything for consistency sake. Other
minor changes were done to the messages like removing the superfluous
"error:" from die messages and adding a final period to messages that
were complete sentences as appropriate.

Signed-off-by: Eric Bélanger <snowmaniscool@gmail.com>
Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
This commit is contained in:
Eric Bélanger 2011-11-01 20:38:42 -04:00 committed by Pierre Schmitz
parent aea075d817
commit 42d821ef7b
6 changed files with 26 additions and 26 deletions

View File

@ -15,7 +15,7 @@ case $scriptname in
communityco) communityco)
SVNURL="svn+ssh://aur.archlinux.org/srv/svn-packages";; SVNURL="svn+ssh://aur.archlinux.org/srv/svn-packages";;
*) *)
die "error: couldn't find svn url for $scriptname" die "Couldn't find svn url for $scriptname"
;; ;;
esac esac

View File

@ -36,7 +36,7 @@ for file in "${known_files[@]}"; do
done done
for tag in "$@"; do for tag in "$@"; do
stat_busy "copying ${trunk} to ${tag}" stat_busy "Copying ${trunk} to ${tag}"
if [[ -d repos/$tag ]]; then if [[ -d repos/$tag ]]; then
declare -a trash declare -a trash
@ -56,7 +56,7 @@ for tag in "$@"; do
stat_done stat_done
done done
stat_busy "releasing package" stat_busy "Releasing package"
printf -v tag_list ", %s" "$@"; tag_list="${tag_list#, }" printf -v tag_list ", %s" "$@"; tag_list="${tag_list#, }"
svn commit -q -m "archrelease: copy ${trunk} to $tag_list" || abort svn commit -q -m "archrelease: copy ${trunk} to $tag_list" || abort
stat_done stat_done

View File

@ -4,9 +4,9 @@ m4_include(lib/common.sh)
getpkgfile() { getpkgfile() {
if [[ ${#} -ne 1 ]]; then if [[ ${#} -ne 1 ]]; then
die 'ERROR: No canonical package found!' die 'No canonical package found!'
elif [ ! -f "${1}" ]; then elif [ ! -f "${1}" ]; then
die "ERROR: Package ${1} not found!" die "Package ${1} not found!"
fi fi
echo ${1} echo ${1}
@ -83,15 +83,15 @@ while getopts ':l:a:' flag; do
case $flag in case $flag in
l) rsyncopts+=("--bwlimit=$2") ;; l) rsyncopts+=("--bwlimit=$2") ;;
a) commit_arch=$2 ;; a) commit_arch=$2 ;;
:) die "option requires an argument -- '$OPTARG'" ;; :) die "Option requires an argument -- '$OPTARG'" ;;
\?) die "invalid option -- '$OPTARG'" ;; \?) die "Invalid option -- '$OPTARG'" ;;
esac esac
done done
shift $(( OPTIND - 1 )) shift $(( OPTIND - 1 ))
if [ -n "$(svn status -q)" ]; then if [ -n "$(svn status -q)" ]; then
if [ -n "$1" ]; then if [ -n "$1" ]; then
stat_busy 'committing changes to trunk' stat_busy 'Committing changes to trunk'
svn commit -q -m "${msgtemplate}${1}" || die svn commit -q -m "${msgtemplate}${1}" || die
stat_done stat_done
else else
@ -108,7 +108,7 @@ if [ -n "$(svn status -q)" ]; then
vi "$msgfile" vi "$msgfile"
fi fi
[ -s "$msgfile" ] || die [ -s "$msgfile" ] || die
stat_busy 'committing changes to trunk' stat_busy 'Committing changes to trunk'
svn commit -q -F "$msgfile" || die svn commit -q -F "$msgfile" || die
unlink "$msgfile" unlink "$msgfile"
stat_done stat_done
@ -164,26 +164,26 @@ else
fi fi
if [[ ${#uploads[*]} -gt 0 ]]; then if [[ ${#uploads[*]} -gt 0 ]]; then
msg 'uploading all package and signature files' msg 'Uploading all package and signature files'
rsync "${rsyncopts[@]}" "${uploads[@]}" "$server:staging/$repo/" || die rsync "${rsyncopts[@]}" "${uploads[@]}" "$server:staging/$repo/" || die
fi fi
if [ "${arch[*]}" == 'any' ]; then if [ "${arch[*]}" == 'any' ]; then
if [ -d ../repos/$repo-i686 -a -d ../repos/$repo-x86_64 ]; then if [ -d ../repos/$repo-i686 -a -d ../repos/$repo-x86_64 ]; then
pushd ../repos/ >/dev/null pushd ../repos/ >/dev/null
stat_busy "removing $repo-i686 and $repo-x86_64" stat_busy "Removing $repo-i686 and $repo-x86_64"
svn rm $repo-i686 svn rm $repo-i686
svn rm $repo-x86_64 svn rm $repo-x86_64
svn commit -q -m "removed $repo-i686 and $repo-x86_64 for $pkgname" svn commit -q -m "Removed $repo-i686 and $repo-x86_64 for $pkgname"
stat_done stat_done
popd >/dev/null popd >/dev/null
fi fi
else else
if [ -d ../repos/$repo-any ]; then if [ -d ../repos/$repo-any ]; then
pushd ../repos/ >/dev/null pushd ../repos/ >/dev/null
stat_busy "removing $repo-any" stat_busy "Removing $repo-any"
svn rm $repo-any svn rm $repo-any
svn commit -q -m "removed $repo-any for $pkgname" svn commit -q -m "Removed $repo-any for $pkgname"
stat_done stat_done
popd >/dev/null popd >/dev/null
fi fi

View File

@ -15,7 +15,7 @@ script_mode=${0##*/find-lib}
case $script_mode in case $script_mode in
deps|provides) true;; deps|provides) true;;
*) die "unknown mode $script_mode" ;; *) die "Unknown mode $script_mode" ;;
esac esac
if [[ -z $1 ]]; then if [[ -z $1 ]]; then

View File

@ -114,7 +114,7 @@ umask 0022
# Note this is the same FD number as in mkarchroot # Note this is the same FD number as in mkarchroot
exec 9>"$copydir.lock" exec 9>"$copydir.lock"
if ! flock -n 9; then if ! flock -n 9; then
stat_busy "locking chroot copy '$copy'" stat_busy "Locking chroot copy '$copy'"
flock 9 flock 9
stat_done stat_done
fi fi
@ -125,12 +125,12 @@ if [[ ! -d $copydir ]] || $clean_first; then
exec 8>"$chrootdir/root.lock" exec 8>"$chrootdir/root.lock"
if ! flock -sn 8; then if ! flock -sn 8; then
stat_busy "locking clean chroot" stat_busy "Locking clean chroot"
flock -s 8 flock -s 8
stat_done stat_done
fi fi
stat_busy 'creating clean working copy' stat_busy 'Creating clean working copy'
use_rsync=false use_rsync=false
if type -P btrfs >/dev/null; then if type -P btrfs >/dev/null; then
[[ -d $copydir ]] && btrfs subvolume delete "$copydir" &>/dev/null [[ -d $copydir ]] && btrfs subvolume delete "$copydir" &>/dev/null

View File

@ -48,21 +48,21 @@ while getopts 'r:ufnhC:M:c:' arg; do
done done
if [ "$EUID" != '0' ]; then if [ "$EUID" != '0' ]; then
die 'this script must be run as root.' die 'This script must be run as root.'
fi fi
shift $(($OPTIND - 1)) shift $(($OPTIND - 1))
if [ "$RUN" = '' -a $# -lt 2 ]; then if [ "$RUN" = '' -a $# -lt 2 ]; then
die 'you must specify a directory and one or more packages' die 'You must specify a directory and one or more packages.'
elif [ $# -lt 1 ]; then elif [ $# -lt 1 ]; then
die 'you must specify a directory' die 'You must specify a directory.'
fi fi
working_dir="$(readlink -f ${1})" working_dir="$(readlink -f ${1})"
shift 1 shift 1
[ "${working_dir}" = '' ] && die 'please specify a working directory' [ "${working_dir}" = '' ] && die 'Please specify a working directory.'
if [ -z "$cache_dir" ]; then if [ -z "$cache_dir" ]; then
cache_conf=${working_dir}/etc/pacman.conf cache_conf=${working_dir}/etc/pacman.conf
@ -149,7 +149,7 @@ chroot_lock () {
# Lock the chroot. Take note of the FD number. # Lock the chroot. Take note of the FD number.
if ! flock -n 9; then if ! flock -n 9; then
stat_busy "locking chroot" stat_busy "Locking chroot"
flock 9 flock 9
stat_done stat_done
fi fi
@ -161,7 +161,7 @@ if [ "$RUN" != "" ]; then
# run chroot {{{ # run chroot {{{
#Sanity check #Sanity check
if [ ! -f "${working_dir}/.arch-chroot" ]; then if [ ! -f "${working_dir}/.arch-chroot" ]; then
die "'${working_dir}' does not appear to be a Arch chroot" die "'${working_dir}' does not appear to be a Arch chroot."
fi fi
chroot_lock chroot_lock
@ -174,7 +174,7 @@ if [ "$RUN" != "" ]; then
else else
# {{{ build chroot # {{{ build chroot
if [ -e "${working_dir}" -a "${FORCE}" = "n" ]; then if [ -e "${working_dir}" -a "${FORCE}" = "n" ]; then
die "working dir '${working_dir}' already exists - try using -f" die "Working directory '${working_dir}' already exists - try using -f"
fi fi
if { type -P btrfs && btrfs subvolume create "${working_dir}"; } &>/dev/null; then if { type -P btrfs && btrfs subvolume create "${working_dir}"; } &>/dev/null; then
@ -198,7 +198,7 @@ else
op="${op}f" op="${op}f"
fi fi
if ! pacman ${op} ${pacargs} $@; then if ! pacman ${op} ${pacargs} $@; then
die 'failed to install all packages' die 'Failed to install all packages'
fi fi
fi fi