Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

638

Downloads of v 1.1.5:

638

Last Update:

13 Feb 2018

Package Maintainer(s):

Software Author(s):

  • Garry Pettet

Tags:

roo lang xojo

roo (Portable)

  • 1
  • 2
  • 3

1.1.5 | Updated: 13 Feb 2018

Downloads:

638

Downloads of v 1.1.5:

638

Maintainer(s):

Software Author(s):

  • Garry Pettet

Tags:

roo lang xojo

roo (Portable) 1.1.5

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install roo (Portable), run the following command from the command line or from PowerShell:

>

To upgrade roo (Portable), run the following command from the command line or from PowerShell:

>

To uninstall roo (Portable), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

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

  • 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

3. Copy Your Script

choco upgrade roo -y --source="'INTERNAL REPO URL'" [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 roo -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install roo
  win_chocolatey:
    name: roo
    version: '1.1.5'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'roo' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.1.5'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller roo
{
    Name     = "roo"
    Version  = "1.1.5"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'roo':
  ensure   => '1.1.5',
  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.

Package Approved

This package was approved by moderator AdmiringWorm on 13 Feb 2018.

Description

Roo is a cross-platform dynamically-typed interpreted open source scripting language which takes inspiration from Ruby (everything is an object) and Python (indentation matters for block scoping). It supports both object-oriented and functional programming approaches and includes closures. The reference interpreter is roo which is written in Xojo.


tools\LICENSE.txt

Note: Include this file if including binaries you have the right to distribute. 
Otherwise delete. this file.

===DELETE ABOVE THIS LINE AND THIS LINE===

From: https://choosealicense.com/licenses/mit/

LICENSE

MIT License

Copyright (c) [year] [fullname]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
tools\msvcp120.dll
md5: 46060C35F697281BC5E7337AEE3722B1 | sha1: D0164C041707F297A73ABB9EA854111953E99CF1 | sha256: 2ABF0AAB5A3C5AE9424B64E9D19D9D6D4AEBC67814D7E92E4927B9798FEF2848 | sha512: 2CF2ED4D45C79A6E6CEBFA3D332710A97F5CF0251DC194EEC8C54EA0CB85762FD19822610021CCD6A6904E80AFAE1590A83AF1FA45152F28CA56D862A3473F0A
tools\msvcp140.dll
md5: 1C33CB1547A1C5BA7455BB0BF0215A7C | sha1: 7952BEC4FA818A443C7199E3BF46C680CC0B0C38 | sha256: 1599657F775CBEEDB9EBB1FEB7AAA339F0598E446620B9D2131A54F58AF8A628 | sha512: FE812921F4DABF157C35260C6E7BEBEF8B5A3F060E597CE55C602008EED479E067F2356D0B1C19FF0121C348E0AFF7F828B2EB69FA9F18D62D77F536245F7196
tools\msvcr120.dll
md5: 9C861C079DD81762B6C54E37597B7712 | sha1: 62CB65A1D79E2C5ADA0C7BFC04C18693567C90D0 | sha256: AD32240BB1DE55C3F5FCAC8789F583A17057F9D14914C538C2A7A5AD346B341C | sha512: 3AA770D6FBA8590FDCF5D263CB2B3D2FAE859E29D31AD482FBFBD700BCD602A013AC2568475999EF9FB06AE666D203D97F42181EC7344CBA023A8534FB13ACB7
tools\packages\about.md
Place packages to be made available by the `require` statement in this folder.
This is version 1.1.4
tools\roo.exe
md5: 266EC9DBB7509B1C0A07B2EA84884D05 | sha1: 71ADED76B71869AEEE9756B9EE8D63410E54D76E | sha256: 4EFD2C9372AD4CD62EB1E6BB93D5BC0205DBD0BBBEFE7ABA7679F1362EDD0D1F | sha512: 4356BDC26C2CD2042E39032291AB4B20060B09487041A2DC3A0AC251229771E31C4EF8515F49CB0AF8F779563AC0D34042EE82F63722CD3EB07F9769E5A56D89
tools\vccorlib140.dll
md5: 823DC75EA11A7CF77F0BC78EAD04551B | sha1: A4F3868DDF4EB614BD7655B8D34895E5A123388F | sha256: 0087821D50E003CB1BE2235AD4612315912ABC55695907C9455D0E212FA25ABB | sha512: D0237C4B105354981E15655E68BE7B47865AEA11489DBAB0C69A2A6FCE2F71B7855F2278E5265C3B883741190FE741035FE18002A3A707426B27FE802844160B
tools\vcruntime140.dll
md5: A8666A7C014C4125886CC49CDB0CCAA5 | sha1: 62D85AE64771D0C85C0E0484774771B3CA233246 | sha256: F5CAAD204FFD557FCAC4B4DCBA468BF24E994A69582956D5A087F0ECD123F612 | sha512: B071BA8C6A981578C69DF2D6D26E61BCF3909A58DD41E3B0DFAC2DB80BBA7C2BD19C40DEA3957D50D4028FEAFF0DD181236BBBD7F6F017F9BBFCB3F6E5EFF35A
tools\VERIFICATION.txt

VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 
Nombre: msvcp120.dll
CRC-32: 416d86b7
   MD4: 5559c1f2774f9a71e6041cde750c19c0
   MD5: 46060c35f697281bc5e7337aee3722b1
 SHA-1: d0164c041707f297a73abb9ea854111953e99cf1
 
Nombre: msvcp140.dll
CRC-32: ebbea147
   MD4: f658ecb697ea07f61eb7b4a71efa58c3
   MD5: 1c33cb1547a1c5ba7455bb0bf0215a7c
 SHA-1: 7952bec4fa818a443c7199e3bf46c680cc0b0c38
 
Nombre: msvcr120.dll
CRC-32: cb6097c3
   MD4: 43c2958bfe279192e1d3eeaffae3e771
   MD5: 9c861c079dd81762b6c54e37597b7712
 SHA-1: 62cb65a1d79e2c5ada0c7bfc04c18693567c90d0
 
Nombre: roo.exe
CRC-32: 73633358
   MD4: 0c4785fcf9a33875959e7038eb40bf5f
   MD5: 266ec9dbb7509b1c0a07b2ea84884d05
 SHA-1: 71aded76b71869aeee9756b9ee8d63410e54d76e

Nombre: vccorlib140.dll
CRC-32: 3e023ddd
   MD4: 3abc362eda28c130d885f5024a1911a0
   MD5: 823dc75ea11a7cf77f0bc78ead04551b
 SHA-1: a4f3868ddf4eb614bd7655b8d34895e5a123388

Nombre: vcruntime140.dll
CRC-32: 9f3a562f
   MD4: 019ee1260c2fc39e6d999a09cb2343a8
   MD5: a8666a7c014c4125886cc49cdb0ccaa5
 SHA-1: 62d85ae64771d0c85c0e0484774771b3ca233246

Nombre: XojoConsoleFramework64.dll
CRC-32: 23fc3184
   MD4: 4cdc0b59ebdfc5ebfc7235b7d0018e10
   MD5: 430ea091cb159b01f35588b5b8ec797f
 SHA-1: 808a3d42b64f3f57669d4a4574bc98b466e78ef1
tools\XojoConsoleFramework64.dll
md5: 430EA091CB159B01F35588B5B8EC797F | sha1: 808A3D42B64F3F57669D4A4574BC98B466E78EF1 | sha256: 88A7B84EDEB7A6655B5D38D643F20DDA3314C1EA58EAF1FC71B06DEA0EDDEE72 | sha512: 3533ED3B1F4181FE95D86DC0BA7EDED6C6F20E2A892D4431AB4F038965E21BF64BEB33764B6F24A296F6643BAC5AEE2AC0C380EA9485DA9DC243AC0A6EA18F06

Log in or click on link to see number of positives.

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

This package has no dependencies.

Discussion for the roo (Portable) Package

Ground Rules:

  • This discussion is only about roo (Portable) and the roo (Portable) 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 roo (Portable), 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.
comments powered by Disqus