aboutsummaryrefslogtreecommitdiff
path: root/lang/chicken-scheme
Commit message (Collapse)AuthorAge
* treewide: quote CC and CXXPaul Fertser2023-01-20
| | | | | | | When CC is set to e.g. "ccache mips-openwrt-linux-musl-gcc" it needs to be quoted to avoid word splitting on substitution. Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* chicken-scheme: add conflict and small Makefile polishingJosef Schlehofer2022-03-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - No need to explicitly state two times section and category since this is already done in define Package/chicken-scheme/Default - Also add TITLE to Default - Add conflict between chicken-scheme-interpreter and chicken-scheme-full They both provide the same files: /usr/lib/libchicken.so /usr/lib/chicken/11/chicken.time.import.so /usr/lib/chicken/11/chicken.fixnum.import.so /usr/lib/chicken/11/chicken.internal.import.so /usr/lib/chicken/11/chicken.tcp.import.so /usr/lib/chicken/11/chicken.continuation.import.so /usr/lib/chicken/11/chicken.port.import.so /usr/lib/chicken/11/chicken.random.import.so /usr/lib/chicken/11/chicken.compiler.user-pass.import.so /usr/lib/chicken/11/chicken.process-context.import.so /usr/lib/chicken/11/chicken.bitwise.import.so /usr/lib/chicken/11/srfi-4.import.so /usr/lib/chicken/11/chicken.load.import.so /usr/lib/chicken/11/chicken.blob.import.so /usr/lib/chicken/11/chicken.time.posix.import.so /usr/lib/chicken/11/chicken.file.posix.import.so /usr/lib/chicken/11/chicken.flonum.import.so /usr/lib/chicken/11/chicken.condition.import.so /usr/lib/chicken/11/chicken.pretty-print.import.so /usr/lib/chicken/11/types.db /usr/lib/chicken/11/chicken.foreign.import.so /usr/lib/chicken/11/chicken.repl.import.so /usr/lib/chicken/11/chicken.pathname.import.so /usr/lib/chicken/11/chicken.sort.import.so /usr/lib/chicken/11/chicken.keyword.import.so /usr/lib/chicken/11/chicken.process.signal.import.so /usr/lib/chicken/11/chicken.platform.import.so /usr/lib/chicken/11/chicken.base.import.so /usr/lib/chicken/11/chicken.syntax.import.so /usr/lib/chicken/11/chicken.file.import.so /usr/lib/chicken/11/chicken.memory.import.so /usr/lib/chicken/11/chicken.gc.import.so /usr/lib/chicken/11/chicken.io.import.so /usr/lib/chicken/11/chicken.memory.representation.import.so /usr/lib/chicken/11/chicken.process.import.so /usr/lib/chicken/11/chicken.plist.import.so /usr/lib/chicken/11/chicken.string.import.so /usr/lib/chicken/11/chicken.errno.import.so /usr/lib/chicken/11/chicken.format.import.so /usr/lib/chicken/11/chicken.eval.import.so /usr/lib/chicken/11/chicken.irregex.import.so /usr/lib/chicken/11/chicken.process-context.posix.import.so /usr/lib/chicken/11/chicken.read-syntax.import.so /usr/lib/chicken/11/chicken.csi.import.so /usr/lib/chicken/11/chicken.locative.import.so /usr/bin/csi Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* chicken-scheme: fix compilation with glibcRosen Penev2020-08-26
| | | | | | | | The musl comment is no longer accurate. Remove the hack. Minor cleanups. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* chicken-scheme: version 5.2.0; include compilerJeronimo Pellegrini2020-03-06
| | | | | | | | | | | | | | | | | | | | * The Makefile creates two packages: - chicken-scheme-interpreter, same that was created with the previous version of the Makefile (except that this one includs Chicken 5.2.0); - chicken-scheme-full, which includes the compiler, debugger, profiler, and module manager. The -full package has some peculiarities: It is somewhat large, although that is not really an issue, since it depends on gcc, which already needs more than 100Mb space. The binaries are not stripped, because stripped binaries seem to break the compiler (generated objects are not properly linked). Since the package is large and depends on an even larger one, this shouldn't be a problem. Signed-off-by: Jeronimo Pellegrini <j_p@aleph0.info>
* chicken: upgrade to 5.1.0 change Makefile licenseJeronimo Pellegrini2019-07-02
| | | | | | | | * version 5.1.0 of Chicken is out. * Makefile goes from GPLv2 to GPLv3+ * other small enhancements to Makefile Signed-off-by: Jeronimo Pellegrini <j_p@aleph0.info>
* chicken-scheme: add packageJeronimo Pellegrini2019-03-26
Signed-off-by: Jeronimo Pellegrini <j_p@aleph0.info> Maintainer: myself ( Jeronimo Pellegrini <j_p@aleph0.info> ) Compile tested: compiles on x86_64, target mips (AR7xxx), OpenWRT master and OpenWRT 18.06.2 Run tested: on AR7xxx (TP-Link Archer C7 v.4) Description: This is an efficient Scheme interpreter, which comes with several modules for networking, filesystem access, and other useful tasks. It can be used as scripting language for automating tasks, by users who prefer dynamic functional languages over imperative or object-oriented ones.