Skip to content

Commit

Permalink
AU: 3 updated - boxcli FStar r
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Mar 11, 2019
1 parent 6cc8740 commit 4dd35cd
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 31 deletions.
2 changes: 1 addition & 1 deletion automatic/boxcli/boxcli.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"latest": "1.2.0",
"latest": "2.0.0",
"1.1": "1.1.1.20181017",
"1.0": "1.0.2",
"1.2": "1.2.0"
Expand Down
10 changes: 3 additions & 7 deletions automatic/boxcli/boxcli.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>boxcli</id>
<version>1.1.1.20181017</version>
<version>2.0.0</version>
<packageSourceUrl>https://github.com/AdmiringWorm/chocolatey-packages/tree/master/automatic/boxcli</packageSourceUrl>
<owners>AdmiringWorm, William Higgs</owners>
<title>Box CLI</title>
<authors>Box</authors>
<projectUrl>https://developer.box.com/</projectUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/AdmiringWorm/chocolatey-packages@19c4e51a2be54f917c2c61d69d806a3e647d49f4/icons/boxcli.png</iconUrl>
<copyright>©2018 Box</copyright>
<licenseUrl>https://github.com/box/boxcli/blob/master/LICENSE</licenseUrl>
<licenseUrl>https://github.com/box/boxcli/blob/v2.0.0/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectSourceUrl>https://github.com/box/boxcli</projectSourceUrl>
<docsUrl>https://developer.box.com/reference</docsUrl>
Expand All @@ -30,11 +30,7 @@ Box is a cloud-based enterprise content management platform trusted by thousands
<releaseNotes>[Package Changelog](https://github.com/AdmiringWorm/chocolatey-packages/blob/master/automatic/boxcli/Changelog.md)

## Software Release Notes
- Fixed bug preventing removal of a user from an Enterprise and conversion to a free user account.
- Fixed bug that returned incorrect total count when using `box list users -m` to only list managed users.
- Added CreatedAt field to CSV output for events.
- Removed SyncState from CSV for creating folders.
- Enabled setting a description for a folder when creating the folder.</releaseNotes>
The all-new Box CLI v2 is here! We've made a lot of changes to improve the CLI; please see the [release notes](https://github.com/box/boxcli/blob/master/CHANGELOG.md#200) for more information.</releaseNotes>
<dependencies>
<dependency id="chocolatey-core.extension" version="1.3.3" />
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion automatic/boxcli/legal/LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,4 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS
END OF TERMS AND CONDITIONS
14 changes: 7 additions & 7 deletions automatic/boxcli/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The embedded software have been downloaded from the listed download
location on <https://github.com/box/boxcli/releases/tag/v1.1.1>
location on <https://github.com/box/boxcli/releases/tag/v2.0.0>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <>
64-Bit software: <>
32-Bit software: <https://github.com/box/boxcli/releases/download/v2.0.0/box-v2.0.0-x86.exe>
64-Bit software: <https://github.com/box/boxcli/releases/download/v2.0.0/box-v2.0.0-x64.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:
checksum32:
checksum64:
checksum type: sha256
checksum32: 38BAA8AF80B599F8A59AB4225541610D4BECE05BE00C70C6B9C808D8582F2A34
checksum64: E13F7C49F0EB9FCFA91A272DFD8877B1E891C6CBF3BF2A584769205037C229D1

The file 'LICENSE.txt' has been obtained from <https://github.com/box/boxcli/blob/066158db5c7a357b2ea513e36c3e845226133a7b/LICENSE>
The file 'LICENSE.txt' has been obtained from <https://github.com/box/boxcli/blob/v2.0.0/LICENSE>
12 changes: 6 additions & 6 deletions automatic/boxcli/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
$ErrorActionPreference = 'Stop'
$ErrorActionPreference = 'Stop'

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

$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'msi'
file = "$toolsPath\"
file64 = "$toolsPath\BoxCLI-win10-x64.msi"
softwareName = 'BoxCLI'
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""#
fileType = 'exe'
file = "$toolsPath\box-v2.0.0-x86.exe"
file64 = "$toolsPath\box-v2.0.0-x64.exe"
softwareName = '@box/cli'
silentArgs = "/S"#
validExitCodes = @(0, 3010, 1641)
}

