Skip to content

Commit

Permalink
AU: 2 updated - chromium curl
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed May 23, 2023
1 parent d8bcfd0 commit bdc1757
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"snapshots": "115.0.5788.0-snapshots",
"snapshots": "115.0.5789.0-snapshots",
"stable": "113.0.5672.127"
}
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.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>chromium</id>
<version>115.0.5788.0-snapshots</version>
<version>115.0.5789.0-snapshots</version>
<title>Chromium Snapshots</title>
<owners>chocolatey-community</owners>
<authors>The Chromium Authors</authors>
Expand Down
8 changes: 4 additions & 4 deletions automatic/chromium/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <https://github.com/henrypp/chromium/releases/> (the listed mirrors
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/1147448/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1147454/mini_installer.exe>
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/1147730/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1147719/mini_installer.exe>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: sha256
checksum32: 47231266BB211A01303D78AEB7472B3E78492DE01FC3B933A8CEECB8632B0CBB
checksum64: 19A293E5BF861A4124723DF5466F3E0A75A85414A598440D05093AA02FE06C87
checksum32: 1A208C0173778BE086801D7A49B0D26F391BA119AFF4B56DC080445F05C5AF5A
checksum64: D4B8E75C9971466648819BACA16930C963E4CC0B8C8EED5693EF99156E216E8D

The file 'LICENSE.txt' has been obtained from <https://chromium.googlesource.com/chromium/src.git/+/master/LICENSE>
2 changes: 1 addition & 1 deletion automatic/chromium/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$scriptDir=$toolsDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
. (Join-Path $scriptDir 'helper.ps1')

$version = "115.0.5788.0-snapshots"
$version = "115.0.5789.0-snapshots"
$hive = "hkcu"
$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
$Chromium = $hive + ":" + $chromium_string
Expand Down
2 changes: 1 addition & 1 deletion automatic/curl/curl.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>curl</id>
<version>8.1.0</version>
<version>8.1.1</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/curl</packageSourceUrl>
<owners>chocolatey-community, Rob Reynolds</owners>
<title>cURL</title>
Expand Down
8 changes: 4 additions & 4 deletions automatic/curl/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ Package can be verified like this:

1. Go to https://curl.se/windows/, and look for the official binaries provided.

x32: https://curl.se/windows/dl-8.1.0_1/curl-8.1.0_1-win32-mingw.zip
x64: https://curl.se/windows/dl-8.1.0_1/curl-8.1.0_1-win64-mingw.zip
x32: https://curl.se/windows/dl-8.1.1_1/curl-8.1.1_1-win32-mingw.zip
x64: https://curl.se/windows/dl-8.1.1_1/curl-8.1.1_1-win64-mingw.zip

to download the zip files. You may wish to rename one of 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: 029108FAB039D9DC568D03F67754F8367FF002A25557FFC47CD6DA62E7D3DAC7
checksum64: 4DD059FF3403D58E329B213D3A192AABFB9A28F65EAC8AACC7E5F09A28CA63BD
checksum32: C6DCDD8DA874735CC3C702B187AA942313EE6F19F0B2AEF825D1E7AB301B04DB
checksum64: 138409FA9865109320FEB1AC1C50851F41547D45832033D0AAA165299C002D4C

File 'LICENSE.txt' obtained from:
https://github.com/curl/curl/blob/835c2634212257d41c1a30c6cc0ad3ed60bb9aca/COPYING
4 changes: 2 additions & 2 deletions automatic/curl/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition

$packageArgs = @{
PackageName = $env:chocolateyPackageName
FileFullPath = "$toolsPath\curl-8.1.0_1-win32-mingw.zip"
FileFullPath64 = "$toolsPath\curl-8.1.0_1-win64-mingw.zip"
FileFullPath = "$toolsPath\curl-8.1.1_1-win32-mingw.zip"
FileFullPath64 = "$toolsPath\curl-8.1.1_1-win64-mingw.zip"
Destination = $toolsPath
}

Expand Down

0 comments on commit bdc1757

Please sign in to comment.