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 Dec 27, 2023
1 parent 8b0ff86 commit 046c932
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.9.4</version>
<version>1.10.0</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.9.4</releaseNotes>
<releaseNotes>https://github.com/JuliaLang/julia/releases/tag/v1.10.0</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 has been downloaded from the Julia download page on <https://julia
and can be verified like this:

1. Download the following:
32-bit installer: <https://julialang-s3.julialang.org/bin/winnt/x86/1.9/julia-1.9.4-win32.exe>
64-bit installer: <https://julialang-s3.julialang.org/bin/winnt/x64/1.9/julia-1.9.4-win64.exe>
32-bit installer: <https://julialang-s3.julialang.org/bin/winnt/x86/1.10/julia-1.10.0-win32.exe>
64-bit installer: <https://julialang-s3.julialang.org/bin/winnt/x64/1.10/julia-1.10.0-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: CAE2C1DA0DA7F43F08620896904B5B13BCDCE3ED49DC5A5E9897EE437848E2C2
checksum64: 8A491B31A8430C3662DFF34BF349653E2D13EF98A4DCF7CAA740359B6C5FEF3E
checksum32: C707B9CC5CD4DA71B8E557A4542B3E2314B0DDC393EF925B65EB560CC9566240
checksum64: F58AAA631748A5B0389586F3A3B7A081A2A6AC219A5A73A501AC61C0D99DAEBD

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.9.4-win32.exe"
file64 = "$toolsDir\julia-1.9.4-win64.exe"
file = "$toolsDir\julia-1.10.0-win32.exe"
file64 = "$toolsDir\julia-1.10.0-win64.exe"

softwareName = 'Julia*'

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

Install-ChocolateyInstallPackage @packageArgs

Expand Down

0 comments on commit 046c932

Please sign in to comment.