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:

266

Last Update:

02 Mar 2020

Package Maintainer(s):

Software Author(s):

  • Felix Winkelmann
  • Peter Bex
  • Evan Hanson

Tags:

chicken admin scheme lisp programming language

Chicken Scheme

This is not the latest version of Chicken Scheme available.

  • 1
  • 2
  • 3

5.2.0 | Updated: 02 Mar 2020

Downloads:

6,230

Downloads of v 5.2.0:

266

Maintainer(s):

Software Author(s):

  • Felix Winkelmann
  • Peter Bex
  • Evan Hanson

Chicken Scheme 5.2.0

This is not the latest version of Chicken Scheme available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

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

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


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

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


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

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


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 02 Mar 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: EC536A1204685D06067DCBFB17FADCF1 | sha1: 8A03919D490B7842E3E2811AF640905B563D94A1 | sha256: 7999BF63158C4DEC7664E714551301CD217331C8748395845BDD1BB1F7137000 | sha512: BAB4DF005EA8004FC8FB0DCF91159E7810273BFBDCD1CDF84A1DBBE6E8814EE179980138550E870F4B73721A2996825F6B43A57A891A9A6E8C911545D903FABF
tools\bin\chicken-do.exe.ignore
 
tools\bin\chicken-install.exe
md5: 4294C093ADB2FE1B7BC4D8FA443BAC09 | sha1: 99F1ACD2CB3B4E906EF95C59DB2CF67CDD4C7C78 | sha256: FA8FF295479E4C414650FD4388D013FC78A1D4B39A6499B4E785CE4C9026BEB4 | sha512: 6C17231870A5C70953141768ADF42F81B56E3B13C46582D3009EEF6458B969A0FC66D3B3F5B7ABED781DA8A7EF290575BD05D1C4A8A95423F5689260EDFDA574
tools\bin\chicken-install.exe.ignore
 
