mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-11 11:55:12 -05:00
Use sentence case in makepkg
Most of makepkg already uses sentence case. This cleans up the last few stragglers. Signed-off-by: Jason St. John <jstjohn@purdue.edu> Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
3531533c2f
commit
3536975bbf
@ -645,7 +645,7 @@ download_svn() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
download_sources() {
|
download_sources() {
|
||||||
msg "$(gettext "Retrieving Sources...")"
|
msg "$(gettext "Retrieving sources...")"
|
||||||
|
|
||||||
local GET_VCS=1
|
local GET_VCS=1
|
||||||
if [[ $1 == "fast" ]]; then
|
if [[ $1 == "fast" ]]; then
|
||||||
@ -952,7 +952,7 @@ resolve_deps() {
|
|||||||
[[ -z $deplist ]] && return $R_DEPS_SATISFIED
|
[[ -z $deplist ]] && return $R_DEPS_SATISFIED
|
||||||
fi
|
fi
|
||||||
|
|
||||||
msg "$(gettext "Missing Dependencies:")"
|
msg "$(gettext "Missing dependencies:")"
|
||||||
local dep
|
local dep
|
||||||
for dep in $deplist; do
|
for dep in $deplist; do
|
||||||
msg2 "$dep"
|
msg2 "$dep"
|
||||||
@ -1219,7 +1219,7 @@ check_source_integrity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
extract_sources() {
|
extract_sources() {
|
||||||
msg "$(gettext "Extracting Sources...")"
|
msg "$(gettext "Extracting sources...")"
|
||||||
local netfile
|
local netfile
|
||||||
for netfile in "${source[@]}"; do
|
for netfile in "${source[@]}"; do
|
||||||
local file=$(get_filename "$netfile")
|
local file=$(get_filename "$netfile")
|
||||||
@ -1617,7 +1617,7 @@ find_libprovides() {
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
if (( missing )); then
|
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
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user