Skip to content

Commit

Permalink
AU: 3 updated - alldup SQLite thunderbird
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Dec 2, 2020
1 parent d13182b commit 57a8b3c
Show file tree
Hide file tree
Showing 7 changed files with 145 additions and 145 deletions.
2 changes: 1 addition & 1 deletion automatic/alldup/alldup.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>alldup</id>
<version>4.4.40</version>
<version>4.4.42</version>
<title>AllDup</title>
<owners>chocolatey-community</owners>
<authors>Michael Thummerer Software Design</authors>
Expand Down
2 changes: 1 addition & 1 deletion automatic/alldup/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ Package can be verified like this:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum32: 178403392A1A1B2893F6368CCF96966937C3A5AB09A3C3029E20401DADD7AB34
checksum32: C2B7DC41D583DBF434AA92751BD12B5CA737ADB868306596C4BF5F623BF22A75

File 'Redistribution.pdf' is from personal email communication
12 changes: 6 additions & 6 deletions automatic/sqlite/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ Package can be verified like this:

1. Go to

x32: https://sqlite.org/2020/sqlite-dll-win32-x86-3330000.zip
x64: https://sqlite.org/2020/sqlite-dll-win64-x64-3330000.zip
Toolsx32: https://sqlite.org/2020/sqlite-tools-win32-x86-3330000.zip
x32: https://sqlite.org/2020/sqlite-dll-win32-x86-3340000.zip
x64: https://sqlite.org/2020/sqlite-dll-win64-x64-3340000.zip
Toolsx32: https://sqlite.org/2020/sqlite-tools-win32-x86-3340000.zip

to download the files.

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: 11BA415B7E3B91C4587DC73BEC82CAF92F62724D0E49782151E7764ACCA43CB5
checksum64: EB9901DC93B0537266E57F631717F0889B05C5A8F76A6A7565BD1AF2D7001316
checksumTools32: 1D71D267882E3565CECED0E2516BB7804D0C2760D821ED8285DBB92449292875
checksum32: B736637C2542D3A866291DECAE85F9DD2165B4B548397DCB3856316E3230F252
checksum64: C262EA98880C83A762A783E641AA5B076C54151085BA7C3177AA095D42A881D0
checksumTools32: EF3E474D574CE85C57D84B00CB06223E10D1C965C07973E7ED262871B3D0DECF

File 'license.txt' is obtained from the following URL (and converted to markdown):
http://www.sqlite.org/copyright.html
2 changes: 1 addition & 1 deletion automatic/sqlite/sqlite.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>SQLite</id>
<version>3.33.0</version>
<version>3.34.0</version>
<title>SQLite</title>
<owners>chocolatey-community</owners>
<authors>D. Richard Hipp, SQLite contributors</authors>
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>78.5.0</version>
<version>78.5.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 @@ -11,7 +11,7 @@ $softwareName = 'Mozilla Thunderbird'

if (Get-32bitOnlyInstalled -product $softwareName) { Write-Host 'Detected the 32-bit version of Thunderbird on a 64-bit system. This package will continue to install the 32-bit version of Thunderbird unless the 32-bit version is uninstalled.' }

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

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

silentArgs = '-ms'
validExitCodes = @(0)
Expand All @@ -44,7 +44,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-78.5.0-SSL&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=thunderbird-78.5.1-SSL&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
Expand Down

0 comments on commit 57a8b3c

Please sign in to comment.