Port to Chicken 6

This commit is contained in:
Daniel Ziltener 2024-09-30 00:16:55 +02:00
parent 07831bb120
commit e04d1d8146
Signed by: zilti
GPG key ID: B38976E82C9DAE42
4 changed files with 10 additions and 7 deletions

View file

@ -1,8 +1,7 @@
[![License](https://img.shields.io/badge/license-BSD-blue.svg?style=flat)]() [![License](https://img.shields.io/badge/license-BSD-blue.svg?style=flat)]()
[![Chicken Scheme](https://img.shields.io/badge/Chicken-Scheme-ECC42F.svg?style=flat)](https://www.call-cc.org/) [![Chicken Scheme](https://img.shields.io/badge/Chicken-Scheme-ECC42F.svg?style=flat)](https://www.call-cc.org/)
[![Egg](https://img.shields.io/badge/Eggversion-0.5.2-blue.svg?style=flat)](https://wiki.call-cc.org/eggref/4/edn) [![Egg](https://img.shields.io/badge/Eggversion-1.1-blue.svg?style=flat)](https://wiki.call-cc.org/eggref/5/edn)
[![Gratipay](https://img.shields.io/liberapay/receives/zilti.svg?style=flat)](https://liberapay.com/zilti) [![Liberapay](https://img.shields.io/liberapay/receives/zilti.svg?style=flat)](https://liberapay.com/zilti)
[![Flattr this](https://api.flattr.com/button/flattr-badge-small.png)](https://flattr.com/submit/auto?user_id=zilti&url=https%3A%2F%2Fbitbucket.org%2Fzilti%2Fedn)
chicken-edn chicken-edn
=========== ===========
@ -36,6 +35,7 @@ API
Releases Releases
-------- --------
* **1.1**: Port to Chicken 6.
* **1.0**: Made the custom parsers a parameter. * **1.0**: Made the custom parsers a parameter.
* **0.5.2**: Update for Chicken 5 * **0.5.2**: Update for Chicken 5
* **0.5.1**: Small compatibility improvements: "/" now starts a symbol as well, and "," is treated as whitespace. * **0.5.1**: Small compatibility improvements: "/" now starts a symbol as well, and "," is treated as whitespace.

View file

@ -5,9 +5,9 @@
(category parsing) (category parsing)
(license "BSD") (license "BSD")
(version "1.0") (version "1.0")
(dependencies r7rs srfi-69 srfi-1 chalk) (dependencies srfi-69 srfi-1 chalk)
(test-dependencies r7rs srfi-64 chalk) (test-dependencies srfi-64 chalk)
(components (extension edn (components (extension edn
(modules edn) (modules edn)
(csc-options "-X" "r7rs" "-R" "r7rs" "-X" "chalk") (csc-options "-X" "chalk")
))) )))

4
edn.release-info.6 Normal file
View file

@ -0,0 +1,4 @@
;; -*- Scheme -*-
(repo git "https:///forgejo.lyrion.ch/Chicken/edn.git")
(uri targz "https://forgejo.lyrion.ch/Chicken/edn/archive/{egg-release}.tar.gz")
(release "1.1") ;; Port to Chicken 6

View file

@ -4,7 +4,6 @@
@(==="Documentation") @(==="Documentation")
(import r7rs)
(define-library (edn) (define-library (edn)
(import srfi-1 (import srfi-1
srfi-69 srfi-69