Skip to content

Commit

Permalink
AU: 2 updated - rufus SQLite
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
Chocolatey Community committed Oct 21, 2024
1 parent 9166ce2 commit e75d705
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions automatic/rufus/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ Package can be verified like this:

1. Go to

x32: https://github.com/pbatard/rufus/releases/download/v4.5/rufus-4.5.exe
x32: https://github.com/pbatard/rufus/releases/download/v4.6/rufus-4.6.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: C6E6CDBA209F899E5087F1A1A4BABC759414B4A687B60BA4BCE62B6B37E8E82B
checksum32: 8279696C1D78B14618500E9135886A3667B9DECC65946F3729002E4BFDBB20AB


File 'license.txt' is obtained from:
Expand Down
2 changes: 1 addition & 1 deletion automatic/rufus/rufus.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>rufus</id>
<version>4.5</version>
<version>4.6</version>
<title>Rufus</title>
<authors>Pete "Akeo" Batard</authors>
<owners>chocolatey-community, dtgm</owners>
Expand Down
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/2024/sqlite-dll-win-x86-3460100.zip
x64: https://sqlite.org/2024/sqlite-dll-win-x64-3460100.zip
Toolsx64: https://sqlite.org/2024/sqlite-tools-win-x64-3460100.zip
x32: https://sqlite.org/2024/sqlite-dll-win-x86-3470000.zip
x64: https://sqlite.org/2024/sqlite-dll-win-x64-3470000.zip
Toolsx64: https://sqlite.org/2024/sqlite-tools-win-x64-3470000.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: C531C7AD3C3BC50B0F4DB822548F8F16309A3072CBBBF31B322CC0EA1EF963C6
checksum64: 300CB2918946F42A1A2F7F31A8DD89EDC202570E4E49D21E13D33ECDF80A6B67
checksumTools64: C86C0FE0B0B46CFAAC40812A26C958BBF2378B6EF9D784D6354D9F5BD66E566B
checksum32: 8C56653BBDF7B615C21E13EB066E1777442D0ED9C626FCE1F3A9704B20BC2039
checksum64: 8C592F21392824627A45809912739AA2B3F87AF50BC2FF055D4E89DCA33E5699
checksumTools64: 6E06DCC125692DA340EAB1F5109BAC1B557492B2A5CF11AE79A4EA7D581B4CF9

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.46.1</version>
<version>3.47.0</version>
<title>SQLite</title>
<owners>chocolatey-community</owners>
<authors>D. Richard Hipp, SQLite contributors</authors>
Expand Down
6 changes: 3 additions & 3 deletions automatic/sqlite/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ $toolsDir = Split-Path $MyInvocation.MyCommand.Definition

$packageArgs = @{
PackageName = 'sqlite'
FileFullPath = "$toolsDir\sqlite-dll-win-x86-3460100.zip"
FileFullPath64 = "$toolsDir\sqlite-dll-win-x64-3460100.zip"
FileFullPath = "$toolsDir\sqlite-dll-win-x86-3470000.zip"
FileFullPath64 = "$toolsDir\sqlite-dll-win-x64-3470000.zip"
Destination = $toolsDir
}
Get-ChildItem $toolsDir\* | Where-Object { $_.PSISContainer } | Remove-Item -Recurse -Force #remove older package dirs
Expand All @@ -17,7 +17,7 @@ if (!$pp.NoTools) {
Write-Error -Message "The 32-bit version of sqlite tools is not available after version 3.43.2" -Category ResourceUnavailable
}
Write-Host "Installing tools"
$packageArgs.FileFullPath64 = "$toolsDir\sqlite-tools-win-x64-3460100.zip"
$packageArgs.FileFullPath64 = "$toolsDir\sqlite-tools-win-x64-3470000.zip"
Get-ChocolateyUnzip @packageArgs
}

Expand Down

0 comments on commit e75d705

Please sign in to comment.