makepkg: output the name of the package being created

Although it should be currently quite obvious what package is being
created when "Creating package..." is printed, it will not be in the
future when a debug package is potentially created too.  Also, given
$pkgname is always correctly set when split packaging now, we no
longer need to pass that around.

Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Allan McRae 2012-09-24 00:06:36 +10:00
parent bd4ff4a377
commit a5e81f5599

View file

@ -1719,7 +1719,7 @@ write_pkginfo() {
echo "# using $(fakeroot -v)" echo "# using $(fakeroot -v)"
fi fi
echo "# $(LC_ALL=C date -u)" echo "# $(LC_ALL=C date -u)"
printf "pkgname = %s\n" "$1" printf "pkgname = %s\n" "$pkgname"
(( SPLITPKG )) && echo pkgbase = $pkgbase (( SPLITPKG )) && echo pkgbase = $pkgbase
echo "pkgver = $(get_full_version)" echo "pkgver = $(get_full_version)"
printf "pkgdesc = %s\n" "$pkgdesc" printf "pkgdesc = %s\n" "$pkgdesc"
@ -1790,18 +1790,11 @@ create_package() {
check_package check_package
cd_safe "$pkgdir" cd_safe "$pkgdir"
msg "$(gettext "Creating package...")" msg "$(gettext "Creating package \"%s\"...")" "$pkgname"
local nameofpkg
if [[ -z $1 ]]; then
nameofpkg="$pkgname"
else
nameofpkg="$1"
fi
pkgarch=$(get_pkg_arch) pkgarch=$(get_pkg_arch)
write_pkginfo $nameofpkg > .PKGINFO write_pkginfo > .PKGINFO
local comp_files=('.PKGINFO') local comp_files=('.PKGINFO')
@ -1821,7 +1814,7 @@ create_package() {
msg2 "$(gettext "Compressing package...")" msg2 "$(gettext "Compressing package...")"
local fullver=$(get_full_version) local fullver=$(get_full_version)
local pkg_file="$PKGDEST/${nameofpkg}-${fullver}-${pkgarch}${PKGEXT}" local pkg_file="$PKGDEST/${pkgname}-${fullver}-${pkgarch}${PKGEXT}"
local ret=0 local ret=0
[[ -f $pkg_file ]] && rm -f "$pkg_file" [[ -f $pkg_file ]] && rm -f "$pkg_file"
@ -2338,7 +2331,7 @@ run_split_packaging() {
backup_package_variables backup_package_variables
run_package $pkgname run_package $pkgname
tidy_install tidy_install
create_package $pkgname create_package
restore_package_variables restore_package_variables
pkgdir="${pkgdir%/*}" pkgdir="${pkgdir%/*}"
done done