Skip to content

Commit

Permalink
AU: 6 updated - diskdefragtouch Ghostscript Ghostscript.app nodejs no…
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Mar 21, 2018
1 parent 9e24cc2 commit 31d3cf1
Show file tree
Hide file tree
Showing 15 changed files with 34 additions and 32 deletions.
2 changes: 1 addition & 1 deletion automatic/diskdefragtouch/diskdefragtouch.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>diskdefragtouch</id>
<title>Auslogics Disk Defrag Touch</title>
<version>8.0.6.0</version>
<version>8.0.7.0</version>
<authors>Auslogics Software</authors>
<owners>Redsandro</owners>
<summary>A compact and fast defragmenter for touch screens with achievements.</summary>
Expand Down
6 changes: 3 additions & 3 deletions automatic/ghostscript.app/ghostscript.app.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>Ghostscript.app</id>
<version>9.22</version>
<version>9.23</version>
<packageSourceUrl>https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/ghostscript.app</packageSourceUrl>
<owners>chocolatey</owners>
<title>Ghostscript (Install)</title>
Expand All @@ -14,7 +14,7 @@
<licenseUrl>http://www.gnu.org/licenses/agpl-3.0.html</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectSourceUrl>http://git.ghostscript.com/?p=ghostpdl.git;a=summary</projectSourceUrl>
<docsUrl>http://www.ghostscript.com/doc/9.22/Readme.htm</docsUrl>
<docsUrl>http://www.ghostscript.com/doc/9.23/Readme.htm</docsUrl>
<bugTrackerUrl>https://bugs.ghostscript.com/</bugTrackerUrl>
<tags>ghostscript.app ghostscript postscript admin foss cross-platform</tags>
<summary>an interpreter for the PostScript language and for PDF.</summary>
Expand All @@ -30,7 +30,7 @@ Ghostscript is written entirely in C, with special care taken to make it run pro
* A set of C procedures (the Ghostscript library) that implement the graphics and filtering (data compression / decompression / conversion) capabilities that appear as primitive operations in the PostScript language and in PDF.
]]></description>
<releaseNotes>https://ghostscript.com/doc/9.22/History9.htm</releaseNotes>
<releaseNotes>https://ghostscript.com/doc/9.23/History9.htm</releaseNotes>
<dependencies>
<dependency id="chocolatey-core.extension" version="1.3.3" />
</dependencies>
Expand Down
8 changes: 4 additions & 4 deletions automatic/ghostscript.app/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <https://ghostscript.com/download/gsdnld.html>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs922/gs922w32.exe>
64-Bit software: <https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs922/gs922w64.exe>
32-Bit software: <https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs923/gs923w32.exe>
64-Bit software: <https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs923/gs923w64.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: C01B36529C618F9218C39C84BF7168FC2E466A78406F273609F736A5F0CD965A
checksum64: 796CD308D3134D021356C0DB1831C089DB73D03AAC07D28CBE77958163C79D57
checksum32: 5879B9970007490E62F1C1D9D6688BB633A069CDD5FC466DADB9EA8114C8C75A
checksum64: 9E614CBAC9F674710DE965D9847ACE29127D71DC1875E48517F4ABCE0E324400

The file 'LICENSE.txt' has been obtained from <http://git.ghostscript.com/?p=ghostpdl.git;a=blob_plain;f=LICENSE;h=572496a331cefa0933a9e997374f5e7dde3b95c8;hb=HEAD>
6 changes: 3 additions & 3 deletions automatic/ghostscript.app/tools/ChocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

$toolsPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$filePath32 = "$toolsPath\gs922w32.exe"
$filePath64 = "$toolsPath\gs922w64.exe"
$filePath32 = "$toolsPath\gs923w32.exe"
$filePath64 = "$toolsPath\gs923w64.exe"

$filePath = if ((Get-ProcessorBits 64) -and $env:chocolateyForceX86 -ne $true) {
$filePath = if ((Get-OSArchitectureWidth 64) -and $env:chocolateyForceX86 -ne $true) {
Write-Host "Installing 64 bit version" ; $filePath64
} else { Write-Host "Installing 32 bit version" ; $filePath32 }

Expand Down
4 changes: 2 additions & 2 deletions automatic/ghostscript.app/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 uninstall."
Write-Warning "Please alert the package maintainer the following keys were matched:"
$key | % { Write-Warning "- $($_.DisplayName)" }
$key | ForEach-Object { Write-Warning "- $($_.DisplayName)" }
}
8 changes: 4 additions & 4 deletions automatic/ghostscript/ghostscript.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>Ghostscript</id>
<version>9.22</version>
<version>9.23</version>
<packageSourceUrl>https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/ghostscript</packageSourceUrl>
<owners>chocolatey</owners>
<title>Ghostscript</title>
Expand All @@ -14,7 +14,7 @@
<licenseUrl>http://www.gnu.org/licenses/agpl-3.0.html</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectSourceUrl>http://git.ghostscript.com/?p=ghostpdl.git;a=summary</projectSourceUrl>
<docsUrl>http://www.ghostscript.com/doc/9.22/Readme.htm</docsUrl>
<docsUrl>http://www.ghostscript.com/doc/9.23/Readme.htm</docsUrl>
<bugTrackerUrl>https://bugs.ghostscript.com/</bugTrackerUrl>
<tags>ghostscript.app ghostscript postscript admin foss cross-platform</tags>
<summary>an interpreter for the PostScript language and for PDF.</summary>
Expand All @@ -30,9 +30,9 @@ Ghostscript is written entirely in C, with special care taken to make it run pro
* A set of C procedures (the Ghostscript library) that implement the graphics and filtering (data compression / decompression / conversion) capabilities that appear as primitive operations in the PostScript language and in PDF.
]]></description>
<releaseNotes>https://ghostscript.com/doc/9.22/History9.htm</releaseNotes>
<releaseNotes>https://ghostscript.com/doc/9.23/History9.htm</releaseNotes>
<dependencies>
<dependency id="ghostscript.app" version="[9.22]" />
<dependency id="ghostscript.app" version="[9.23]" />
</dependencies>
</metadata>
<files>
Expand Down
8 changes: 4 additions & 4 deletions automatic/nodejs.install/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://nodejs.org/dist/v9.8.0/node-v9.8.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v9.8.0/node-v9.8.0-x64.msi>
32-Bit: <https://nodejs.org/dist/v9.9.0/node-v9.9.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v9.9.0/node-v9.9.0-x64.msi>
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: sha256
checksum32: CCB1589CFBCE371AB3103AAF1B55214F677939B7FDAE411DBD9253E8FD484DEF
checksum64: 35715BB7EC90B4025DE735A2CA30B7336FFD5AB9678BFC35E509D3D253D9E89E
checksum32: F6ABE59582AA068A9C48C3705F8C644C857900EEBF321DCC3D488D181E7D3694
checksum64: ECE15616B9093EB6025A945F2121AB281F3E24932618BABB641DC5497704B8A7