tools\bin\chicken-profile.exe
md5: BF490EBB8BA7E831667C2A30ECD321B5 | sha1: 1B775800D9984D40341EAC546C5D9F2792FF7DB5 | sha256: 1A541B4112944BECAC1EBC9DF82268B6BCE5C4746266A799A82E50944EB332F7 | sha512: 8C34C96ECC1E3A09BC36848454D147313672F568437868D8FD2E11BA49810721C01830693F9C06CBFA8A05C3915073BAFE6E11EF5D7FA88390F5E9B339290EB6
tools\lib\chicken\9\chicken.file.import.so
md5: 8BF0184F7811DE03B8342AE4F67A3B91 | sha1: B34DB5C3F7570148889CF7569A4086F88F448CCA | sha256: 1B86BC8AEE2A3F08220A2406EA1FD81C54DE54AED23A6B7D40C52D3ADA16A3CA | sha512: 12AF7941CCAC431A0B05071627AE7B01ED763F679852CC6948A3EE14644B41653B3E26459334DCB53BD622ACAFFAEA5F41B00D7E2AB4A0EAA3FC350473D4DB72
tools\lib\chicken\9\chicken.file.posix.import.so
md5: E93C0DA53A1F8BF90F6A96017F439D8C | sha1: 8D10F4B8586FC3CF4D753913FA40DBF565E7E9C2 | sha256: D37BA4B68087023676A4F564ED7680B3BD8D4AF4024318BFE46083A531A6062F | sha512: 1BAA07BA820C831DEC907FE60B691C55DE6D2FB1F293A4D06E928F3C3B3C39BED055466749B9A7304AE88E4BE2BE27A2EDE1C0F84545BF49D62CA880169A262B
tools\lib\chicken\9\chicken.fixnum.import.so
md5: 7C030B2220CF344C1E8F99D33B9C0A7E | sha1: 967062CF7559A2DBF459A8B5A8E7F15E3A366056 | sha256: 1D1940D65381FC28B2D6A004D717FBADEB2A5AAD69078ED953BB9EA690654367 | sha512: B0DA5548EF2209688BBBEB14428818B7E844598A363B833B2F926F1B5129027042167BCD93F7F6ADE9E72CC1E917158FAF425383E3E5E69C2739F2A9B8A0042E
tools\lib\chicken\9\chicken.flonum.import.so
md5: 78E64E0874363D68F6431BD473FE2DA6 | sha1: 9D8D759DC1AA86862E17691A4FEF83DCB50DB80F | sha256: F332EE62CD91556BC6BC7B7CDB2F875DCEABF1DF24007FC46CA5CB51D25DA2D3 | sha512: 0371621337AC37AA6176CA80935C567A87A1E9D849E84784A823CA4701F7DFACC4A9ADE851CDA787F20A07251D179C164084B32E764B2F21D8EF0F5DAA49ACFC
tools\lib\chicken\9\chicken.foreign.import.so
md5: 25DEE7FC51E3B0F9B7F42B648B858524 | sha1: F180C0E6D388EA0D67F5E2794D4C4D598CEFC662 | sha256: 65B23C93F56EE57EABE6D2431EC0B116A80F15268B1AC1185D28FAE0FE67C713 | sha512: 1E17F1DE63020C88FD9FBC388133A7F6F647426DFC877844A0E01110D3E0E76ED76AC78BB07E2605B25A14009EEEC3D9825290589D32A0D55EC0F2C67551EEAC
tools\lib\chicken\9\chicken.format.import.so
md5: 4977B4CA0EE6C5D88EC9FDF81F4DCA4C | sha1: C53F6E70ECC46C4D477BBB00F19E5A93131FAD5C | sha256: 5428C925BFDF9FA2F7A6EC69954CC543CC8C59086076455A26263B629F07B4FE | sha512: D1D21D0CA54610E0FA0BDC0A8721624B7FC6A61431392432F61747AB57ABCB9D8C1EC278F7EFF83A768BF257D3C70D41BDE3DDE8371899D4934622F4032798B9
tools\lib\chicken\9\chicken.eval.import.so
md5: 03782D9EBF9E99A376F8CB60A80D6579 | sha1: 3680F17311E845AB339425F20AA655E2F4FDF69D | sha256: 70B87E662B2E5D628289A98022B96E5105D3D40874DD148431C4724BB42E9625 | sha512: 7E9F7157030277CDB41360EC79747AE8DB56FECDC5FC47BDE2205A96989FD92DA707DBF7AA0079FBAAFB3D44FCFA73CEE2019382580F4347EE2CE666DC6B57B6
tools\lib\chicken\9\chicken.errno.import.so
md5: 4CEADB53587E0A36B6C1EA8A0C235463 | sha1: 0A0AC20D44D5F55FF105F74DB85F88490C5D8AF5 | sha256: 1D866E3C90E9514762A7FE00CCE54CD1CB8F8EE75A6D6603ED21104BB7F2546A | sha512: AA7395172D52FA411000BD9CD4AF8D0FA292519E33DC4D408567E3101959385CAEAAA70C7D4D81BE1CB2A74BE1CA0AE056F0C335CF1B89111B567C7012AC4573
tools\lib\chicken\9\chicken.csi.import.so
md5: DFEF3103ED4DAE77710A99818D5E867A | sha1: FCF19C952B0E72C464E094692294D13384B964E1 | sha256: D9C38D21349407FCB1616B6E1E655F66F88E75707F12F534B14157E9194356DD | sha512: 67A950030B49F7D32D36ED702ADB6150A107A78A0E6E58B2CDEC6448122791F9A1B4ADC9CAEBB62C9C684A2D5C297803B55C99BAC9664094D138A4921808DF3F
tools\lib\chicken\9\chicken.continuation.import.so
md5: E9937CD59220861DCC1A7A6B96CDAA84 | sha1: FCD7E4D93FEB46E12B4FF993CD964791052E7A88 | sha256: ABA1392E6E29E336F7BE27F6E9AC18106C53D05A06F4CA8917ACD7BE82ECD2C8 | sha512: F8A9FD122F84FFDB7B9E4F2108058C5925518892CDE5A9E7ADE44DF612741C261C4480F0E3BB89D2B3722981A150F24C70BFD4BCD1ECA024BECA6DEC33007D31
tools\lib\chicken\9\chicken.condition.import.so
md5: 7AE65A200EAE15C12D7FB7A494DF8038 | sha1: 17F9DF2EC6FD47830CCE9DB8CD6EB3C58B012BFA | sha256: B1C5C5D10ADA201B0B5AB59DB5BC780F7812D57523BF4C8130B6C776818A6CD5 | sha512: B21753F420BE479542ED4457207843A5B6DCE84365C62483D88EC4620C626077AD54231B10CDB8AB57A00569C975EA35A40F84D9DF359B3A83A4B4B7B571F7DE
tools\lib\chicken\9\chicken.gc.import.so
md5: C94C3BC03C9F8466B3BCD514E8150C64 | sha1: 8B6315EC7C77B1341D35D45641BFAD6B0B7E8EB7 | sha256: BFCAB917B882BF063A56260245558CD007F40BE3B57DC189DE18E56EDCAF8282 | sha512: 2922A253A2F34D2FB322182F85080A6D22360A7B7E8B8B6087280A68408162BE521203389E9A926B63A1F16A62AD9A85C7C261EDE86E46288E3D1FD6BEAEB5A2
tools\lib\chicken\9\chicken.locative.import.so
md5: F64446B4E74FDD9DD8CD838D39A41410 | sha1: F7A440BD89BC3FE29A75CB0687D33C8CB12EC017 | sha256: 4B2C5105A11054380B5441888B287C9C8A0761F8E605EE16F4BF7D97FE84DE98 | sha512: 7F35E55D07E03E5EBBDAD2C5E673FDB47392057C07E0761616A4637844EA31730A9D1FA98F3A65A58AC981288DDA77BE486FF5DCA18D81A1507A9DB4AC09B3E1
tools\lib\chicken\9\chicken.memory.import.so
md5: A0AD73E765AB4A835989128CA60AE214 | sha1: B19B88D0D12C5D80BAC0C96C636194759F6D2BC5 | sha256: 1D9028D38A32488AD83B2D56100917FBC4BAAF0B42AED8A22B434029C826E31A | sha512: 9A7E92F991F1905735AAE9DB470F2FD09D6C583939FE14F7BFCA608BFAD32457089EB6DCAD2597B729BD64AC26BCA7D0B9C95F6185169F074BD97C6172DF821E
tools\lib\chicken\9\chicken.memory.representation.import.so
md5: 96AC5533B7FDD4A02D5BA7D972857935 | sha1: 184819DA353A20745B3BE75A6AFA82297DEEC623 | sha256: 2DC7803B032D7D0C470477744EA8E9B2BDC9D705570D95200F8F03B5E57416A2 | sha512: 3ED675492BE5B1EFD586DB9105CC77ECBDBAD63F7D9DD444F531B5E6D7F030AD4C6F24F75EBE18B4FE62864FE06667202A646A60461D5382B271277EDA296A1A
tools\lib\chicken\9\chicken.pathname.import.so
md5: DEA58F4A6A9C6FA3C9CC498A747CD2EB | sha1: D6E12B1451CA352268D9FD53B1F7FF1017E9DEAE | sha256: 554FFC53AA88746BF6F9BEEBE7EE27A1C9B33CA3889D40489E944642894E1342 | sha512: FED2A66DDBAB630E5A2B54279A51E076755FDB1B0A7E446D3E5C5469A5DEE30B67F71F01A01379B1A5E5C95DEBA57BD4FD5FA6D526CE0ABC493E50CC93702EBA
tools\lib\chicken\9\chicken.platform.import.so
md5: C1F7B2CEE1DD2A2CBF49B8701747C2E5 | sha1: 4EEE0D7EA324BA4ECA5630A860B6FECCDBC41FA6 | sha256: 072C99CEFE34FDBBB8C3F584C12F91251A3EE4F69B50DF29C91F32C290DD2756 | sha512: 2356088628AAD0A02E773A97F25F8DFA908A2F269981867B88C8D5A42C6D20D217B8B14A88F65762B8F36EB111C06536F923FE529157A47051EB6A1B613EA428
tools\lib\chicken\9\chicken.internal.import.so
md5: 418A6439575781852B8278184E4DCF8D | sha1: EF60BC70913E9D35ED1B148DAA5E41C63BAD59F0 | sha256: 7DA791D1679CC53696638941323DFFED4CB61C37274F59CBD443D8F6F34623B0 | sha512: C82D9C44CF1F0277BB6F942D8C88427C8A5D8C797B2A5800549CC346C85E58224056349C1DE67E56D6C7F2152DBDC9583022AD958B6E2E5291C7F8A6460492FB
tools\lib\chicken\9\chicken.io.import.so
md5: C89B276B0E3DE536B2D3082D588B0407 | sha1: 769566BDB149CDF02FD3EA3469DAC06CA08542A0 | sha256: 781DA1F02337EB74478CD4C5BEF9282ED72583E956210501D7417635D7BCFD2F | sha512: EB388469B2D959B14379B26B93D50E40C6B13F705BC6C459E7B98C727100ED240625DC3F9D189E8A39C8441C682A499252090FC6C3FCE96D1F010162189FF3FF
tools\lib\chicken\9\chicken.irregex.import.so
md5: 9E4276082AB1734C32F253CF2EE6DFFD | sha1: 994936562F82A7567142E4B082692FFE0841A787 | sha256: FD9BB5226ECE88474D7D292464586FE789984338692510F5CFCFB8D41AF71229 | sha512: 0586441D507760E52231B60196DAF0E6EC0A145DED24C59987B74D746FA3F95138F9FECBD70DC2942EB484BBB43A054821BE847604AF5F429DB3B0E050ED010D
tools\lib\chicken\9\chicken.keyword.import.so
md5: E8F7DB1D6CAB91C52B7B1ABD60F4AEAB | sha1: 094B14D5966EB8EE830BE716C008E11B736E5560 | sha256: BBEF9F48C318D1844EC70E74FFA444C1C1AE4A9516EE0E1721904ACF57F3F628 | sha512: 52F0915BB219D301002724BCD89ADCB73EAF51D15B59ABF9E33CD69F0E67FE8F185A54CCF3985F05690F7B8C8615B05EC7A5EFA1593B6C3E1F907948CDAE13FC
tools\lib\chicken\9\chicken.load.import.so
md5: 5718E1F602D39D32ABEFA27BE1050226 | sha1: 6B5BAE3A3F2E113C7B729F75C4F3EE7F4EAED8BB | sha256: 494B58EA556BDF795B39E0238F617837CB52005A3EF4FC877AF9F39041811382 | sha512: 6FFD2D8B74E3DBE18E3385AA4E63AE833F3F89CE5B481A8129FEBE380FA83CC4B2D8B8087C90D6911105BB0C1B0634BA09C962DC77B798C3E4DF827E9996145D
tools\lib\chicken\9\chicken.compiler.user-pass.import.so
md5: 1752D99A7E9C2AD1C5EDF8026E9D96F9 | sha1: 7173CE717A1F10D5CC864993C3C23D987FECFCFA | sha256: 7C1AF37D65B599C2A6A3BAFE19D9B99FDE16E8F19B33B01AC674071E68972FDE | sha512: 570DF6DB0CE989626BD31B0EC656B7C371FB1B4510CF15E8E7281F54F1C52FDB7D6D373CC834CE034246E72479684707DF6CB13874756C5DFEB6AD1E0338F853
tools\lib\chicken\9\chicken.blob.import.so
md5: 5B9F623804FA01CF3B93FA50B4DD0F28 | sha1: F818187C0CC5488D60911D65CA6E88F9B984E1FE | sha256: 3CAC7B2D67B6FE34C3A2B52D4F8C13CF310FE5C007A589C5440791E1B0FDCC17 | sha512: EE31D280818E1840E3EC0581CF83D3B874F95884300A05CFFF4B2F61CA35929159B9766233929A79FA7010F12B32F9C3E15022AC20CD531D8421BFEBC4D5B822
tools\lib\chicken\9\chicken.bitwise.import.so
md5: 45961FEEA94F34B397855FBFD5BA5FAE | sha1: 70FD04059D6A15143C188665D32986F17B20F697 | sha256: 16BD8050FE2049277CAEDBCFBDC3B9EDD38204F71839E067856E6D10E995CBEC | sha512: 27E5220B32BB8E41C62B71AFE229FEA3690BB7067C97BA099FC625845F172970EE2A3DD2F9A273432EB4535A105D6A54F0F65E3BE8283129223DBF088A33FF9B
tools\lib\chicken\9\chicken.base.import.so
md5: A45054D80F326B75A00C2614F4A8A0B6 | sha1: EE512CA5E2CEDAB548FFE7B2B108A86F3B296EEC | sha256: B72189449F4B426BF96E409E457EC9C0765F7222DC3A876B200774E073BB6117 | sha512: 57AD22CB6981980569AE1635241152E83014F40C95901CDD3B3E87C80B397D37B710187E3597C5F21255BE49FA4A24864022B6E0B973C813DB53A9C10A6BCA46
tools\include\chicken\chicken.h
 
