Skip to content

Commit

Permalink
AU: 1 updated - julia
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Sep 10, 2022
1 parent c01b90c commit 2f7290f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions automatic/julia/julia.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>julia</id>
<version>1.8.0</version>
<version>1.8.1</version>
<title>Julia programming language</title>
<authors>Jeff Bezanson, Alan Edelman, Stefan Karpinski, Viral B. Shah, Julia contributors</authors>
<owners>chocolatey-community, FlorianRappl, drel</owners>
<licenseUrl>https://github.com/JuliaLang/julia/blob/master/LICENSE.md</licenseUrl>
<projectUrl>https://julialang.org</projectUrl>
<releaseNotes>https://github.com/JuliaLang/julia/releases/tag/v1.8.0</releaseNotes>
<releaseNotes>https://github.com/JuliaLang/julia/releases/tag/v1.8.1</releaseNotes>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/julia</packageSourceUrl>
<projectSourceUrl>https://github.com/JuliaLang/julia</projectSourceUrl>
<docsUrl>http://docs.julialang.org/</docsUrl>
Expand Down
8 changes: 4 additions & 4 deletions automatic/julia/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ The installer have been downloaded from the Julia download page on <https://juli
and can be verified like this:

1. Download the following:
32-bit installer: <https://julialang-s3.julialang.org/bin/winnt/x86/1.8/julia-1.8.0-win32.exe>
64-bit installer: <https://julialang-s3.julialang.org/bin/winnt/x64/1.8/julia-1.8.0-win64.exe>
32-bit installer: <https://julialang-s3.julialang.org/bin/winnt/x86/1.8/julia-1.8.1-win32.exe>
64-bit installer: <https://julialang-s3.julialang.org/bin/winnt/x64/1.8/julia-1.8.1-win64.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: sha256
checksum32: 06F650D3B60CBC3CA6D05B8B90B2674DAD139C7FDEF9334D17737BC098BBD2CF
checksum64: A1699278E4884578C10580CF19F8D42401ABCE78F459C416998221902EA26D38
checksum32: 5D173D7EB7FFD2E198CA0AC48C6040012A4C9704DDCA8EB11AA47F104B3CDCEF
checksum64: 0A14661C4DF8ADE4AC9B82B56770D5EE8BA23413A49BA7CEFA75B4FA82AD7E43

File 'LICENSE.txt' is obtained from <https://github.com/JuliaLang/julia/blob/master/LICENSE.md>
6 changes: 3 additions & 3 deletions automatic/julia/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
file = "$toolsDir\julia-1.8.0-win32.exe"
file64 = "$toolsDir\julia-1.8.0-win64.exe"
file = "$toolsDir\julia-1.8.1-win32.exe"
file64 = "$toolsDir\julia-1.8.1-win64.exe"

softwareName = 'Julia*'

silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
validExitCodes= @(0)
}
$packageVersion = "1.8.0"
$packageVersion = "1.8.1"

Install-ChocolateyInstallPackage @packageArgs

Expand Down

0 comments on commit 2f7290f

Please sign in to comment.