Skip to content

Commit

Permalink
AU: 5 updated - GoogleChrome julia tortoisegit vim Waterfox
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
Chocolatey Community committed May 1, 2024
1 parent 6c510a8 commit 10b5472
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion automatic/googlechrome/googlechrome.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>GoogleChrome</id>
<version>124.0.6367.91</version>
<version>124.0.6367.118</version>
<title>Google Chrome</title>
<owners>chocolatey-community</owners>
<authors>Google LLC.</authors>
Expand Down
6 changes: 3 additions & 3 deletions automatic/googlechrome/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 = '124.0.6367.91'
$version = '124.0.6367.118'
if ($version -eq (Get-ChromeVersion)) {
Write-Host "Google Chrome $version is already installed."
return
Expand All @@ -12,8 +12,8 @@ $packageArgs = @{
fileType = 'MSI'
url = 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise.msi'
url64bit = 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise64.msi'
checksum = 'b2296a84aa4d2114bab1d85cde54b7fbe14cd80c6147de0426f14d3eb177f709'
checksum64 = 'a51dfa13c17ffe8e9edbd75e4df659cfd18788ba8251e5133acb1997e943883d'
checksum = 'c7763e2500781b6d82ef4b6bdf2ed4620a28397267da8e1ee0a009e47e0835b3'
checksum64 = '0070916b1dcfc73bb6cf9288d0f0c1d07fc0d97a44f4128e39c5c3dda84a94a8'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = "/quiet /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
Expand Down
4 changes: 2 additions & 2 deletions automatic/julia/julia.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>julia</id>
<version>1.10.2</version>
<version>1.10.3</version>
<title>Julia programming language</title>
<authors>Jeff Bezanson, Alan Edelman, Stefan Karpinski, Viral B. Shah, Julia contributors</authors>
<owners>chocolatey-community, FlorianRappl, drel</owners>
<licenseUrl>https://github.com/JuliaLang/julia/blob/master/LICENSE.md</licenseUrl>
<projectUrl>https://julialang.org</projectUrl>
<releaseNotes>https://github.com/JuliaLang/julia/releases/tag/v1.10.2</releaseNotes>
<releaseNotes>https://github.com/JuliaLang/julia/releases/tag/v1.10.3</releaseNotes>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/julia</packageSourceUrl>
<projectSourceUrl>https://github.com/JuliaLang/julia</projectSourceUrl>
<docsUrl>http://docs.julialang.org/</docsUrl>
Expand Down
8 changes: 4 additions & 4 deletions automatic/julia/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ The installer has been downloaded from the Julia download page on <https://julia
and can be verified like this:

1. Download the following:
32-bit installer: <https://julialang-s3.julialang.org/bin/winnt/x86/1.10/julia-1.10.2-win32.exe>
64-bit installer: <https://julialang-s3.julialang.org/bin/winnt/x64/1.10/julia-1.10.2-win64.exe>
32-bit installer: <https://julialang-s3.julialang.org/bin/winnt/x86/1.10/julia-1.10.3-win32.exe>
64-bit installer: <https://julialang-s3.julialang.org/bin/winnt/x64/1.10/julia-1.10.3-win64.exe>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum32: C71C0C546BB20E6DB98F4D3C8C497313342FB72078A7D23F5528DB3F4BFE09AE
checksum64: 5BA6BAC56753F4FFFE18390721816680F1FDF268B6BAE920179A24FE5D588C4B
checksum32: DD1335E3CA82295531FB09662FB0E11D25B121EAC3CE7EF8B65EB6D46846CE4B
checksum64: 688E746F3D8700BA44A6CBC9CE04CCEAD4CD921F093AF80259E10D0B0C5448C8

File 'LICENSE.txt' is obtained from <https://github.com/JuliaLang/julia/blob/master/LICENSE.md>
6 changes: 3 additions & 3 deletions automatic/julia/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
file = "$toolsDir\julia-1.10.2-win32.exe"
file64 = "$toolsDir\julia-1.10.2-win64.exe"
file = "$toolsDir\julia-1.10.3-win32.exe"
file64 = "$toolsDir\julia-1.10.3-win64.exe"

softwareName = 'Julia*'

silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
validExitCodes= @(0)
}
$packageVersion = "1.10.2"
$packageVersion = "1.10.3"

Install-ChocolateyInstallPackage @packageArgs

Expand Down
8 changes: 4 additions & 4 deletions automatic/tortoisegit/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ in verifying that this package's contents are trustworthy.
The installer has been downloaded from GitHub and can be verified like this:

1. Download the following installers:
32-Bit: <https://download.tortoisegit.org/tgit/2.15.0.0/TortoiseGit-2.15.0.0-32bit.msi>
64-Bit: <https://download.tortoisegit.org/tgit/2.15.0.0/TortoiseGit-2.15.0.0-64bit.msi>
32-Bit: <https://download.tortoisegit.org/tgit/2.16.0.0/TortoiseGit-2.16.0.0-32bit.msi>
64-Bit: <https://download.tortoisegit.org/tgit/2.16.0.0/TortoiseGit-2.16.0.0-64bit.msi>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum32: 1E818FD4793B4E2130C6EC33B8803006B3B9949D8C2B025E8908F2565B257105
checksum64: 481359C8773E1D098B98156FF44F0DD50304E97A866D44E6594C709EC5A61377
checksum32: 23E65D52401020DA01858697672A67AA1F2CC7CF45DE903C723C5884816D2A7D
checksum64: 68AC1BAB587D3B18439BAA1B4D0C05C62CF4E108CE92995137A0DEEF788B90B2

File 'LICENSE.txt' is obtained from <https://github.com/TortoiseGit/TortoiseGit/blob/dbc64c57d98067249d07bdf20411703b25fd889a/src/gpl.txt>
6 changes: 3 additions & 3 deletions automatic/tortoisegit/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

[version] $softwareVersion = '2.15.0.0'
[version] $softwareVersion = '2.16.0.0'
$installedVersion = Get-InstalledVersion

if ($installedVersion -and ($softwareVersion -eq $installedVersion) -and !$env:ChocolateyForce) {
Expand All @@ -14,8 +14,8 @@ else {
PackageName = 'tortoisegit'
FileType = 'msi'
SoftwareName = 'TortoiseGit*'
File = "$toolsPath\TortoiseGit-2.15.0.0-32bit.msi"
File64 = "$toolsPath\TortoiseGit-2.15.0.0-64bit.msi"
File = "$toolsPath\TortoiseGit-2.16.0.0-32bit.msi"
File64 = "$toolsPath\TortoiseGit-2.16.0.0-64bit.msi"
SilentArgs = '/quiet /qn /norestart REBOOT=ReallySuppress'
ValidExitCodes = @(0, 3010)
}
Expand Down
4 changes: 2 additions & 2 deletions automatic/tortoisegit/tortoisegit.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>tortoisegit</id>
<title>TortoiseGit</title>
<version>2.15.0.0</version>
<version>2.16.0.0</version>
<authors>TortoiseGit and contributors</authors>
<owners>chocolatey-community, dtgm</owners>
<summary>TortoiseGit provides overlay icons showing the file status, a powerful context menu for Git and much more!</summary>
Expand Down Expand Up @@ -60,7 +60,7 @@ TortoiseGit provides a flexible mechanism to integrate any web based bug trackin
<copyright>© TortoiseGit</copyright>
<licenseUrl>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>https://tortoisegit.org/docs/releasenotes/#Release_2.15.0.0</releaseNotes>
<releaseNotes>https://tortoisegit.org/docs/releasenotes/#Release_2.16.0.0</releaseNotes>
<dependencies>
<dependency id="vcredist2015" version="14.0.24215.20170201" /> <!-- https://github.com/chocolatey/chocolatey-coreteampackages/issues/807 -->
</dependencies>
Expand Down
8 changes: 4 additions & 4 deletions automatic/vim/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ in verifying that this package's contents are trustworthy.
The embedded software have been downloaded from GitHub and can be verified like this:

1. Download the following zips:
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v9.1.0381/gvim_9.1.0381_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v9.1.0381/gvim_9.1.0381_x64.zip>
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v9.1.0384/gvim_9.1.0384_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v9.1.0384/gvim_9.1.0384_x64.zip>
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: BC0FEFB52206802D216A4C256E30BE637340CF81B011B9CBA0A38F202C4A7D59
checksum64: ACC670A895DA405AB73441171325DAFBA80811EBD89A4DA1A7DD47355269B531
checksum32: 7CF170F9C5D838768EA27FCE7C1172A495F1B2F16233BED34B1719210DA84B13
checksum64: C8B89741CB7DCA8F2C9854368D4CF01E659679A48E7B1BF3A260409CBC683A67
4 changes: 2 additions & 2 deletions automatic/vim/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ $installDir = Get-InstallDir
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $installDir
file = "$toolsDir\gvim_9.1.0381_x86.zip"
file64 = "$toolsDir\gvim_9.1.0381_x64.zip"
file = "$toolsDir\gvim_9.1.0384_x86.zip"
file64 = "$toolsDir\gvim_9.1.0384_x64.zip"
}

$installArgs = @{
Expand Down
2 changes: 1 addition & 1 deletion automatic/vim/vim.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>vim</id>
<title>Vim</title>
<version>9.1.0381</version>
<version>9.1.0384</version>
<authors>Bram Moolenaar, Vim Community</authors>
<owners>chocolatey-community, Rob Reynolds</owners>
<summary>Vim is an advanced text editor that seeks to provide the power of the de-facto Unix editor 'Vi', with a more complete feature set. It's useful whether you're already using vi or using a different editor.</summary>
Expand Down
2 changes: 1 addition & 1 deletion automatic/waterfox/waterfox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"current": "24046.0.13",
"current": "24056.0.13",
"classic": "2022.11"
}
2 changes: 1 addition & 1 deletion automatic/waterfox/waterfox.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>Waterfox</id>
<version>24046.0.13</version>
<version>24056.0.13</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/waterfox</packageSourceUrl>
<owners>chocolatey-community,tonigellida,admiringworm</owners>
<title>Waterfox</title>
Expand Down

0 comments on commit 10b5472

Please sign in to comment.