From: Martin v. Löwis Date: Sat, 3 Aug 2013 18:24:00 +0000 (+0200) Subject: Issue #16067: Add description into MSI file to replace installer's temporary name. X-Git-Tag: v2.7.6rc1~260 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d5375dfb15eb369eb2a660c55a450fa3ba30fe66;p=thirdparty%2FPython%2Fcpython.git Issue #16067: Add description into MSI file to replace installer's temporary name. --- diff --git a/Misc/NEWS b/Misc/NEWS index ef614c7ce6b0..64668dd4ea71 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -98,6 +98,8 @@ Tools/Demos Build ----- +- Issue #16067: Add description into MSI file to replace installer's temporary name. + - Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn. diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index d2caf345b1da..2f0d9637140e 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -1392,7 +1392,10 @@ merge(msiname, "SharedCRT", "TARGETDIR", modules) # certname (from config.py) should be (a substring of) # the certificate subject, e.g. "Python Software Foundation" if certname: - os.system('signtool sign /n "%s" /t http://timestamp.verisign.com/scripts/timestamp.dll %s' % (certname, msiname)) + os.system('signtool sign /n "%s" ' + '/t http://timestamp.verisign.com/scripts/timestamp.dll ' + '/d "Python %s" ' + '%s' % (certname, full_current_version, msiname)) if pdbzip: build_pdbzip()