File 'LICENSE.txt' is obtained from <https://github.com/nodejs/node/blob/03023fa7ae060c082a014f792d5d1f481a599460/LICENSE>
3 changes: 2 additions & 1 deletion automatic/nodejs.install/nodejs.install.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@
"9.6": "9.6.0",
"9.7": "9.7.1",
"8.10": "8.10.0",
"9.8": "9.8.0"
"9.8": "9.8.0",
"9.9": "9.9.0"
}
2 changes: 1 addition & 1 deletion automatic/nodejs.install/nodejs.install.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>nodejs.install</id>
<title>Node JS (Install)</title>
<version>9.8.0</version>
<version>9.9.0</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand Down
4 changes: 2 additions & 2 deletions automatic/nodejs.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

$toolsPath = Split-Path $MyInvocation.MyCommand.Definition

$filePath32 = "$toolsPath\node-v9.8.0-x86.msi"
$filePath64 = "$toolsPath\node-v9.8.0-x64.msi"
$filePath32 = "$toolsPath\node-v9.9.0-x86.msi"
$filePath64 = "$toolsPath\node-v9.9.0-x64.msi"
$installFile = if ((Get-OSArchitectureWidth 64) -and $env:chocolateyForceX86 -ne 'true') {
Write-Host "Installing 64 bit version"; $filePath64 }
else { Write-Host "Installing 32 bit version"; $filePath32 }
Expand Down
3 changes: 2 additions & 1 deletion automatic/nodejs/nodejs.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
"9.6": "9.6.1",
"9.7": "9.7.1",
"8.10": "8.10.0",
"9.8": "9.8.0"
"9.8": "9.8.0",
"9.9": "9.9.0"
}
4 changes: 2 additions & 2 deletions automatic/nodejs/nodejs.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>nodejs</id>
<title>Node JS</title>
<version>9.8.0</version>
<version>9.9.0</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand All @@ -28,7 +28,7 @@ While this package now provides both **Current** and **LTS** releases of Node.js
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/ba5adf020e09cd0e51107206ef3ec390035a6e90/icons/nodejs.png</iconUrl>
<dependencies>
<dependency id="nodejs.install" version="[9.8.0]" />
<dependency id="nodejs.install" version="[9.9.0]" />
</dependencies>
</metadata>
<files>
Expand Down
4 changes: 2 additions & 2 deletions automatic/zotero-standalone/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ The embedded software have been downloaded from the listed download
location on <https://www.zotero.org/download/> (The listed url gets redirected to another one)
and can be verified by doing the following:

1. Download the following <https://download.zotero.org/client/release/5.0.37/Zotero-5.0.37_setup.exe>
1. Download the following <https://download.zotero.org/client/release/5.0.38/Zotero-5.0.38_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: 743C80CD27FD3445A0B74C273423F7F9105B0057B5014C4271BA57869C20F0EC
checksum: 79AEF6771A9F9BAD31A86CE7CDEEA756F3396B08D0A18DEF779A5C2C46D2D96E

The file 'LICENSE.txt' has been obtained from <https://github.com/zotero/zotero/blob/929288f9811a5026053ae154ca08cc4a9da13c52/COPYING>
2 changes: 1 addition & 1 deletion automatic/zotero-standalone/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ $packageArgs = @{
silentArgs = '/S'
validExitCodes = @(0)
softwareName = 'Zotero Standalone *'
file = "$toolsPath\Zotero-5.0.37_setup.exe"
file = "$toolsPath\Zotero-5.0.38_setup.exe"
}

Install-ChocolateyInstallPackage @packageArgs
Expand Down
2 changes: 1 addition & 1 deletion automatic/zotero-standalone/zotero-standalone.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<id>zotero-standalone</id>
<title>Zotero Standalone</title>
<owners>chocolatey</owners>
<version>5.0.37</version>
<version>5.0.38</version>
<authors>Center for History and New Media, et. al.</authors>
<summary>Zotero [zoh-TAIR-oh] is a free, easy-to-use tool to help you collect, organize, cite, and share your research sources. </summary>
<iconUrl>https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/430b7ebac494468d32c2c20e362a01321a483642/icons/zotero-standalone.png</iconUrl>
Expand Down

0 comments on commit 31d3cf1

Please sign in to comment.