Skip to content

Commit

Permalink
AU: 1 updated - SQLite
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jun 13, 2024
1 parent 22dc35d commit e90e5a0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
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/2023/sqlite-dll-win32-x86-3430200.zip
x64: https://sqlite.org/2023/sqlite-dll-win64-x64-3430200.zip
Toolsx64: https://sqlite.org/2023/sqlite-tools-win32-x86-3430200.zip
x32: https://sqlite.org/2024/sqlite-dll-win-x86-3460000.zip
x64: https://sqlite.org/2024/sqlite-dll-win-x64-3460000.zip
Toolsx64: https://sqlite.org/2024/sqlite-tools-win-x64-3460000.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: 0B64B189CB41D065F9355DE93CE2F41C40865429801BEC3A555B30ACA839058C
checksum64: FA8981F39524F25FCC546C45A87FF4C1EEFD81FDC22F55A9BBE249155CDAF62E
checksumTools64: FAE9EFCCF4469CA69BE5D418FC088593CDB86E07A1B211BDB85463591A923B02
checksum32: 1012DFBFB3E37B9631FA312F7ED6B4BD1C187AC28DB724C29844BE9C4607CC52
checksum64: 87C8394712418DCC4A608FDC34C0A23A89A41E626B9E3294C0978BB2BDA0A0D1
checksumTools64: ADBEFDA5F92D471CBDE9CB3232775485BD1BAD61BA97376C9661C37DFD6AD027

File 'license.txt' is obtained from the following URL (and converted to markdown):
http://www.sqlite.org/copyright.html
3 changes: 1 addition & 2 deletions 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.43.2</version>
<version>3.46.0</version>
<title>SQLite</title>
<owners>chocolatey-community</owners>
<authors>D. Richard Hipp, SQLite contributors</authors>
Expand Down Expand Up @@ -47,7 +47,6 @@ Example: `choco install sqlite --params "/NoTools"`
choco install sqlite --version='3.43.2'
choco pin add --name='sqlite' --version='3.43.2'
```
]]></description>
<summary>A DLL for the SQLite SQL database engine installed in your user path.</summary>
<tags>sql sqlite db database embedded foss cross-platform</tags>
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-3430200.zip"
FileFullPath64 = "$toolsDir\sqlite-dll-win-x64-3430200.zip"
FileFullPath = "$toolsDir\sqlite-dll-win-x86-3460000.zip"
FileFullPath64 = "$toolsDir\sqlite-dll-win-x64-3460000.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-x86-3430200.zip"
$packageArgs.FileFullPath64 = "$toolsDir\sqlite-tools-win-x64-3460000.zip"
Get-ChocolateyUnzip @packageArgs
}

Expand Down

0 comments on commit e90e5a0

Please sign in to comment.