mirror of
https://github.com/ScoopInstaller/Main.git
synced 2025-11-01 06:11:20 +00:00
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:
parent
1896b8c839
commit
6385da9783
@ -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,11 +41,9 @@
|
||||
],
|
||||
"hash": [
|
||||
"md5:0d949bdfdbd0c8c66107a980a95efd85",
|
||||
"5d9d7a604c057e67973e1d4b3b488ae20a0e5ee5496d03b5cf091410e33e39ed",
|
||||
"c2611c8010979a47cdeea1af17d5061d8df40c5356fd8c2f3ba9492d516a99d1",
|
||||
"d9309423b693ed63aea6b1fbfc0c34f16842cdca22a1b3edef283b87567a53b9"
|
||||
]
|
||||
}
|
||||
},
|
||||
],
|
||||
"pre_install": [
|
||||
"$py_root = \"$dir\".Replace('\\', '\\\\')",
|
||||
"'install-pep-514.reg', 'uninstall-pep-514.reg' | ForEach-Object {",
|
||||
@ -37,12 +51,17 @@
|
||||
" $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",
|
||||
"}"
|
||||
],
|
||||
]
|
||||
}
|
||||
},
|
||||
"installer": {
|
||||
"script": [
|
||||
"Expand-DarkArchive \"$dir\\setup.exe\" \"$dir\\_tmp\"",
|
||||
|
||||
@ -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"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user