Expand Down
6 changes: 3 additions & 3 deletions automatic/boxcli/tools/chocolateyuninstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'BoxCLI'
fileType = 'msi'
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiUninstall.log`""#
softwareName = '@box/cli'
fileType = 'exe'
silentArgs = "/S"#
validExitCodes = @(0, 3010, 1641)
}

Expand Down
5 changes: 5 additions & 0 deletions automatic/fstar/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# ![F* language Changelog](https://img.shields.io/badge/F*%20language-Package%20Changelog-blue.svg?style=for-the-badge)

## Version: 0.9.6.002 (2019-03-11)

- **BUG:** Changed to not generate shim for anything other than fstar.exe
- **BUG:** Update doesn't replace download url used in VERIFICATION.txt [#63](https://github.com/AdmiringWorm/chocolatey-packages/issues/63)

## Version: 0.9.6.001 (2018-10-17)

- **ENHANCEMENT:** Embedded the fstar package
Expand Down
2 changes: 1 addition & 1 deletion automatic/fstar/fstar.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>FStar</id>
<version>0.9.6.001</version>
<version>0.9.6.002</version>
<packageSourceUrl>https://github.com/AdmiringWorm/chocolatey-packages/tree/master/automatic/fstar</packageSourceUrl>
<owners>AdmiringWorm, chantisnake</owners>
<title>F* language</title>
Expand Down
4 changes: 2 additions & 2 deletions automatic/fstar/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The embedded software have been downloaded from the listed download
location on <https://www.fstar-lang.org/#download>
location on <https://github.com/FStarLang/FStar/releases>
and can be verified by doing the following:

1. Download the following <>
1. Download the following <https://github.com/FStarLang/FStar/releases/download/v0.9.6.0/fstar_0.9.6.0_Windows_x64.zip>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
Expand Down
2 changes: 1 addition & 1 deletion automatic/fstar/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ $packageArgs = @{
Get-ChocolateyUnzip @packageArgs
Remove-Item $toolsPath\*.zip -ea 0

gci $toolsPath -Filter "*.exe" -Recurse | ? { $_.Name -ne "fstar.exe" } | % {
Get-ChildItem $toolsPath -Filter "*.exe" -Recurse | Where-Object { $_.Name -ne "fstar.exe" } | ForEach-Object {
New-Item -Path "$($_.FullName).ignore" -Value ""
}
7 changes: 5 additions & 2 deletions automatic/r/r.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>r</id>
<version>3.5.2</version>
<version>3.5.3</version>
<packageSourceUrl>https://github.com/AdmiringWorm/chocolatey-packages/tree/master/automatic/r.project</packageSourceUrl>
<owners>AdmiringWorm</owners>
<title>The R Project for Statistical Computing</title>
Expand All @@ -20,6 +20,7 @@
statistical-analysis statistical data-acquisition statistical-graphics data-automation</tags>
<summary>R is a language and environment for statistical computing and graphics</summary>
<description><![CDATA[## Introduction to R
R is a language and environment for statistical computing and graphics. It is a [GNU project](http://www.gnu.org/) which is similar to the S language and environment which was developed at Bell Laboratories (formerly AT&T, now Lucent Technologies) by John Chambers and colleagues. R can be considered as a different implementation of S. There are some important differences, but much code written for S runs unaltered under R.
R provides a wide variety of statistical (linear and nonlinear modelling, classical statistical tests, time-series analysis, classification, clustering, …) and graphical techniques, and is highly extensible. The S language is often the vehicle of choice for research in statistical methodology, and R provides an Open Source route to participation in that activity.
Expand All @@ -29,6 +30,7 @@ One of R’s strengths is the ease with which well-designed publication-quality
R is available as Free Software under the terms of the [Free Software Foundation](http://www.gnu.org/)’s [GNU General Public License](https://www.r-project.org/COPYING) in source code form. It compiles and runs on a wide variety of UNIX platforms and similar systems (including FreeBSD and Linux), Windows and MacOS.
## The R environment
R is an integrated suite of software facilities for data manipulation, calculation and graphical display. It includes
- an effective data handling and storage facility,
Expand All @@ -46,6 +48,7 @@ R can be extended (easily) via packages. There are about eight packages supplied
R has its own LaTeX-like documentation format, which is used to supply comprehensive documentation, both on-line in a number of formats and in hardcopy.
## Package Parameters
- `/UseInf:` - Change the inno setup configuration file to use/save when installing
**EXAMPLE**
Expand All @@ -56,7 +59,7 @@ R has its own LaTeX-like documentation format, which is used to supply comprehen
[Package Changelog](https://github.com/AdmiringWorm/chocolatey-packages/blob/master/automatic/r.project/Changelog.md)
</releaseNotes>
<dependencies>
<dependency id="r.project" version="[3.5.2]" />
<dependency id="r.project" version="[3.5.3]" />
</dependencies>
</metadata>
<files />
Expand Down

0 comments on commit 4dd35cd

Please sign in to comment.