Skip to content

Commit

Permalink
AU: 3 updated - chromium curl rufus
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed May 22, 2024
1 parent 8c9c1d4 commit 8792851
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions automatic/chromium/chromium.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"snapshots": "127.0.6494.0-snapshots",
"stable": "125.0.6422.61"
"snapshots": "127.0.6495.0-snapshots",
"stable": "125.0.6422.77"
}
4 changes: 2 additions & 2 deletions automatic/chromium/chromium.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>chromium</id>
<version>127.0.6494.0-snapshots</version>
<title>Chromium Snapshots</title>
<version>125.0.6422.77</version>
<title>Chromium</title>
<owners>chocolatey-community</owners>
<authors>The Chromium Authors</authors>
<projectUrl>http://www.chromium.org/Home</projectUrl>
Expand Down
4 changes: 2 additions & 2 deletions automatic/chromium/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ location on <https://github.com/henrypp/chromium/releases/> (the listed mirrors
and can be verified by doing the following:

1. Download the following:
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1303766/mini_installer.exe>
64-Bit software: <https://github.com/Hibbiki/chromium-win64/releases/download/v125.0.6422.77-r1287751/mini_installer.sync.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
checksum64: F83215D906AA73E092F39AB58538DCF399D684A8F467C1D91CFE3285B11A0D85
checksum64: 46EED9187311C221EE2EDCD585D4F05BA13B6742361450E5FDED6310E57032CD

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

$version = '127.0.6494.0-snapshots'
$version = '125.0.6422.77'
$hive = "hkcu"
$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
$Chromium = $hive + ":" + $chromium_string
Expand All @@ -15,8 +15,8 @@ if (Test-Path $Chromium) {

$packageArgs = @{
packageName = 'chromium'
url = 'https://storage.googleapis.com/chromium-browser-snapshots/Win/1303737/mini_installer.exe'
checksum = 'E1F6FB3E71C41CF0A73CDC2CFDEC5EF8FC532918FB988A453337E59EDC2213BF'
url = 'https://github.com/Hibbiki/chromium-win32/releases/download/v109.0.5414.120-r1070088/mini_installer.sync.exe'
checksum = 'C1AABD6EEF38D759BBD92CA9516353D88C463A1E8389A875B4D12D53DB467F98'
checksumType = 'sha256'
file64 = "$toolsdir\chromium_x64.exe"
fileType = 'exe'
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.7.1</version>
<version>8.8.0</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.7.1_1/curl-8.7.1_1-win32-mingw.zip
x64: https://curl.se/windows/dl-8.7.1_1/curl-8.7.1_1-win64-mingw.zip
x32: https://curl.se/windows/dl-8.8.0_1/curl-8.8.0_1-win32-mingw.zip
x64: https://curl.se/windows/dl-8.8.0_1/curl-8.8.0_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: 0B572F86EDB3CBA89414A1FDF38AA5C905BDA33D07D03AF56D89AAB543DABB07
checksum64: 57E9E58030D26D166267632AA313676775E0F0AFC2FEAB7369CF6DBDD8737CAF
checksum32: 35889D15C5074F77F1F391133E416570F09AFE9AFA0F77CD5F427994750BCCC5
checksum64: 55B01829DBC774AC201BB0CACEBE453857707B10913937C49E3E8F48F0998703

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.7.1_1-win32-mingw.zip"
FileFullPath64 = "$toolsPath\curl-8.7.1_1-win64-mingw.zip"
FileFullPath = "$toolsPath\curl-8.8.0_1-win32-mingw.zip"
FileFullPath64 = "$toolsPath\curl-8.8.0_1-win64-mingw.zip"
Destination = $toolsPath
}

Expand Down
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.4/rufus-4.4.exe
x32: https://github.com/pbatard/rufus/releases/download/v4.5/rufus-4.5.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: 42CDB16F6DD64C4FEC30C7A71960FE4D0015862C37E7B02C8DBA5C0D68384C74
checksum32: C6E6CDBA209F899E5087F1A1A4BABC759414B4A687B60BA4BCE62B6B37E8E82B


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.4</version>
<version>4.5</version>
<title>Rufus</title>
<authors>Pete "Akeo" Batard</authors>
<owners>chocolatey-community, dtgm</owners>
Expand Down

0 comments on commit 8792851

Please sign in to comment.