Skip to content

Commit

Permalink
AU: 2 updated - libreoffice-fresh x2go
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Mar 1, 2018
1 parent 00fc8a7 commit 4e1e878
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 17 deletions.
2 changes: 1 addition & 1 deletion automatic/libreoffice-streams/libreoffice-streams.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"still": "5.4.5",
"fresh": "6.0.1"
"fresh": "6.0.2"
}
2 changes: 1 addition & 1 deletion automatic/libreoffice-streams/libreoffice-streams.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>libreoffice-fresh</id>
<title>LibreOffice Fresh</title>
<version>6.0.1</version>
<version>6.0.2</version>
<authors>LibreOffice developers</authors>
<owners>chocolatey</owners>
<summary>LibreOffice is the free power-packed Open Source personal productivity suite for Windows, Macintosh and Linux, that gives you six feature-rich applications for all your document production and data processing needs.</summary>
Expand Down
8 changes: 4 additions & 4 deletions automatic/libreoffice-streams/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
$packageArgs = @{
packageName = 'libreoffice'
fileType = 'msi'
url = 'https://download.documentfoundation.org/libreoffice/stable/6.0.1/win/x86/LibreOffice_6.0.1_Win_x86.msi'
url64bit = 'https://download.documentfoundation.org/libreoffice/stable/6.0.1/win/x86_64/LibreOffice_6.0.1_Win_x64.msi'
checksum = '02fb4846bd1081e310af1b0f34cd1a3abbd067b44c078d6207761d2a52b36939'
checksum64 = '61cec581df5a11d5ee1d58b744cfedf2a38dc4833588e88fd2d45da0c2595fa2'
url = 'https://download.documentfoundation.org/libreoffice/stable/6.0.2/win/x86/LibreOffice_6.0.2_Win_x86.msi'
url64bit = 'https://download.documentfoundation.org/libreoffice/stable/6.0.2/win/x86_64/LibreOffice_6.0.2_Win_x64.msi'
checksum = '8e197eda7e22f3d766caa82d7c1738a9ab8d398481e43faa8ae001f3c466ef5c'
checksum64 = '14c91fd4251648637f5bf1ad62c34f271d400eadc7cd989753d43b7e40fe27c2'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/passive /norestart'
Expand Down
2 changes: 1 addition & 1 deletion automatic/x2go/Readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# <img src="https://github.com/chocolatey/chocolatey-coreteampackages/blob/master/icons/x2go.png" width="48" height="48"/> [x2go](https://chocolatey.org/packages/x2go)
# <img src="https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/e4eec1b0defbec7a1156c500f312109c37a32be1/icons/x2go.png" width="48" height="48"/> [x2go](https://chocolatey.org/packages/x2go)

2Go enables you to access a graphical desktop of a computer over a low bandwidth (or high bandwidth) connection.

Expand Down
6 changes: 3 additions & 3 deletions automatic/x2go/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The embedded software have been downloaded from their official file server
located at <http://wiki.x2go.org/doku.php>
located at <https://code.x2go.org/releases/binary-win32/x2goclient/releases/>
and can be verified by doing the following:

1. Download the following <https://code.x2go.org/releases/binary-win32/x2goclient/releases/4.1.0.0-2017.03.11/x2goclient-4.1.0.0-2017.03.11-setup.exe>
1. Download the following <https://code.x2go.org/releases/binary-win32/x2goclient/releases/4.1.1.1-2018.03.01/x2goclient-4.1.1.1-2018.03.01-setup.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
checksum: 3F89AD9386DEDFC6D9EB1CD928DE3C9509D02244F890233CD08513DF45A4E959
checksum: B0477FA4611195AEA608FEC7674A7BFBF14EFDA245963F95A3F213D9CD43C17E

The file 'LICENSE.txt' has been obtained from <https://code.x2go.org/gitweb?p=x2goclient.git;a=blob;f=LICENSE;h=612f591cfbc3e984a781c64abd32726c74237984;hb=HEAD>
2 changes: 1 addition & 1 deletion automatic/x2go/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $toolsPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{
packageName = 'x2go'
fileType = 'exe'
file = "$toolsPath\x2goclient-4.1.0.0-2017.03.11-setup.exe"
file = "$toolsPath\x2goclient-4.1.1.1-2018.03.01-setup.exe"
softwareName = 'X2Go Client*'
silentArgs = '/S'
validExitCodes = @(0)
Expand Down
4 changes: 2 additions & 2 deletions automatic/x2go/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ $uninstalled = $false
[array]$key = Get-UninstallRegistryKey @packageArgs

if ($key.Count -eq 1) {
$key | % {
$key | ForEach-Object {
$packageArgs['file'] = "$($_.UninstallString)"

Uninstall-ChocolateyPackage @packageArgs
Expand All @@ -24,5 +24,5 @@ if ($key.Count -eq 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert the package maintainer that the following keys were matched:"
$key | % { Write-Warning "- $($_.DisplayName)" }
$key | ForEach-Object { Write-Warning "- $($_.DisplayName)" }
}
32 changes: 28 additions & 4 deletions automatic/x2go/x2go.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>x2go</id>
<version>4.1.0.0</version>
<version>4.1.1.1</version>
<packageSourceUrl>https://github.com/Chocolatey/chocolatey-coreteampackages/tree/master/automatic/x2go</packageSourceUrl>
<owners>chocolatey, Redsandro</owners>
<title>X2go Client</title>
<authors>X2go Team</authors>
<projectUrl>http://wiki.x2go.org/doku.php</projectUrl>
<iconUrl>https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/6f8b9a53f9d006195407a4d32cde86df9e0415d1/icons/x2go.png</iconUrl>
<iconUrl>https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/e4eec1b0defbec7a1156c500f312109c37a32be1/icons/x2go.png</iconUrl>
<licenseUrl>http://wiki.x2go.org/doku.php/sources:start#licenses_of_x2go</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectSourceUrl>http://git.x2go.org/</projectSourceUrl>
Expand All @@ -19,8 +19,32 @@
<tags>x2go remote desktop linux xorg kvm network foss cross-platform</tags>
<summary>X2GO is for having a graphical remote desktop of Linux computers over a low bandwidth connection.</summary>
<!-- Do not touch the description here in the nuspec file. Description is imported during update from the Readme.md file -->
<description>Dummy</description>
<releaseNotes></releaseNotes>
<description><![CDATA[2Go enables you to access a graphical desktop of a computer over a low bandwidth (or high bandwidth) connection.
X2Go is a Remote Desktop solution, which some vendors vaguely call Remote Control. This is not to be confused with Microsoft Remote Desktop Connection, which is a competing Remote Desktop solution and protocol.
With X2Go, you mainly access Linux computers. The Linux computer you are accessing is the X2Go Server. (There are ways to connect to a Windows computer as well; some of them are only available with the Linux X2Go Client.)
You can connect from a computer running Linux, Windows or Mac OS X. This computer is the X2Go Client.
Multiple users/clients can access a single X2Go Server at the same time, with each user/client having an individual Desktop session by default - however, Desktop sharing (Remote Assistance) is possible, too (see below).
For the graphical part of remote desktop sessions, X2Go uses No Machine NX3 technology under the hood.
## Features
- Graphical Remote Desktop that works well over both low bandwidth and high bandwidth connections
- The ability to disconnect and reconnect to a session, even from another client
- Support for sound
- Support for as many simultaneous users as the computer's resources will support (NX3 free edition limited you to 2.)
- Traffic is securely tunneled over SSH
- File Sharing from client to server
- Printer Sharing from client to server
- Easily select from multiple desktop environments (e.g., MATE, GNOME, KDE)
- Remote support possible via Desktop Sharing
- The ability to access single applications by specifying the name of the desired executable in the client configuration or selecting one of the pre-defined common applications
]]></description>
<releaseNotes>http://wiki.x2go.org/doku.php/doc:release-notes-mswin:x2goclient-4.1.1.1</releaseNotes>
<dependencies>
<dependency id="chocolatey-core.extension" version="1.3.3" />
</dependencies>
Expand Down

0 comments on commit 4e1e878

Please sign in to comment.