Skip to content

Commit

Permalink
AU: 3 updated - calibre chromium k9s
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jul 3, 2020
1 parent 79bf1d2 commit 15d755a
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion automatic/calibre/calibre.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>calibre</id>
<title>Calibre</title>
<version>4.19.0</version>
<version>4.20.0</version>
<authors>Kovid Goyal</authors>
<owners>chocolatey, gep13</owners>
<summary>calibre is the one stop solution to all your e-book needs.</summary>
Expand Down
4 changes: 2 additions & 2 deletions automatic/calibre/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ and can be verified by doing the following:

1. Download the following:
32-Bit software: NOT INCLUDED IN PACKAGE
64-Bit software: <https://download.calibre-ebook.com/4.19.0/calibre-64bit-4.19.0.msi>
64-Bit software: <https://download.calibre-ebook.com/4.20.0/calibre-64bit-4.20.0.msi>
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: NOT INCLUDED IN PACKAGE
checksum64: B8205FDCA595A0A381A1B35F6CD3D07237B839C947A122C23D1D587D52338F62
checksum64: B8AF547DC7470006C715E9B91FD8F3A7B3287AE760BC58CE3ABF3F672DDEB645

The file 'LICENSE.txt' has been obtained from <https://github.com/kovidgoyal/calibre/blob/89c271759db5c71202251895f6793e4c1ec65ee6/LICENSE>
6 changes: 3 additions & 3 deletions automatic/calibre/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ $toolsPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'MSI'
url = 'https://download.calibre-ebook.com/4.19.0/calibre-4.19.0.msi'
checksum = 'A09B3075E3BB6FA1B1AED2FAB68A0C44DCEA0F23B3B1C1C6722EBF2186711DF2'
url = 'https://download.calibre-ebook.com/4.20.0/calibre-4.20.0.msi'
checksum = 'B827A2A6F17E815820147CCF078A33DF17BF99B7C1E9FE2E65C260833E2F6808'
checksumType = 'sha256'
file64 = "$toolsPath\calibre-64bit-4.19.0.msi"
file64 = "$toolsPath\calibre-64bit-4.20.0.msi"
softwareName = 'calibre*'
silentArgs = '/quiet'
validExitCodes = @(0, 3010, 1641)
Expand Down
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": "86.0.4191.0-snapshots",
"snapshots": "86.0.4192.0-snapshots",
"stable": "83.0.4103.116"
}
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>86.0.4191.0-snapshots</version>
<version>86.0.4192.0-snapshots</version>
<title>Chromium Snapshots</title>
<owners>chocolatey</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/784679/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/784682/mini_installer.exe>
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/784971/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/784972/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: B65ACB935A5490FDBC47C068BE2B0E54B01D4431CC098B80AEE4C57FA4EDB21A
checksum64: 860BE2684EE496CC4B294D53F7AB6CFD6867D1E6576FB55D7B55DF5B190C2CC1
checksum32: 4B349D0065AF4A4A0A7022AD6F6AF1458268009179D2EA907FB8F1BBEAA0926D
checksum64: 2D080655C3CACB7B74CAE483A45792B87F3559D4565A056D21A863161DBB98B1

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 = "86.0.4191.0-snapshots"
$version = "86.0.4192.0-snapshots"
$hive = "hkcu"
$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
$Chromium = $hive + ":" + $chromium_string
Expand Down
4 changes: 2 additions & 2 deletions automatic/k9s/k9s.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>k9s</id>
<version>0.20.5</version>
<version>0.21.1</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-coreteampackages/tree/master/automatic/k9s</packageSourceUrl>
<owners>Matteo Dell'Aquila (moebius87),chocolatey</owners>
<title>k9s: Kubernetes CLI To Manage Your Clusters In Style!</title>
Expand Down Expand Up @@ -53,7 +53,7 @@ Customize/Arrange which columns to display on a per resource basis.
* Resource Graph Traversals
* K9s provides for easy traversal of Kubernetes resources and their associated resources.
]]></description>
<releaseNotes>https://github.com/derailed/k9s/blob/v0.20.5/change_logs/release_v0.20.5.md</releaseNotes>
<releaseNotes>https://github.com/derailed/k9s/blob/v0.21.1/change_logs/release_v0.21.1.md</releaseNotes>
<dependencies>
<dependency id="kubernetes-cli" />
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions automatic/k9s/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ in verifying that this package's contents are trustworthy.
The embedded software can be verified by doing the following:

1. Download the following:
64-bit software: <https://github.com/derailed/k9s/releases/download/v0.20.5/k9s_Windows_x86_64.tar.gz>
64-bit software: <https://github.com/derailed/k9s/releases/download/v0.21.1/k9s_Windows_x86_64.tar.gz>

2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
Expand All @@ -15,6 +15,6 @@ The embedded software can be verified by doing the following:

3. The checksums should match the following:
checksum type: sha256
checksum64: 1C3A722DA42A156094AC647F6914D097D65A21C6A88273ED9867A95E7890E89E
checksum64: 0C6EB82DCF40A7E92CF859778EB2F40AF1D7159D6F65A8468FF2F5E997CBB6E0

The file 'LICENSE.txt' has been obtained from <https://raw.githubusercontent.com/derailed/k9s/2e05367256a7b2777b011da7213cf636c9ae4d17/LICENSE>

0 comments on commit 15d755a

Please sign in to comment.