Skip to content

Commit

Permalink
AU: 2 updated - SQLite vim
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
Chocolatey Community committed Dec 8, 2024
1 parent b77ea16 commit 7015380
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 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/2024/sqlite-dll-win-x86-3470100.zip
x64: https://sqlite.org/2024/sqlite-dll-win-x64-3470100.zip
Toolsx64: https://sqlite.org/2024/sqlite-tools-win-x64-3470100.zip
x32: https://sqlite.org/2024/sqlite-dll-win-x86-3470200.zip
x64: https://sqlite.org/2024/sqlite-dll-win-x64-3470200.zip
Toolsx64: https://sqlite.org/2024/sqlite-tools-win-x64-3470200.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: 717277BF28598EA22BDD8D4FFFFED8DB556627A95845299BA3B8D581318FD332
checksum64: 076495E16F869E6F795B3AF1074F54067F535C7A17FA0A8131447907F6409272
checksumTools64: 76D0B44CDB425B51F5D4DC9A959D4025C76C6DE94D9745716A9578D778AD27E5
checksum32: E8CA0C03602BF88511A27957EFF4E1B5BBDE0EB8563920199D454735BF9C0F9C
checksum64: 2AB315502C66E5E3C31ED6B38B20487D98514EA0EE69FE51309F108AF822A27D
checksumTools64: 8C7FFFBF4EEC1F43E63153CCA6DEB018E4360D4D6B0D99BBDD2A541C53B7FA1C

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.47.1</version>
<version>3.47.2</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-3470100.zip"
FileFullPath64 = "$toolsDir\sqlite-dll-win-x64-3470100.zip"
FileFullPath = "$toolsDir\sqlite-dll-win-x86-3470200.zip"
FileFullPath64 = "$toolsDir\sqlite-dll-win-x64-3470200.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-3470100.zip"
$packageArgs.FileFullPath64 = "$toolsDir\sqlite-tools-win-x64-3470200.zip"
Get-ChocolateyUnzip @packageArgs
}

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.0909/gvim_9.1.0909_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v9.1.0909/gvim_9.1.0909_x64.zip>
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v9.1.0912/gvim_9.1.0912_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v9.1.0912/gvim_9.1.0912_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: 1D2CB7CCA1C6151C53E6F71F73CD68FC095B4ABFD2E64DFDE6475FA6CAF7FCEF
checksum64: AC3E8C7C9EA08900A12D7195C0FB7EDD3339C6CB75475C7DBF53C671D6EFC8DA
checksum32: 80FB866210AA4DDB233968C6E1B5E6D7869A605942333BE37FE9F1D5939C174B
checksum64: 703D7892808203B94DB1613422CBA2F5AC4E5DF47056157C955EA905D50CECEA
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.0909_x86.zip"
file64 = "$toolsDir\gvim_9.1.0909_x64.zip"
file = "$toolsDir\gvim_9.1.0912_x86.zip"
file64 = "$toolsDir\gvim_9.1.0912_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.0909</version>
<version>9.1.0912</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

0 comments on commit 7015380

Please sign in to comment.