Skip to content

Commit

Permalink
AU: 2 updated - juju SQLite
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jan 6, 2017
1 parent aec5f81 commit 2a7ab9a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion automatic/SQLite/SQLite.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>SQLite</id>
<version>3.16.1</version>
<version>3.16.2</version>
<title>SQLite</title>
<owners>chocolatey</owners>
<authors>D. Richard Hipp, SQLite contributors</authors>
Expand Down
4 changes: 2 additions & 2 deletions automatic/SQLite/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
$ErrorActionPreference = 'Stop'

$packageName = 'sqlite'
$url32 = 'https://sqlite.org/2017/sqlite-dll-win32-x86-3160100.zip'
$url32 = 'https://sqlite.org/2017/sqlite-dll-win32-x86-3160200.zip'
$url64 = $url32
$checksum32 = '0bc15fdf67967a7f807da4b760332c05adf273445c14ad846c726a4704936f06'
$checksum32 = '1a3d7ef282124d322db16c1637c17072c866a8f7a0d9dd2fad13ddbd3924abee'
$checksum64 = $checksum32
$instDir = "$(Get-ToolsLocation)\$packageName"

Expand Down
4 changes: 2 additions & 2 deletions automatic/juju/juju.nuspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<!-- Do not remove this test for UTF-8: if “Ω” doesn't appear as greek uppercase omega letter enclosed in quotation marks,
you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>juju</id>
<version>2.1-beta3</version>
<version>2.1-beta4</version>
<packageSourceUrl>https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/juju</packageSourceUrl>
<owners>AdmiringWorm,chocolatey</owners>
<title>Juju</title>
Expand Down
6 changes: 3 additions & 3 deletions automatic/juju/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
VERIFICATION
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The installer have been downloaded from their launchpad page <https://launchpad.net/juju/+download>
The same download links are also located in their docs <https://jujucharms.com/docs/stable/reference-releases>
and can be verified like this:

1. Go to <https://launchpad.net/juju/2.1/2.1-beta3/+download/juju-setup-2.1-beta3.exe>
1. Go to <https://launchpad.net/juju/2.1/2.1-beta4/+download/juju-setup-2.1-beta4.exe>
to download the installer
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
checksum: 946D8175E3FB9EDC5775DC3876317FF91039B3C6C5329F5DB46FC24606A51A5C
checksum: 1AE284EF614C8311451C383CB17E8BFA7D4969908D2D3E6745661A97A3DB61C3

File 'LICENSE.txt' is obtained from <https://github.com/juju/juju/blob/1a64fe64d6c5d9aacbda27a1fea925e078f191f2/LICENCE>
4 changes: 2 additions & 2 deletions automatic/juju/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
$ErrorActionPreference = 'Stop';
$ErrorActionPreference = 'Stop';

$toolsDir = "$(Split-Path -Parent $MyInvocation.MyCommand.Definition)"

$packageArgs = @{
packageName = 'juju'
fileType = 'exe'
softwareName = 'Juju'
file = "$toolsDir\juju-setup-2.1-beta3.exe"
file = "$toolsDir\juju-setup-2.1-beta4.exe"
silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
validExitCodes= @(0)
}
Expand Down

0 comments on commit 2a7ab9a

Please sign in to comment.