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,253

Downloads of v 5.2.0.2:

207

Last Update:

03 Apr 2020

Package Maintainer(s):

Software Author(s):

  • Felix Winkelmann
  • Peter Bex
  • Evan Hanson
  • Kooda
  • megane

Tags:

chicken admin scheme lisp programming language

Chicken Scheme

This is not the latest version of Chicken Scheme available.

  • 1
  • 2
  • 3

5.2.0.2 | Updated: 03 Apr 2020

Downloads:

6,253

Downloads of v 5.2.0.2:

207

Maintainer(s):

Software Author(s):

  • Felix Winkelmann
  • Peter Bex
  • Evan Hanson
  • Kooda
  • megane

Chicken Scheme 5.2.0.2

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="'5.2.0.2'" [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="'5.2.0.2'" 
$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: '5.2.0.2'
    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  '5.2.0.2'
end

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


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

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


package { 'chicken':
  ensure   => '5.2.0.2',
  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 mkevenaar on 11 Apr 2020.

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
New-Item C:\tools -ItemType Directory
Move-Item $env:chocolateyPackageFolder\tools C:\tools\chicken -Force
Install-ChocolateyEnvironmentVariable -VariableName "CHICKEN_PREFIX" -VariableValue "C:\tools\chicken" -VariableType Machine
Install-ChocolateyPath -PathToInstall "C:\tools\chicken\bin" -PathType Machine
Update-SessionEnvironment
chocolateyUninstall.ps1
Remove-Item -Recurse -Force "C:\tools\chicken"
Uninstall-ChocolateyEnvironmentVariable -VariableName "CHICKEN_PREFIX" -VariableType Machine
Update-SessionEnvironment
LICENSE.txt
== Main license

CHICKEN falls under the following main license:

  Copyright (c) 2007-2020, 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.

=== 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/numbers-test-gauche.scm:

   Copyright (c) 2000-2010  Shiro Kawai  <[email protected]>

  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-do.exe
md5: 178081515E79B93277D17BC11E0297FC | sha1: 38345629607484D635AA9AAF688F3DBDC0DAACA7 | sha256: 5E1287E20EFA7FFC51AE2C5AAB08FB992BF319BA07A5C04ADD74989153CFF0EF | sha512: C1360EE0464E6D969C6B78F2A7D18D872A2464DDA7B0236D6429FF37332E69BA68374021A9F75EBEC71256E618ED7757267C6556FD431062B0F9E0AA3824C9BE
tools\bin\chicken-do.exe.ignore
 
tools\bin\chicken-install.exe
md5: 24F34166F452757C72A0D13DE48B6A82 | sha1: 78B048054929A6724515D5996983ADFB97D75A51 | sha256: 87F358D25B2A6FE720D02CD5C01A7C6CABF455FFC344EB4C728881751FB80323 | sha512: 32FFEF783BF9DBD42884F269BF8C1B9977CD57190D44500D8302712A4AD761E427934075F60883533FA59E3745959EF0A78E13A1B9A02DDB4A669808BD6CE0F8
tools\bin\chicken-install.exe.ignore
 
tools\bin\chicken-profile.exe
md5: C10F290ABDB596D8574EA6B18DE44A7E | sha1: 542577881C36BA545BDC4E5FC92DD6DD3585E848 | sha256: 1C1317AE144EB7C88585966FA0F54EA69625EC0E2C67B79B707134FC2D323274 | sha512: CEA34C2FA2902E70E65ADB640F0A266DF493D86C17DD4DFA76E1F09948E67DFCE2BE429D5EFD25B2EE6834D9BA9CF0FE0E8D7587EC2CE88FF7CD5F185257A52E
tools\bin\chicken-profile.exe.ignore
 
tools\bin\chicken-status.exe
md5: C63856C70398CD8C969BD4203F5A3AB7 | sha1: F5796E197B1459D790CA079D9D9D7BA03BDACC4B | sha256: CC0D0DEB7AE5559FAE47E40FA56D190730824A0C4DB3580C189E826A35FC501C | sha512: 008868D519963644D7583A22AFAB642BF8B999AA976BE57D683E8E64E6C9339D259AF4A52A337ECC5D44C958FDF2A02F703FF340B3DDB2E5B1226849F65AD65A
tools\bin\chicken-status.exe.ignore
 
tools\bin\chicken-uninstall.exe
md5: E4E8640A6E533D41C1BB9B926EF0E82C | sha1: 848A3A42A56F4E47ADF48687E4288F461E3F0F36 | sha256: D7F63904B181A2154DE47F98B685492626F15A9FDF3A864CDEEDE57A14C44B90 | sha512: E0712EA0578C1EF118D8715CC4B6913A88C279647BBCFE06007809E8E343104EAA26F2EC9289669D0388878B39E59D0E555E7B650D03420B6E3C625142D601F0
tools\bin\chicken-uninstall.exe.ignore
 
tools\bin\chicken.exe
md5: 19A0B92720822544793B8E08E5D25324 | sha1: 609F9221FC102FA3EEA35B225ABE92193CAA87EE | sha256: B2D148062FBB3360C04128C3F063185C5A33330DF424F967D0F8A460615930D2 | sha512: FA5C9A8E3C0445E571950D27E7277C569F178B9929BEEBFED30EE30B0006219A7A0BF31A2807845164FD4F90B269DB57DA00ACE0C681F7FCBC0FF3E457EE5AEA
tools\bin\chicken.exe.ignore
 
tools\bin\csc.exe
md5: 61AEBEB4A3B554E3B341A285FF6E89BB | sha1: F45FB36E9C50F6E847B006532E035C07F51B1199 | sha256: 8D1283A94565EA2BE0A09485C870DBB9F0125119895A20D4FAD6E0F2D2F10E09 | sha512: 51B9D0B16118DFBC5515C425D89364793601C1F981E298A9D7915A731BDD18834366D51E32E280C7B658C4CE6E2E5DEEC81AF1E32E75FCA6F742FEFBB4B3D709
tools\bin\csc.exe.ignore
 
tools\bin\csi.exe
md5: 0B6DD398F7B8E64B18C0DE77406F9D8B | sha1: C1188E01C031F867C647E19DFA9F22AE8565E6B2 | sha256: F6F6B8125E9623880B0F5FDF3750FEAC287CBEDFDB3A2850B358C2DB359D2A30 | sha512: DA12933238BEFFD7C3756E004B8542505303D8E897038480025FACD97C533D1CEBF2DE9C588B3B3EC50F0EC8B8FCDE0C74B60F790A808D19E02054C4DAF6223D
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: BC7A38376C80939D2EDFE48CD09A42E0 | sha1: A7B6D3F7593E5E4F343C44DAE6FFF46EF2EF435B | sha256: ACF7F2EEA7E22A230401C83CBBDD2F2FD452FC742B10F6F0BD4E64DE484C26BC | sha512: A8A2A53A3BC68FF549C7C08791BE38175F61FFB92722E92DB8FCA31BFBAD64A2FD0EE7F9355D33D5328B53AE42DDB074E44E364B06C7DF60BB481388569979EE
tools\include\chicken\chicken-config.h
 
tools\include\chicken\chicken.h
 
tools\lib\chicken\9\chicken.base.import.so
md5: CCDDC75FCEAD092A519130BA719C5EFC | sha1: 4E056E148D771BDB634DB5D314E1670B7D605A75 | sha256: D7ABDFB02582C4CC5DF3C7DFD727BD7EDB42CD8CF2A7DE329B40B7B03FDDD246 | sha512: C0F1E0257684E731D1096BA63904B6880C480C3510B04474E444544B7215ECC82F23BB02C794048FFA5DDA826036ECE97F0F5BBB9086022AA735E2ECFC55EEB7
tools\lib\chicken\9\chicken.bitwise.import.so
md5: F7DF84E62B67B95CABD27C83BF9DD710 | sha1: 068D3E98365754EC80D14F20A7BE2209A2277424 | sha256: FC002443F32089A98E668027DC53103B9116B07D6199A4F988D57CE07C0614C7 | sha512: 25D31EE1BEE1C164A50AC73A402D9A8944A357CFE0CCA4F5C5EAE0A1EB9A1C8E19D79533DA0560DA5E3EA803091C6693C45A61D36B291F70858F6B748724826C
tools\lib\chicken\9\chicken.blob.import.so
md5: 74A7DCCA8E706B1D5E72F962F4BAEA18 | sha1: 8E477CBD5B89F918A55733BC4D29AF53641D976C | sha256: AF90036D925CEE6541CFA2B8AC5A3C5C28ACC155644291FC157230043E6B9429 | sha512: 4CFCB0978FC448476E039DFDA93F7840FE490ECC741B9B42A189894A3EE2D64F5A8A883EC572928092CF30673E6960F4F266BA4D584A1DC947145B2C3F128BB5
tools\lib\chicken\9\chicken.compiler.user-pass.import.so
md5: C66C3E87B5B3B0010BE3F8A4894D0D71 | sha1: 27AE53CBDA19707EAA94C92A11319BADB3CE06F6 | sha256: 3619573E112B7574BE56B0DFECF63D4DEFF9A0918177AF1AFDBD5957CCB7CCF0 | sha512: D98BE85C0C1CACA28EE8BC1B83D83B15789D019745B54DF38F96FD9FBFF2EF974F2BE9A5FEC5282C00C67CD4954EEFC153CE335810F57E8C48402B03372F00F5
tools\lib\chicken\9\chicken.condition.import.so
md5: 4C6D06F44C3A70AFB50E683FA0C04533 | sha1: 92A3514D6D80F07F2FC5F64B61B4558F6232CDC1 | sha256: CCDAB2D0C3FA68549F68E9323C8E45338A28BD0001477F749954D1670338AD22 | sha512: 6D425A00869D1AC65CD5ABFF486E9E590D166080AF577D77E40988ADB9519DC2E9B3A7EA07763F6091929555F9E316B9D2DDC2E956BE983F16E9D51902FF4F2F
tools\lib\chicken\9\chicken.continuation.import.so
md5: 062068969EE985F5ECB2E26D05C51483 | sha1: 2FC6062B22489AFFC8A7CA6CF4910EA3DEE08971 | sha256: 10D016254FD0C79D8D1BB74ED37A71DEEBBA212009A112CCC1774EB536909EFD | sha512: 8FD9728492B1007C017A32BA906444765B1C5D973D22D0344CF6F2BCB7F6ED29CB9ED67643EF034B8014CD489E90A424BBEAC2A0E84DD2183BBA132B76256023
tools\lib\chicken\9\chicken.csi.import.so
md5: 92728E24CCB4604E3CD513C5EB6C19E2 | sha1: E12C4FB3F9EF4F509F654C4A487F9B0530CCC317 | sha256: 0721A9917020B0182354001FFC42ADF7EF7677009ED870E02F4DDA11335596D7 | sha512: 4553D0766102CA2C4D48EAC568291B7E75DC6CC5B9F80396BA27181D59A5BEC50D234A2564444FAF1FB39B2832B5D6EB51860FF65AB25802DBD37EC8394BAD84
tools\lib\chicken\9\chicken.errno.import.so
md5: 73FE4FA7AE71F73FAFC6528E4C6EDB31 | sha1: 8AFA5F1473E38A689FE37314075AE6C814DB1E2F | sha256: 23DB14611CD572564812EC61783DFD5CF01DFD733802B44B1D2BF4A44582DF8C | sha512: 7E0629556AFF5B1E0940DA24CC907CE523039DC4F2EA99B2C34F282859A59BC187FDAABE3BF5C8FDE0DA20DA8E7DBC1C70B943E0AD05A4240F6F5BA9168ED2D3
tools\lib\chicken\9\chicken.eval.import.so
md5: BB8A92AB78F138ED4794A8411BB14291 | sha1: 5C075B04A24780B54970F541BFE369915AFD50FF | sha256: 404BACC5B33436C0F7B309D9192B4EED0C78B7A52B9E6767D485BEF633D21D75 | sha512: 61938200EE32B8E6EA81FE713C1D30181F8088303CB4EB56914F4BF1E65DBFF43D0712E94947E8D4165345AC21F442AFA3ACBBDDC8579C724824AD37116F5ACB
tools\lib\chicken\9\chicken.file.import.so
md5: 47069C0695AC21404B7C37473F72755E | sha1: 638A1FFFCA31A9A3B896841B409D71C9872EA9E3 | sha256: 2299541D496360EDDCCD5BFAA26150D75B5B6DB2B03788491DBD0AD1C021D72D | sha512: 58A1DCEDBF52F7AC665A6C15DE8A5E313CF64BE48E614DCCC5B3EA2430E4BC014085CECCD6657D3B94DF5CB7F3FB8B28432FACF46216CB4F6DBADCCFD7E04F9B
tools\lib\chicken\9\chicken.file.posix.import.so
md5: 642C1445972E3B7E74E3197716C386A8 | sha1: D67252F9CF3654CC37578B9648920607EC9B7B90 | sha256: 22064B2BF4BC9C48808A0A8045E34BAF69CF680CFA8F5C633EE2933FA98BAD20 | sha512: 5240382E788380EAC7FC209279BF63F9127D1E83BC3A3871E4CA585D7266EC90A47DAB30280E690B499B1BAD3A5B4F29B2FDF1656A131177864DEE34BFCEB24B
tools\lib\chicken\9\chicken.fixnum.import.so
md5: AB23E6C768BC026C367E7EB53A033C1E | sha1: E2A6DE9E1C622F7C1431F3DD39A7E90BBC426BF9 | sha256: B9169FDDA2CE5971A1D1E9976E6C63CD2704610FEC3611C4125F08E709F911DE | sha512: 59BF7BE98910A957D5AE9AAD66901C572C59B0D820D5E6CFA7EB6A76CDBDF81885C1610BD17F71297F46B1EE58F801F7CBC5F57A0AF42F1D4693C330FD23738A
tools\lib\chicken\9\chicken.flonum.import.so
md5: 13D729380C87FC74CE8EA8DD0C671DF3 | sha1: 14C2475F7C1076783AAAC060B7F1AF496454C068 | sha256: B608254D96173510912DCF79461AAC984354519489DC01E168616C681010A33C | sha512: 1702AB210F619C97ECD194C7DD68E88C15D58D181161B925AE8EB30054FFB98D7E07075AF919AB0BEF8ADE0D905E13B60C0269BFADF1483BB873DB4DE6B5C28A
tools\lib\chicken\9\chicken.foreign.import.so
md5: F66568751124C92FD8165B1727BCAA76 | sha1: 5DCF5441DCA4A0C44769F609727F9E0DD271FA1F | sha256: BF9A7D922E12E5DD00E28332E2CC36739A5F83EA069AC45824859EC98A2E4BB4 | sha512: 1F5DD3D92DCADEC0073381BF7EA3673367D4EE5CB4BF82BD32E157AB3C727000D88CF0AB79538673386AF50613D62F97C8DC56DE7FA7746050DAD65BE464ECAF
tools\lib\chicken\9\chicken.format.import.so
md5: 50FEB214A04F31B6C46AD5B99212EBE4 | sha1: FB47420F029E42C963C6D6F93F3523F1EED325E5 | sha256: 15FAD1F3A896D53FC72B0FDBB1D4A9193E1C16D91F1C7F05BEA354B8729210F2 | sha512: 3D277CDA76D320666101699487086962F6AC29FF4DA436CED978AC349C0D0714EB2AE4141097522166F00B195654807CBFD77E4863D9CC7F661818CCC30C777A
tools\lib\chicken\9\chicken.gc.import.so
md5: D2C50D1F3BA9B2CC3AB3FF469DB6A603 | sha1: 466339024FB0BE7FCB7BFB8AB7E6CCCA9CEC7D0B | sha256: D6B1CBFBAF963F951546F924D88833314EE49361EC0A8366AE2F94B21A68598F | sha512: 244B9AE0D12DFE00CD94C1A9C9215117DBC6144559E3BE1704872A982E55C4DD06F357476C1DF8BCD3DFF9C3978FD3635DE53F716F7BF1067621BB42C304932F
tools\lib\chicken\9\chicken.internal.import.so
md5: BFED87D2F39C16C55171F90EF578EE01 | sha1: C52D4A3ED62F7C7EE4882181EC63EDE55C01003B | sha256: 2BE80F6EB6E4E63D224FDE242235C693295E8051EBEB74F0C272495DB23E8C1C | sha512: A534E70931D2F620E1B967FDBE2AA18491B5C8045E8EA71781CCD09871F69F7C8CB4184BFE382466F94FEEC26AD5064E1070C8A9806F597114B0971091ABB5AD
tools\lib\chicken\9\chicken.io.import.so
md5: FC34F222BA67524F3DC0DD1AB9A09AE3 | sha1: 0BDD4CC487FB4027CFFFD61ADB8E8F646D06786B | sha256: 482EB636C9F8DA5089951373A5F0132C57E6B78142EF67A1301A4B75E224157E | sha512: 69A8E91E3DA7AD6D3A9A5840FDEE26E6279541A65CD0D42E88412703A3513C9E00FA9A6A4119D2CF509753BE87F170EB2A599066696080BFAE1FF9674FECEDA5
tools\lib\chicken\9\chicken.irregex.import.so
md5: 34F18AE0D81836E01AD43171FFD55F39 | sha1: 7575301123B662CCA3B4D2E6F0A30C3C1EF81163 | sha256: 91BBACB2C344B57BE89386015CE2E0815EFB5C4B66B5B6D5586B7CA28DEE0E0B | sha512: F13EE0C23E561FB8C465CC8A9B18811756B28DF78A2B85B4E0B4A739F749C6EB6946E4A04C2760907EE07508EDC26F0A8495DD357266179C79EBE1A6FB143D32
tools\lib\chicken\9\chicken.keyword.import.so
md5: D3949210CF9BE48AD857D7A13CD21C29 | sha1: D2F0B8494FF5513961A56DE18E5ACFA6026636F6 | sha256: C8A46571EE75BCD4E7167EAB9DB5080C3A257D673E150DDB029384F2192ADFF6 | sha512: D8A9E5CA42908A5E080948CF2C3754EC76C78E4840CD100DA513A43E646CE5CF97E3573B89DE08AF3A8BAE5DAE03C2BC15B984E2359F3936D259496C615A8F6E
tools\lib\chicken\9\chicken.load.import.so
md5: 4FE9B9BE60C9D0BE7A109ACBF96C953F | sha1: ED078DCFDBCDBF16A3FDB77A9849A46116955BBC | sha256: 8F4DE0FA880606C5911A59F3853DEFCDEF90DCC84DDAAEB9951565D779C676B5 | sha512: FD878FAFCE3E86F67BAE25BB0EE153B226A28698CDF5D14BF9CE6D9B8B994C63C9A533F4387491C80A7E5B8BF178F080A991979E931DD127044C3424FBB0CAB4
tools\lib\chicken\9\chicken.locative.import.so
md5: C17FF8C66664DFF52F44E2B823E20CB9 | sha1: F2A975C3B8F88E0453BEB94C40C57043530C8539 | sha256: 970D9C5AAE352A45F90B052BEDD9A4CA87F795AE9F4410A9273CA1FF9AC6CB1E | sha512: 3C9B1282C16CB0F09A1E8F51312B93470B3D6C8A03028634C5FDE3408EDB8AC3BB3D5B4D8E32253B7EDE5B5C04A897CBC9B811D0C7F94851093F3580ECAB2F5D
tools\lib\chicken\9\chicken.memory.import.so
md5: 99224BA6A3E5DA07B64DF06ED788C030 | sha1: C8794A6B7A0702A2FDDD80FEC0657CB8F36FD988 | sha256: 1B787817C6B5485ECCF9886D5B6AD5745AD9320DC1278E5D2582BDD29EE5C413 | sha512: 8E18EFFA7D3930D58A99C3A331AB82BC5A092529FB22F929B508B46F9AB1CAE8F7631D335E7EC4A07761B061CAD19834C418CD529D23E10B605BE797411BC18F
tools\lib\chicken\9\chicken.memory.representation.import.so
md5: 2FA7F9385B0A5A298E48A5B9D909CEE6 | sha1: 840907B1A5D6DA98CAA002E663CE6CF944AFE6A4 | sha256: FF6BD6BEC8A936D2368D5ED1AAA20107E748C4A577BB94E41D658C6D37B34103 | sha512: 0A09D652E4B5C1B9A33EC1AAACBC0A87C1762FF7E39DA46C85D68548F3E98D791E06CE95FD9613932E5E7DCA40FF3B55C1750F3602DFDCD69A8C685760A3542E
tools\lib\chicken\9\chicken.pathname.import.so
md5: 0EC9932A93B694E37D54D55DC7BCD270 | sha1: C573838EF9309337F4747E6E2E9C62DA71F9E112 | sha256: F04073CAB09759808741C994863F664F8162D0949E2A9E4C52C6B8E42623B0F0 | sha512: 5F4D235798817003B3C3656B565D72B8A10898086398957893B13AB80FF80CB3F733EC42721E48A7006A3CBC18BAE9BBEF3112265BA694B9ACDD33E405DFCEF5
tools\lib\chicken\9\chicken.platform.import.so
md5: B4409C4CE9FCE0367B4DA1B2D6A120BE | sha1: 825A2874AB603CB0D5FD66B72E0283C0FBB442CD | sha256: F0FA733635A1F0F1D19CCF91763CA7D785A0F495277A959E167BE146614F566E | sha512: C3F3AB4E6124A2FAAA94CF29ADA1F820AFC7F97D1B1EBD63F0DAA18ACE0CA63E1028C240BF21FD7049B88A61C76B610995BD1D8EADE37F9567CEEB01B1856E9E
tools\lib\chicken\9\chicken.plist.import.so
md5: 3554B96D947673338852603FBD8EC6E2 | sha1: 59A3199EE5E3550D7B72C95B8D3740D3DEE6A026 | sha256: 5DC8AE7A4D098B0B3B57A124C888F6B7BDF73F6221956D89F58FD5C02DAECF19 | sha512: F7E25E4CA5B7B75B512CF7E93568A40B89683F20CE01BAB181167D222736E5AD345F9DC39C7A3296D245652BC2CDE8C1CF7C03225FD32A79AE0D7947B6903AAB
tools\lib\chicken\9\chicken.port.import.so
md5: 23B820001DD45BE08A231C8A2308295A | sha1: 582F98F7D6BDB545103C1E1F3DCE9F3B47CA5595 | sha256: 385B1A2EFCB95DB9018137D15694E763DA887039635284B7AE03CC2387E8030A | sha512: 150A89A495FDAEC2F89F171BD76805AC4AB5FEC06E109EF449A68F9789D8CDB8A23B01D9F1ECBAF18CA397D6841A59B264F8662B7BF1B93A46C99585DBA42541
tools\lib\chicken\9\chicken.pretty-print.import.so
md5: F233A0157450ADA7F859878F49329B23 | sha1: 2C0B69A5589AB142123C3BA5D17EE70ADFB80A02 | sha256: D993D863C455486AD274A2DB50CD1DDABBBA9471FEBB3FC0A88FA27C528B31FD | sha512: 48EE6B5AF26FF0C4D77D2E8F9AC7F60DFA6313CB7D5E660221A927176C212A8CC6F36D563CFBE616EAE40BBBB34EC257E3486D62F44D6EE561B995C160902572
tools\lib\chicken\9\chicken.process-context.import.so
md5: AFE9E0CEB36291ADE97745ED3B61A6DC | sha1: 00B8F9317B86A34654E19F17A6D25F0AAFDE265A | sha256: BCA64733BA99BF8741289F5309FB20D9F507AA611E6E7775A8C6A75AAA144100 | sha512: 68A7D178C89082CD25B94C08FEF6B7A5AE19F7BAFAC4307EC09195C8360032C57EE994B710B9BE5BDB1B56E09201BFD7DCEF9EF82D02B7A5533D72A5574ADD2F
tools\lib\chicken\9\chicken.process-context.posix.import.so
md5: C4126D3906FA3639FFFCFE958ED8889F | sha1: 8B4A9E75CD6A035BF91BA11D8CEE81EFD9F39E5F | sha256: DAA6AD8BCE90B5C610B691361DF04DC0A9EFE210F24BF566778012D76BD5399F | sha512: 748F5400D256CA438CF7A13AA5AFBD0B8B4347FBED9632159C735C095D8413FCC4673E3C7CD1127FE1B5305944ECD4091B7FD598BDF5275A26E0B942AE9F7AFC
tools\lib\chicken\9\chicken.process.import.so
md5: 056C757DA53F492AE4EC82F03FA6ECED | sha1: 9EBB290FA6A680E74FADA1999FC3D89CCCC850B2 | sha256: 8E54F6AB38F524678584284657B4A2A536669574AF618CCD789FF6ACFBBBEE37 | sha512: 25A96482AAB08ED3E918E30427DAC2C3EF200AFABB9C91464B162D87A1A3B54F5902C9BF1DD0B004BA4CD3BBCDC7D74ABB66152DE1B021A5DE601C6A80FE7527
tools\lib\chicken\9\chicken.process.signal.import.so
md5: F912DDD922FE6142BEB3A31CC1DC7673 | sha1: 7C780D27FD4A03C97456F45FD1759742F215F521 | sha256: 368B2555A0E5093CFC23297965BC85700B1669418236F4B6B12787599AFDFABD | sha512: B4CA7E0A774E4C4AD0E9E79E3B98C24832F0A3BD360471CADD2A4EB58C3124EFEF3EE5A25DB7F47C0776CC0F3E512A2FAC78E91A53405AE18E6250A976F7B9D4
tools\lib\chicken\9\chicken.random.import.so
md5: FD5359BDF309F38F387891AF55C10E7B | sha1: 8E71D9E3B03CBE77D0D7432489A29ED137F7616D | sha256: E04B2FC3F2647BC8C3E329CF937A71EDB75CCEF8FEC3D64B439856F6CA5045AB | sha512: C70D170684B0D442C3E05E6FCBB4E38E8F8DE03C7AC37E906C27CA0E344C22ADA1A777E78AA9F9E600F7B8292FA2A029C29C40AE979C91DD58D0152488F7A895
tools\lib\chicken\9\chicken.read-syntax.import.so
md5: 173FAB3BB1EF92C4C0216F3799077A09 | sha1: 3DC2231804D52688C325ABC8AB28620B1277E222 | sha256: 1AE5FBBF22F66A12CAE71B978822AB06C8516464498CAF36CCC1D5DFA0266F06 | sha512: 5B03860D1F9334D5A0B11B562125516F76DFD8B68CF8EE6B67A0ACD191F9DD9BAA394E519059540C2B5BAB2EAB80A826FC18987D19BA44705B974C498C7BEE0F
tools\lib\chicken\9\chicken.repl.import.so
md5: 771F94A26C9471C1CA3BA0550B3C3227 | sha1: E350E616FE72D7B5823589667FB9122EBBD21084 | sha256: 956569E38053207F7E5366D551B72944CC822EE5D67B80F18A8CDD59F78A3B8C | sha512: 9D7DBEF4F2A0F0A89FB1A94DC7611C7F0655BC751A7EB09D211E7094AF5AFCEF5D2B85C52E71413D77D00A6CB72FEADBCE4E1F6DBA0719D6F4E6C45134619C6C
tools\lib\chicken\9\chicken.sort.import.so
md5: 70647641D445AF93EEA85777CD39EF3F | sha1: 5760A30228151591BC57BF96EE2C978F44296CEB | sha256: C80972F006C87055879CC37BA154332FB8CC22D38CC7FE129F07B67E7B44BC2F | sha512: 320B2CB3A57658952ED7868E0201C01199ACF20B8146C77DEBDDBE890B7583D8632ED1792896106DD981E8AB6C63107E74C3F109BF67F5E833C4C7AE3FF84041
tools\lib\chicken\9\chicken.string.import.so
md5: 1C4E2D525AD7C98B37E2F910B92FB60A | sha1: 9366179FF35635D880AA23514639A82577DE1E09 | sha256: FFB29854FB88B532F69CA02EFD7853B56344BC47C24E0AA09EE07248718C40F3 | sha512: 14A41CDB9A685007CE05C29A784F4B49A41515782D2B2678951294AF68688FFD519321E79FA62C60CE9F68D5A1A01EC6BD1833AFE858B1497A7FAC794236387B
tools\lib\chicken\9\chicken.syntax.import.so
md5: 9EB8DB5A0E653919FD3E3E3AB68C8D34 | sha1: 948F921FB30283FC2C9EABED48B27E4F34251CC7 | sha256: B7B97B5213AC1BEB61869C9F9175CC0051289764714D268E88891D5654013259 | sha512: 828A4A14B697895E0FD0F9F04BD07E84237411BE0FA631E4EC942CDCE94550E0473026018AB82440E4EFE40ED98DF99ED5A4FFE2EA3E1F6834709AB3EC50E758
tools\lib\chicken\9\chicken.tcp.import.so
md5: E26ED867660262CB9FDB614B66055359 | sha1: A23D920E06DAD0FAD08DC69D11DAD820AC45127F | sha256: B8E1AF16B4FF3620E67C1286D7690C3D5BA03F24739A100165DBF1B2874629FA | sha512: FA2C7673CEB91DC2FBB80A14C16B4131307670316491CE7B4F6E0D3D87C358E1A4890A2505197636839D2E5FF81A8BD76E0436E334B897C32D6599358AA40BD0
tools\lib\chicken\9\chicken.time.import.so
md5: AF8CE61AACC06B6FFF6351087CC2A1A6 | sha1: 7F3A4068F49E9B67476E5E4B93ACEA40496678C7 | sha256: 54FC868251C804B49403E4ABBF00E20268E14DCB0F5A66A694161EB35897496A | sha512: EAEFE095C442E098D100049B3C63666AC65AB1A699D2C288150F7FB89603EC06B4C2AE6763DACE49D3ACDBC9740A6891FF3EB43CB5D200011064EF6E10E13B81
tools\lib\chicken\9\chicken.time.posix.import.so
md5: 26A27F3F0FF5FA1F7366C712B8CCFF8F | sha1: 7BD780E0152EEB71146B6D1AB5E74C170D7FF7AD | sha256: B55AB9F1DF30B909FE5F5FC6A78B63CC05053F7BC745BA6A2BDF2B52272D5B47 | sha512: E69235833D17204A90A1C9B34896E8347968A7AA082057A5A10EA12E87429B52A87EE7991017E1C71037C0EF19082A819086FE9228B90875DB67CEE6F0CBB8DC
tools\lib\chicken\9\srfi-4.import.so
md5: 3981893D363F01FC6864F5C55B3D14DA | sha1: E603B5425B6E0407DEDF499AD3A7D01CF95C469B | sha256: 7BD055E6F84C7557E920AC30D42E35A86A6CA91C7DA419E38B251952E9B22054 | sha512: 010D15DFACD55F88227EAB7952A8DAB72F4BBB31D61380C65CED4FA3A666BDB0A202607177D546DE3E5A348B357208557B469FF69610DBFA8C028450F6FA93F1
tools\lib\chicken\9\types.db
 
tools\lib\libchicken.a
 
tools\lib\libchicken.dll.a
 
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\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\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\Egg specification format.html
 
tools\share\chicken\doc\manual-html\Embedding.html
 
tools\share\chicken\doc\manual-html\Extension tools.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\Foreign type specifiers.html
 
tools\share\chicken\doc\manual-html\Getting started.html
 
tools\share\chicken\doc\manual-html\Included modules.html
 
tools\share\chicken\doc\manual-html\Interface to external functions and variables.html
 
tools\share\chicken\doc\manual-html\manual.css
 
tools\share\chicken\doc\manual-html\Module (chicken base).html
 
tools\share\chicken\doc\manual-html\Module (chicken bitwise).html
 
tools\share\chicken\doc\manual-html\Module (chicken blob).html
 
tools\share\chicken\doc\manual-html\Module (chicken condition).html
 
tools\share\chicken\doc\manual-html\Module (chicken continuation).html
 
tools\share\chicken\doc\manual-html\Module (chicken csi).html
 
tools\share\chicken\doc\manual-html\Module (chicken errno).html
 
tools\share\chicken\doc\manual-html\Module (chicken eval).html
 
tools\share\chicken\doc\manual-html\Module (chicken file posix).html
 
tools\share\chicken\doc\manual-html\Module (chicken file).html
 
tools\share\chicken\doc\manual-html\Module (chicken fixnum).html
 
tools\share\chicken\doc\manual-html\Module (chicken flonum).html
 
tools\share\chicken\doc\manual-html\Module (chicken foreign).html
 
tools\share\chicken\doc\manual-html\Module (chicken format).html
 
tools\share\chicken\doc\manual-html\Module (chicken gc).html
 
tools\share\chicken\doc\manual-html\Module (chicken io).html
 
tools\share\chicken\doc\manual-html\Module (chicken irregex).html
 
tools\share\chicken\doc\manual-html\Module (chicken keyword).html
 
tools\share\chicken\doc\manual-html\Module (chicken load).html
 
tools\share\chicken\doc\manual-html\Module (chicken locative).html
 
tools\share\chicken\doc\manual-html\Module (chicken memory representation).html
 
tools\share\chicken\doc\manual-html\Module (chicken memory).html
 
tools\share\chicken\doc\manual-html\Module (chicken module).html
 
tools\share\chicken\doc\manual-html\Module (chicken pathname).html
 
tools\share\chicken\doc\manual-html\Module (chicken platform).html
 
tools\share\chicken\doc\manual-html\Module (chicken plist).html
 
tools\share\chicken\doc\manual-html\Module (chicken port).html
 
tools\share\chicken\doc\manual-html\Module (chicken pretty-print).html
 
tools\share\chicken\doc\manual-html\Module (chicken process signal).html
 
tools\share\chicken\doc\manual-html\Module (chicken process).html
 
tools\share\chicken\doc\manual-html\Module (chicken process-context posix).html
 
tools\share\chicken\doc\manual-html\Module (chicken process-context).html
 
tools\share\chicken\doc\manual-html\Module (chicken random).html
 
tools\share\chicken\doc\manual-html\Module (chicken read-syntax).html
 
tools\share\chicken\doc\manual-html\Module (chicken repl).html
 
tools\share\chicken\doc\manual-html\Module (chicken sort).html
 
tools\share\chicken\doc\manual-html\Module (chicken string).html
 
tools\share\chicken\doc\manual-html\Module (chicken syntax).html
 
tools\share\chicken\doc\manual-html\Module (chicken tcp).html
 
tools\share\chicken\doc\manual-html\Module (chicken time posix).html
 
tools\share\chicken\doc\manual-html\Module (chicken time).html
 
tools\share\chicken\doc\manual-html\Module (chicken type).html
 
tools\share\chicken\doc\manual-html\Module r4rs.html
 
tools\share\chicken\doc\manual-html\Module r5rs.html
 
tools\share\chicken\doc\manual-html\Module scheme.html
 
tools\share\chicken\doc\manual-html\Module srfi-4.html
 
tools\share\chicken\doc\manual-html\Modules.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\Units and linking model.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://gitea.lyrion.ch/zilti/chicken-package or at the GitHub mirror https://github.com/zilti/chicken-package.
_TODO.txt
TODO

1. Determine Package Use: 

 Organization? Internal Use? - You are not subject to distribution 
  rights when you keep everything internal. Put the binaries directly 
  into the tools directory (as long as total nupkg size is under 1GB). 
  When bigger, look to use from a share or download binaries from an 
  internal location. Embedded binaries makes for the most reliable use 
  of Chocolatey. Use `$fileLocation` (`$file`/`$file64`) and 
  `Install-ChocolateyInstallPackage`/`Get-ChocolateyUnzip` in
  tools\chocolateyInstall.ps1.

  You can also choose to download from internal urls, see the next 
  section, but ignore whether you have distribution rights or not, it 
  doesn't apply. Under no circumstances should download from the 
  internet, it is completely unreliable. See 
  https://chocolatey.org/docs/community-packages-disclaimer#organizations
  to understand the limitations of a publicly available repository.

 Community Repository? 
  Have Distribution Rights?
    If you are the software vendor OR the software EXPLICITLY allows
    redistribution and the total nupkg size will be under 200MB, you 
    have the option to embed the binaries directly into the package to 
    provide the most reliable install experience. Put the binaries 
    directly into the tools folder, use `$fileLocation` (`$file`/ 
    `$file64`) and `Install-ChocolateyInstallPackage`/
    `Get-ChocolateyUnzip` in tools\chocolateyInstall.ps1. Additionally,
    fill out the LICENSE and VERIFICATION file (see 3 below and those
    files for specifics).

    NOTE: You can choose to download binaries at runtime, but be sure 
     the download location will remain stable. See the next section.

  Do Not Have Distribution Rights?
    - Note: Packages built this way cannot be 100% reliable, but it's a
      constraint of publicly available packages and there is little 
      that can be done to change that. See
      https://chocolatey.org/docs/community-packages-disclaimer#organizations
      to better understand the limitations of a publicly available 
      repository.
    Download Location is Publicly Available?
      You will need to download the runtime files from their official 
      location at runtime. Use `$url`/`$url64` and 
      `Install-ChocolateyPackage`/`Install-ChocolateyZipPackage` in
      tools\chocolateyInstall.ps1.
    Download Location is Not Publicly Available?
      Stop here, you can't push this to the community repository. You 
      can ask the vendor for permission to embed, then include a PDF of 
      that signed permission directly in the package. Otherwise you 
      will need to seek alternate locations to non-publicly host the 
      package.
    Download Location Is Same For All Versions?
      You still need to point to those urls, but you may wish to set up
      something like Automatic Updater (AU) so that when a new version
      of the software becomes available, the new package version 
      automatically gets pushed up to the community repository. See
      https://chocolatey.org/docs/automatic-packages#automatic-updater-au

2. Determine Package Type:

- Installer Package - contains an installer (everything in template is 
  geared towards this type of package)
- Zip Package - downloads or embeds and unpacks archives, may unpack 
  and run an installer using `Install-ChocolateyInstallPackage` as a 
  secondary step.
- Portable Package - Contains runtime binaries (or unpacks them as a 
  zip package) - cannot require administrative permissions to install 
  or use
- Config Package - sets config like files, registry keys, etc
- Extension Package - Packages that add PowerShell functions to 
  Chocolatey - https://chocolatey.org/docs/how-to-create-extensions
- Template Package - Packages that add templates like this for `choco
  new -t=name` - https://chocolatey.org/docs/how-to-create-custom-package-templates
- Other - there are other types of packages as well, these are the main
  package types seen in the wild

3. Fill out the package contents: 

- tools\chocolateyBeforeModify.ps1 - remove if you have no processes 
  or services to shut down before upgrade/uninstall
- tools\LICENSE.txt / tools\VERIFICATION.txt - Remove if you are not 
  embedding binaries. Keep and fill out if you are embedding binaries 
  in the package AND pushing to the community repository, even if you 
  are the author of software. The file becomes easier to fill out 
  (does not require changes each version) if you are the software 
  vendor. If you are building packages for internal use (organization,
  etc), you don't need these files as you are not subject to
  distribution rights internally.
- tools\chocolateyUninstall.ps1 - remove if autouninstaller can 
  automatically uninstall and you have nothing additional to do during 
  uninstall
- Readme.txt - delete this file once you have read over and used 
  anything you've needed from here
- nuspec - fill this out, then clean out all the comments (you may wish
  to leave the headers for the package vs software metadata)
- tools\chocolateyInstall.ps1 - instructions in next section.

4. ChocolateyInstall.ps1:

- For embedded binaries - use `$fileLocation` (`$file`/`$file64`) and 
  `Install-ChocolateyInstallPackage`/ `Get-ChocolateyUnzip`.
- Downloading binaries at runtime - use `$url`/`$url64` and 
  `Install-ChocolateyPackage` / `Install-ChocolateyZipPackage`.
- Other needs (creating files, setting registry keys), use regular 
  PowerShell to do so or see if there is a function already defined:
  https://chocolatey.org/docs/helpers-reference
- There may also be functions available in extension packages, see
  https://chocolatey.org/packages?q=id%3A.extension for examples and
  availability.
- Clean out the comments and sections you are not using.

5. Test the package to ensure install/uninstall work appropriately. 
 There is a test environment you can use for this - 
 https://github.com/chocolatey/chocolatey-test-environment

6. Learn more about Chocolatey packaging - go through the workshop at
 https://github.com/ferventcoder/chocolatey-workshop
 You will learn about
 - General packaging
 - Customizing package behavior at runtime (package parameters)
 - Extension packages
 - Custom packaging templates
 - Setting up an internal Chocolatey.Server repository
 - Adding and using internal repositories
 - Reporting
 - Advanced packaging techniques when installers are not friendly to
   automation

7. Delete this file.

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 294 Friday, May 1, 2020 Approved
Chicken Scheme 5.2.0.2 207 Friday, April 3, 2020 Approved
Chicken Scheme 5.2.0 269 Monday, March 2, 2020 Approved
Chicken Scheme 4.13.0 1312 Friday, December 15, 2017 Approved
Chicken Scheme 4.12.0 793 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