diff options
| author | 2025-10-26 13:53:55 -0400 | |
|---|---|---|
| committer | 2025-10-26 13:53:55 -0400 | |
| commit | 764ab15ddabaac7545945d5241821e470e5ba918 (patch) | |
| tree | 88ab2530136b6b33b25e150ddd93f8ceb191067d | |
| parent | tests, chibi support (diff) | |
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | Makefile | 7 | ||||
| -rw-r--r-- | chicken.svnwiki | 32 | ||||
| -rw-r--r-- | hascheme.egg | 2 | ||||
| -rw-r--r-- | hascheme.release-info | 1 | ||||
| -rw-r--r-- | tests/run.scm | 8 |
6 files changed, 46 insertions, 7 deletions
@@ -1,4 +1,4 @@ -tests/*.log +*.log *.import.scm *.a *.o @@ -6,3 +6,4 @@ tests/*.log *.build.sh *.install.sh *.link +*.tar.gz @@ -1,7 +1,12 @@ .POSIX: +VERSION=0.2.0 + help: echo 'make clean' clean: - rm -f *.so *.import.scm *.o *.link *.build.sh *.import.c *.install.sh + rm -f *.so *.import.scm *.o *.link *.build.sh *.import.c *.install.sh tests/*log *.log + +chicken-package: + tar -czvf "${VERSION}-5.tar.gz" hascheme.egg lib/ tests/run.scm diff --git a/chicken.svnwiki b/chicken.svnwiki index d03d749..15bf44a 100644 --- a/chicken.svnwiki +++ b/chicken.svnwiki @@ -36,12 +36,14 @@ This code snippet will run in a constant amount of space. (The procedure {{!}} i Why use this? -1. To have fun. -2. To show Haskellers that you don't need some fancy static type system to have pervasive lazyness. -3. To implement lazy code that can be used with strict code. +*# To have fun. +*# To show Haskellers that you don't need some fancy static type system to have pervasive lazyness. +*# To implement lazy code that can be used with strict code. HaScheme does not support continuations, parameters, exceptions, or multiple value returns. +HaScheme works in Chibi too. + === Author Peter McGoron @@ -372,3 +374,27 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Some tests and support code (not used in the CHICKEN version) were adapted +from code written by André van Tonder. + +Copyright (C) André van Tonder (2003). All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + diff --git a/hascheme.egg b/hascheme.egg index 3097481..9041c5a 100644 --- a/hascheme.egg +++ b/hascheme.egg @@ -1,5 +1,5 @@ ((author "Peter McGoron") - (version "0.1.0") + (version "0.2.0") (synopsis "Implictly Lazy Scheme embedded into Scheme") (category lang-exts) (license "BSD 0-clause") diff --git a/hascheme.release-info b/hascheme.release-info index 18bd3de..6ce6ca7 100644 --- a/hascheme.release-info +++ b/hascheme.release-info @@ -1,4 +1,5 @@ (repo git "https://software.mcgoron.com/hascheme") (uri targz "https://files.mcgoron.com/chicken/hascheme/{egg-release}-{chicken-release}.tar.gz") +(release "0.2.0") (release "0.1.0") diff --git a/tests/run.scm b/tests/run.scm index 5c02052..8933e00 100644 --- a/tests/run.scm +++ b/tests/run.scm @@ -8,6 +8,12 @@ (chicken-5 (test-runner-current (test-runner-create))) (else)) -(import (tests hascheme base)) +(import (scheme process-context) (tests hascheme base)) (test-group "base" (test-base)) +(cond-expand + (chibi (test-exit)) + (else (exit (if (zero? (test-runner-fail-count (test-runner-current))) + 0 + 1)))) + |
