Skip to content

Commit

Permalink
AU: 2 updated - chromium git.portable
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jan 19, 2018
1 parent 3c185fc commit ae09ee4
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
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>65.0.3325.0-snapshots</version>
<version>66.0.3326.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/530049/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/530047/mini_installer.exe>
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/530421/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/530421/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: 18D0427BC467ADF823DF61EB7CC2AFA2D3F5980283496A1CFAC15BC6C120E150
checksum64: 833A840838E570D207B9F6082339D3F4759565467C8BBB7DAA6FC28DE870B1FD
checksum32: DA318654A183DF4791CEF63AF51E0DD0ED184104DE34E74B918A14B67877CDFF
checksum64: 3F0C22708379F280D8E95A9DFCD462ECC7CE8BCFCF0EB24F4E0A6969B5EE3680

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 = "65.0.3325.0-snapshots"
$version = "66.0.3326.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/git.portable/git.portable.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>git.portable</id>
<title>Git (Portable)</title>
<version>2.15.1.2</version>
<version>2.16.0.2</version>
<authors>The Git Development Community</authors>
<owners>chocolatey</owners>
<summary>Git for Windows offers a native set of tools that bring the full feature set of the Git SCM to Windows</summary>
Expand Down
8 changes: 4 additions & 4 deletions automatic/git.portable/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ in verifying that this package's contents are trustworthy.
The installer have been downloaded from GitHub and can be verified like this:

1. Download the following installers:
32-Bit: <https://github.com/git-for-windows/git/releases/download/v2.15.1.windows.2/PortableGit-2.15.1.2-32-bit.7z.exe>
64-Bit: <https://github.com/git-for-windows/git/releases/download/v2.15.1.windows.2/PortableGit-2.15.1.2-64-bit.7z.exe>
32-Bit: <https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/PortableGit-2.16.0.2-32-bit.7z.exe>
64-Bit: <https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/PortableGit-2.16.0.2-64-bit.7z.exe>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type:
checksum32: 8B1973BDE82718684945C7373266976C70BE55022AC554847A8A201C941952AF
checksum64: 36847F62418A5C62A7F50650F3662283F8D324602F4A611D592095EE296CD912
checksum32: B5D0699F9720CFBA62E61D8C54BC4A4696323273A4AE9273C82829F16D5A2AF9
checksum64: 967F65C6E014E543109E9BCA1A7CFFBE192EAE82C349EA1639EEFDFE087E44E8

File 'LICENSE.txt' is obtained from <https://github.com/git-for-windows/git/blob/703601d6780c32d33dadf19b2b367f2f79e1e34c/COPYING>
6 changes: 3 additions & 3 deletions automatic/git.portable/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition

$packageArgs = @{
PackageName = 'git.portable'
FileFullPath = gi $toolsPath\*-32-bit.7z.exe
FileFullPath64 = gi $toolsPath\*-64-bit.7z.exe
FileFullPath = Get-Item $toolsPath\*-32-bit.7z.exe
FileFullPath64 = Get-Item $toolsPath\*-64-bit.7z.exe
Destination = "$(Get-ToolsLocation)\git"
}
Get-ChocolateyUnzip @packageArgs
Install-ChocolateyPath "$($packageArgs.Destination)\bin"

ls $toolsPath\*.exe | % { rm $_ -ea 0; if (Test-Path $_) { sc "$_.ignore" } }
Get-ChildItem $toolsPath\*.exe | ForEach-Object { Remove-Item $_ -ea 0; if (Test-Path $_) { Set-Content "$_.ignore" } }

0 comments on commit ae09ee4

Please sign in to comment.