aboutsummaryrefslogtreecommitdiff
path: root/pdebuild-user-mode-linux
diff options
context:
space:
mode:
authordancer <dancer>2005-04-16 04:39:37 +0000
committerdancer <dancer>2005-04-16 04:39:37 +0000
commit0c9b1945481d328340b962439c7fbaccab984c3a (patch)
tree813b3f62574a60337a81100f70e6682b55a0a8ce /pdebuild-user-mode-linux
parent6dd6f97b587dd8302962bf320b44e365f27aa4e7 (diff)
downloadpbuilder-0c9b1945481d328340b962439c7fbaccab984c3a.tar
pbuilder-0c9b1945481d328340b962439c7fbaccab984c3a.tar.gz
--- ChangeLog 11 Apr 2005 06:24:29 -0000 1.293
+++ ChangeLog 16 Apr 2005 04:39:27 -0000 @@ -1,3 +1,20 @@ +2005-04-16 Junichi Uekawa <dancer@debian.org> + + * pbuilder-modules: document signing-related options in pbuilder-options. + + * pdebuild-user-mode-linux: + * pdebuild: implement keyid specification. + + * Documentation/pbuilder-doc.xml: add document on using auto-debsign + and add a FAQ entry for source.changes file. + + * pbuilder-checkparams: use --debsign-k option + to specify DEBSIGN_KEYID + + * pdebuild.1: add --debsign-k option + + * pdebuild-user-mode-linux.1: add --debsign-k option +
Diffstat (limited to 'pdebuild-user-mode-linux')
-rw-r--r--pdebuild-user-mode-linux8
1 files changed, 7 insertions, 1 deletions
diff --git a/pdebuild-user-mode-linux b/pdebuild-user-mode-linux
index 3fc7934..b08f8b1 100644
--- a/pdebuild-user-mode-linux
+++ b/pdebuild-user-mode-linux
@@ -49,6 +49,12 @@ else
pbuilder-user-mode-linux build "$@" --buildresult "${UML_BUILDRESULT}" --debbuildopts "${DEBBUILDOPTS}" ../"${PKG_SOURCENAME}_${PKG_VERSION}".dsc
fi
+# do signing with optional key specifier
if [ "${AUTO_DEBSIGN}" = "yes" ]; then
- debsign "${UML_BUILDRESULT}/${PKG_SOURCENAME}_${PKG_VERSION}_${ARCHITECTURE}.changes"
+ unset DEBSIGN_PARAM || true
+ if [ -n "${DEBSIGN_KEYID}" ]; then
+ DEBSIGN_PARAM[1]="-k${DEBSIGN_KEYID}"
+ fi
+ DEBSIGN_PARAM[2]="${UML_BUILDRESULT}/${PKG_SOURCENAME}_${PKG_VERSION}_${ARCHITECTURE}.changes"
+ debsign "${DEBSIGN_PARAM[@]}"
fi