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 Feb 8, 2022
1 parent 95bd169 commit 8c91139
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
Expand Up @@ -2,13 +2,13 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>julia</id>
<version>1.7.1</version>
<version>1.7.2</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.7.1</releaseNotes>
<releaseNotes>https://github.com/JuliaLang/julia/releases/tag/v1.7.2</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
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.7/julia-1.7.1-win32.exe>
64-bit installer: <https://julialang-s3.julialang.org/bin/winnt/x64/1.7/julia-1.7.1-win64.exe>
32-bit installer: <https://julialang-s3.julialang.org/bin/winnt/x86/1.7/julia-1.7.2-win32.exe>
64-bit installer: <https://julialang-s3.julialang.org/bin/winnt/x64/1.7/julia-1.7.2-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: 4EA2969D7B42A99B0422966656DDC88B87266E14C32AA2E2F297FAE192F22035
checksum64: 820F31DE28D409AE8FDA2EA01D39C67564FC6138D010E8B7E5D3D883D7DAEE23
checksum32: 0A16FE4407A0C0F70657BBF01851057EB2AB1F76B25353A870C270E3EBF9FAA2
checksum64: BEDE21E00130C2DCB6973A968B7ED43C35D69712008A95BB08D5536D3C9E2585

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
Expand Up @@ -5,15 +5,15 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
file = "$toolsDir\julia-1.7.1-win32.exe"
file64 = "$toolsDir\julia-1.7.1-win64.exe"
file = "$toolsDir\julia-1.7.2-win32.exe"
file64 = "$toolsDir\julia-1.7.2-win64.exe"

softwareName = 'Julia*'

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

Install-ChocolateyInstallPackage @packageArgs

Expand Down

0 comments on commit 8c91139

Please sign in to comment.