makepkg: use localized date strings

Before this change, LC_TIME=zh_TW.UTF-8 makepkg has the following line:

==> Making package: foobar 1-1 (日  2月 11 01:13:42 CST 2018)

With this patch, this line becomes:

==> Making package: foobar 1-1 (西元2018年02月11日 (週日) 01時13分57秒)

The latter is more natural for a Chinese native speaker.

Signed-off-by: Chih-Hsuan Yen <yan12125@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Yen Chi Hsuan 2018-02-11 01:27:52 +08:00 committed by Allan McRae
parent 03ce7cc4eb
commit e4e0add629

View file

@ -1569,7 +1569,7 @@ if (( INFAKEROOT )); then
exit $E_OK exit $E_OK
fi fi
msg "$(gettext "Making package: %s")" "$pkgbase $basever ($(date))" msg "$(gettext "Making package: %s")" "$pkgbase $basever ($(date +%c))"
# if we are creating a source-only package, go no further # if we are creating a source-only package, go no further
if (( SOURCEONLY )); then if (( SOURCEONLY )); then
@ -1597,7 +1597,7 @@ if (( SOURCEONLY )); then
msg "$(gettext "Signing package...")" msg "$(gettext "Signing package...")"
create_signature "$SRCPKGDEST/${pkgbase}-${fullver}${SRCEXT}" create_signature "$SRCPKGDEST/${pkgbase}-${fullver}${SRCEXT}"
msg "$(gettext "Source package created: %s")" "$pkgbase ($(date))" msg "$(gettext "Source package created: %s")" "$pkgbase ($(date +%c))"
exit $E_OK exit $E_OK
fi fi
@ -1703,7 +1703,7 @@ if (( NOARCHIVE )); then
exit $E_OK exit $E_OK
fi fi
msg "$(gettext "Finished making: %s")" "$pkgbase $basever ($(date))" msg "$(gettext "Finished making: %s")" "$pkgbase $basever ($(date +%c))"
install_package && exit $E_OK || exit $E_INSTALL_FAILED install_package && exit $E_OK || exit $E_INSTALL_FAILED