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 5.2.0.5:

120

Last Update:

20 Jun 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.5 | Updated: 20 Jun 2020

Downloads:

6,230

Downloads of v 5.2.0.5:

120

Maintainer(s):

Software Author(s):

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

Chicken Scheme 5.2.0.5

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

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


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

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


package { 'chicken':
  ensure   => '5.2.0.5',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 20 Jun 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: 7E47FA909CFF52AE4D3705BF6217A710 | sha1: 8D5A2CC9976565516B4DFD444600CE6AC5C2B75B | sha256: 3A6E3BC7DC60B1AF7D7361C61FEC3A273CBCE84FA413CAE9D3D5D46366E8D74E | sha512: 47F595F68BE8A1369239FA351F0CFA1FB46FC36701F9AA77DCB9BAE8111C277D69A632C7A962D89EE6F2B22231541C82693EB9606D22003DD1664D9F558CC2F3
tools\bin\chicken-do.exe.ignore
 
tools\bin\chicken-install.exe
md5: 8640DA8FEB5515D068D231E7AA6DF24B | sha1: 27B0653967E9980A41DCCC46EE1158E3E6068D34 | sha256: 900719CA8B44E15510571635062510D6F21A2E69EAA3EC2A745CC912094D5989 | sha512: F6D261157D427EF3618C83F91F0FBC6D970029915020E854716665B9617889A440BC3C8115CA44B00CC8086AF7208A645114359B6EE062911EC20E9BA77AE501
tools\bin\chicken-install.exe.ignore
 
tools\bin\chicken-profile.exe
md5: A9F91E20E185899C55490291BBDBA284 | sha1: DB1800321A4293D542D36B44BC94DBB0B3FA559C | sha256: EC15815578205CDB92E0040BFFF19E3D8848467F29419C4AE98432717AA042A7 | sha512: 776C5C075A3CFD49945095D8035EA76474CBF31CB20BF17384DACA8A4E434E441E740F12E8861544AF24134155EDF092E3E55633C2EF70CAB0107CD1F5E3FE39
tools\bin\chicken-profile.exe.ignore
 
tools\bin\chicken-status.exe
md5: 37A1F52FB332C9ABB10F12397DCC119F | sha1: 641B1883B02C39C7FBEA0B7480D8DAC81B54A736 | sha256: 12CD47F82A30B0C75B9ED095FCC9BA217B837C16AE4256C4B871359B9FD571FE | sha512: CD0837EA743E9D746AF4518C556B7373423874A7F670A19F9B3FDD8C751424EFFC1C4A84A239F576DB65A7F372962C7EF55EC75DA845CFF98886B7CAA251DCC1
tools\bin\chicken-status.exe.ignore
 
tools\bin\chicken-uninstall.exe
md5: 94F2060B47DE788164C0B7CB1D2B2872 | sha1: B8CC8328D16DBF7ABE161D803B76B142F77422D8 | sha256: 7C67CDB6D7B9F4968393B9EB60D5CE05689FE0C121E1E476DF290CC3D377BB77 | sha512: 1E3334411DCB4EE5DEC835BE4E495CD68AD93E11523E230FAE973013DE877C608DB70C613467F83998271AD670C1B2A301EEC23DF96C4D6DB2127DAE927F84DF
tools\bin\chicken-uninstall.exe.ignore
 
tools\bin\chicken.exe
md5: 3F53A448FD86A8E0080FAD4B71103BCD | sha1: 85901B9EEE707D7B16CE8E385290F39A97A355F0 | sha256: 26AED95C4A8241CC7DC3800D067A759E74A1C793EC7B48A66A08A45665B755A3 | sha512: 21C0115F0A08AA26AC3DAD3381B563E61966AB52163A745100A4D4F6AFBDE07811A0D1A2A55D756E17148DE353CB6A18F0491C13071532FF97F17CBD156908B1
tools\bin\chicken.exe.ignore
 
tools\bin\csc.exe
md5: 6CDA5A22F95071BCF9D1ACE92CB9AF85 | sha1: A0613E5EE8951E8B56333AD16626D8EC9E131B4A | sha256: 24BA3AA4CF8CAA165BD95E27067A986B0B0637CB6CF3CFA05D6962A93288335D | sha512: EBE1D48F5C8B9D90A1DFF0CA360F7A6CFA63F269926B272D690A2B0080D640765B4AA650D211D4F8FFDDDD28F7DFA58E8D2E64028B082DBBEFBC2A2A20377A07
tools\bin\csc.exe.ignore
 
tools\bin\csi.exe
md5: 2EE64E5C6856384BB0A4E565D97F32C5 | sha1: E69B09D6E5A614DD2B8692AC8D3408D55EF7AC9E | sha256: 6595C1C9970E06C678AC041C79468BBB50B638E75C2D18A4085E64E793A9E35D | sha512: 7383B0D9B3544ED8E78B14F082147B6B6280F40E2118736DC90377DBF5E086E149C2BD8CBC7FA1296A84200184373DC53D3CBF31A62E776AA55A4808CD609842
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: 13C09B328BF66F48EE01EB25C86D5EFD | sha1: 49696AB69333A0BB217FDA162A708EDF8551B86A | sha256: E37162CB84967DEF8FF1ACF547FCD5D9583F0C1DFD75C0F6BF8A4AC485CD4768 | sha512: 9D4E053178FA93DF3B8E978D4E3DCDE75423D7B30B86BEE53B3859C2EFF817D12EB0E8FA8331DA4D0D404098DCA8BB4C1ED86849FEA98E5F451A3316BD718CF3
tools\include\chicken\chicken-config.h
 
tools\include\chicken\chicken.h
 
tools\lib\chicken\9\chicken.base.import.so
md5: AA4E290154A73679B0758EA81DFF8038 | sha1: 307E02B2680A244ED7A106E0D46736763D8F1C1A | sha256: 6ECA626652BE5749EE5E27A232BB3F25AD972AAA8C5477F719EB0D70EF11987B | sha512: C332A351774240EC33E59DB56D3A503C0DA3131ADF9A451560FB072115B51D8D893F6B409CA9E8BA8172F1A947712EE7748D041DBC5FABDF90B02D4D5D2FD630
tools\lib\chicken\9\chicken.bitwise.import.so
md5: D771BE2240B5928DCF01B07CB2AD20AC | sha1: 59CC190F59AB111851E87D36D0DA60D299FBDB3C | sha256: 7923C80BA8C3C92D80222FF547078E9F30B1D8EF94722A605698E3868ED3DBBF | sha512: 3CE0D3F71A8CA68502DF02CCA3E24CDE5421DD08BE21CFC7DEEF9A1579416337E9451FA826CD34FC43FA12EFC75DCBA2DF50AA69E3455119FA83DBE8853B4892
tools\lib\chicken\9\chicken.blob.import.so
md5: 7DE6ABAF949F58221B6FB05C5ED5AD25 | sha1: 6DC13AB15EFDA25B546B95E260BE9B294BD5E77B | sha256: 27E9D42B656861D2AE6EE34EF1150E0E6901DECFD97AFFD18ACB00795C2E0B26 | sha512: F3691F42C31CB63D2B0C14FAE612D0EA31703A5C5407B068AD6736D2F5BAEEEC8B2DAAA001E0BFD9B0612AED5957361A2D258C481F551E41A66E755E2CE2D574
tools\lib\chicken\9\chicken.compiler.user-pass.import.so
md5: F8C8634081E5CC4B1BD532A687B431F8 | sha1: 40DA3DD14C603F7DF753BD1077647779D3D0C3B2 | sha256: B38B0873514673425DE53CE7113E0011D47CBED9F65BB2877A8F438256B3E504 | sha512: F26E9A571A80D2A5B22B5B978966EA9F54ECA210C15F8861DF58E412E3B46D040A2E2A2D73C6130EE9354DC2511C61B39C0596A7C1F10B13BDC960F9D109D7AC
tools\lib\chicken\9\chicken.condition.import.so
md5: 62121DD87517771B7D5D73E099946C02 | sha1: DA0783B4822B730DAC9772B2F03200B53DF9B5D5 | sha256: 31DE3B0026CDFB5D3B4F9F4333CD831F3FE98ED79CE23A73B71BADF7839E9467 | sha512: 760A29B755716D210DA60FC14731D77771729B075922F1FA7EC68A5DC6EAFAB98AF57061AD352661DD1C81174224240CC9974FA4557F23E4D75E86DD5392162B
tools\lib\chicken\9\chicken.continuation.import.so
md5: 2A736458208AFC4F55DB7B8F8926AFFF | sha1: 3975212404EC5D379830FACFED3503998776A1AB | sha256: DC166ACF4F0EDCA5EB57D59291D039AC80270F8E628217EC5F2BA8CF6BE228D3 | sha512: 83CDEB15515FF0231231CD284B80EE4B67A08E67F53C8429D8C65F33521621A8B1360D337B8B0193E6564E16345E62DDACE569B7B1B822BD59132AE3419F8F4A
tools\lib\chicken\9\chicken.csi.import.so
md5: EE8630EB6FF7114CC2C0CA5F98847733 | sha1: 92230E33F72A2966662BC01A8735C98C56F423B1 | sha256: E397003DC6EA99A495CD04AAFC29502CCF8B9721E9968301FBE3A455CF182D27 | sha512: 8CEF162D771F85DB32A1E1065174B0FF64AA6E693B109AFAEBA9F2B242117C679A38D7D6876156210235A1D8B61CA02D1A94071B8AA9D641C922D1064C259D09
tools\lib\chicken\9\chicken.errno.import.so
md5: 5DD8775F6BBEDAC7A774F069537C4468 | sha1: 178C73D58FD2DC7C836FAC1E0191CDF08169BDAF | sha256: CD20E6BEB11D8FD7BE4FC115BC9EF089B7CA1B7771FE812337CB974588FE1731 | sha512: B411D6A7D09EB7320EFE00838EE51EABC7CBA54CE95734F1FCC8D50E0FE5EB0D0A29F84303C8FC8C8943F90E0C46B7D45C827C3534452D67F01422C857928678
tools\lib\chicken\9\chicken.eval.import.so
md5: 73A983370175DE00D0E423F5CACD1C45 | sha1: F48F0E99B5E4EF9D517AF250C0AD7F5670E60DCF | sha256: 4FAB8BCFFBBB7B1F2BBCBA2DD879819087474C5793BE7BA271CBFE004D08B2A9 | sha512: 25682F9B785C7F4D96525D6B0D76F608861A6C3D0ADCFB1468549E9AC58DF81F5E2F70BF1C342D66C9DEDFF4A6875E5832CD799FA52A9390721491B40A1A5AB0
tools\lib\chicken\9\chicken.file.import.so
md5: 3493F86FB349CE5DD42B09A75B6193FB | sha1: 8628DB31E17DA7CD05BF161E6DE275374CCD0E16 | sha256: 529FD2FFC45B40CCB263D2B1A21C117586104DB310890E0FD52BD101145BFD82 | sha512: E346EF7751E90441B6A3830B454028750BE1FF822BE609A306A4224563994CC72F30C13F860E5610D40D732A7FDAF8AF108A2CA1CC921EFBB9406411BE1352E2
tools\lib\chicken\9\chicken.file.posix.import.so
md5: 9D35C41C62767A34AB179ED9FB88B873 | sha1: 92C0EE93E77A7EBA12BA93E3D3037B57C9C5FE73 | sha256: D02A30DE9A9BD1DAAAC65D26E36C77029FD8DCD74092A45DA2141172259BF74F | sha512: 00F452706F2F89CAB3351AE2DFA3087C529A81E0BAC542F2726C658A1EEB08A8DDCAD4B4762D11A9DB2E85D35B59CCE30A248147C09713047BA8673B2A5B5370
tools\lib\chicken\9\chicken.fixnum.import.so
md5: BA7497F2CDD2D2959D736DB2A7EF34D6 | sha1: 9EDD2B9901F773D3F263445856C669CD5796C7FE | sha256: B6C92385603CA315F86A72132E2E2509CDC08A8077CF4BAF7993B7C3C28F4C79 | sha512: 858C0C10E8F6B9B1441B371663DE1C1928D232E19B251618ADFFF4815DA5B45BB5DED143A96FB21A5E597B0607D79CD6C9B9A632270DA0A79489EDEBCDDDFAD9
tools\lib\chicken\9\chicken.flonum.import.so
md5: 61891952EC80BC639F10C7D29633DF6D | sha1: 76EC084E3F817125A1F5276B9C1DBA1D16A8EB2C | sha256: 914F1D6B17026D785FA6DBD587DEA05912C35D5B0D02349B973050797779E33D | sha512: C9FDF5A3A656DFF12CBA741313C8573DA6159A848F07D3AC12B24473A768B6D835AF28ADB7E4D3DF069559CD8F1FE82BD251B3B9693DF28E595631039DCD1A0E
tools\lib\chicken\9\chicken.foreign.import.so
md5: 5261C557BA0F5F1B087975049E41901C | sha1: F0EC95746FCCAEF990A7711AA0E2AB370F1CFB1F | sha256: D7C6FE39A1551956A0EFCDBC95A055614BE1CF6A84F0F331FDB6FB79370B42FA | sha512: A657862814C3410AB578485D6B08C9EABCB55628265A65C5D31ED690E67540046C71FDDD4143863502CB1FC61A61EF49B32A7D23DBD889CB4399A02B8B6ACA05
tools\lib\chicken\9\chicken.format.import.so
md5: 634CBB994E936A42FC3B74CC02D57994 | sha1: 8AA9A1346D90D4BF0376D8697E0542C2D2EC3A79 | sha256: 60A1F8943E47095F6D4CA4C60EB6491240901D3868FCC639BC15882E3773D160 | sha512: A196BA1A61B0CD0546FC30596D47AC3FD254517A1DDE938BAFEFFDC8B7CF6A83C7BC9C0BB60B82F211EB917661B987C2F8F1DAB86794547E8843829DD57F3C3F
tools\lib\chicken\9\chicken.gc.import.so
md5: 04294730E2F2DBFC08DD840DE5B221E6 | sha1: 09234D8BF48F1165505E73B76433C1AA19D5AF2D | sha256: 9C40AFB960AF667A625241AAEAF5D3323D137EA649A5676211051AC781436E86 | sha512: E8CF156B9F3033E9EA725E195565D65046470C7815DA0D0D03C1DE748F73A77F1FEC5FBF207A671F28EA7A095C6B3972AC5F2B3DC16E19578C12D81EA5F86B55
tools\lib\chicken\9\chicken.internal.import.so
md5: 90149E4344A6547A69F06E2D3464DAF8 | sha1: DBAFA146B9F052BF652282F550CF19C9249FFC74 | sha256: 4BB09AC8FB1EDE7EB165B4A308ACAC0A24E36EE764A81B320F0F78AAB7536EDA | sha512: E5CD87BFB8475A95008E7900AC00173288682AF79B5FA32774297DC876F90D5A3EE98EB1F5F8C821B7D7410E575EF76BE0BAA09513EF525B41515CA255A1AE73
tools\lib\chicken\9\chicken.io.import.so
md5: D3605D2A33CACA7C9E19A4DCCD6B7435 | sha1: 184020D6B354A0855B3B2697F086128BEECFD21A | sha256: 2B339358621D343CCEAA1702DCB695A83BF0D90B55E7EF363B4EE0A9875D26B3 | sha512: EC0AFD9F46171CCC16FFF463448D416167082FB92E2085F7C8030DAE81A45F63C843CE0AA9E4DADE54BC8749B2C45735E71D4D893DDD0D556BAB029ACCF6E3B8
tools\lib\chicken\9\chicken.irregex.import.so
md5: 9745FAA672BB42CC79DB3375EFF80B39 | sha1: F006C1E806892E09D5C66029C17793F03AA94AE3 | sha256: BC660C1E3C694CB729CDCC1D504743C6FD168AF41B5566115E92C3B67462C3FD | sha512: 5C5BEC080FA4A6498682583864243FBB218F37B5F73400038C3D46EDF085D66B0B1EF9D8025B403C8907C852E7A079B777242A7B409916881CFA5DD73A0317E3
tools\lib\chicken\9\chicken.keyword.import.so
md5: 39A7B222597A6CAD6024AAD3E664D7AA | sha1: E4E8F5B250F4FDED6B00E294ADAD80A0DDEE06E8 | sha256: 6C9CEA34F779ABB58F461B932B70E2A061AB22B25CED3FC43F3235FC18A46488 | sha512: D887A8D098F0EF87CA815DAA73FEAED2158A6A6CF41400DDCE00D487C99707715DC343109D712C66DB0FE651D53EC852275563A45DDC97373AD61BFBBC9456B4
tools\lib\chicken\9\chicken.load.import.so
md5: 25A718F9417F6571DE5EED1C50F67DCF | sha1: D48327DE738A77EF795BB71CC37CE729CBBC1381 | sha256: E070CDA3426E8B7449500D3AA3680FCA59D601107663BDE2C0EA32FA476BAA0C | sha512: DA4CA95AAB528D6A44398E8C106215E31879A4236D60124748415AE4B29A0AAB56EEB5E7C08A5364E592820484CAE3F45A9C1100C70B40BA9D0B04B40EE5D307
tools\lib\chicken\9\chicken.locative.import.so
md5: 20847A9B858E1C09E0F4EDAC4583406A | sha1: A1D7E7511A2335EA7DE8E1EB3102D69AFC77DAB7 | sha256: FFC367107672989AE89D36611B198CB883450D761C6D29B33F1CFBFE8098AA13 | sha512: 3B4D21B5B1F64E4CD7F86E4F2ACF3CDB9C8F85F81E49C32D0BA7D2352EA1704C2280F65A5AADEF239EC90C710DFB8DB954CB7DC12D37F0C81F3FC32D8DEC6A08
tools\lib\chicken\9\chicken.memory.import.so
md5: 978F41EDF04BB3BF37E1C542B4E6A8B9 | sha1: FEDD4AD318AC9D91799FABCA8179E0F2E0034130 | sha256: 9A46CA49398C4C79B685131CD68008AE34AD0E60F2477432852ACB1F68D5DC92 | sha512: D8E63184EE0BD6AA0A4591243384675DBA1C129BC0F2F6F5EA4248BB7C10CE46742C173BB0B38DB14D57253BA391D7A173CFED87AE438EE8439A7B1D07A32C34
tools\lib\chicken\9\chicken.memory.representation.import.so
md5: A78CA773FF2288F7D5ECCE39A6D4138D | sha1: E4DB4897D2EFF2C0E9566C01AF9F2D77AEC30F2E | sha256: 6A01BDE260806C03D2B5E033A61FF836957E038073CE5C97BEBBEDB04953229C | sha512: B885D1D054F753B3A99FF9CA6782B8A12D6510F8B522B566F57E998635221D548E2852E5D091609D06EF612FF3C24AF9E847ED8E408571F990E62FBBD840CBDB
tools\lib\chicken\9\chicken.pathname.import.so
md5: A7A03251CF709A4812531EEE84BDC57C | sha1: 63849D6D56FBC6BF4D894A4E275F6E1688F86CFC | sha256: 8CC4EABDD01DD4E11A3D0DDAE3CC921A0A5F329AEB7D194F18AB36E583EC2DFA | sha512: 95BA6B5211BC509A3C780D40A2672351C290251DC3C2664704B18EFFFBB1E5449AC1BEF0D6F3909A882083A61BFA2D7C300DE0E359F67475D989E3CCBAA44C7F
tools\lib\chicken\9\chicken.platform.import.so
md5: 385B067ABDF5C10D06433812275281DD | sha1: 5BFB9DDC2A6E8FB086367D3D17A20E074743B22C | sha256: 2A30F44ED708D05EF650CD497461C6BD6489227E49437424DAB7959D87EE1331 | sha512: F291760D1593EC0D1567DEE7999AFADDD593AD1D3F9142F899EDD5E70DE0B90FAB723D874F87BCECA4C9D85B81A0FF62DC74BA0A14F9CC4DC3DAAC9918228C22
tools\lib\chicken\9\chicken.plist.import.so
md5: A2EEA17A9E56291FCDC447A66CA12959 | sha1: F82A563AE25510827E2CB2EDBE595ED24435FB65 | sha256: B5497F699F8B09506FCE2A82FBE6D14C7B19473EE97760294F7E9522928C4869 | sha512: 4773B9D7D4B20AB4D89280EEE6971A5BE24CF381D733006CBDE474BA9774CA287FD56184E1DC9316A7AD2056CD59E29D38467CDE7E59E698A14CB5410664173D
tools\lib\chicken\9\chicken.port.import.so
md5: 8B5FE598513C2F27EAB85C74A37C81E6 | sha1: 7AB1E4C9176FFF82BD39C13829F230C63B291739 | sha256: 8847AEC9114499E68D899E00EEFB3139077F3EDBF155562A8F1292DA1244A9E4 | sha512: 1F6AAE1F8A33B28D2DB0812A991608A8C592014232F46E8D334AF599795B46072E8244CF96A326A5D2D75F20C0198D8509E6A2B6256E4F070C74B8B617652189
tools\lib\chicken\9\chicken.pretty-print.import.so
md5: 62B31BE04B2ED4517F09C1C0BF2B28DE | sha1: FD05FAB1D3836AD3F225225772414D2E8D5DBEFE | sha256: 57BC1F7F19179BB1FCCAEE4EC63D0F879061567F0AB713DC6FE8905D37A8B95D | sha512: 247905B9FD9782F29CF2700A63D4FEF920CAF6AEA14CCBBE6AA7293F1F358825876C69DAFBD48097315482A840DA16550225DB2921390809AD452DB32439B798
tools\lib\chicken\9\chicken.process-context.import.so
md5: 8F5F11914BB032FA09EA231A0A31790A | sha1: A5D61986A45DEC9DDA56FCF0486EC05C830675DF | sha256: 1B6AB3BE286033AF8A0810DFFE63D1C834CC8E63ECF3A5E6B59C647289C041C6 | sha512: 452397D20B2AD987320A824C81A8B7CB077971D7587991560A16F45A2B0A137A23B9A349F5A56C4C74100FAE897679E0A7FD35B6EF2A877BEC0FDFACCBE6D8FC
tools\lib\chicken\9\chicken.process-context.posix.import.so
md5: 2FCEEB0B655889F7EA125CA1C574F44B | sha1: 2FFC4F94520A1CA054A3DA9EB7E69F83CAAA25AA | sha256: 99468356CFECDDC8D687A99A3C5489C9669E0C18CBAE162057599750CD94C1A4 | sha512: 271F49D442B8B2E0C83F9218E97D27702D9809FBDF2B691BDC8C87D071352E6025C58EEA450C8BE471472E1AAE428D18CC61756B1262FDE4EA0D5312B0C4A82E
tools\lib\chicken\9\chicken.process.import.so
md5: 34CA0098F90B381BAE9DE720609B7F7A | sha1: 9E098469784EC3AAEF5B94069B7B73F2C0B45F02 | sha256: 492FC8BEDEB99B7904614D08B161D8B0101FD2D35EABD980B878E29B9D0E6B1C | sha512: 747AA6077CEA807CE1C75A80714392B185A89649A77668E93F6E2F36822422E510B1B9D3B7057557AA068FF1A6AE095A94BB3873915E785ECD663874C0F3D00D
tools\lib\chicken\9\chicken.process.signal.import.so
md5: 394CB1151DF61E5908F6C43D80D095BD | sha1: 1B039E408E22B58AD0359E537AC64DF178A05940 | sha256: 2BB0F3E652D9F6A4A382BE86A59316961453576EDCD90DE99898D78BD46C6670 | sha512: 7981530FB07D843421F225F3EF8D4BB852D801158465E817FFA01FA69D84AA3D627F25B2C592BD8E5728DC3FC8DA3146A75E65F5539AFAFA3E4625DD70E9DD7B
tools\lib\chicken\9\chicken.random.import.so
md5: 28C982D56B011F408C20EB6F80872B86 | sha1: 3759ABD6535CD0468D4D438DB0635F09DFEF4C6A | sha256: E65E99258044265C23D5E43D4C9CF7E78C678F1736C2741D92D1969F11FB7673 | sha512: 481FB0DF7A6B667A348DFE2E6D6ABD051F4DDA92FC2CD321EF993FBD96F87FCA34B39FB4BD10F1DAE3C151E1E4782FE0BA639D8594A9E4E885AB1E2E783CF98B
tools\lib\chicken\9\chicken.read-syntax.import.so
md5: 7FFAED0BAA0964BE6333EA7BD595932F | sha1: E601BEC23FC25315FE8F051F7F3CABD39C4B91C9 | sha256: 1B265798F567BA0D110ADFCA5608105B9CD1712EDBC7C09FEEB3DB755C5F2AC3 | sha512: 1E4D9E4770688035CFDFA3ED60E0BD2AB9C0B73474E593B19DC1A32A885E83C1E466B3B29BB1197A86F6A2ED3F34F410EFF5A3BE9D162F6E17BEBB4ECF38C4FF
tools\lib\chicken\9\chicken.repl.import.so
md5: 23BD20EE55AE38EF133202EB9AC8463E | sha1: C46A4337263C093E103963CC06122946AF2863EC | sha256: D5894A9FD41828271B85545FFE49E729B5892A5E1A421623545807251FC9A1D8 | sha512: 8121208266D4CC6B1C3A61871CA94212C9BD66092D25D8B2D2BE442E3C3AE0ABF074DC2E4E76860D52FE0034CEE6A2E46226B5BA057ECEE74EA401F0880FEA43
tools\lib\chicken\9\chicken.sort.import.so
md5: E643D6A6EDEB30245A6FBA62AC4C6B1C | sha1: 19816B38980825A671BE1280E035869D40929591 | sha256: CC2295832C81FC23B7DAD4F1CEFA1830884BDA0510307AE43433399BA544E89E | sha512: A9494BD0D215DE5BCF92FAEBCAFD89C1023074093BB4488D23E97407FD78B8BEFEE13F314C3DCBDF57D63092C018EE802B789DCF93EE8D4C457CD6B2F7E2A608
tools\lib\chicken\9\chicken.string.import.so
md5: 938213D56A8716FF477245492332F12B | sha1: D926D3CEA53E2B88407BB87DB85A6B8C0CF40202 | sha256: B20B168B67A90FABBC2425FB29F8AE406DFEDE0F128EA4DF4117464EB7F6FCB1 | sha512: 8395325CC5D24BCEC6927DCCA54C5E73364F1AB6325D8D8DD0EC4423FDD101C27F659E5C70D95324D7B4FE3B3A62F6C46057FD16EFA4DFB798D14A93817F5E1E
tools\lib\chicken\9\chicken.syntax.import.so
md5: 100B5D5A519640AE99666842C28651AD | sha1: 8957B18B4780783477555EA53FF0128ED67EE9C0 | sha256: 6F909AC7BBEE69E9255B48266676C820674CC13D802C036B20502CF2D7562F0F | sha512: 7807117D52753B35F71692ABE8DCC81F7589C607CA82A74195DD25F9CD2574EFA3098F19CCB3F816544C660531CC7CEB597288CA3357F688D86B7F031C6C9C48
tools\lib\chicken\9\chicken.tcp.import.so
md5: 759F9728FA0EA74525046BB5E4C54EC2 | sha1: A4440516114977CA7BD83FC5343832989977B588 | sha256: D24AB16664BE5622C48A775FA2DFF4A22E8ED59202B9CA2BE7CF70B5C4516936 | sha512: 996B718F83F5EA5F07456D658C0103A1EF1FF6379EC028C1CCC0FD4F66F3CE807F4D1E4345AFE85D78FA52FFD5B1C90878DBDA613284FEC5C370FBC083E74E88
tools\lib\chicken\9\chicken.time.import.so
md5: EE08F5679F5FEADA8D675AEE576C7703 | sha1: 082A4C3AC1C5B9C5D1656D5BA6DE3168B2404953 | sha256: 7605CEE56EA8A7B17235D80DD85DE1D8CFD4080D1E3F14F35934ECDD79DF1E66 | sha512: 817240ED02CEE6D7BB9F61C2E1D14517610791FF36A8BF983724CD05EF0926E40EFECD9999129900C59208E027CF832C4746A5141F3D70E61651FAC28B48C768
tools\lib\chicken\9\chicken.time.posix.import.so
md5: 4F550B1B7DE7B9E2191073BD4B8A8282 | sha1: 7643DB2218DBEFC90C86808B393DB943E6B932B4 | sha256: D072852DBD48E7748664E8D82313648AD3A7D22B336800E1AF32E2A909D21992 | sha512: 8ACBF45F3D93D3D9068ED227BE75569EE82AC1E5314C268811B38BC645FC38A0E3FCFE68572242643853E5E22E83D349362C6645EDD703CDBAC349A11011D3D0
tools\lib\chicken\9\srfi-4.import.so
md5: 4D8D65A2B6AB4EA6F895E70443D16086 | sha1: 6CCDD4CD56462563E69E1DB0FDC6647B8986D9C7 | sha256: 038D7B3ACB267D5F2F6BA78FAB705D6DDBE7059E3196054090116A406282F182 | sha512: 778DF3166101994F1A284CE13C39C6C3656B785E52EC40862F3102E99408169B99CD0C094A7BEE5A921C8A6F4E32464339AEAD244A4D14E69B99B89386DFEADE
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 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