Skip to content

Commit

Permalink
AU: 2 updated - chromium maxima
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jun 3, 2023
1 parent de32198 commit 86ab1a3
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 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": "116.0.5809.0-snapshots",
"snapshots": "116.0.5810.0-snapshots",
"stable": "114.0.5735.91"
}
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>116.0.5809.0-snapshots</version>
<version>116.0.5810.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/1152705/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1152698/mini_installer.exe>
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/1152896/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1152895/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: 1A587ACAC60F4283BDE946B6A1815E81404687CC306DE2973B39F88BE4C11813
checksum64: BAC3D5F0ECA79C962E1F5B3FAF635A913788C1FFBCEA06E1AFF942FBE0841A6D
checksum32: E000F41C1B39EEC254EC46FDBC0598D8E9CC8C587D7B7422FB18DABE51EEB4E7
checksum64: 79482B4C0C7171CD87B89733945273A8865A83BE53639B14E0502C803917CAC2

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 = "116.0.5809.0-snapshots"
$version = "116.0.5810.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/maxima/maxima.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>maxima</id>
<version>5.46.0</version>
<version>5.47.0</version>
<title>Maxima</title>
<owners>chocolatey-community</owners>
<authors>Macsyma group at Project MAC and volunteer contributors</authors>
Expand Down
8 changes: 4 additions & 4 deletions automatic/maxima/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
url = 'https://sourceforge.net/projects/maxima/files/Maxima-Windows/5.46.0-Windows/maxima-5.46.0-win32.exe/download'
url64bit = 'https://sourceforge.net/projects/maxima/files/Maxima-Windows/5.46.0-Windows/maxima-5.46.0-win64.exe/download'
url = 'https://sourceforge.net/projects/maxima/files/Maxima-Windows/5.47.0-Windows/maxima-5.47.0-win32.exe/download'
url64bit = 'https://sourceforge.net/projects/maxima/files/Maxima-Windows/5.47.0-Windows/maxima-5.47.0-win64.exe/download'
softwareName = 'maxima*'
checksum = 'a57d91429a8da5741ab170c130137a93cd8431b8efdf13e7da774808601fe3e4'
checksum = 'd00d1bedaa6364ffdbb01b4af5a0a217ed4a0d9d75c43156747b5da2d233fc76'
checksumType = 'sha256'
checksum64 = '93a877a51193f3987b3ec49daa6f231adbcdfc146ba3a7b07e7c284c29aca3c5'
checksum64 = 'e0a5cb667f11bbef6d3b9cd444fdcb4ed464fe2a2933185d115e2567635af20c'
checksumType64 = 'sha256'
silentArgs = '/S'
validExitCodes = @(0)
Expand Down
10 changes: 5 additions & 5 deletions automatic/maxima/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ function global:au_GetLatest {
$download_page = Invoke-WebRequest -Uri $releases -UseBasicParsing

$re = '[\d\.]+\-Windows\/$'
$releasesUrl = $download_page.Links | ? href -match $re | select -first 1 -expand href | % { appendIfNeeded $_ }
$releasesUrl = $download_page.Links | Where-Object href -match $re | Select-Object -first 1 -expand href | ForEach-Object { appendIfNeeded $_ }
$download_page = Invoke-WebRequest -Uri $releasesUrl -UseBasicParsing

$re = 'win32\.exe\/download$'
$url32 = $download_page.Links | ? href -match $re | select -first 1 -expand href | % { appendIfNeeded $_ }
$url32 = $download_page.Links | Where-Object href -match $re | Select-Object -first 1 -expand href | ForEach-Object { appendIfNeeded $_ }

$re = 'win64\.exe\/download$'
$url64 = $download_page.links | ? href -match $re | select -first 1 -expand href | % { appendIfNeeded $_ }
$url64 = $download_page.links | Where-Object href -match $re | Select-Object -first 1 -expand href | ForEach-Object { appendIfNeeded $_ }

$verRe = '-'
$version32 = $url32 -split "$verRe" | select -last 1 -skip 1
$version64 = $url64 -split "$verRe" | select -last 1 -skip 1
$version32 = $url32 -split "$verRe" | Select-Object -last 1 -skip 1
$version64 = $url64 -split "$verRe" | Select-Object -last 1 -skip 1
if ($version32 -ne $version64) {
throw "32bit version do not match the 64bit version"
}
Expand Down

0 comments on commit 86ab1a3

Please sign in to comment.