mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-21 23:38:49 -05:00
makepkg: Formatting consistency in write_pkginfo
The difference between the echo and the printf's in write_pkginfo seemed to be somewhat sporadic. Also, the INFAKEROOT check was doing the same exact thing as the SPLITPKG check, but formatted much differently and consuming two extra lines. I think this makes it more readable than it was previously, if nothing else. Signed-off-by: William Giokas <1007380@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
132e1ac10c
commit
b27886ab59
@ -1710,14 +1710,12 @@ write_pkginfo() {
|
||||
size="$(( ${size%%[^0-9]*} * 1024 ))"
|
||||
|
||||
msg2 "$(gettext "Generating %s file...")" ".PKGINFO"
|
||||
echo "# Generated by makepkg $makepkg_version"
|
||||
if (( INFAKEROOT )); then
|
||||
echo "# using $(fakeroot -v)"
|
||||
fi
|
||||
echo "# $(LC_ALL=C date -u)"
|
||||
printf "# Generated by makepkg %s\n" "$makepkg_version"
|
||||
(( INFAKEROOT )) && printf "# using %s\n" "$(fakeroot -v)"
|
||||
printf "# %s\n" "$(LC_ALL=C date -u)"
|
||||
printf "pkgname = %s\n" "$pkgname"
|
||||
(( SPLITPKG )) && echo pkgbase = $pkgbase
|
||||
echo "pkgver = $(get_full_version)"
|
||||
(( SPLITPKG )) && printf "pkgbase = %s\n" "$pkgbase"
|
||||
printf "pkgver = %s\n" "$(get_full_version)"
|
||||
printf "pkgdesc = %s\n" "${pkgdesc//+([[:space:]])/ }"
|
||||
printf "url = %s\n" "$url"
|
||||
printf "builddate = %s\n" "$builddate"
|
||||
|
Loading…
Reference in New Issue
Block a user