[pacman-dev] [PATCH] Resubmit: Use sentence case in makepkg
From: "Jason St. John" <jstjohn@purdue.edu> Most of makepkg already uses sentence case. This cleans up the last few stragglers. This commit implements feedback from the ML for the first submission. Signed-off-by: Jason St. John <jstjohn@purdue.edu> --- scripts/makepkg.sh.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index d387b7d..51b97fd 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -645,7 +645,7 @@ download_svn() { } download_sources() { - msg "$(gettext "Retrieving Sources...")" + msg "$(gettext "Retrieving sources...")" local GET_VCS=1 if [[ $1 == "fast" ]]; then @@ -951,7 +951,7 @@ resolve_deps() { [[ -z $deplist ]] && return $R_DEPS_SATISFIED fi - msg "$(gettext "Missing Dependencies:")" + msg "$(gettext "Missing dependencies:")" local dep for dep in $deplist; do msg2 "$dep" @@ -1214,7 +1214,7 @@ check_source_integrity() { } extract_sources() { - msg "$(gettext "Extracting Sources...")" + msg "$(gettext "Extracting sources...")" local netfile for netfile in "${source[@]}"; do local file=$(get_filename "$netfile") @@ -1612,7 +1612,7 @@ find_libprovides() { esac if (( missing )); then - warning "$(gettext "Can not find library listed in %s: %s")" "'provides'" "$p" + warning "$(gettext "Cannot find library listed in %s: %s")" "'provides'" "$p" fi done -- 1.8.0
On 20/11/12 10:13, Jason St. John wrote:
From: "Jason St. John" <jstjohn@purdue.edu>
Most of makepkg already uses sentence case. This cleans up the last few stragglers. This commit implements feedback from the ML for the first submission.
Signed-off-by: Jason St. John <jstjohn@purdue.edu> ---
FYI: anything below these three "---" here is not part of the commit. So the "Resubmit:" comment is best added here.
scripts/makepkg.sh.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index d387b7d..51b97fd 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -645,7 +645,7 @@ download_svn() { }
download_sources() { - msg "$(gettext "Retrieving Sources...")" + msg "$(gettext "Retrieving sources...")"
local GET_VCS=1 if [[ $1 == "fast" ]]; then @@ -951,7 +951,7 @@ resolve_deps() { [[ -z $deplist ]] && return $R_DEPS_SATISFIED fi
- msg "$(gettext "Missing Dependencies:")" + msg "$(gettext "Missing dependencies:")" local dep for dep in $deplist; do msg2 "$dep" @@ -1214,7 +1214,7 @@ check_source_integrity() { }
extract_sources() { - msg "$(gettext "Extracting Sources...")" + msg "$(gettext "Extracting sources...")" local netfile for netfile in "${source[@]}"; do local file=$(get_filename "$netfile") @@ -1612,7 +1612,7 @@ find_libprovides() { esac
if (( missing )); then - warning "$(gettext "Can not find library listed in %s: %s")" "'provides'" "$p" + warning "$(gettext "Cannot find library listed in %s: %s")" "'provides'" "$p" fi done
participants (2)
-
Allan McRae
-
Jason St. John