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:

6,230

Downloads of v 4.12.0:

792

Last Update:

12 Jul 2017

Package Maintainer(s):

Software Author(s):

  • Felix Winkelmann
  • Peter Bex
  • Evan Hanson

Tags:

chicken admin scheme lisp programming language

Chicken Scheme

This is not the latest version of Chicken Scheme available.

  • 1
  • 2
  • 3

4.12.0 | Updated: 12 Jul 2017

Downloads:

6,230

Downloads of v 4.12.0:

792

Maintainer(s):

Software Author(s):

  • Felix Winkelmann
  • Peter Bex
  • Evan Hanson

Chicken Scheme 4.12.0

This is not the latest version of Chicken Scheme available.

  • 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 Chicken Scheme, run the following command from the command line or from PowerShell:

>

To upgrade Chicken Scheme, run the following command from the command line or from PowerShell:

>

To uninstall Chicken Scheme, 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 chicken -y --source="'INTERNAL REPO URL'" --version="'4.12.0'" [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 chicken -y --source="'INTERNAL REPO URL'" --version="'4.12.0'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install chicken
  win_chocolatey:
    name: chicken
    version: '4.12.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'chicken' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '4.12.0'
end

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


cChocoPackageInstaller chicken
{
    Name     = "chicken"
    Version  = "4.12.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'chicken':
  ensure   => '4.12.0',
  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 23 Jul 2017.

Description

CHICKEN is a compiler for the Scheme programming language. It produces portable and efficient C and supports the R5RS and R7RS (work in progress) standards, and many extensions. It runs on Linux, OS X, Windows, many Unix flavours, and aims to be
free, simple, portable, extensible, well documented and actively supported.


chocolateyInstall.ps1
Move-Item $env:chocolateyPackageFolder\tools C:\chicken -Force
Install-ChocolateyEnvironmentVariable -VariableName "CHICKEN_PREFIX" -VariableValue "C:\chicken" -VariableType Machine
Install-ChocolateyPath -PathToInstall "C:\chicken\bin" -PathType Machine
Update-SessionEnvironment
chocolateyUninstall.ps1
Remove-Item -Recurse -Force "C:\chicken"
Uninstall-ChocolateyEnvironmentVariable -VariableName "CHICKEN_PREFIX" -VariableType Machine
Update-SessionEnvironment
LICENSE.txt
== Main license

CHICKEN falls under the following main license:

  Copyright (c) 2007-2017, The CHICKEN Team
  Copyright (c) 2000-2007, Felix L. Winkelmann
  All rights reserved.
  
  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:
  1. Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.
  2. 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.
  3. The name of the authors may not be used to endorse or promote products
     derived from this software without specific prior written permission.
  
  THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``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 AUTHORS 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.
  

== Additional licenses in main code

synrules.scm:

  Copyright (c) 1993-2001, Richard Kelsey and Jonathan Rees
  All rights reserved.
  
  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:
  1. Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.
  2. 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.
  3. The name of the authors may not be used to endorse or promote products
     derived from this software without specific prior written permission.
  
  THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``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 AUTHORS 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.

irregex.scm:

  Copyright (c) 2005-2016, Alex Shinn
  All rights reserved.
  
  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:
  1. Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.
  2. 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.
  3. The name of the authors may not be used to endorse or promote products
     derived from this software without specific prior written permission.
  
  THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``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 AUTHORS 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.

{{let-optionals}} implementation in chicken-syntax.scm:

  Copyright (c) 1996 Olin Shivers
  All rights reserved.
  
  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:
  1. Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.
  2. 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.
  3. The name of the authors may not be used to endorse or promote products
     derived from this software without specific prior written permission.
  
  THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``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 AUTHORS 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.

srfi-1.scm:

  Copyright (c) 1998, 1999 by Olin Shivers. You may do as you please with
  this code as long as you do not remove this copyright notice or
  hold me liable for its use. Please send bug reports to [email protected].

srfi-13.scm, srfi-14.scm:

  Copyright (c) 1988-1994 Massachusetts Institute of Technology.
  Copyright (c) 1988-1995 Massachusetts Institute of Technology
  This material was developed by the Scheme project at the Massachusetts
  Institute of Technology, Department of Electrical Engineering and
  Computer Science.  Permission to copy and modify this software, to
  redistribute either the original software or a modified version, and
  to use this software for any purpose is granted, subject to the
  following restrictions and understandings.
  
  1. Any copy made of this software must include this copyright notice
  in full.
  
  2. Users of this software agree to make their best efforts (a) to
  return to the MIT Scheme project any improvements or extensions that
  they make, so that these may be included in future releases; and (b)
  to inform MIT of noteworthy uses of this software.
  
  3. All materials developed as a consequence of the use of this
  software shall duly acknowledge such use, in accordance with the usual
  standards of acknowledging credit in academic research.
  
  4. MIT has made no warrantee or representation that the operation of
  this software will be error-free, and MIT is under no obligation to
  provide any services, by way of maintenance, update, or otherwise.
  
  5. In conjunction with products arising from the use of this material,
  there shall be no use of the name of the Massachusetts Institute of
  Technology nor of any adaptation thereof in any advertising,
  promotional, or sales literature without prior written consent from
  MIT in each case.

srfi-13.scm:

  Copyright (c) 1998, 1999, 2000 Olin Shivers. All rights reserved.
  All rights reserved.
  
  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:
  1. Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.
  2. 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.
  3. The name of the authors may not be used to endorse or promote products
     derived from this software without specific prior written permission.
  
  THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``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 AUTHORS 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.

=== Public domain / unencumbered

Since we would still like to acknowledge all the useful contributions
from people who gave us public domain code, here's a list for
completeness sake:

data-structures.scm:

  Copyright (C) 1995 Mikael Djurfeldt
  Taken from SLIB (slightly adapted)

  SLIB's sort.scm has this statement:

  Richard A. O'Keefe (based on Prolog code by D.H.D.Warren)
  This code is in the public domain.

extras.scm:

  Copyright (c) 1991, Marc Feeley 
  Author: Marc Feeley ([email protected])
  Distribution restrictions: none

== Tests

Tests are ''not'' part of a typical binary CHICKEN distribution, so
these licenses are only relevant in atypical situations:

tests/slatex.scm
tests/slatex.sty
tests/test.tex:
  Copyright (c) 1990-2002, Dorai Sitaram.
  All rights reserved.

  Permission to distribute and use this work for any
  purpose is hereby granted provided this copyright
  notice is included in the copy.  This work is provided
  as is, with no warranty of any kind.

tests/dwindtst.scm:

  Copyright (C) 1992 Aubrey Jaffer
  
  Permission to copy this software, to modify it, to redistribute it,
  to distribute modified versions, and to use it for any purpose is
  granted, subject to the following restrictions and understandings.
  
  1.  Any copy made of this software must include this copyright notice
  in full.
  
  2.  I have made no warranty or representation that the operation of
  this software will be error-free, and I am under no obligation to
  provide any services, by way of maintenance, update, or otherwise.
  
  3.  In conjunction with products arising from the use of this
  material, there shall be no use of my name in any advertising,
  promotional, or sales literature without prior written consent in
  each case.

tests/r4rstest.scm:

  Copyright (C) 1991, 1992, 1993, 1994, 1995, 2000, 2003 Free Software Foundation, Inc.
  
  This program is free software; you can redistribute it and/or modify it
  under the terms of the GNU General Public License as published by the
  Free Software Foundation; either version 2, or (at your option) any
  later version.
  
  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.
  
  To receive a copy of the GNU General Public License, write to the
  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  Boston, MA 02111-1307, USA; or view
  http://swissnet.ai.mit.edu/~jaffer/GPL.html

tests/srfi-13-tests.scm:

  Copyright (c) 2000-2003 Shiro Kawai, All rights reserved.

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:

   1. Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.

   2. 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.

   3. Neither the name of the authors nor the names of its contributors
      may be used to endorse or promote products derived from this
      software without specific prior written permission.

  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
  OWNER 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.
tools\bin\chicken-bug.exe
md5: B2937059809BA4F9F247D91F6A10DF57 | sha1: 71C042FBC9CEFD35823694D5557262FFAA867540 | sha256: 29526FD8E76FE07B8CAD912084014AE8BCA6D1B448D434E6C91D965E78E13DC4 | sha512: 65E21C115DFBFBFCC1BAEBF41A5DD7D15CF25813704B2513F4EA8B21E75AFB669FB6F838CE61B06624D25A62E3197A353A895101F9D34EB3F3AEFF26539C582A
tools\bin\chicken-bug.exe.ignore
 
tools\bin\chicken-install.exe
md5: 5318E1A4362B20341C0AD4B8D0B8AB8D | sha1: 857C417ADD7EBE76C18FCCCA1E53021B34A9E69C | sha256: 2E5B09965D97AB3CE5AFD9A3863738FF3AA1D28B5CD5F0367B5039859B57BB6B | sha512: C5897B1D1A5C9607AD2757C3FEE7C41999CBBD2323BE615AB85A9FFD9F6F45FA427F4D296C4B54DF4A64EB557F09981C00761C729964526276F65E835853CD48
tools\bin\chicken-install.exe.ignore
 
tools\bin\chicken-profile.exe
md5: 3F6A4B22A86344C03F98EEE5EF7BAACC | sha1: 7119692A14496FD52F1CD8DA46A67984A7884B29 | sha256: 26FBBE722CDF421F8DA3EDBAF54F5E389596C25DACBE9CF43A90D519D43D5C10 | sha512: 545E6E0AD4A7AC2E73E312FAAD766AC1A0BBBDF40A88F24DCE28281477A9E22439EB263053226D10923F82D6ACF590225B1467C9FD8AD124168FE754833879B0
tools\bin\chicken-profile.exe.ignore
 
tools\bin\chicken-status.exe
md5: 7E1E01D1C6C49F936568A840033B476A | sha1: C33AEEDB379CD2DC42F30D4338983167A3EAA1F0 | sha256: A7E8C2CE7E7F63F39450CD2EC59F57BB12786DA130E1F409D6E85E7621CD516E | sha512: 8043F748A2AB745F2731553C62049ED2C1D6DE7467621B06351D5C0AEAC7C37DA3F29888524B7C5E24559C0999D3F81ACEEA1BAF6E174DB876353BEF89BAFF52
tools\bin\chicken-status.exe.ignore
 
tools\bin\chicken-uninstall.exe
md5: 8FAF14C099604D36F171FE92F2B29D77 | sha1: C5901901D6C736096F460F7C31AFC4AB62617AC6 | sha256: F99CB87FCCCB609B7D07ECCFA9CF8F904442DD760962C39F70E3464E0593AB52 | sha512: 0312A9CDBEE0110174A7140370A21490EBF2DC5EDC42E9B3DFC0479A026076C9B2DEF90507BF76A7DCB4348385B0AF622BC6446AD77C41A171A2E1E519A01E03
tools\bin\chicken-uninstall.exe.ignore
 
tools\bin\chicken.exe
md5: B5D7AB6B3B57C8DD5EF066A9D3E65157 | sha1: 32C2FEFB3C2115C8D1E806C45709AB7DE1EA71D3 | sha256: A5A3E3B7A473C226897F5BAD254F136D0497A4374D103FB2E486D9A405FBFF44 | sha512: 50255D7258CBFBABDF5A607E2482EC36F921A42BEAB5C8BC3E92E1385A19D9E107D1520B6ACF57FB4C4884C39C5E8B6F1EB3E9B9662BCFA0AE6A223B64CAA870
tools\bin\chicken.exe.ignore
 
tools\bin\csc.exe
md5: 77664BE006FADD45054633454FF5718A | sha1: 06D3B648E58DF7DEEEC14ECB25CBECFC76EC614B | sha256: 057A43F0C11003B636DEF2EB8CD18AF1E374C417AD4052D3E075C9CD44BEA5AF | sha512: E851918D8226D3262D5892CC9A8926791F2405B1F24B68BACC193883FB2DE6F7CDADE50C06BB6F106ACD4110B0D00276A70ED11DC8FC61E169268251CC25B3B0
tools\bin\csc.exe.ignore
 
tools\bin\csi.exe
md5: 32E4DE0A2BA90AA31F2356B0F7E288D6 | sha1: 16C339AAF877A839C5D8260ADAAF973D08971312 | sha256: 02F007CDD9F0DBEC4C3237BA1C251DB4EFADF56FECDFE085943E5D57F1460220 | sha512: 2D1BD84043CE3154070C8E4F644F769AFDA8632F62E4CEAD770F695FF58467CCC6C000AA44C89502A98288A9E66DEA84679C81A79DB4A7947D610A520291CD9A
tools\bin\csi.exe.ignore
 
tools\bin\csibatch.bat
@echo off
csi -script %1 %2 %3 %4 %5 %6 %7 %8 %9
tools\bin\libchicken.dll
md5: 831E6B59F3FCD167DBEFFF27027B9020 | sha1: 323BDD98A3803396B98038BC0BC68E222A7BF53A | sha256: EB2075BEF39906202C2DB7F14F2C42308A57F20FAF39C23C8BE2FC0E72E588A1 | sha512: 6ACADFD1DE4EE6FA35847C330F935A4481EA35FE7F3E1469A46DC8919DD4C755D77CAA07DB80B03A2F28673CC7095284C6F3A3BC689B7368FF3EC5F82939603C
tools\include\chicken\chicken-config.h
 
tools\include\chicken\chicken.h
 
tools\lib\chicken\8\chicken.import.so
md5: A4BAA0CAAD40E0FCEBDFE19E8435CCF3 | sha1: 87BFB15FF59B26C8D8434574B20C7BCED36B0690 | sha256: 8F836CB40E11966E049F6988646156816029147AA3DF69B271EF01D941D74EEC | sha512: C3100C8054D1D7521E339D57EF6005F275063C0DFF66C5123DAF50AAA025EE748D749F23D5E014502A1B00FDC7E5CC1576C503852D20A5B84869D0F18E20E8BC
tools\lib\chicken\8\csi.import.so
md5: F6671557A5C3DF2CABE6033706F9C5F1 | sha1: 36B5B8AB076B8E2F72C369827688363F774E3391 | sha256: 33AA077EF1BA79DC840268E6C0C3A8DB62B268E52857494C7E818FE0C98ABFFB | sha512: 498F3776F1F65D71307F2D1DD5FC62009FC36F54F68A67F1AD0055EEBA8EFA6269FFC951FD140A07E8083D7FB5ECC8DF4BB78ED89F2C39C93410205EB6F8C9F8
tools\lib\chicken\8\data-structures.import.so
md5: A2A7D061BC86FB2078168689F507F3F7 | sha1: 3C29F2CC6B8C8119281D91327BDADA2D8F1119F4 | sha256: 1800E6443CB4A607B169899C28899D9A7E411BE7DC00494CEE630AA1F8F10DAA | sha512: AA64E470FA5800CCC67047918264D41BCA1FB2553467A9B22BDBEA48044BF06BA011919D4AF89702D634AE831CFAF3DCA41E5522C3A1B22AB84021BA8534EA7E
tools\lib\chicken\8\extras.import.so
md5: 66BBD8EA7826F9974C8F15E1D80C55B5 | sha1: 0A1E6A82A29C22EB93A59CC90C0C2856D7A7F18F | sha256: 673FBA112C400F17E8A9109E210811C7066C7A928FD4336DD29286C5B90DF457 | sha512: 4BCF40927F02633DDE71E86301B8883422A8A861608DD5DC70C143559C0E156CEAE1F4DDBD539719B813DE2EC56F6AF6000B3D11717970F0FAF6A87EE0FE8F14
tools\lib\chicken\8\files.import.so
md5: 9C8C09E06F22522C167323714EC9B11C | sha1: 49C5AE90537E8BD2F743254928BB100F064C8B84 | sha256: 7D43F072ACDDBD32A873A8B5A1B467396B1EA10FDF02271A559078FA43F7B535 | sha512: BFE8F92D1B096962A90B6B5FA21141D6A720B23DD96C7DAFAD088F7078765366DD66C3D8D37029146468ABA6D94986F002DD1461296670736EDB9BBC33EF62AB
tools\lib\chicken\8\foreign.import.so
md5: 65A9AC8B047283ECAA8C5AC9071102C1 | sha1: 64BE38102F896A484CE9C00CE2C76C9084DCB135 | sha256: CF597A061714CC2FC182848B26D59F3131E89BBF28D2A12BEF5A22D4D1A3972A | sha512: 26ADD7295CD8622503093492D629746EF08B095D9EE48268BD3C3751817519B1115FBAB8155E5E14687240EC316838C72B8403537DAFF802AAF04DE09EF026C6
tools\lib\chicken\8\irregex.import.so
md5: 3D1CD16910E0DE384C4EB65C525F2849 | sha1: 72F894D7625E91C4FE323E054BDAF11A0DABB38B | sha256: 6477DC26D80191F02510FD8195265C56D0D1605EFF24F83287A99C80C2FB4135 | sha512: 01A15287D2324AB85C2510C178F112CD4FD5C0AE01729DD0FD44835447F03CC6D961300D82EF6D506CB5674A52021E6BC4BA8A05801A1DE8DFE7B27DA1D6ABAB
tools\lib\chicken\8\lolevel.import.so
md5: D97B1BEC16E7125D7859DDD476131D3B | sha1: 12D8625E172652EE053D6F4F6EFEB31E7C4956C1 | sha256: 5459CFFA1972EF12C340A6D0EDB1821B56B5A61B1B5D968277626CCCEDC68532 | sha512: F66581E46140DA9FD565E0D3F6C7B3350FB99A4020BD07D44660BF2697EC65F9B0C30E99497D0360493C86DB5611955056B0DF779D2E52A986F3A6A13F5884BF
tools\lib\chicken\8\ports.import.so
md5: 692CA4962548F5188FE6F2C2247C7FAA | sha1: 122235E303FB92EACBF4F2DB745091907E6CA0B0 | sha256: 085D768CC693A6DFF03D8A55372A29AA10D4A70EEDF81E7E9C5640E999889546 | sha512: F7AADC1C6C46FFA8C41F834B206FFAF22D9921B68D89D4F2429C02F4CB37436DCE4BD67656C43CA98AAC3EF87C9662E85AA40146EC95DACA465AB45777172517
tools\lib\chicken\8\posix.import.so
md5: 58FBC4320606F94BA0E2DE1B0F6F388A | sha1: 4B558B6461E9F3E09C310FD9D26869E0AF0A7047 | sha256: 9EAE6AC1973A9E43748EF64D02B831C86FD967D4DB6BB57F52356F58A7A3A9A4 | sha512: E6DFBC94D80523B8F16A8A8E0C9ECC726F436DEDDB7FD2A2489014EDA35A7E14D5E8A29D3641E4FCB3D7727C5E3C4742CD76FB828D847C81DB21CF7696FA42FE
tools\lib\chicken\8\setup-api.import.so
md5: 816971B8F09DB9D791F7BB8A6154DD83 | sha1: 079C3016EE220EB401D90B5519BD06FA694D3D58 | sha256: 5D9F485E857AD2617441EF6458A9257AA305BB97B8072514A9603D55F467C250 | sha512: A85F444AFCA9ED3280B37B416EBCB22BAF3AA08343D52C48C455A40DD47AFF2B1224587B52174475B885E6E9BF3A6609565850B62F3F181A3C17D203131DB79A
tools\lib\chicken\8\setup-api.so
md5: 37D5EF3FFEAE5AAA2E0C57DA0C979AD7 | sha1: 7C182205A0C0EB2085846A8114F621F71FD6F779 | sha256: B7964700A3B86DADDD4433E472AE78B298BCC899D30879EEB0B130B79D9F9C75 | sha512: ADD741E546B6337BBF06F12DC6A79E1E32A766681B338FEC40F79CC9AD8994F6034B6B2FD130D3E863D5572D84EC09D68793292B77F4E5447DD77D84BAAC8776
tools\lib\chicken\8\setup-download.import.so
md5: C7639FB6EFA82F09768FB11A79E382B0 | sha1: 7F9C40A95E19C15C19787AE6D8EF8337DFEDABFD | sha256: 9A844BE61FAC132718390A852FEC24A83606BDB208627589B4B006F9989500A5 | sha512: 181EEBBFFD6A5AD14B4E3161AD1866202C38D2F10AF65F340892154FD373A3D19A011DE1ED1D52C7BEFCD3EADAA3DC9BB9E1D20AEBAA979D17BCD9E7C15364C0
tools\lib\chicken\8\setup-download.so
md5: A842CEEEB5B9F4C5E8AFC9954EF8923C | sha1: AF5EC7C452E5BC4038B093A4CDE9EC398FFEE976 | sha256: 3F87DF3470160E9F0140D1F46962058A2E16D22131D114C186DDA09BB2F670E6 | sha512: A108C2962E95232DA539107B22FA8D0879DC34AECC7C5D3CF4BC213850194EE2E50704F78D7A6E4578D4C5D82DD319FB56E7C4FADA3D094F97D13B74EA1AA1F6
tools\lib\chicken\8\srfi-1.import.so
md5: 8049E09E876EE927AE67B89E4B5FA6C6 | sha1: 01F21EA1634EEA334D8AF7971E65AD0310B1BF34 | sha256: 3E1F644D0103B548F0D3F5D8381B0FA8119A133ADB56CB90D3609E0F3B81EC6D | sha512: EF7184D45C9A9C640634986CF2A308D797013C1AA696019A0AD499DA657FCBA2BD22AEF7E5D4107E0BC5B77C9E54C977010FE491D452B2499BD749393DD3185F
tools\lib\chicken\8\srfi-13.import.so
md5: BA00E9206B3EF88FD13F1CA8D9393C07 | sha1: 7BE257EC5C895A099866E9E9E3A53FDE798E6253 | sha256: 2D4C0BA2AC90DA30879E1547940D3104733488C47C13BF6DCA0249FBE6A354F4 | sha512: 6D6EAF43CAC6F4A052A86105935EDABFB36166ADDCE2BE02B87A9761E928601DF9A203FB23908D337A1631602BF67D330A147554228FDB1356777F253697B603
tools\lib\chicken\8\srfi-14.import.so
md5: BF500F66232B5E83CA05E55AD1DD7088 | sha1: 17772E841B0654F8315B45EDEBB2298D8D8BC949 | sha256: 3D6432B6197B53F95002F6E5EB767B7626A3A516F5FA72987251673C3DEB7A81 | sha512: 03BE9562DD57601171B38822001246A73473109617AFA902CCE7AB052466FD5685CAEBFA6F61196213DB763D2DC811D6F343BB7FE0F7F22C2BF2526636046207
tools\lib\chicken\8\srfi-18.import.so
md5: 5C5FBD96E1752F95BEABAF421F2DAC82 | sha1: FA8F3128DB55CD962EF7A605711CFE6494C865DA | sha256: D3CE6E77A8AF49987E864E480683782778B60156673FE4D63FAAF4ECE25C07B6 | sha512: 9E9775BB19006B5C762B89B8111985B9176BB7E3E4869B41C2AD0CB6DBCCBE54FED329140B9B40FA1C51EE3E818EA7C724F3718A9DA2A2748ABBE40FBD04E47F
tools\lib\chicken\8\srfi-4.import.so
md5: 6D5F17A25C6CA756B0A3726A354A1DDB | sha1: 1C51F4779099DE77EF392913895BCD3EAFA8A720 | sha256: 0CC155EF4C7866A84D8A20B4CB2A16EC7BB745697E96BC6094E1C4007A5786EF | sha512: 7C588B5A43F70C537047512D3C4B6F48FB6E1D9B34510EF905D20D80DE674A81EA2230355714C06B2CB42E3DAA1E5B7EDA10C80A0BBB15504B2215EC5F00E30E
tools\lib\chicken\8\srfi-69.import.so
md5: A6703B617A24F8026CBC406B3DA0CAB6 | sha1: 0B69412D974FE8BB5AB69EBE90F80C4E4355425E | sha256: 8B0DA79800E63B4DF096133C208F6D25282DA32875083BCB14D63D3A0EE1375F | sha512: 12C3893EDF360815F9642FD3DF1AF71A02B986AFC51FA6E1B1720077677534CD5826B2BBBD2847B75E080F7E66D1B12E5286DE45B101816F3D2C301C6F8CC1F3
tools\lib\chicken\8\tcp.import.so
md5: 4DBE04B2D6C4469C3F7EF109F1411E6F | sha1: F06147C155B353CE3D37B91832D2C107B0B044C5 | sha256: 77C23541A220FE807DBB29056F49DA487FB35AA1F4FABB70C772DF0A15D0CC33 | sha512: 1B3490091FA0F4A88C7974BA08018AF77A49280CFE778352E5BCA50FB40277F5AC830F0539AB30B0F5599FDB5C826B3C4C908FB5E4308BAEBA023529A8E4D7FE
tools\lib\chicken\8\types.db
 
tools\lib\chicken\8\utils.import.so
md5: 4F87EA61788EF8CFB2C5CE8A17B9094E | sha1: 1A41527B1DF9695A1F719C68C23A3BC980947075 | sha256: C68DBB4FD616B596A59B1C5BA6F4BA905A14059B91F2C25996F2053A84F21156 | sha512: 55E38A92389486B9FFCC47B49A2316388BE56A52132F17C0DF8945FE79A88D1CF234810C63325B54B696DB47275974A5211C4144693A4275EAB8ED58345B2D25
tools\lib\libchicken.a
 
tools\lib\libchicken.dll.a
 
tools\man1\chicken-bug.1
 
tools\man1\chicken-install.1
 
tools\man1\chicken-profile.1
 
tools\man1\chicken-status.1
 
tools\man1\chicken-uninstall.1
 
tools\man1\chicken.1
 
tools\man1\csc.1
 
tools\man1\csi.1
 
tools\man1\feathers.1
 
tools\share\chicken\doc\chicken.png
 
tools\share\chicken\doc\feathers.tcl
 
tools\share\chicken\doc\LICENSE
 
tools\share\chicken\doc\manual-html\Accessing external objects.html
 
tools\share\chicken\doc\manual-html\Acknowledgements.html
 
tools\share\chicken\doc\manual-html\Basic mode of operation.html
 
tools\share\chicken\doc\manual-html\Bibliography.html
 
tools\share\chicken\doc\manual-html\Bugs and limitations.html
 
tools\share\chicken\doc\manual-html\C interface.html
 
tools\share\chicken\doc\manual-html\Callbacks.html
 
tools\share\chicken\doc\manual-html\chicken.png
 
tools\share\chicken\doc\manual-html\Cross development.html
 
tools\share\chicken\doc\manual-html\Data representation.html
 
tools\share\chicken\doc\manual-html\Debugging.html
 
tools\share\chicken\doc\manual-html\Declarations.html
 
tools\share\chicken\doc\manual-html\Deployment.html
 
tools\share\chicken\doc\manual-html\Deviations from the standard.html
 
tools\share\chicken\doc\manual-html\Embedding.html
 
tools\share\chicken\doc\manual-html\Exceptions.html
 
tools\share\chicken\doc\manual-html\Extensions to the standard.html
 
tools\share\chicken\doc\manual-html\Extensions.html
 
tools\share\chicken\doc\manual-html\faq.html
 
tools\share\chicken\doc\manual-html\Foreign type specifiers.html
 
tools\share\chicken\doc\manual-html\Getting started.html
 
tools\share\chicken\doc\manual-html\index.html
 
tools\share\chicken\doc\manual-html\Interface to external functions and variables.html
 
tools\share\chicken\doc\manual-html\Locations.html
 
tools\share\chicken\doc\manual-html\Macros.html
 
tools\share\chicken\doc\manual-html\manual.css
 
tools\share\chicken\doc\manual-html\Modules.html
 
tools\share\chicken\doc\manual-html\Non-standard macros and special forms.html
 
tools\share\chicken\doc\manual-html\Non-standard read syntax.html
 
tools\share\chicken\doc\manual-html\Other support procedures.html
 
tools\share\chicken\doc\manual-html\Parameters.html
 
tools\share\chicken\doc\manual-html\Supported language.html
 
tools\share\chicken\doc\manual-html\The R5RS standard.html
 
tools\share\chicken\doc\manual-html\The User's Manual.html
 
tools\share\chicken\doc\manual-html\Types.html
 
tools\share\chicken\doc\manual-html\Unit data-structures.html
 
tools\share\chicken\doc\manual-html\Unit eval.html
 
tools\share\chicken\doc\manual-html\Unit expand.html
 
tools\share\chicken\doc\manual-html\Unit extras.html
 
tools\share\chicken\doc\manual-html\Unit files.html
 
tools\share\chicken\doc\manual-html\Unit irregex.html
 
tools\share\chicken\doc\manual-html\Unit library.html
 
tools\share\chicken\doc\manual-html\Unit lolevel.html
 
tools\share\chicken\doc\manual-html\Unit ports.html
 
tools\share\chicken\doc\manual-html\Unit posix.html
 
tools\share\chicken\doc\manual-html\Unit srfi-1.html
 
tools\share\chicken\doc\manual-html\Unit srfi-13.html
 
tools\share\chicken\doc\manual-html\Unit srfi-14.html
 
tools\share\chicken\doc\manual-html\Unit srfi-18.html
 
tools\share\chicken\doc\manual-html\Unit srfi-4.html
 
tools\share\chicken\doc\manual-html\Unit srfi-69.html
 
tools\share\chicken\doc\manual-html\Unit tcp.html
 
tools\share\chicken\doc\manual-html\Unit utils.html
 
tools\share\chicken\doc\manual-html\Using the compiler.html
 
tools\share\chicken\doc\manual-html\Using the interpreter.html
 
tools\share\chicken\doc\README
 
tools\share\chicken\setup.defaults
 
VERIFICATION.txt
This package was compiled from source for Chocolatey by Daniel Ziltener <[email protected]>.

The script used to build the package can be found at https://bitbucket.org/zilti/choco-chicken.

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
Chicken Scheme 5.2.0.5 120 Saturday, June 20, 2020 Approved
Chicken Scheme 5.2.0.3 293 Friday, May 1, 2020 Approved
Chicken Scheme 5.2.0.2 207 Friday, April 3, 2020 Approved
Chicken Scheme 5.2.0 266 Monday, March 2, 2020 Approved
Chicken Scheme 4.13.0 1311 Friday, December 15, 2017 Approved
Chicken Scheme 4.12.0 792 Wednesday, July 12, 2017 Approved
Chicken Scheme 4.11.0.1 856 Saturday, October 22, 2016 Approved
Chicken Scheme 4.11.0 451 Wednesday, October 19, 2016 Approved
Discussion for the Chicken Scheme Package

Ground Rules:

  • This discussion is only about Chicken Scheme and the Chicken Scheme 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 Chicken Scheme, 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