Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kbuild: deb-pkg: remove support for "name <email>" form for DEBEMAIL

Commit d5940c60e057 ("kbuild: deb-pkg improve maintainer address
generation") supported the "name <email>" form for DEBEMAIL, with
behavior slightly different from devscripts.

In Kbuild, if DEBEMAIL is given in the form "name <email>", it is used
as-is, and DEBFULLNAME is ignored.

In contrast, debchange takes the name from DEBFULLNAME (or NAME) if set,
as described in 'man debchange':

If this variable has the form "name <email>", then the maintainer name
will also be taken from here if neither DEBFULLNAME nor NAME is set.

This commit removes support for the "name <email> form for DEBEMAIL,
as the current behavior is already different from debchange, and the
Debian manual suggests setting the email address and name separately in
DEBEMAIL and DEBFULLNAME. [1]

If there are any complaints about this removal, we can re-add it,
with better alignment with the debchange implementation. [2]

[1]: https://www.debian.org/doc/manuals/debmake-doc/ch03.en.html#email-setup
[2]: https://salsa.debian.org/debian/devscripts/-/blob/v2.23.7/scripts/debchange.pl#L802

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>

+7 -13
+7 -13
scripts/package/mkdebian
··· 125 125 rm -rf debian 126 126 mkdir debian 127 127 128 - email=${DEBEMAIL} 129 - 130 - # use email string directly if it contains <email> 131 - if echo "${email}" | grep -q '<.*>'; then 132 - maintainer=${email} 128 + user=${KBUILD_BUILD_USER-$(id -nu)} 129 + name=${DEBFULLNAME-${user}} 130 + if [ "${DEBEMAIL:+set}" ]; then 131 + email=${DEBEMAIL} 133 132 else 134 - # or construct the maintainer string 135 - user=${KBUILD_BUILD_USER-$(id -nu)} 136 - name=${DEBFULLNAME-${user}} 137 - if [ -z "${email}" ]; then 138 - buildhost=${KBUILD_BUILD_HOST-$(hostname -f 2>/dev/null || hostname)} 139 - email="${user}@${buildhost}" 140 - fi 141 - maintainer="${name} <${email}>" 133 + buildhost=${KBUILD_BUILD_HOST-$(hostname -f 2>/dev/null || hostname)} 134 + email="${user}@${buildhost}" 142 135 fi 136 + maintainer="${name} <${email}>" 143 137 144 138 if [ "$1" = --need-source ]; then 145 139 gen_source