virt-viewer package moved to github

This commit is contained in:
Peter V. Beck 2017-10-08 16:45:25 +02:00
parent 7bea375d48
commit 161aa72b84
2 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,37 @@
# KVM Virt Viewer for Windows
# 2011-2017 foo.li systeme + software
$packageName = 'virt-viewer'
$version = '6.0'
$fullversion = '6.0.256'
$installerType = 'msi'
$silentArgs = '/qn /l*v ' + $env:Temp + '\virtviewer-setup.log'
$packageSearch = 'VirtViewer*'
$validExitCodes = @(0,3010)
$url = 'https://virt-manager.org/download/sources/virt-viewer/virt-viewer-x86-' + $version + '.msi'
$url64 = 'https://virt-manager.org/download/sources/virt-viewer/virt-viewer-x64-' + $version + '.msi'
$checksum = 'AE9F552D03DE132C0CA7A090B037291B726C62A9'
$checksumType = 'sha1'
$checksum64 = '862DCB8ABAF76347EC2B529BA37B9F8EEB1DD620'
$checksumType64 = $checksumType
try {
$app = Get-ItemProperty -Path @('HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' ) `
-ErrorAction:SilentlyContinue | Where-Object { $_.DisplayName -like $packageSearch }
if ($app -and ([version]$app.DisplayVersion -ge [version]$fullversion)) {
Write-Host $(
"Virt Viewer " + [version]$app.DisplayVersion + " is already installed.`r`n`a"
)
} else {
Install-ChocolateyPackage $packageName $installerType $silentArgs $url $url64 `
-checksum $checksum `
-checksumType $checksumType `
-checksum64 $checksum64 `
-checksumType64 $checksumType64 `
-validExitCodes $validExitCodes
}
} catch {
throw $_.Exception
}

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>virt-viewer</id>
<version>6.0.256</version>
<title>Virt Viewer</title>
<authors>RedHat</authors>
<owners>foo.li systeme + software</owners>
<licenseUrl>http://www.gnu.org/licenses/gpl-3.0.de.html</licenseUrl>
<projectUrl>https://virt-manager.org/download/</projectUrl>
<iconUrl>https://raw.githubusercontent.com/peterbeck/chocolatey/master/icons/kvm.png</iconUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>KVM Virt Viewer</description>
<summary>KVM Virt Viewer</summary>
<releaseNotes>upgrade to 6.0</releaseNotes>
<tags>virtualisation management gui kvm</tags>
</metadata>
</package>