lang/gauche 0.9.10

Lassi Kortela lassi at lassi.io
Thu Dec 17 20:24:11 UTC 2020


Hello,

Here's a patch to update the Gauche port to version 0.9.10, released a 
few days ago. There's a commit message on top of the patch.

This is my first port submission of any kind so a quick review by an 
experienced porter would be much appreciated. I ran `make makeplist` to 
regenerate pkg-plist, hand-editing a few things afterwards. portlint 
gave no warnings. The interpreter seems to work, man pages and GNU info 
files are readable; in particular, I tested HTTPS using mbedTLS.

KR,
Lassi
-------------- next part --------------
Upgrade to 0.9.10

- The preferred download site has changed from SourceForge to GitHub.

- The default TLS library used by the port has been changed from the
  bundled axTLS to the external mbedTLS. axTLS has a more permissive
  license than mbedTLS (BSD vs Apache) but is missing ciphers that are
  essential on today's web, making it impractical for many use cases.

- Choosing mbedTLS now implies a dependency on security/ca_root_nss.
  Gauche's configure script is told where to find the certificates
  installed by ca_root_nss.

- Wrote a more detailed package description.

- Changed plist entries from share/gauche-0.97 to %%DATADIR%%-0.97.

--- gauche/Makefile.orig	2020-12-16 12:20:18.000000000 +0200
+++ gauche/Makefile	2020-12-16 12:11:49.000000000 +0200
@@ -2,9 +2,9 @@
 # $FreeBSD$

 PORTNAME=	gauche
-PORTVERSION=	0.9.9
+PORTVERSION=	0.9.10
 CATEGORIES=	lang scheme
-MASTER_SITES=	SF/${PORTNAME}/Gauche
+MASTER_SITES=	https://github.com/shirok/Gauche/releases/download/release0_9_10/
 DISTNAME=	Gauche-${PORTVERSION}

 MAINTAINER=	ports at FreeBSD.org
@@ -37,7 +37,7 @@
 OPTIONS_RADIO=		MULTIBYTE TLS
 OPTIONS_RADIO_MULTIBYTE=	EUCJP SJIS UTF8
 OPTIONS_RADIO_TLS=	AXTLS MBEDTLS
-OPTIONS_DEFAULT=	AXTLS THREADS UTF8
+OPTIONS_DEFAULT=	MBEDTLS THREADS UTF8
 OPTIONS_SUB=		yes

 AXTLS_DESC=		Cameron Rich's axTLS implementation (bundled)
@@ -47,8 +47,9 @@
 GDBM_LIB_DEPENDS=	libgdbm.so:databases/gdbm
 GDBM_CONFIGURE_ON=	--with-dbm=gdbm,ndbm
 GDBM_CONFIGURE_OFF=	--with-dbm=ndbm
