Skip to content

Commit

Permalink
AU: 4 updated - kubernetes-kompose sysinternals thunderbird Waterfox
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Sep 29, 2023
1 parent 2dbedd0 commit d2717cf
Show file tree
Hide file tree
Showing 11 changed files with 148 additions and 148 deletions.
2 changes: 1 addition & 1 deletion automatic/kubernetes-kompose/kubernetes-kompose.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>kubernetes-kompose</id>
<version>1.30.0</version>
<version>1.31.0</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/kubernetes-kompose</packageSourceUrl>
<owners>chocolatey-community,Andrei Bejenaru</owners>
<title>Kompose: Go from Docker Compose to Kubernetes</title>
Expand Down
6 changes: 3 additions & 3 deletions automatic/kubernetes-kompose/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The embedded software has been downloaded from the listed download
location on <https://github.com/kubernetes/kompose/releases/tag/v1.30.0>
location on <https://github.com/kubernetes/kompose/releases/tag/v1.31.0>
and can be verified by doing the following:

1. Download the following:
software: <https://github.com/kubernetes/kompose/releases/download/v1.30.0/kompose-windows-amd64.exe>
software: <https://github.com/kubernetes/kompose/releases/download/v1.31.0/kompose-windows-amd64.exe>

2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
Expand All @@ -17,6 +17,6 @@ and can be verified by doing the following:
3. The checksums should match the following:

checksum type:
checksum: A31EA0484DAE21A46049B2494D4D1AEC1B486297EE989451B08A0F8C2C9946A4
checksum: B1AA6ABA5BAF121793DE31388761502FD5FF35E0F15B5EF873B2A971CB498D6D

The file 'LICENSE.txt' has been obtained from <https://github.com/kubernetes/kompose/blob/34d72c757906dd05499fedbe214850b41ea712b1/LICENSE>
2 changes: 1 addition & 1 deletion automatic/sysinternals/sysinternals.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>sysinternals</id>
<title>Sysinternals</title>
<version>2023.7.26</version>
<version>2023.9.29</version>
<authors>Mark Russinovich, Bryce Cogswell</authors>
<owners>chocolatey-community, Rob Reynolds</owners>
<summary>Sysinternals - utilities to help you manage, troubleshoot and diagnose your Windows systems and applications.</summary>
Expand Down
4 changes: 2 additions & 2 deletions automatic/sysinternals/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Write-Host "Sysinternals Suite is going to be installed in '$installDir'"
$packageArgs = @{
packageName = 'sysinternals'
url = 'https://download.sysinternals.com/files/SysinternalsSuite.zip'
checksum = '1a07dc0f192efcccbf5dce3294254d04d7c7f9a94752ee07d63606606ef9ebbf'
checksum = 'bd19e61ee6eff23f7e6add39c1ffe2a338914e8022811d8c80571d7291ae1ea4'
checksumType = 'sha256'
unzipLocation = $installDir
}
Expand All @@ -18,7 +18,7 @@ Accept-Eula
if ($installDir -ne $toolsPath) { Install-ChocolateyPath $installDir }
if (Is-NanoServer) {
$packageArgs.url = 'https://download.sysinternals.com/files/SysinternalsSuite-Nano.zip'
$packageArgs.checksum = '3c09da185f84c958e21791e5fb14dfb73079b7e908b1471cc697f50dd708c69e'
$packageArgs.checksum = '2521303b8149a1bc3afdd7971c0cd4bb5d15237097d5abf02c9888a57f112f26'
}

$old_path = 'c:\sysinternals'
Expand Down
2 changes: 1 addition & 1 deletion automatic/thunderbird/thunderbird.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>thunderbird</id>
<version>115.3.0</version>
<version>115.3.1</version>
<title>Mozilla Thunderbird</title>
<owners>chocolatey-community</owners>
<authors>Mozilla</authors>
Expand Down
264 changes: 132 additions & 132 deletions automatic/thunderbird/tools/LanguageChecksums.csv

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions automatic/thunderbird/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ $sa += if ($pp.RemoveDistributionDir) { " /RemoveDistributionDir=true" }

$sa += if ($pp.NoAutoUpdate) { " /MaintenanceService=false" }

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '115.3.0')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '115.3.1')
if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {
Write-Host "Thunderbird is already installed. No need to download and re-install."
return
Expand Down Expand Up @@ -69,7 +69,7 @@ $packageArgs = @{

Checksum = $checksums.Win32
ChecksumType = 'sha512'
Url = "https://download.mozilla.org/?product=thunderbird-115.3.0-SSL&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=thunderbird-115.3.1-SSL&os=win&lang=${locale}"

silentArgs = "$sa /S"
validExitCodes = @(0)
Expand All @@ -78,7 +78,7 @@ $packageArgs = @{
if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
$packageArgs.Checksum64 = $checksums.Win64
$packageArgs.ChecksumType64 = 'sha512'
$packageArgs.Url64 = "https://download.mozilla.org/?product=thunderbird-115.3.0-SSL&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=thunderbird-115.3.1-SSL&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
Expand Down
4 changes: 2 additions & 2 deletions automatic/waterfox/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ in verifying that this package's contents are trustworthy.
The installer has been downloaded from their official download link listed on <>
and can be verified like this:

1. Download <https://cdn1.waterfox.net/waterfox/releases/G6.0.1/WINNT_x86_64/Waterfox%20Setup%20G6.0.1.exe>
1. Download <https://cdn1.waterfox.net/waterfox/releases/G6.0.2/WINNT_x86_64/Waterfox%20Setup%20G6.0.2.exe>
2. Then use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum: 2025EA03C48AFAD4582AB7B2D39F413AFF2BF8B431923DB9321EC1862ED124CD
checksum: EA3DD7C87A2C0AFE7A3E25CCFB2B4331D67C35CD986B0691586EEA7ECFF3005E

File 'LICENSE.md' is obtained from <https://github.com/MrAlex94/Waterfox/blob/1bc2fb60abf0fa173b69ca94f660115d76f09f4f/LICENSE>
2 changes: 1 addition & 1 deletion automatic/waterfox/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ $packageArgs = @{
packageName = 'Waterfox'
fileType = 'exe'
softwareName = 'Waterfox*'
file = "$toolsDir\Waterfox Setup G6.0.1_x64.exe"
file = "$toolsDir\Waterfox Setup G6.0.2_x64.exe"
silentArgs = "/S"
validExitCodes= @(0)
}
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": "23096.0.1",
"current": "23096.0.2",
"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>23096.0.1</version>
<version>23096.0.2</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 d2717cf

Please sign in to comment.