Skip to content

Commit

Permalink
AU: 3 updated - googlechromebeta python python3
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Oct 5, 2020
1 parent 68a5610 commit 39d5cab
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion automatic/googlechromebeta/googlechromebeta.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>googlechromebeta</id>
<version>86.0.4240.68-beta</version>
<version>86.0.4240.72-beta</version>
<title>Google Chrome Beta</title>
<owners>chocolatey-community,nsleigh</owners>
<authors>Google Inc.</authors>
Expand Down
6 changes: 3 additions & 3 deletions automatic/googlechromebeta/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$version = '86.0.4240.68-beta'
$version = '86.0.4240.72-beta'
if ($version -eq (Get-ChromeBetaVersion)) {
Write-Host "Google Chrome Beta $version is already installed."
return
Expand All @@ -12,8 +12,8 @@ $packageArgs = @{
fileType = 'MSI'
url = 'https://dl.google.com/tag/s/dl/chrome/install/beta/googlechromebetastandaloneenterprise.msi'
url64bit = 'https://dl.google.com/tag/s/dl/chrome/install/beta/googlechromebetastandaloneenterprise64.msi'
checksum = 'cf130e29109f8a8f64efd90a6352f2542b0bb128a466bbe8aef54cb0a0f39d32'
checksum64 = 'd0266d703739613257bb3e688595d23bac3538c90d938b1a0d9e001ecd6b2355'
checksum = '1821b68cb400c001c6a75c72ab14c9c48fc8e9eca42fa02f8d462e4deb892ec3'
checksum64 = 'e46c64f09aa342524e0a7543bbdf9d296ee8310816e9ecb28cab1c353da0f052'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = "/quiet /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
Expand Down
2 changes: 1 addition & 1 deletion automatic/python/python.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"3.6": "3.6.8.20200110",
"3.7": "3.7.9",
"3.8": "3.8.6",
"3.9": "3.9.0-rc2"
"3.9": "3.9.0"
}
4 changes: 2 additions & 2 deletions automatic/python/python.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>python</id>
<version>3.8.6</version>
<version>3.9.0</version>
<title>Python</title>
<owners>chocolatey-community</owners>
<authors>Python Software Foundation</authors>
Expand All @@ -22,7 +22,7 @@
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-coreteampackages/tree/master/automatic/python</packageSourceUrl>
<projectSourceUrl>https://www.python.org/downloads/source</projectSourceUrl>
<dependencies>
<dependency id="python3" version="[3.8.6]" />
<dependency id="python3" version="[3.9.0]" />
</dependencies>
<licenseUrl>https://www.python.org/download/releases/3.4.0/license</licenseUrl>
</metadata>
Expand Down
8 changes: 4 additions & 4 deletions automatic/python3/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ Package can be verified like this:

1. Go to

x32: https://www.python.org/ftp/python/3.8.6/python-3.8.6.exe
x64: https://www.python.org/ftp/python/3.8.6/python-3.8.6-amd64.exe
x32: https://www.python.org/ftp/python/3.9.0/python-3.9.0.exe
x64: https://www.python.org/ftp/python/3.9.0/python-3.9.0-amd64.exe

to download the installer.

2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum32: 287D5DF01FF22FF09E6A487AE018603EE19EADE71D462EC703850C96F1D5E8A0
checksum64: 328A257F189CB500606BB26AB0FBDD298ED0E05D8C36540A322A1744F489A0A0
checksum32: A4C65917F4225D1543959342F0615C813A4E9E7FF1137C4394FF6A5290AC1913
checksum64: FD2E2C6612D43BB6B213B72FC53F07D73D99059FA72C96E44BDE12E7815073AE

File 'license.txt' is obtained from:
https://www.python.org/download/releases/3.4.0/license/
2 changes: 1 addition & 1 deletion automatic/python3/python3.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"3.6": "3.6.8-rc1",
"3.7": "3.7.9",
"3.8": "3.8.6",
"3.9": "3.9.0-rc2"
"3.9": "3.9.0"
}
2 changes: 1 addition & 1 deletion automatic/python3/python3.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>python3</id>
<version>3.8.6</version>
<version>3.9.0</version>
<title>Python 3.x</title>
<owners>chocolatey-community</owners>
<authors>Python Software Foundation</authors>
Expand Down
4 changes: 2 additions & 2 deletions automatic/python3/tools/helpers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ function Install-Python {
$packageArgs = @{
packageName = 'python3'
fileType = 'exe'
file = "$toolsPath\python-3.8.6.exe"
file = "$toolsPath\python-3.9.0.exe"
silentArgs = '/quiet InstallAllUsers=1 PrependPath={0} TargetDir="{1}"' -f $prependPath, $installDir
validExitCodes = @(0)
softwareName = 'Python 3*'
}

if (!$only32Bit) {
$packageArgs['file64'] = "$toolsPath\python-3.8.6-amd64.exe"
$packageArgs['file64'] = "$toolsPath\python-3.9.0-amd64.exe"
}
else {
$packageArgs['packageName'] = '32-bit python3'
Expand Down

0 comments on commit 39d5cab

Please sign in to comment.