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.11.0.1:

856

Last Update:

22 Oct 2016

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.11.0.1 | Updated: 22 Oct 2016

Downloads:

6,230

Downloads of v 4.11.0.1:

856

Maintainer(s):

Software Author(s):

  • Felix Winkelmann
  • Peter Bex
  • Evan Hanson

Chicken Scheme 4.11.0.1

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.11.0.1'" [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.11.0.1'" 
$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.11.0.1'
    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.11.0.1'
end

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


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

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


package { 'chicken':
  ensure   => '4.11.0.1',
  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 gep13 on 27 Oct 2016.

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-2016, 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: 5CDC9C41CF65C01529EF3B863CC17AA8 | sha1: 961AEAB9EC61A77E7C42FC7B40D26893E9F3D946 | sha256: 308BC4C1CED5675D0D4B3DB254FFB56DB37E7CD49B6588E5D7D64F7054461BE5 | sha512: 411515B99B12DDB6A3A6DA0E98A2C41DF191AEE7B870145FD468C21224D0B1E2CF9C9E554C897935C66043106773CC72DAF80011EC79A9B3282DFAE4A4F606E9
tools\bin\chicken-bug.exe.ignore
 
tools\bin\chicken-install.exe
md5: 2EFF8DB2E158057ABB674A5D3C1E3737 | sha1: C825950B4D1E3AD474E6C55DE7BC7B5644ECB1DF | sha256: 3DA83EA1224E03803C20B8350F4A93E2FDC219D1CF09989D380DF9D45A6FD7FB | sha512: 1AFE337EF3219935EF8624030070A0A28CA2952A3E69619E1FC5E371F80D29C4CDCD3B5F2F623D1F43180102D70E771D5635C010CF2EE59C73CF9739736D5B41
tools\bin\chicken-install.exe.ignore
 
tools\bin\chicken-profile.exe
md5: 9FD200B372B802FBE181C498EF875F36 | sha1: 7509D45C59F311693D2DEB8BC374188B9AC91210 | sha256: 26D97448A0C2284A251AE340C973AC4ED68A26C9D114BB65B4B10271CFF10A2F | sha512: E9E6615918B8BD2B7B80A277B9E7054ABE815834AB5F2BEA9B652BBFE36A8ABBD2112EA066D23DBADAF030CFE1D25AB666CA136B3F7220453B061A752EABAFD3
tools\bin\chicken-profile.exe.ignore
 
tools\bin\chicken-status.exe
md5: F8DC3D049C8E176E47735317CF1685E4 | sha1: E0965B0A639A7114A90544038D6CEF4D22B4A8F2 | sha256: 57DCFBAB14C851C34F3EA5B39AF1D30D142BB3354198A1ED736CD9B500610E78 | sha512: 9CA879BAF6797BEB3773BB568027E41F6D9E57797D2CD34B2B9861F058571E1BB2C76E62E81324373EAC3C85CAC7AE911636DF5F42CF0FC6F20960C3AEEB92A6
tools\bin\chicken-status.exe.ignore
 
tools\bin\chicken-uninstall.exe
md5: CB2232AEE004FA91366612003EC4BBA9 | sha1: 7EE46C4BCA4508D95272C05A22EAC52B8B5D9380 | sha256: E707155260DB7D3032AD422077E71C948CE1F3C1AE60D9BFA881BEE20D5F43FB | sha512: 52B5A927FB6510807F57C60E16D3C31A1BDF2EA9CFCDF8CD11AB5A1AF0C43E1B4EBE435AD0D81E7CC486ADAEAE425A37A40AEFF8854F3961FECD165ED47D3C18
tools\bin\chicken-uninstall.exe.ignore
 
tools\bin\chicken.exe
md5: 4A4D3DCA26EEBCA7FDA91C97FC29DFAE | sha1: C3D63FF02DF067155E8434218F0208BFDE5AFA4E | sha256: 9E6B053DD6798B3B4C16C401AD51FC4D2653E9175187E61B8105C39C37F57574 | sha512: DA37BE12A36F3207EF1D6BDC9562C988D5BCB8E12B94F0354E0F2A66AA885751E03577B31A7D1363435F545A68C6EF7C8371CE0FD87D2E451EA54F3B646C4450
tools\bin\chicken.exe.ignore
 
tools\bin\csc.exe
md5: 31918F091465A66D4E269E783E3BB6C3 | sha1: 5227F031108821651636E1639317080530ABCA24 | sha256: 7E7E50F7837E7D63011CAED180D243D9E01BF6F4E92C431E2E82E2C09C8B6F09 | sha512: E5A1B504F846AC840A96C47583A16F5AD1FD058FBE0D96BF5CFBBB16A01755B11300B2D893A09183F459B26FE7E8D8DCA9E9ED1AFC4A9F6BA299118E0DB21C44
tools\bin\csc.exe.ignore
 
tools\bin\csi.exe
md5: 2D75A54ED13B8607813A513E7A3028B0 | sha1: 497E700D3FAA90440C24AC2091880A1015D8C07F | sha256: 5417AF5CCEF569797D3971A9A83212E09291A412D50371BF49E80D5F3A47EC56 | sha512: 1916CF03D0C57C5BBC29A22A70E79EC48B178CD5BF064F6257A81D231B1C92B0C0139712A0F47A8233C4A7DFA36E2C1EA5D1D48A621574AA0E7DEA5B6DE88E99
tools\bin\csi.exe.ignore
 
tools\bin\csibatch.bat
@echo off
csi -script %1 %2 %3 %4 %5 %6 %7 %8 %9
tools\bin\feathers.bat
@echo off

rem loader for feathers.tcl, the CHICKEN debugger
rem
rem Copyright (c) 2015-2016, The CHICKEN Team
rem All rights reserved.
rem
rem Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
rem conditions are met:
rem
rem   Redistributions of source code must retain the above copyright notice, this list of conditions and the following
rem     disclaimer.
rem   Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
rem     disclaimer in the documentation and/or other materials provided with the distribution.
rem   Neither the name of the author nor the names of its contributors may be used to endorse or promote
rem     products derived from this software without specific prior written permission.
rem
rem THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
rem OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
rem AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
rem CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
rem CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
rem SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
rem THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
rem OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
rem POSSIBILITY OF SUCH DAMAGE.
wish C:/chicken/share/chicken\feathers.tcl          
tools\bin\libchicken.dll
md5: B3C4758B027C25A1FF9DB393F1EAA549 | sha1: 0469CF6BF1A047B2D613809E7B924E4EA6E2F02A | sha256: D6DFA79A466230A4AEF667C7AD0BC80C6A8993622CAF0E777FB566370A0CC14F | sha512: B03CDCFBC9C0ECFAEA19CDA49A3553D584FD969F411A0D0E7E42F938597E2648D0C6120878A0309616C36CFF3BF097F408D189E655D1E7EE97417BC571E74A75
tools\include\chicken\chicken-config.h
 
tools\include\chicken\chicken.h
 
tools\lib\chicken\8\chicken.import.so
md5: 1A2AAC089310D6A115908C2940C74D78 | sha1: 0EAF5C1BF34C002BFDC175E2464BE5D01A954CED | sha256: 26BC640017DB5670D937D4A4B1CFA5AA68A83F98078A483B544DE22D1124F98E | sha512: 3562DABA246A5ED121D904F6D61F643E315BBA525AF8C7AEF39A7BAB196941E45FF947DC76301E0731D8B389BCC31477A6C282F790F3DBDB7EB4CE0231FBB18F
tools\lib\chicken\8\csi.import.so
md5: 0A3AEF1CDDD838F0C5C7AFE3FB306062 | sha1: 8F08ABE9EF742AF87A40A4D7F22313BB436C9861 | sha256: E395FD8D22045025B87CA5751F3BB2B776DF6F82D7480A7DE781B2D13595EA97 | sha512: 06DD99807A99EAB2BDAB63A6D3CAFCE06E960ECA13D8C8DE7257A3E749BEE3D0BFEA36D4CA6D670824A3082544F65269AD48505D18D9D293746A7CF50A59AB17
tools\lib\chicken\8\data-structures.import.so
md5: 59C5153F58CE59C6E238178D52430966 | sha1: D47F51CEF8955F34A8963CE98E5D02E6DC3798A5 | sha256: BA1E3A6F124998EC659105F9D2607D0636FDECC6ABE74C56F05085AF49AFB9D9 | sha512: 09B7A6F090F200812C23BCC95A68AE77A59B5D79009B7A76C5FC6385C52C399C08800BA0D62117B6BE0F54CC59C8975B6ED0190D7C63FFCA4DEEB413A61C0B6F
tools\lib\chicken\8\extras.import.so
md5: 20FFC0404AE86728DAF4B1A6FFA34B75 | sha1: CC2AADD56DB052C68DBC4B6B40E55E06D92A7571 | sha256: 9A02D013F548B23715CAB5E612DB69598B67D018876DF374FE430F232F261A57 | sha512: FCBA6A17AFFF9644772E8B892848FC4F44F7265705C8AC875CDBD9142BC7F8BBC2CE677A7D12E8F96435D217B0299D5F47004B74789F2EA979B4C4373B042E91
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\man1\chicken-profile.1
 
tools\man1\chicken-install.1
 
tools\man1\chicken-bug.1
 
tools\lib\libchicken.dll.a
 
tools\lib\libchicken.a
 
tools\lib\chicken\8\utils.import.so
md5: CFB072C16ECB5E899ECD1E709188831A | sha1: A7ADB24A3F2F78D46F0986858F85B18CC43BBDF6 | sha256: 24530CC05FB3A226969D4C413514D74340BDB570FF290259A31F3156559B23A4 | sha512: 7ED0BB5E8639782F92F750F8998DE2F3AE590B5BAB32F5DACFF5329B28EF9CDA0BCF18C65914C65E358D72643F7D229566B363EFCC39A729157B60E18274B6A7
tools\lib\chicken\8\types.db
 
tools\lib\chicken\8\tcp.import.so
md5: 0E026A87CD0152805A5995D4B06B272D | sha1: E8B89D1841AA0477B2FB3E67A8FA59E12EF2BCE6 | sha256: E251F90DD325DC54087F52A50C06B4044034FE8941DD67159B7BFC1F7F0754E9 | sha512: 932C5BC03E46EE8F5E3ED516B4169020C4E32AB9F17FB3C188ABCF54672B2BB8C0B48A34129223761A23F16964361B436F4BB4571D372E640787706E4EA3A788
tools\lib\chicken\8\srfi-69.import.so
md5: 81B88B8C133E70FF72905646387517C3 | sha1: F6F7D23EC7F4FA819B67CE3419E8D187B5F98BE4 | sha256: 5300822F2A243C95C33C6EE31ED0FF3F59486080235488AB1603A6C849699E53 | sha512: 56B16165E48E0E1171273EBEFA003F2D6FB3FC29CE74E1517C8B9BF20F1691DCFE28F384F621E74E66F5DBE18CCCE8837B0D745B2D99BD25EE9F5C6EE563ED1D
tools\lib\chicken\8\srfi-4.import.so
md5: C81C8C568679F5D6E2C5DD6F092E84AF | sha1: C0B31D50C50A6760FFEF36B152438750174B97D3 | sha256: 2A49932BE07C95DB4C3D7629D4AD43AD1D5DA089BD14E5A96F9146F3D768D28C | sha512: D4AAF31588424CB6545199BE548543D0F0156178CAC77B70F682A45B6085C3402D15149FA66D06FF56F64EC5773440263B74B8483E2DE876FB9E9F37DA0E9984
tools\lib\chicken\8\srfi-18.import.so
md5: C463FB9BD3C254CD991619A78436D706 | sha1: FAEA1FA312AD28275E0991E0AA323071001FD17E | sha256: 2E6EE39BD9E25E526C34DB7FE0744E6F3AC1B9B4B4FE4F012445670E477EA7AE | sha512: E6FD13B469A1CB76154D16E87C50F0B38F72E119581860E6A085835F443D9B6CDF7D939D46F9354A52A608C40C22C0A96A32B1CEEFC7471E727D6E7534EEBE6B
tools\lib\chicken\8\srfi-14.import.so
md5: B62575B54660BF2DD6D899605A37AE3D | sha1: E4EF3971E3C6BD6B835C857754806FDE5BDE7E6D | sha256: 304B5946B473894FB965FB8FACC1D63E624FC961E269CD2178CAEB3BAB38499C | sha512: 279DBCFC72DE4580E419BCA9CB3D24FA82A7641B9541AA391906AA0B614455698015787E82D939CD92D4F750081B68D652BACAB513CE7D945354EC8E9386DDF8
tools\lib\chicken\8\srfi-13.import.so
md5: 3CFB77DD0D99C83D08BE06ABD8E42322 | sha1: 16CFD309ABAF101A73C127698AD6D124C576945E | sha256: A88DD14F054956467E698AE3E1BF6AC452C153BE6490451383275E1AF39CDD10 | sha512: DED29B6B0F826E67035CB81150340FB46877B629D3144E3FDB7B49E242E28ED1561371115D22D7E080CA1040E28D8D3F31C664DAE87F47860CD4606DA1F8C195
tools\lib\chicken\8\srfi-1.import.so
md5: 08CE5B314154AB37BD6FD70BC3711A9E | sha1: 3A52800508E85425BA318B534D480FBD4DF6C1D2 | sha256: B4C961818EE8296E01D7A201F90E5BC5420DA8E8057D380A8F1460431A369784 | sha512: 036499D935DB608579A4D8CB6E744C0166510C37EAA11D7C503CFA97EF837DFC674669D8D264B99BFB5986F98C5169913FE27AC28021A772327972455370A78E
tools\lib\chicken\8\setup-download.so
md5: 26F50CC7036F1FD4561D50564AFCD954 | sha1: 695C46793A0A18BE9B003DBF8652A588EB3C7BCC | sha256: 6F06E401BC2C778D86E80E8E2255143E3817881C7994E9F830357F360158D178 | sha512: 267943F10FB72F7E16E78EEB9B89EAAC9F48C69588E87E67E14E2471710263825357420A6D7C0A5B2E8A8E3090D6EC33DD608C5B6B4464F41754AB4B1C8BCE56
tools\lib\chicken\8\setup-download.import.so
md5: 79110B98473056F92B9C5EC54AC44EB1 | sha1: B698F09A219A0C50D91F217FEEAFCA0A0621820F | sha256: C34028BCEA80A5DE86CE5C0CA495F81ED2FD2F57901E0E935E635FD0F392613A | sha512: 23985A8011414C056EC39C8E6A91C7E25420B45F4FC633BFE86EA581BB5BD35B746CF8CE1A22C335F801258FBA98907836537D013342CE59E2C1CBDC2A9B2D46
tools\lib\chicken\8\setup-api.so
md5: 473122CE9A06235C90C9AAE0F5708A91 | sha1: EDE899CDF6D3421AAC44781027F48B64EF3C7344 | sha256: 87497E212B5AEE2C2BC67C00F52A32981C4B89987488AFD60865970730E25C7E | sha512: 3A178E2DE09F9A9DFCA9EA53518505EE752F555D5AE31F51207CF537F2842D0FA28A791E6A9B14885BACBE12C8145BF94A7CA22D1C6C31257088D9BF354F85AF
tools\lib\chicken\8\setup-api.import.so
md5: 519C28F87136B474847C2D6B250B24EF | sha1: 439B0AAAA9C14F1DA0DB39AAAD6AC21B946753D4 | sha256: 00F365667766AB35332BE8E8616BBB270C099439227BC154FB059A3116E2EEAD | sha512: 11C99D0781FB264792E60D8330379E97B5CB61210022541300E2DCE1EC04C62416DB8C7BF9F855B292B8B1C6AA8DF887F42BDA1874A2DB3412F0AF1CB3EB509E
tools\lib\chicken\8\posix.import.so
md5: A3C86C162A3ACD60DF1A9BC311646714 | sha1: 7518BA4FACA1E8E9723AF81E10A13B56ED9B4357 | sha256: D52CE8D80445D56CFAD550F88B44D9B15BD20A4CA15C86C4BEDCE05FDE396F45 | sha512: F56E3F9E3C18D088EAA4371E8904BFCB8CF4412C96193C6F5DA6B43D1E3F5F6DCB621CE96699049904FA1064F17CB2D93035A9111F291435B3FB5496BD3FD5A0
tools\lib\chicken\8\ports.import.so
md5: 7734ADC5D9E70B35620CDC2CA41E179A | sha1: 746AB419E525527717EA804E40C8B05DDB2DEFC9 | sha256: F6B4717BD8B36581E46618E9D38E137A45B343AFAF35CEABA7F0FA6D02C2191C | sha512: 56E995708E6245AC50B0A71393DADCAC34B1EBD9E96723B904E90E16899D7D02CE5223AB35C567641DEFD01787B4A4CB3A297EA21381B24CC01E75BE7D5BB1FE
tools\lib\chicken\8\lolevel.import.so
md5: 1DCFCF6F68C06C633AA36ABC1FF1F873 | sha1: E5AE4DBEDB3BBC7BE4C1B8015168AFEC49C1C0F6 | sha256: 607ADB3C3830DAB8BC155CB2AEEAC945337586BA4FE75A94BD55FA5C85995212 | sha512: 8AB32CBA29CD112F5A36B6827AC86E73574E4A91C32B0F88E8B8F2DE9510C9FA84A8987F7DF2F96394BBFA6145EE83E375E75193D56AE0F615C19A0290B29173
tools\lib\chicken\8\irregex.import.so
md5: 200182791190FDBF5AF3536563B93CD3 | sha1: 20DD5E06E82987A74B447AF8DBCDD892B837C45B | sha256: 12086AB188EE2FBFD6D7F94FF3D1DFD861D1C2B1958994DACD40DD5729F21EEB | sha512: 382F43DDFA9995349ACB17DDCFA22876ECFB53CE1C1A4AE9FA1E76BE1FEB73FDDD541ED69C8A1ABA57B5FB782A699953DE89EF9F9DA814AD5A3ADE89CE7475D2
tools\lib\chicken\8\foreign.import.so
md5: 2D7E297BF2778198F055D951444C404C | sha1: 8AFA1D37C5B5FBE0404966DEAD0C3119532760BF | sha256: 158AC4B86ACB8F7DFB4AF28E63F4DFE115D8950ABCA15B3F22645687F974C1AD | sha512: DBF3B480BB05FC6B650E506D384E6648AA7CEACD9311CAFF5A6D780227F03C818CFBA65C02EEAF5EF8739949F591B011AE62D1576A3C4A1029B059CE7792714C
tools\lib\chicken\8\files.import.so
md5: B0BAD0DA50C5D38B70FCF4590422E373 | sha1: CFB9BC236C4D23C63184DB949CA4C56190FDEED3 | sha256: 175849B05809EF20C6901E6A2003C0CDA20FB3CF0F7530FF660BE8DE94015E5E | sha512: 44D0779C9309A46D015CC09907EAD8969DD87D461AD54779FB92698AF7C52D31C8CEC619DD7B0C135CEF52F27CCB3D331A0C87CE65C49903672EB8CFB5D0CA3C
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
 

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