abuild: only print version if we are building

The purpose was to show abuild version in the build logs
This commit is contained in:
Natanael Copa 2017-09-21 08:41:58 +00:00
parent dc4f5cb972
commit a2f839fd27
1 changed files with 5 additions and 3 deletions

View File

@ -111,6 +111,10 @@ spell_error() {
die "APKBUILD contains '$1'. It should be '$2'"
}
print_version() {
msg "$program $program_version"
}
# check if apkbuild is basicly sane
default_sanitycheck() {
local i= j= suggestion=
@ -1428,6 +1432,7 @@ build_abuildrepo() {
_check=true
fi
if ! apk_up2date || [ -n "$force" ]; then
print_version
# check early if we have abuild key
abuild-sign --installed
logcmd "building $repo/$pkgname-$pkgver-r$pkgrel"
@ -2478,9 +2483,6 @@ if [ -n "$subpkgname" ]; then
origsubpackages="$subpackages"
subpackages=
else
if [ -z "$FAKEROOTKEY" ]; then
msg "$program $program_version"
fi
allpackages="$pkgname $subpackages"
for i in $linguas; do
allpackages="$allpackages $pkgname-lang-$i::noarch"