python: Full PEP514 registration (#2688)

* python: Update registration

* python: Update 'pre_instasll' for PEP514

* python: Update hash (install-pep-514.reg)
This commit is contained in:
HUMORCE 2021-09-18 20:03:06 +08:00 committed by GitHub
parent 1896b8c839
commit 6385da9783
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 43 additions and 16 deletions

View File

@ -13,8 +13,24 @@
],
"hash": [
"md5:cc3eabc1f9d6c703d1d2a4e7c041bc1d",
"5d9d7a604c057e67973e1d4b3b488ae20a0e5ee5496d03b5cf091410e33e39ed",
"c2611c8010979a47cdeea1af17d5061d8df40c5356fd8c2f3ba9492d516a99d1",
"d9309423b693ed63aea6b1fbfc0c34f16842cdca22a1b3edef283b87567a53b9"
],
"pre_install": [
"$py_root = \"$dir\".Replace('\\', '\\\\')",
"'install-pep-514.reg', 'uninstall-pep-514.reg' | ForEach-Object {",
" $py_version = ($version -split '\\.')[0..1] -join '.'",
" $content = Get-Content \"$dir\\$_\"",
" $content = $content.Replace('$py_root', $py_root)",
" $content = $content.Replace('$py_version', $py_version)",
" $content = $content.Replace('$py_fullversion', $version)",
" $content = $content.Replace('$py_cleanVersion', $version -replace '\\.')",
" $content = $content.Replace('$py_arch', \"64\")",
" if ($global) {",
" $content = $content.Replace('HKEY_CURRENT_USER', 'HKEY_LOCAL_MACHINE')",
" }",
" Set-Content \"$dir\\$_\" $content -Encoding Ascii",
"}"
]
},
"32bit": {
@ -25,24 +41,27 @@
],
"hash": [
"md5:0d949bdfdbd0c8c66107a980a95efd85",
"5d9d7a604c057e67973e1d4b3b488ae20a0e5ee5496d03b5cf091410e33e39ed",
"c2611c8010979a47cdeea1af17d5061d8df40c5356fd8c2f3ba9492d516a99d1",
"d9309423b693ed63aea6b1fbfc0c34f16842cdca22a1b3edef283b87567a53b9"
],
"pre_install": [
"$py_root = \"$dir\".Replace('\\', '\\\\')",
"'install-pep-514.reg', 'uninstall-pep-514.reg' | ForEach-Object {",
" $py_version = ($version -split '\\.')[0..1] -join '.'",
" $content = Get-Content \"$dir\\$_\"",
" $content = $content.Replace('$py_root', $py_root)",
" $content = $content.Replace('$py_version', $py_version)",
" $content = $content.Replace('$py_fullversion', $version)",
" $content = $content.Replace('$py_cleanVersion', $version -replace '\\.')",
" $content = $content.Replace('$py_arch', \"32\")",
" if ($global) {",
" $content = $content.Replace('HKEY_CURRENT_USER', 'HKEY_LOCAL_MACHINE')",
" }",
" Set-Content \"$dir\\$_\" $content -Encoding Ascii",
"}"
]
}
},
"pre_install": [
"$py_root = \"$dir\".Replace('\\', '\\\\')",
"'install-pep-514.reg', 'uninstall-pep-514.reg' | ForEach-Object {",
" $py_version = ($version -split '\\.')[0..1] -join '.'",
" $content = Get-Content \"$dir\\$_\"",
" $content = $content.Replace('$py_root', $py_root)",
" $content = $content.Replace('$py_version', $py_version)",
" if ($global) {",
" $content = $content.Replace('HKEY_CURRENT_USER', 'HKEY_LOCAL_MACHINE')",
" }",
" Set-Content \"$dir\\$_\" $content -Encoding Ascii",
"}"
],
"installer": {
"script": [
"Expand-DarkArchive \"$dir\\setup.exe\" \"$dir\\_tmp\"",

View File

@ -5,7 +5,15 @@ Windows Registry Editor Version 5.00
"SupportUrl"="https://www.python.org/"
[HKEY_CURRENT_USER\Software\Python\PythonCore\$py_version]
"DisplayName"="Python $py_version"
"DisplayName"="Python $py_version ($py_arch-bit)"
"SupportUrl"="https://www.python.org/"
"Version"="$py_fullversion"
"SysVersion"="$py_version"
"SysArchitecture"="$py_archbit"
[HKEY_CURRENT_USER\Software\Python\PythonCore\$py_version\Help\Main Python Documentation]
@="$py_root\\Doc\\python$py_cleanVersion.chm"
"DisplayName"="Python $py_fullversion Documentation"
[HKEY_CURRENT_USER\Software\Python\PythonCore\$py_version\InstallPath]
@="$py_root"