tools\include\chicken\chicken-config.h
 
tools\bin\libchicken.dll
md5: EA19025200F34F8AF9694E30340FB381 | sha1: A5453849BF812C66FD486E8A75B1DD40D6F996FB | sha256: 296AE414F1A6EB0BF58099E4CFDAE5F6CADE407ABC4AD10743099091889E52C6 | sha512: C13D49C62A52A53E9F9B7AC3429EC97720F5486023490B206B2857F3732530301F7416852CE09DC4D6B5420B31C720B9F07105061B7694E01652C1E86913EB52
tools\bin\csibatch.bat
@echo off
csi -script %1 %2 %3 %4 %5 %6 %7 %8 %9
tools\bin\csi.exe.ignore
 
tools\bin\csi.exe
md5: 55C39EE25CD1EEB5567B06875A1DAC1B | sha1: B472C3AC7FEBCBCABF405772CBEA90A60F64EDCA | sha256: 9599DD11889BC17388EF3C9DC51B4E43718AFA9F7083FE31EE9AD87ABC51EFB8 | sha512: E9DE354EA876527FB9F7028E5E98E27ED642FA9C373F421C24D8AF1BCC9506580F1E6DF608E490BE116AACD8ACAB7948238A7C92175D7C6B915B7CFE3B6E548B
tools\bin\csc.exe.ignore
 