+MBEDTLS_RUN_DEPENDS=	${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss
 MBEDTLS_LIB_DEPENDS=	libmbedtls.so:security/mbedtls
-MBEDTLS_CONFIGURE_ON=	--with-tls=mbedtls
+MBEDTLS_CONFIGURE_ON=	--with-tls=mbedtls --with-ca-bundle=${LOCALBASE}/share/certs/ca-root-nss.crt
 SLIB_DESC=		Create catalogue for SLIB port
 # Gauche's slib module to use Aubrey Jaffer's SLIB
 SLIB_BUILD_DEPENDS=	${LOCALBASE}/share/slib/require.scm:lang/slib
--- gauche/distinfo.orig	2020-12-16 12:20:11.000000000 +0200
+++ gauche/distinfo	2020-12-16 12:11:49.000000000 +0200
@@ -1,3 +1,3 @@
-TIMESTAMP = 1576440314
-SHA256 (Gauche-0.9.9.tgz) = 4ca9325322a7efadb9680d156eb7b53521321c9ca4955c4cbe738bc2e1d7f7fb
-SIZE (Gauche-0.9.9.tgz) = 7244347
+TIMESTAMP = 1608077286
+SHA256 (Gauche-0.9.10.tgz) = 0f39df1daec56680b542211b085179cb22e8220405dae15d9d745c56a63a2532
+SIZE (Gauche-0.9.10.tgz) = 7701616
--- gauche/pkg-descr.orig	2020-12-16 12:20:06.000000000 +0200
+++ gauche/pkg-descr	2020-12-16 12:11:49.000000000 +0200
@@ -1,6 +1,10 @@
-Gauche is a Scheme interpreter conforming Revised^5 Report on
-Algorithmic Language Scheme. It is designed for rapid development of
-daily tools like system management and text processing. It can handle
-multibyte character strings natively.
+Gauche is a fast, portable Scheme interpreter with "batteries
+included". It conforms to the R5RS and R7RS language standards,
+supports lots of SRFI out of the box, adds its own object-oriented
+programming framework, and supports the R7RS library system as well as
+its own pre-R7RS module system. Gauche is designed for the rapid
+development of scipts to assist daily work in system administration,
+text processing, and other fields. It can handle UTF-8, EUC-JP, and
+Shift JIS character strings natively.

 WWW: http://practical-scheme.net/gauche/
--- gauche/pkg-plist.orig	2020-12-16 12:16:03.000000000 +0200
+++ gauche/pkg-plist	2020-12-16 12:18:33.000000000 +0200
@@ -6,10 +6,11 @@
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/binary--io.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/crypt--bcrypt.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/data--queue.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/data--ring-buffer.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/data--sparse.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/data--trie.so
 %%GDBM%%lib/gauche-0.97/%%VERSION%%/%%TARGET%%/dbm--gdbm.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/dbm--ndbm.so
- at comment lib/gauche-0.97/%%VERSION%%/%%TARGET%%/dbm--odbm.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/file--util.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--charconv.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--collection.so
@@ -19,6 +20,7 @@
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--hook.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--net.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--parameter.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--process.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--record.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--sequence.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--syslog.so
@@ -34,7 +36,7 @@
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gosh
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/libgauche-0.97.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/libgauche-0.97.so.0
-lib/gauche-0.97/%%VERSION%%/%%TARGET%%/libgauche-0.97.so.0.9
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/libgauche-0.97.so.0.10
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/libgauche-static-0.97.a
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/math--mt-random.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/os--windows.so
@@ -50,20 +52,23 @@
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/srfi-13.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/srfi-133.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/srfi-144.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/srfi-178.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/srfi-19.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/srfi-43.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/sxml--serializer.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/sxml--ssax.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/sxml--sxpath.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/sxml--tools.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/text--console.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/text--gap-buffer.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/text--gettext.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/text--line-edit.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/text--tr.so
 lib/gauche-0.97/%%VERSION%%/%%TARGET%%/util--match.so
 lib/gauche-0.97/%%VERSION%%/include/gauche.h
 lib/gauche-0.97/%%VERSION%%/include/gauche/bignum.h
 lib/gauche-0.97/%%VERSION%%/include/gauche/bits.h
 lib/gauche-0.97/%%VERSION%%/include/gauche/bits_inline.h
-lib/gauche-0.97/%%VERSION%%/include/gauche/bytes_inline.h
 lib/gauche-0.97/%%VERSION%%/include/gauche/char_euc_jp.h
 lib/gauche-0.97/%%VERSION%%/include/gauche/char_none.h
 lib/gauche-0.97/%%VERSION%%/include/gauche/char_sjis.h
@@ -75,6 +80,7 @@
 lib/gauche-0.97/%%VERSION%%/include/gauche/compare.h
 lib/gauche-0.97/%%VERSION%%/include/gauche/config.h
 lib/gauche-0.97/%%VERSION%%/include/gauche/config_threads.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/endian.h
 lib/gauche-0.97/%%VERSION%%/include/gauche/exception.h
 lib/gauche-0.97/%%VERSION%%/include/gauche/extend.h
 lib/gauche-0.97/%%VERSION%%/include/gauche/extern.h
@@ -119,7 +125,7 @@
 lib/gauche-0.97/site/%%TARGET%%/.keepme
 lib/libgauche-0.97.so
 lib/libgauche-0.97.so.0
-lib/libgauche-0.97.so.0.9
+lib/libgauche-0.97.so.0.10
 lib/libgauche-static-0.97.a
 man/man1/gauche-cesconv.1.gz
 man/man1/gauche-config.1.gz
@@ -127,459 +133,523 @@
 man/man1/gauche-package.1.gz
 man/man1/gosh.1.gz
 share/aclocal/gauche.m4
-%%DOCSDIR%%/.keepme
-%%EXAMPLESDIR%%/.keepme
+%%DATADIR%%-0.97/%%VERSION%%/aclocal.m4
+%%DATADIR%%-0.97/%%VERSION%%/lib/binary/ftype.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/binary/io.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/binary/pack.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/build-standalone
+%%DATADIR%%-0.97/%%VERSION%%/lib/cesconv
+%%DATADIR%%-0.97/%%VERSION%%/lib/check-script
+%%DATADIR%%-0.97/%%VERSION%%/lib/compat/chibi-test.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/compat/jfilter.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/compat/norational.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/compat/r7rs-srfi-tests.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/compat/stk.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/control/job.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/control/mapper.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/control/thread-pool.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/crypt/bcrypt.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/data/cache.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/data/heap.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/data/ideque.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/data/imap.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/data/priority-map.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/data/queue.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/data/random.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/data/ring-buffer.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/data/skew-list.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/data/sparse.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/data/trie.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/dbd/null.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/dbi.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/dbm.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/dbm/dump
+%%DATADIR%%-0.97/%%VERSION%%/lib/dbm/fsdbm.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/dbm/gdbm.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/dbm/ndbm.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/dbm/restore
+%%DATADIR%%-0.97/%%VERSION%%/lib/file/filter.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/file/util.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/array.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/base.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/cgen.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/cgen/cise.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/cgen/literal.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/cgen/optimizer.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/cgen/precomp.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/cgen/standalone.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/cgen/stub.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/cgen/tmodule.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/cgen/type.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/cgen/unit.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/charconv.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/collection.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/common-macros.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/computil.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/config.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/configure.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/connection.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/dictionary.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/experimental/app.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/experimental/lamb.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/experimental/ref.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/exports.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/fcntl.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/fileutil.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/generator.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/generic-sortutil.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/hashutil.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/hook.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/interactive.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/interactive/editable-reader.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/interactive/info.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/interactive/init.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/interactive/toplevel.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/interpolate.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/lazy.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/let-opt.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/libutil.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/listener.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/logger.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/logical.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/matrix.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/modutil.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/mop/bound-slot.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/mop/instance-pool.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/mop/propagate.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/mop/singleton.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/mop/validator.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/net.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/numerical.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/package.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/package/build.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/package/compile.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/package/fetch.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/package/util.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/parameter.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/parseopt.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/partcont.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/portutil.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/pputil.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/procedure.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/process.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/record.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/redefutil.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/regexp.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/regexp/sre.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/reload.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/selector.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/sequence.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/serializer.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/serializer/aserializer.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/signal.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/singleton.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/syslog.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/sysutil.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/termios.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/test.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/test/generative.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/test/script.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/threads.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/time.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/treeutil.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/unicode.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector/base.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector/c128.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector/c32.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector/c64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector/f16.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector/f32.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector/f64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector/s16.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector/s32.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector/s64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector/s8.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector/u16.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector/u32.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector/u64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/uvector/u8.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/validator.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/vecutil.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/version.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/vm/debugger.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/vm/insn-core.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/vm/insn.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/vm/profiler.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gauche/vport.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/gencomp
+%%DATADIR%%-0.97/%%VERSION%%/lib/genstub
+%%DATADIR%%-0.97/%%VERSION%%/lib/lang/asm/x86_64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/math/const.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/math/mt-random.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/math/prime.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/os/windows.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/os/windows/console/codepage.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/parser/peg.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/parser/peg/deprecated.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/precomp
+%%DATADIR%%-0.97/%%VERSION%%/lib/r7rs-setup.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/822.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/base64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/cookie.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/ftp.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/hmac.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/http.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/http/tunnel.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/icmp.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/ip.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/json.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/md5.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/mime-port.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/mime.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/quoted-printable.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/sha.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/sha1.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/tls.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/tls/get-cacert.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/tls/mbed.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/uri.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/uuid.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/rfc/zlib.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/base.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/bitwise.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/box.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/bytevector.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/case-lambda.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/char.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/charset.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/comparator.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/complex.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/cxr.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/division.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/ephemeron.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/eval.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/file.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/fixnum.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/flonum.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/generator.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/hash-table.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/ideque.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/ilist.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/inexact.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/lazy.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/list-queue.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/list.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/load.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/lseq.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/mapping.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/mapping/hash.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/process-context.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/r5rs.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/read.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/regex.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/repl.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/rlist.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/set.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/show.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/show/base.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/show/color.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/show/columnar.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/show/unicode.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/sort.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/stream.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/stream/derived.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/stream/primitive.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/text.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/time.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/vector.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/vector/base.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/vector/c128.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/vector/c64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/vector/f32.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/vector/f64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/vector/s16.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/vector/s32.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/vector/s64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/vector/s8.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/vector/u16.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/vector/u32.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/vector/u64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/vector/u8.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/scheme/write.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/slib.scm
+%%SLIB%%%%DATADIR%%-0.97/%%VERSION%%/lib/slibcat
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-1.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-101.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-106.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-11.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-112.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-113.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-114.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-115.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-116.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-117.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-118.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-121.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-124.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-125.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-127.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-128.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-129.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-13.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-130.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-131.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-132.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-133.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-134.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-135.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-14.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-14/query.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-14/set.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-141.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-143.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-144.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-146.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-146/hash.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-151.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-152.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-154.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-155.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-158.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159/base.sld
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159/color.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159/color.sld
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159/column.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159/columnar.sld
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159/internal/base.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159/internal/base.sld
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159/internal/monad.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159/internal/pretty.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159/internal/pretty.sld
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159/internal/util.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159/internal/util.sld
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159/internal/write.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159/unicode.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-159/unicode.sld
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-160.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-162.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-170.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-173.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-174.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-175.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-176.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-178.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-18.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-180.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-181.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-185.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-189.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-19.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-192.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-193.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-198.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-25.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-27.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-29.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-29/bundle.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-29/format.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-37.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-39.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-4.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-41.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-42.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-43.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-5.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-55.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-60.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-66.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-69.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-7.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-74.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-78.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-9.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-96.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-98.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi-99.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/0.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/1.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/10.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/101.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/106.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/11.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/111.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/112.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/113.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/114.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/115.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/116.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/117.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/118.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/121.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/124.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/125.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/127.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/128.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/129.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/13.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/130.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/131.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/132.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/133.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/134.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/135.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/14.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/141.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/143.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/144.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/145.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/146.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/149.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/151.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/152.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/154.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/158.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/159.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/159/base.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/159/color.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/159/columnar.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/159/unicode.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/16.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/160.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/160/base.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/160/c128.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/160/c64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/160/f32.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/160/f64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/160/s16.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/160/s32.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/160/s64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/160/s8.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/160/u16.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/160/u32.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/160/u64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/160/u8.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/162.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/17.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/170.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/173.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/174.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/175.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/176.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/178.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/18.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/180.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/181.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/185.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/189.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/19.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/192.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/193.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/195.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/2.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/22.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/23.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/25.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/26.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/27.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/28.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/29.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/30.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/31.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/34.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/35.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/36.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/37.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/38.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/39.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/4.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/40.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/41.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/42.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/43.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/45.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/46.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/5.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/55.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/6.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/60.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/61.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/62.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/64.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/66.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/69.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/7.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/74.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/78.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/8.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/87.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/9.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/95.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/96.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/98.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/srfi/99.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/sxml/adaptor.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/sxml/serializer.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/sxml/ssax.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/sxml/sxpath.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/sxml/to-html.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/sxml/tools.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/sxml/tree-trans.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/console.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/console/framebuffer.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/console/wide-char-setting.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/console/windows.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/csv.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/diff.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/edn.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/external-editor.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/gap-buffer.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/gettext.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/html-lite.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/info.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/line-edit.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/pager.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/parse.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/progress.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/sql.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/template.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/tr.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/tree.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/unicode.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/unicode/codeset.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/text/unicode/ucd.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/combinations.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/digest.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/dominator.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/isomorph.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/lcs.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/levenshtein.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/list.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/match.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/queue.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/rbtree.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/record.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/relation.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/sparse.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/stream.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/toposort.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/tree.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/trie.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/util/unification.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/www/cgi-test.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/www/cgi.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/www/cgi/test.scm
+%%DATADIR%%-0.97/%%VERSION%%/lib/www/css.scm
+%%DATADIR%%-0.97/%%VERSION%%/package-templates/Makefile-pure-scheme.in
+%%DATADIR%%-0.97/%%VERSION%%/package-templates/Makefile.in
+%%DATADIR%%-0.97/%%VERSION%%/package-templates/configure
+%%DATADIR%%-0.97/%%VERSION%%/package-templates/configure-compat
+%%DATADIR%%-0.97/%%VERSION%%/package-templates/configure.ac
+%%DATADIR%%-0.97/%%VERSION%%/package-templates/extension.c
+%%DATADIR%%-0.97/%%VERSION%%/package-templates/extension.h
+%%DATADIR%%-0.97/%%VERSION%%/package-templates/extensionlib.stub
+%%DATADIR%%-0.97/%%VERSION%%/package-templates/module-pure-scheme.scm
+%%DATADIR%%-0.97/%%VERSION%%/package-templates/module.scm
+%%DATADIR%%-0.97/%%VERSION%%/package-templates/package.scm
+%%DATADIR%%-0.97/%%VERSION%%/package-templates/test.scm
+%%DATADIR%%-0.97/site/lib/.packages/.keepme
 %%DATADIR%%/%%VERSION%%/lib/.packages/.keepme
 %%DATADIR%%/site/lib/.packages/.keepme
-share/gauche-0.97/%%VERSION%%/aclocal.m4
-%%GDBM%%share/gauche-0.97/%%VERSION%%/lib/dbm/gdbm.scm
-%%SLIB%%share/gauche-0.97/%%VERSION%%/lib/slibcat
- at comment share/gauche-0.97/%%VERSION%%/lib/dbm/odbm.scm
-share/gauche-0.97/%%VERSION%%/lib/binary/ftype.scm
-share/gauche-0.97/%%VERSION%%/lib/binary/io.scm
-share/gauche-0.97/%%VERSION%%/lib/binary/pack.scm
-share/gauche-0.97/%%VERSION%%/lib/build-standalone
-share/gauche-0.97/%%VERSION%%/lib/cesconv
-share/gauche-0.97/%%VERSION%%/lib/check-script
-share/gauche-0.97/%%VERSION%%/lib/compat/chibi-test.scm
-share/gauche-0.97/%%VERSION%%/lib/compat/jfilter.scm
-share/gauche-0.97/%%VERSION%%/lib/compat/norational.scm
-share/gauche-0.97/%%VERSION%%/lib/compat/r7rs-srfi-tests.scm
-share/gauche-0.97/%%VERSION%%/lib/compat/stk.scm
-share/gauche-0.97/%%VERSION%%/lib/control/job.scm
-share/gauche-0.97/%%VERSION%%/lib/control/mapper.scm
-share/gauche-0.97/%%VERSION%%/lib/control/thread-pool.scm
-share/gauche-0.97/%%VERSION%%/lib/crypt/bcrypt.scm
-share/gauche-0.97/%%VERSION%%/lib/data/cache.scm
-share/gauche-0.97/%%VERSION%%/lib/data/heap.scm
-share/gauche-0.97/%%VERSION%%/lib/data/ideque.scm
-share/gauche-0.97/%%VERSION%%/lib/data/imap.scm
-share/gauche-0.97/%%VERSION%%/lib/data/priority-map.scm
-share/gauche-0.97/%%VERSION%%/lib/data/queue.scm
-share/gauche-0.97/%%VERSION%%/lib/data/random.scm
-share/gauche-0.97/%%VERSION%%/lib/data/ring-buffer.scm
-share/gauche-0.97/%%VERSION%%/lib/data/sparse.scm
-share/gauche-0.97/%%VERSION%%/lib/data/trie.scm
-share/gauche-0.97/%%VERSION%%/lib/dbd/null.scm
-share/gauche-0.97/%%VERSION%%/lib/dbi.scm
-share/gauche-0.97/%%VERSION%%/lib/dbm.scm
-share/gauche-0.97/%%VERSION%%/lib/dbm/dump
-share/gauche-0.97/%%VERSION%%/lib/dbm/fsdbm.scm
-share/gauche-0.97/%%VERSION%%/lib/dbm/ndbm.scm
-share/gauche-0.97/%%VERSION%%/lib/dbm/restore
-share/gauche-0.97/%%VERSION%%/lib/file/filter.scm
-share/gauche-0.97/%%VERSION%%/lib/file/util.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/array.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/base.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/cgen.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/cgen/cise.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/cgen/literal.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/cgen/optimizer.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/cgen/precomp.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/cgen/standalone.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/cgen/stub.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/cgen/tmodule.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/cgen/type.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/cgen/unit.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/charconv.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/collection.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/common-macros.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/computil.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/condutil.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/config.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/configure.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/connection.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/dictionary.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/experimental/app.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/experimental/lamb.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/experimental/ref.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/exports.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/fcntl.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/fileutil.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/generator.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/generic-sortutil.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/hashutil.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/hook.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/interactive.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/interactive/ed.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/interactive/editable-reader.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/interactive/info.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/interactive/init.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/interactive/toplevel.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/interpolate.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/lazy.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/let-opt.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/libutil.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/listener.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/logger.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/logical.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/matrix.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/modutil.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/mop/bound-slot.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/mop/instance-pool.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/mop/propagate.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/mop/singleton.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/mop/validator.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/net.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/numerical.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/package.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/package/build.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/package/compile.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/package/fetch.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/package/util.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/parameter.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/parseopt.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/partcont.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/portutil.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/pputil.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/procedure.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/process.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/record.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/redefutil.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/regexp.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/regexp/sre.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/reload.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/selector.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/sequence.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/serializer.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/serializer/aserializer.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/signal.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/singleton.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/sortutil.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/stringutil.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/syslog.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/sysutil.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/termios.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/test.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/test/generative.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/test/script.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/threads.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/time.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/treeutil.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/unicode.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector/base.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector/c128.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector/c32.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector/c64.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector/f16.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector/f32.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector/f64.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector/s16.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector/s32.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector/s64.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector/s8.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector/u16.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector/u32.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector/u64.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/uvector/u8.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/validator.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/vecutil.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/version.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/vm/debugger.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/vm/insn-core.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/vm/insn.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/vm/profiler.scm
-share/gauche-0.97/%%VERSION%%/lib/gauche/vport.scm
-share/gauche-0.97/%%VERSION%%/lib/gencomp
-share/gauche-0.97/%%VERSION%%/lib/genstub
-share/gauche-0.97/%%VERSION%%/lib/lang/asm/x86_64.scm
-share/gauche-0.97/%%VERSION%%/lib/math/const.scm
-share/gauche-0.97/%%VERSION%%/lib/math/mt-random.scm
-share/gauche-0.97/%%VERSION%%/lib/math/prime.scm
-share/gauche-0.97/%%VERSION%%/lib/os/windows.scm
-share/gauche-0.97/%%VERSION%%/lib/os/windows/console/codepage.scm
-share/gauche-0.97/%%VERSION%%/lib/parser/peg.scm
-share/gauche-0.97/%%VERSION%%/lib/parser/peg/deprecated.scm
-share/gauche-0.97/%%VERSION%%/lib/precomp
-share/gauche-0.97/%%VERSION%%/lib/r7rs-setup.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/822.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/base64.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/cookie.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/ftp.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/hmac.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/http.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/http/tunnel.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/icmp.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/ip.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/json.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/md5.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/mime-port.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/mime.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/quoted-printable.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/sha.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/sha1.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/tls.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/tls/mbed.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/uri.scm
-share/gauche-0.97/%%VERSION%%/lib/rfc/zlib.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/base.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/bitwise.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/box.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/case-lambda.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/char.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/charset.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/comparator.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/complex.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/cxr.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/division.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/ephemeron.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/eval.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/file.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/fixnum.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/flonum.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/generator.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/hash-table.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/ideque.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/inexact.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/lazy.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/list-queue.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/list.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/load.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/lseq.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/mapping.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/mapping/hash.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/process-context.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/r5rs.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/read.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/regex.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/repl.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/set.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/sort.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/stream.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/stream/derived.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/stream/primitive.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/time.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/vector.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/vector/base.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/vector/c128.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/vector/c64.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/vector/f32.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/vector/f64.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/vector/s16.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/vector/s32.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/vector/s64.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/vector/s8.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/vector/u16.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/vector/u32.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/vector/u64.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/vector/u8.scm
-share/gauche-0.97/%%VERSION%%/lib/scheme/write.scm
-share/gauche-0.97/%%VERSION%%/lib/slib.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-1.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-106.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-11.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-112.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-113.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-114.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-115.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-117.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-118.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-121.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-124.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-125.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-127.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-128.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-129.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-13.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-131.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-132.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-133.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-134.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-14.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-14/query.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-14/set.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-141.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-143.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-144.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-146.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-146/hash.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-151.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-152.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-154.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-155.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-158.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-160.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-162.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-173.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-18.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-19.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-25.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-27.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-29.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-29/bundle.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-29/format.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-37.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-39.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-4.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-41.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-42.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-43.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-5.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-55.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-60.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-64.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-66.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-69.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-7.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-74.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-78.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-9.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-96.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-98.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi-99.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/0.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/1.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/10.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/106.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/11.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/111.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/112.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/113.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/114.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/115.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/117.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/118.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/121.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/124.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/125.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/127.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/128.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/129.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/13.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/131.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/132.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/133.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/134.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/14.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/141.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/143.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/144.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/145.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/146.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/149.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/151.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/152.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/154.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/158.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/16.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/160.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/160/base.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/160/c128.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/160/c64.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/160/f32.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/160/f64.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/160/s16.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/160/s32.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/160/s64.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/160/s8.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/160/u16.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/160/u32.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/160/u64.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/160/u8.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/162.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/17.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/173.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/18.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/19.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/2.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/22.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/23.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/25.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/26.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/27.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/28.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/29.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/30.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/31.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/34.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/35.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/36.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/37.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/38.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/39.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/4.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/40.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/41.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/42.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/43.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/45.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/46.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/5.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/55.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/6.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/60.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/61.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/62.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/64.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/66.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/69.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/7.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/74.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/78.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/8.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/87.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/9.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/95.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/96.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/98.scm
-share/gauche-0.97/%%VERSION%%/lib/srfi/99.scm
-share/gauche-0.97/%%VERSION%%/lib/sxml/adaptor.scm
-share/gauche-0.97/%%VERSION%%/lib/sxml/serializer.scm
-share/gauche-0.97/%%VERSION%%/lib/sxml/ssax.scm
-share/gauche-0.97/%%VERSION%%/lib/sxml/sxpath.scm
-share/gauche-0.97/%%VERSION%%/lib/sxml/to-html.scm
-share/gauche-0.97/%%VERSION%%/lib/sxml/tools.scm
-share/gauche-0.97/%%VERSION%%/lib/sxml/tree-trans.scm
-share/gauche-0.97/%%VERSION%%/lib/text/console.scm
-share/gauche-0.97/%%VERSION%%/lib/text/console/generic.scm
-share/gauche-0.97/%%VERSION%%/lib/text/console/windows.scm
-share/gauche-0.97/%%VERSION%%/lib/text/csv.scm
-share/gauche-0.97/%%VERSION%%/lib/text/diff.scm
-share/gauche-0.97/%%VERSION%%/lib/text/edn.scm
-share/gauche-0.97/%%VERSION%%/lib/text/gap-buffer.scm
-share/gauche-0.97/%%VERSION%%/lib/text/gettext.scm
-share/gauche-0.97/%%VERSION%%/lib/text/html-lite.scm
-share/gauche-0.97/%%VERSION%%/lib/text/info.scm
-share/gauche-0.97/%%VERSION%%/lib/text/line-edit.scm
-share/gauche-0.97/%%VERSION%%/lib/text/parse.scm
-share/gauche-0.97/%%VERSION%%/lib/text/progress.scm
-share/gauche-0.97/%%VERSION%%/lib/text/sql.scm
-share/gauche-0.97/%%VERSION%%/lib/text/template.scm
-share/gauche-0.97/%%VERSION%%/lib/text/tr.scm
-share/gauche-0.97/%%VERSION%%/lib/text/tree.scm
-share/gauche-0.97/%%VERSION%%/lib/text/unicode.scm
-share/gauche-0.97/%%VERSION%%/lib/text/unicode/codeset.scm
-share/gauche-0.97/%%VERSION%%/lib/text/unicode/ucd.scm
-share/gauche-0.97/%%VERSION%%/lib/util/combinations.scm
-share/gauche-0.97/%%VERSION%%/lib/util/digest.scm
-share/gauche-0.97/%%VERSION%%/lib/util/dominator.scm
-share/gauche-0.97/%%VERSION%%/lib/util/isomorph.scm
-share/gauche-0.97/%%VERSION%%/lib/util/lcs.scm
-share/gauche-0.97/%%VERSION%%/lib/util/levenshtein.scm
-share/gauche-0.97/%%VERSION%%/lib/util/list.scm
-share/gauche-0.97/%%VERSION%%/lib/util/match.scm
-share/gauche-0.97/%%VERSION%%/lib/util/queue.scm
-share/gauche-0.97/%%VERSION%%/lib/util/rbtree.scm
-share/gauche-0.97/%%VERSION%%/lib/util/record.scm
-share/gauche-0.97/%%VERSION%%/lib/util/relation.scm
-share/gauche-0.97/%%VERSION%%/lib/util/sparse.scm
-share/gauche-0.97/%%VERSION%%/lib/util/stream.scm
-share/gauche-0.97/%%VERSION%%/lib/util/toposort.scm
-share/gauche-0.97/%%VERSION%%/lib/util/tree.scm
-share/gauche-0.97/%%VERSION%%/lib/util/trie.scm
-share/gauche-0.97/%%VERSION%%/lib/util/unification.scm
-share/gauche-0.97/%%VERSION%%/lib/www/cgi-test.scm
-share/gauche-0.97/%%VERSION%%/lib/www/cgi.scm
-share/gauche-0.97/%%VERSION%%/lib/www/cgi/test.scm
-share/gauche-0.97/%%VERSION%%/lib/www/css.scm
-share/gauche-0.97/%%VERSION%%/template.Makefile.in
-share/gauche-0.97/%%VERSION%%/template.configure
-share/gauche-0.97/%%VERSION%%/template.configure.ac
-share/gauche-0.97/%%VERSION%%/template.extension.c
-share/gauche-0.97/%%VERSION%%/template.extension.h
-share/gauche-0.97/%%VERSION%%/template.extensionlib.stub
-share/gauche-0.97/%%VERSION%%/template.module.scm
-share/gauche-0.97/%%VERSION%%/template.package.scm
-share/gauche-0.97/%%VERSION%%/template.test.scm
-share/gauche-0.97/site/lib/.packages/.keepme


More information about the freebsd-ports mailing list