Downloads:
235
Downloads of v 0.14.0-rc2:
15
Last Update:
25 Oct 2024
Package Maintainer(s):
Software Author(s):
- Qi Xiao
Tags:
go shell oss golang cli tools cmd commmandline command-line cmdline foss dev-tools programming-language unixElvish Shell
This is a prerelease version of Elvish Shell.
- 1
- 2
- 3
0.14.0-rc2 | Updated: 25 Oct 2024
Downloads:
235
Downloads of v 0.14.0-rc2:
15
Maintainer(s):
Software Author(s):
- Qi Xiao
Elvish Shell 0.14.0-rc2
This is a prerelease version of Elvish Shell.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Qi Xiao. The inclusion of Qi Xiao trademark(s), if any, upon this webpage is solely to identify Qi Xiao goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Elvish Shell, run the following command from the command line or from PowerShell:
To upgrade Elvish Shell, run the following command from the command line or from PowerShell:
To uninstall Elvish Shell, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download elvish --internalize --version=0.14.0-rc2 --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade elvish -y --source="'INTERNAL REPO URL'" --version="'0.14.0-rc2'" --prerelease [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade elvish -y --source="'INTERNAL REPO URL'" --version="'0.14.0-rc2'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install elvish
win_chocolatey:
name: elvish
version: '0.14.0-rc2'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'elvish' do
action :install
source 'INTERNAL REPO URL'
version '0.14.0-rc2'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller elvish
{
Name = "elvish"
Version = "0.14.0-rc2"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'elvish':
ensure => '0.14.0-rc2',
install_options => ['--prerelease'],
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package is exempt from moderation. While it is likely safe for you, there is more risk involved.
(Chat rooms are all bridged together thanks to Matrix.)
Elvish is:
A powerful scripting language.
A shell with useful interactive features built-in.
A statically linked binary for Linux, BSDs, macOS or Windows.
Elvish is pre-1.0. This means that breaking changes will still happen from time
to time, but it's stable enough for both scripting and interactive use.
Documentation
User docs are hosted on Elvish's website, elv.sh. This
includes how to install Elvish,
tutorials, reference pages, and
news.
Development docs are in ./docs.
Awesome Elvish packages and tools that support Elvish.
License
All source files use the BSD 2-clause license (see LICENSE), except
for the following:
Files in pkg/diff and pkg/rpc are released under the
BSD 3-clause license, since they are derived from
Go's source code. See
pkg/diff/LICENSE and pkg/rpc/LICENSE.Files in pkg/persistent and its subdirectories are
released under EPL 1.0, since they are partially derived from
Clojure's source code. See
pkg/persistent/LICENSE.Files in pkg/md/spec are released under the Creative Commons
CC-BY-SA 4.0 license, since they are derived from
the CommonMark spec. See
pkg/md/spec/LICENSE.
From: https://github.com/elves/elvish/blob/v0.14.0-rc2/LICENSE
LICENSE
Copyright (c) Elvish developers and contributors. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Package can be verified like this:
1. Go to https://github.com/elves/elvish/releases/tag/v0.14.0-rc2, and download from there.
x86_64: https://dl.elv.sh/windows-amd64/elvish-v0.14.0-rc2.zip
i686: https://dl.elv.sh/windows-386/elvish-v0.14.0-rc2.zip
to download the ZIP archive and extract the executables. You may wish to rename one of the files.
2. You can use one of the following methods to obtain the SHA512 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum-x86_64: b43eb0333c2078eb4603b77fd6702d364e33f7bb803272cd1c557b2504250547dc154635656459d365bcf210214f80a3419177a47b50c8a4d661965181385dda
checksum-i686: 552adc2a80c9b38d0237544769fb9c3bc9e7774be17a0955eda0cd23dee8c59141aded05636752cfe1218418fdc45abfc7209e88ec9b4067bc16dfef5dcec374
File 'LICENSE.txt' obtained from:
https://github.com/elves/elvish/blob/v0.14.0-rc2/LICENSE
md5: 303B70B6D4BE84E10A3594D31CACE93B | sha1: DBE043F566E0EE701087A70F58E39F020FC491F4 | sha256: 33FCB88CFBA1ADE741E79EAFC550C0B03513292776BAE40430208B728A3EA642 | sha512: B43EB0333C2078EB4603B77FD6702D364E33F7BB803272CD1C557B2504250547DC154635656459D365BCF210214F80A3419177A47B50C8A4D661965181385DDA
md5: 6EFA835D56D1024265F9DFAA471AEB35 | sha1: 51E497FB08886CDA38A8C71EA31E5EBB923C92A2 | sha256: D59BD5094E17ED97EEA7F1D35B30FCB78D2FCBCD99F0482B165DE29139266491 | sha512: 552ADC2A80C9B38D0237544769FB9C3BC9E7774BE17A0955EDA0CD23DEE8C59141ADED05636752CFE1218418FDC45ABFC7209E88EC9B4067BC16DFEF5DCEC374
Log in or click on link to see number of positives.
- elvish.0.14.0-rc2.nupkg (b43e12475d2d) - ## / 66
- elvish.exe (33fcb88cfba1) - ## / 73
- elvish.exe (d59bd5094e17) - ## / 73
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Elvish Shell 0.15.0-rc3 | 8 | Thursday, November 21, 2024 | Approved | |
Elvish Shell 0.15.0-rc2 | 7 | Wednesday, November 20, 2024 | Approved | |
Elvish Shell 0.15.0-rc1 | 6 | Sunday, November 17, 2024 | Approved | |
Elvish Shell 0.14.1 | 8 | Thursday, November 14, 2024 | Approved | |
Elvish Shell 0.14.0 | 9 | Friday, November 1, 2024 | Approved | |
Elvish Shell 0.14.0-rc3 | 14 | Saturday, October 26, 2024 | Exempted | |
Elvish Shell 0.14.0-rc2 | 15 | Friday, October 25, 2024 | Exempted | |
Elvish Shell 0.14.0-rc1 | 16 | Wednesday, October 23, 2024 | Exempted | |
Elvish Shell 0.13.1 | 17 | Wednesday, October 16, 2024 | Approved | |
Elvish Shell 0.13.0 | 17 | Saturday, October 12, 2024 | Approved | |
Elvish Shell 0.13.0-rc5 | 13 | Friday, September 27, 2024 | Exempted | |
Elvish Shell 0.13.0-rc4 | 12 | Wednesday, September 25, 2024 | Exempted | |
Elvish Shell 0.13.0-rc3 | 15 | Monday, September 23, 2024 | Exempted | |
Elvish Shell 0.13.0-rc2 | 15 | Saturday, September 21, 2024 | Exempted | |
Elvish Shell 0.13.0-rc1 | 10 | Friday, September 20, 2024 | Exempted | |
Elvish Shell 0.12.0 | 28 | Saturday, August 31, 2024 | Approved | |
Elvish Shell 0.11.0 | 25 | Friday, August 16, 2024 | Approved |
Copyright © 2013 - 2024, Elvish Contributors
This package has no dependencies.
Ground Rules:
- This discussion is only about Elvish Shell and the Elvish Shell package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Elvish Shell, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.