tools\bin\csc.exe
md5: 0D1B183B8FCAB118930D33F9C80D8E07 | sha1: 1BD9E19BD004FCEB4BB50D66BD5772316CD2F450 | sha256: 13D79B676DA98E564DAB00829FCE4D6069DB2929671E75CAD695FBE952636FE7 | sha512: 20C7482814AE506FA5BB1BE5E38C487EB2F3549BB2F06898F733DD3BEDE9CCFF6CBCC50DB1BB2F7073A1437DDBF9930C75138AFFC4A0B27F46AF5479B3503DC5
tools\bin\chicken.exe.ignore
 
tools\bin\chicken.exe
md5: 25E1669DBB775986D9E65EB073AAC0B5 | sha1: 5C018ACDACCD845A7795712D9DA94DE43CC169BF | sha256: 351C5FE10B427C75BF6D8145FC0D6F1440E92C7E7F98A70C5FE9F7D29CCE8774 | sha512: CDAA451993DFF8CCC4DAC76FA86FE7D7BFE53ACF97E8991071C414A0566F9C6985DCA164101B7257AF22026D7FD1498B0818E8011973F3E92049A53AB211BFAD
tools\bin\chicken-uninstall.exe.ignore
 
tools\bin\chicken-uninstall.exe
md5: 8483B34137D5B2B070DC18467569EA48 | sha1: 2293A8606154B025B787A1A74A7E8C88C003E15C | sha256: 81E998134F2F665FFFFDBFF65BBB1ED8184200B6E060CDF79BBF1C038879CD05 | sha512: 72EB58D200D8679A40C6EA258F1B6C28F64BAB1C9E5688B610907D1597DB523979F20AEC1D94013BA72829EE1027197DB09D3998797D5E561CE8395995F12460
tools\bin\chicken-status.exe.ignore
 
