diff options
| author | 2025-07-17 20:13:46 -0400 | |
|---|---|---|
| committer | 2025-07-17 20:13:46 -0400 | |
| commit | b33ee27d03e75561fa6c141e3cb884fd479ce938 (patch) | |
| tree | b4451bc2b2a25757eb208a982364bee21b4cc985 /srfi | |
| parent | package for chicken (diff) | |
Diffstat (limited to '')
| -rw-r--r-- | srfi-225.egg | 66 | ||||
| -rw-r--r-- | srfi-225.release-info | 4 |
2 files changed, 70 insertions, 0 deletions
diff --git a/srfi-225.egg b/srfi-225.egg new file mode 100644 index 0000000..2d8c8b5 --- /dev/null +++ b/srfi-225.egg @@ -0,0 +1,66 @@ +((author "John Cowan (spec) and Arvydas Silanskas (implementation)") + (maintainer "Peter McGoron") + (version "1.0.0") + (synopsis "Generic Dictionaries") + (category data) + (license "MIT") + (dependencies r7rs srfi-1 srfi-128 srfi-69 srfi-146) + (test-dependencies srfi-64) + (components (extension srfi-225 + (source "srfi/225.sld") + (component-dependencies + srfi.225.core + srfi.225.default-impl + srfi.225.indexes + srfi.225.alist-impl + srfi.225.srfi-69-impl + srfi.225.srfi-146-impl + srfi.225.srfi-146-hash-impl) + (source-dependencies + "srfi/225/core-exports.scm" + "srfi/225/indexes-exports.scm") + (csc-options "-R" "r7rs" "-X" "r7rs")) + (extension srfi.225.indexes + (source "srfi/225/indexes.sld") + (source-dependencies "srfi/225/indexes-exports.scm") + (csc-options "-R" "r7rs" "-X" "r7rs")) + (extension srfi.225.core + (source "srfi/225/core.sld") + (source-dependencies + "srfi/225/core-exports.scm" + "srfi/225/core-impl.scm") + (component-dependencies + srfi.225.indexes) + (csc-options "-R" "r7rs" "-X" "r7rs")) + (extension srfi.225.default-impl + (source "srfi/225/default-impl.sld") + (component-dependencies + srfi.225.core srfi.225.indexes) + (csc-options "-R" "r7rs" "-X" "r7rs")) + (extension srfi.225.alist-impl + (source "srfi/225/alist-impl.sld") + (component-dependencies + srfi.225.core srfi.225.default-impl srfi.225.indexes) + (csc-options "-R" "r7rs" "-X" "r7rs")) + (extension srfi.225.srfi-69-impl + (source "srfi/225/srfi-69-impl.sld") + (component-dependencies + srfi.225.core + srfi.225.default-impl + srfi.225.indexes) + (csc-options "-R" "r7rs" "-X" "r7rs")) + (extension srfi.225.srfi-146-impl + (source "srfi/225/srfi-146-impl.sld") + (component-dependencies + srfi.225.core + srfi.225.default-impl + srfi.225.indexes) + (csc-options "-R" "r7rs" "-X" "r7rs")) + (extension srfi.225.srfi-146-hash-impl + (source "srfi/225/srfi-146-hash-impl.sld") + (component-dependencies + srfi.225.core + srfi.225.default-impl + srfi.225.indexes) + (csc-options "-R" "r7rs" "-X" "r7rs")) + )) diff --git a/srfi-225.release-info b/srfi-225.release-info new file mode 100644 index 0000000..e090abd --- /dev/null +++ b/srfi-225.release-info @@ -0,0 +1,4 @@ +(repo git "https://software.mcgoron.com/srfi-225-egg") + +(uri targz "https://files.mcgoron.com/chicken/srfi-225-egg/{egg-release}-{chicken-release}.tar.gz") +(release "1.0.0") |