tools\bin\chicken-status.exe
md5: 0C635B706D7B5F863839257D61C2EFEF | sha1: F3A2F3C437D2FA26AF0F81F5366E21CB6ED69C11 | sha256: 0C6EF944042E65DEC3214AD8705F62F6259EEBD880A17CE5D12D6EDC6802DA20 | sha512: 0E8933525561B7BFE4662AD97C0C95648F00DB550BDE8806A641139511CA705ECC8C60A62BBB62EEEC690DA54BFB5F7DEDA2791A7B5E43CFEEF26F9486A2050F
tools\bin\chicken-profile.exe.ignore
 
tools\lib\chicken\9\chicken.plist.import.so
md5: 20713C170F7846BE7A8F725A1552E358 | sha1: 361ED964420771D871B66189A9490D16DD5BFC7E | sha256: 7AB53928148AAD76160AB3160729A4041ABDAAC3AA25E91D7A3C05B874B12639 | sha512: 636573CD773675ABF2FC9902B419EF59949DCB3F430F43D9F8EF884FD2612911D937F9A762793E2ED25D2BD5C1B5607AD03E0C805A658094AEB519B3851996BB
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\lib\chicken\9\chicken.port.import.so
md5: 0A3BACBD31C128713064F14A7BAB4DD5 | sha1: E85314329A19D0097B40020952B2F5B9AD85B676 | sha256: DD1F654419B40381C61C4F63186DCD465E761CE847051FBF19AE68409B9959C4 | sha512: 17F28A77A78F573B2B9A471B80821A4C31B17F023B6AD16252E45350A04339EC7CFB928102B5321518E1FC755BC37CA7EDE4CFBE94A0A00A8CD1B913F8802DC5
tools\lib\chicken\9\chicken.pretty-print.import.so
md5: DE20F6588575EB1BF4274B43F75AA06A | sha1: 0955E23D6C1ADC13C376482F2B47E9C4600B3238 | sha256: D0C5D1B0437E97E314FB238C5ED502CEFD20A6A446454D30352313F2E0B3A0FE | sha512: B92DB6FD613A3D1D1FD1CB56EFE25A72BD1F2E0D1E4ACDF8CAAB77BC024993B7170AD541AF4A4BE72AB6A5C1439EF55F1A3CE75299006B141211269E4408EE60
tools\lib\chicken\9\chicken.process-context.import.so
md5: 8DB3B2E9EF335612514FD632A70B1294 | sha1: 86318B69FC5A263C4E3576E53B4D5B4133AA1C8C | sha256: C24BC69AAE055368B214F5876A559F6E9E037AF5E5E1E71A0FBEB606395918B8 | sha512: BF898B616E28C8700C67D91545419E12B422BB1B57AC88692D6AC5F6ED52B056326900630482C6B6A282C898708C7C5CF0CA64A8720F7CD8F2B5F9A28ECD2D58
tools\lib\chicken\9\chicken.process-context.posix.import.so
md5: D3DD47F413DC40BFFEEA0304B1987196 | sha1: B48128FB3F03500CB423F0AAC52FEA3B3FF5120B | sha256: 6431D944259728B5630B571807BABE37AF50D9DD494F5B36BC4566662231CB6E | sha512: 4FADB144D85F6324B1153A462ED3CD243CC55A0A6D3F35CD3ADC862295FAA349334ADFC5EB5952E73818748930A56A660CAC375E37237F8974CF52758C892E08
tools\lib\chicken\9\chicken.process.import.so
md5: F82B4BDD96BF438DC702375A32650112 | sha1: 876732EF01AF3CAA1DD2891CDF6DD0DFF4C51637 | sha256: 5FD1DE271B2318B66A9F7F4A2CD40F1A583DE62E013C2DC0D44123961D8F2DA1 | sha512: 008779DA6BF7CBFE9EF6005BB53686DA31AB0A56E3EDF9B724A2CE95644D9E4C1798EEA9749E1131213AD2F9F10709800851A4839B408D68EDAABE413CAC70F5
tools\lib\chicken\9\chicken.process.signal.import.so
md5: CEF1E0FDF68341D135887A8D045D05A0 | sha1: DAC7C46652C933A715D3BDC58D5D3609A5E42D3D | sha256: EC1400260DBABECD753D39155F382B2A43E5D3E40725ADF2A03DBA38DC413215 | sha512: EAADFFA6067EE0E0ECE3CE4C4F906D1BC16F3158C44505EB44566D619C5DA60FAB1C3B5D7192ABAB171F6B59F79F9568F55976CA20DBC6D2E86ED07E0766AC2E
tools\lib\chicken\9\chicken.random.import.so
md5: 3E57D66510CAA96D47BDBEF35557BD4B | sha1: AF2AD51EDD2E0C03E2014136F5F2358CE21A5E70 | sha256: A3D043064597C6AB4A1C4489BE8BC67EC0E9AFE147315BD860B5E51EA79D07A2 | sha512: 64FC55ED777CA27ED2C1595F9AD8B3F6D20DBF014214B0638465E0BE84D41FAE4DEFC25FA3FAA2016E3E37DB46521CE7B74351377AF5301E74D6B04EB8AAD769
tools\lib\chicken\9\chicken.read-syntax.import.so
md5: C9E0FC66F60A258C4A19A7FA8817EED4 | sha1: EE6E6D7338B348A875021AEB73C19A354786C325 | sha256: F4C2993DD52865B957932B5B0E185650024554DBC13B6B04A1432A0212D56BA2 | sha512: 187F19B6BD0D99A3137B4A24BC3195CAE9756C0611F5EB5BEB58EE660A6939C35EC93BA5E2B5EA1CFB4FB9289347140B09D1D892920B8803330F982EB22F1795
tools\lib\chicken\9\chicken.repl.import.so
md5: B66FFE0A59D6EF13E6BDC04E70CAF8D3 | sha1: F15BE28B1018E1ACB43710977BC61E414E74C561 | sha256: C47B0C2F822066436F048C807ED22CB0300DF19D022E827AB0233B8231CF20C1 | sha512: F93A61F324E418C7147EB80513C4B58ACD2CB3FDED0333004276771E271F2F97C645FFC7DC8EE989E3B3D373F1138B0DE347078BF280B1E653757DC7BD8F3003
tools\lib\chicken\9\chicken.sort.import.so
md5: 02AEC80826563E3A9BA805243F44F46B | sha1: F66A2F43F8016EC21618A443658E7D52BD1F445F | sha256: 5CE674D3B8C03A829CDBD09B5CD57CB826E246A514FB5E72028282BE5BFA6E69 | sha512: C75707A12B1A3296C65EDC1245C6160C7E56DDE2FB68FF08887E03B7CDB666B09DB8D8EECAF9BFB509555295A7DD69A827DCF812F28E2BDD6A63DF4BC06AD497
tools\lib\chicken\9\chicken.string.import.so
md5: 6E6F5FA9FBB2F8E7A95B8BD898A1ACF4 | sha1: 93AE054B0E335B8C21F8EA191F048383FBF14521 | sha256: FE48D8A3173FC2AEDEDC4CBF2FCE05FE11627BCFAC4D28FCFECEEDAE806FA9EE | sha512: 53837569C3D82A66BD90C74927645DC83E5630B246D4A8C137D3A540203E8F0F7EEF0AD9C5D4196FFB4A0E0092F43CA6A57BF24D9F2DFE6F88EA85656E42EF27
tools\lib\chicken\9\chicken.syntax.import.so
md5: 2988DAC1F88226A547B460ADD5E00832 | sha1: CBF3DAB1F9EAD571179520F93427FE2201E4A89D | sha256: 04A13846A8EF3915D157EA77C417216E78849D914B9484BFAFB72DC8896A3C07 | sha512: 0101D73DCB9AA206136497524245707B559251EA8D9AAB09A32E8C4647B1AED8EEEC44B807A6B3E5AFA0DB4B523C05B574E7F499A00905084E0EE2FAC3B777FC
tools\lib\chicken\9\chicken.tcp.import.so
md5: 7086308986D43BF19F0155044E73F261 | sha1: 7CD48F2D86B41C6E98EF4E0E478CDF6AA0FC35AD | sha256: 2E9EBB9B95A5F63FF4C4B2F74F12B3746D21B4E4621A282F0D4E2421E46F3696 | sha512: A3DBB5B0809ED6F5DDE3982B013C9D53DBDA0873245CB59CB097F1736B533A0CC070F59DB882BD41543C12A2C1ECFC3DCDCE2F5D54CF3B512E6BED9E26E2C07C
tools\lib\chicken\9\chicken.time.import.so
md5: 295805CF62E165BC8AE6849152E5C441 | sha1: FED6642F96EBC7D2C3968560F07ADDE06094DB5C | sha256: E95A829E18CA2AEEFAE352AD8FD3386FAAFCE272D56679120CF55AF5805BADF9 | sha512: 32CDD29A0D7F29DD70BA3E910A018F1F6F11EA14D0841C2E5BA72A6C9008E5BB29C0CFC67C6EEA9E7BFBF98CC62D0E5635B0207D9EDF0897C726FBA62E9FFFCC
tools\lib\chicken\9\chicken.time.posix.import.so
md5: 0E884A64998D73DB1DE929C9CB162501 | sha1: 927D4C7AA59DE930EF79B76BF1531EF749C71728 | sha256: C4D82014E7914F95DCF1F0541E15942F7B7B242B521969DA2920F8CCAA5B2650 | sha512: 8BF9818F6B339B84768979D42D73954458B65F83E2D631F8157C4F50E52F3C161093A8AA6196502C97E45DB23BDF7C8C7BAE9C07355814F8493C6078D351B778
tools\lib\chicken\9\srfi-4.import.so
md5: 0438196404396B5093ECC3D203AC7C77 | sha1: C801BD583092707B40DEF7DC9E046020A8FC9D3F | sha256: C7709C29FF521BFB275FA02D8ECB1D65A2791B6FE2D09AD4ECEC20729F0D136C | sha512: 4BC7825C90D3926F8572663BD8BEC98314A3AE22CB25B18027F458DD4893ABC215F0858D30024F3EFA98B97A8D42D793FA1CCC90443F297822C05405B948F900
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\Module (chicken base).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.
_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.
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
 

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