Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 29 Dec 2018 08:03:24 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r488658 - in head/lang/gauche: . files
Message-ID:  <201812290803.wBT83OGj047048@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: danfe
Date: Sat Dec 29 08:03:24 2018
New Revision: 488658
URL: https://svnweb.freebsd.org/changeset/ports/488658

Log:
  - Update `lang/gauche' to version 0.9.7
  - Fix two tests that are failing on FreeBSD: one because clang aborts due
    to failed assertion when trying to compile ``extern void sin(); sin();'':
  
      Assertion failed: (Arg < NumArgs && "Arg access out of range!"),
      function getArg, file
      /usr/src/contrib/llvm/tools/clang/include/clang/AST/Expr.h, line 2283.
      cc: error: unable to execute command: Abort trap (core dumped)
  
    Another test (cf-check-lib) fails because of the LIBS variable which is
    passed on the TEST_ENV list.  Since there's nothing useful to the tests
    there anyway, just ensure it is empty
  
  PR:	234257

Modified:
  head/lang/gauche/Makefile
  head/lang/gauche/distinfo
  head/lang/gauche/files/patch-src_Makefile.in
  head/lang/gauche/pkg-plist

Modified: head/lang/gauche/Makefile
==============================================================================
--- head/lang/gauche/Makefile	Sat Dec 29 07:18:50 2018	(r488657)
+++ head/lang/gauche/Makefile	Sat Dec 29 08:03:24 2018	(r488658)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	gauche
-PORTVERSION=	0.9.6
-PORTREVISION=	4
+PORTVERSION=	0.9.7
 CATEGORIES=	lang scheme
 MASTER_SITES=	SF/${PORTNAME}/Gauche
 DISTNAME=	Gauche-${PORTVERSION}
@@ -32,6 +31,7 @@ PLIST_SUB=	VERSION="${PORTVERSION}" \
 
 # avoids a problem with with ccache's pre-processor optimization
 MAKE_ENV+=	CCACHE_CPP2=1
+TEST_ENV=	# must be empty, otherwise cf-check-lib test fails
 
 INFO=		gauche-refe gauche-refj
 
@@ -73,15 +73,19 @@ post-patch:
 # required for sparc64, no-op elsewhere
 	@${REINPLACE_CMD} -e \
 		'/^VPATH = /s,$$,/src,' ${WRKSRC}/gc/Makefile.in
+# unbreak "make test" by using the same workaround as for OSX (darwin),
+# apparently because we both use clang (XXX: what about gcc?)
+	@${REINPLACE_CMD} -e \
+		's,darwin,&|${OPSYS:tl},' ${WRKSRC}/test/scripts.scm
 
 post-install:
-	@${TOUCH} ${STAGEDIR}${PREFIX}/lib/gauche-0.9/site/${CONFIGURE_TARGET}/.keepme
+	@${TOUCH} ${STAGEDIR}${PREFIX}/lib/gauche-0.97/site/${CONFIGURE_TARGET}/.keepme
 	@${MKDIR} ${STAGEDIR}${DATADIR}/${PORTVERSION}/lib/.packages
 	@${TOUCH} ${STAGEDIR}${DATADIR}/${PORTVERSION}/lib/.packages/.keepme
 	@${MKDIR} ${STAGEDIR}${DATADIR}/site/lib/.packages
 	@${TOUCH} ${STAGEDIR}${DATADIR}/site/lib/.packages/.keepme
-	@${MKDIR} ${STAGEDIR}${PREFIX}/share/gauche-0.9/site/lib/.packages
-	@${TOUCH} ${STAGEDIR}${PREFIX}/share/gauche-0.9/site/lib/.packages/.keepme
+	@${MKDIR} ${STAGEDIR}${PREFIX}/share/gauche-0.97/site/lib/.packages
+	@${TOUCH} ${STAGEDIR}${PREFIX}/share/gauche-0.97/site/lib/.packages/.keepme
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	@${TOUCH} ${STAGEDIR}${DOCSDIR}/.keepme
 	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
@@ -91,11 +95,11 @@ post-install:
 	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${i}
 	@${CHMOD} u-w ${STAGEDIR}${PREFIX}/bin/${i}
 .endfor
-	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgauche-0.9.so.[0-9].*
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgauche-0.97.so.[0-9].*
 .for i in gauche-config gosh *.so
-	@${CHMOD} u+w ${STAGEDIR}${PREFIX}/lib/gauche-0.9/${PORTVERSION}/${CONFIGURE_TARGET}/${i}
-	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gauche-0.9/${PORTVERSION}/${CONFIGURE_TARGET}/${i}
-	@${CHMOD} u-w ${STAGEDIR}${PREFIX}/lib/gauche-0.9/${PORTVERSION}/${CONFIGURE_TARGET}/${i}
+	@${CHMOD} u+w ${STAGEDIR}${PREFIX}/lib/gauche-0.97/${PORTVERSION}/${CONFIGURE_TARGET}/${i}
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gauche-0.97/${PORTVERSION}/${CONFIGURE_TARGET}/${i}
+	@${CHMOD} u-w ${STAGEDIR}${PREFIX}/lib/gauche-0.97/${PORTVERSION}/${CONFIGURE_TARGET}/${i}
 .endfor
 
 .include <bsd.port.mk>

Modified: head/lang/gauche/distinfo
==============================================================================
--- head/lang/gauche/distinfo	Sat Dec 29 07:18:50 2018	(r488657)
+++ head/lang/gauche/distinfo	Sat Dec 29 08:03:24 2018	(r488658)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1530619386
-SHA256 (Gauche-0.9.6.tgz) = cd8928630d63b8043842a0526fbfb8f5f3c720b0d0ace81851e266ddfde69caf
-SIZE (Gauche-0.9.6.tgz) = 6927530
+TIMESTAMP = 1545335535
+SHA256 (Gauche-0.9.7.tgz) = 2d33bd942e3fc2f2dcc8e5217c9130c885a0fd1cb11a1856e619a83a23f336a0
+SIZE (Gauche-0.9.7.tgz) = 6861031

Modified: head/lang/gauche/files/patch-src_Makefile.in
==============================================================================
--- head/lang/gauche/files/patch-src_Makefile.in	Sat Dec 29 07:18:50 2018	(r488657)
+++ head/lang/gauche/files/patch-src_Makefile.in	Sat Dec 29 08:03:24 2018	(r488658)
@@ -1,6 +1,6 @@
---- src/Makefile.in.orig	2018-06-30 03:25:22 UTC
+--- src/Makefile.in.orig	2018-12-20 17:50:35 UTC
 +++ src/Makefile.in
-@@ -259,7 +259,7 @@ test-extra$(EXEEXT) : $(LIBGAUCHE).$(SOEXT) $(test_ext
+@@ -267,7 +267,7 @@ test-extra$(EXEEXT) : $(LIBGAUCHE).$(SOEXT) $(test_ext
  # need to relink gosh-noconsole.exe (windows no-console version).
  relink :
  	$(RELINK) $(libgauche_LDFLAGS) $(LIBGAUCHE).$(SOEXT) $(libgauche_OBJECTS) $(libgc_pic_LIBRARY) $(GC_ATOMIC_OPS_LIBS) $(LIBS)
@@ -9,16 +9,7 @@
  	$(RELINK) -o gauche-config$(EXEEXT) gauche-config.$(OBJEXT) $(LIBS)
  
  $(OBJECTS) : $(HEADERS)
-@@ -417,7 +417,7 @@ $(LIBGAUCHE_STATIC).a : all $(STATICINIT_OBJS)
-             `if [ X$(libgc_pic_LIBRARY) != X ]; then echo $(libgc_pic_OBJECTS); fi` \
-             `if [ X$(libatomic_ops_pic_LIBRARY) != X ]; then echo $(libatomic_ops_pic_OBJECTS); fi` \
-             $(STATICINIT_OBJS) \
--            `"$(srcdir)/list-ext-objects.sh" "$(top_builddir)"`
-+            `MAKE=$(MAKE) "$(srcdir)/list-ext-objects.sh" "$(top_builddir)"`
- 
- $(STATICINIT_SRCS) : all gen-staticinit.scm
- 	$(STATIC_GOSH) $(srcdir)/gen-staticinit.scm $(top_srcdir) $(top_builddir)
-@@ -537,8 +537,10 @@ install-relink : install-aux
+@@ -542,8 +542,10 @@ install-relink : install-aux
  install-core : install-relink
  	$(INSTALL)        $(INSTALL_LIBS) "$(DESTDIR)$(LIB_INSTALL_DIR)"
  	$(INSTALL)        $(INSTALL_LIBS) "$(DESTDIR)$(ARCH_INSTALL_DIR)"
@@ -28,6 +19,6 @@
 +	$(INSTALL) -m 555 gosh-relinked$(EXEEXT) "$(DESTDIR)$(BIN_INSTALL_DIR)/gosh$(EXEEXT)"
 +	$(INSTALL) -m 555 $(filter-out gosh$(EXEEXT),$(INSTALL_BINS)) "$(DESTDIR)$(ARCH_INSTALL_DIR)"
 +	$(INSTALL) -m 555 gosh-relinked$(EXEEXT) "$(DESTDIR)$(ARCH_INSTALL_DIR)/gosh$(EXEEXT)"
- 	@case `$(GAUCHE_CONFIG) --arch` in *-cygwin*|*-mingw*) \
+ 	@case $(host) in *-cygwin*|*-mingw*) \
  	  $(INSTALL) $(INSTALL_LIBS) "$(DESTDIR)$(BIN_INSTALL_DIR)";;\
  	esac

Modified: head/lang/gauche/pkg-plist
==============================================================================
--- head/lang/gauche/pkg-plist	Sat Dec 29 07:18:50 2018	(r488657)
+++ head/lang/gauche/pkg-plist	Sat Dec 29 08:03:24 2018	(r488658)
@@ -3,123 +3,122 @@ bin/gauche-config
 bin/gauche-install
 bin/gauche-package
 bin/gosh
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/binary--io.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/crypt--bcrypt.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/data--queue.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/data--sparse.so
-%%GDBM%%lib/gauche-0.9/%%VERSION%%/%%TARGET%%/dbm--gdbm.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/dbm--ndbm.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/file--util.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--charconv.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--collection.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--dictionary.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--fcntl.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--generator.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--hook.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--net.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--parameter.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--record.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--sequence.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--syslog.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--termios.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--threads.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--unicode.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--uvector.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--vport.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche-cesconv
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche-config
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche-install
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche-package
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gosh
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/libgauche-0.9.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/libgauche-0.9.so.0
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/libgauche-0.9.so.0.6
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/libgauche-static-0.9.a
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/math--mt-random.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/os--windows.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/parser--peg.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/rfc--822.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/rfc--md5.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/rfc--mime.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/rfc--sha.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/rfc--tls--mbed.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/rfc--tls.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/rfc--zlib.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/srfi-1.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/srfi-13.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/srfi-133.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/srfi-19.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/srfi-43.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/sxml--serializer.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/sxml--ssax.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/sxml--sxpath.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/sxml--tools.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/text--gettext.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/text--tr.so
-lib/gauche-0.9/%%VERSION%%/%%TARGET%%/util--match.so
-lib/gauche-0.9/%%VERSION%%/include/gauche.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/bignum.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/bits.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/bits_inline.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/bytes_inline.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/char_euc_jp.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/char_none.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/char_sjis.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/char_utf_8.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/charset.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/class.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/code.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/collection.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/compare.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/config.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/config_threads.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/exception.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/extend.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/extern.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/float.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/gloc.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/hash.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/int64.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/load.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/module.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/number.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/parameter.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/paths.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/port.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/prof.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/pthread.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/reader.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/regexp.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/scmconst.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/static.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/string.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/symbol.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/system.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/treemap.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/uthread.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/uvector.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/vector.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/vm.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/vminsn.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/weak.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/win-compat.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/writer.h
-lib/gauche-0.9/%%VERSION%%/include/gauche/wthread.h
-lib/gauche-0.9/%%VERSION%%/include/gc.h
-lib/gauche-0.9/%%VERSION%%/include/gc_allocator.h
-lib/gauche-0.9/%%VERSION%%/include/gc_config_macros.h
-lib/gauche-0.9/%%VERSION%%/include/gc_cpp.h
-lib/gauche-0.9/%%VERSION%%/include/gc_inline.h
-lib/gauche-0.9/%%VERSION%%/include/gc_mark.h
-lib/gauche-0.9/%%VERSION%%/include/gc_pthread_redirects.h
-lib/gauche-0.9/%%VERSION%%/include/gc_tiny_fl.h
-lib/gauche-0.9/%%VERSION%%/include/gc_typed.h
-lib/gauche-0.9/%%VERSION%%/include/gc_version.h
-lib/gauche-0.9/site/%%TARGET%%/.keepme
-lib/libgauche-0.9.so
-lib/libgauche-0.9.so.0
-lib/libgauche-0.9.so.0.6
-lib/libgauche-static-0.9.a
+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--sparse.so
+%%GDBM%%lib/gauche-0.97/%%VERSION%%/%%TARGET%%/dbm--gdbm.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/dbm--ndbm.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
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--dictionary.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--fcntl.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--generator.so
+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--record.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--sequence.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--syslog.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--termios.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--threads.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--unicode.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--uvector.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche--vport.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche-cesconv
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche-config
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche-install
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/gauche-package
+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.7
+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
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/parser--peg.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/rfc--822.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/rfc--md5.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/rfc--mime.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/rfc--sha.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/rfc--tls--mbed.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/rfc--tls.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/rfc--zlib.so
+lib/gauche-0.97/%%VERSION%%/%%TARGET%%/srfi-1.so
+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-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--gettext.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
+lib/gauche-0.97/%%VERSION%%/include/gauche/char_utf_8.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/charset.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/class.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/code.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/collection.h
+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/exception.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/extend.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/extern.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/float.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/gloc.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/hash.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/int64.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/load.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/module.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/number.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/parameter.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/port.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/prof.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/pthread.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/reader.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/regexp.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/scmconst.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/static.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/string.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/symbol.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/system.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/treemap.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/uthread.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/uvector.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/vector.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/vm.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/vminsn.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/weak.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/win-compat.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/writer.h
+lib/gauche-0.97/%%VERSION%%/include/gauche/wthread.h
+lib/gauche-0.97/%%VERSION%%/include/gc.h
+lib/gauche-0.97/%%VERSION%%/include/gc_allocator.h
+lib/gauche-0.97/%%VERSION%%/include/gc_config_macros.h
+lib/gauche-0.97/%%VERSION%%/include/gc_cpp.h
+lib/gauche-0.97/%%VERSION%%/include/gc_inline.h
+lib/gauche-0.97/%%VERSION%%/include/gc_mark.h
+lib/gauche-0.97/%%VERSION%%/include/gc_pthread_redirects.h
+lib/gauche-0.97/%%VERSION%%/include/gc_tiny_fl.h
+lib/gauche-0.97/%%VERSION%%/include/gc_typed.h
+lib/gauche-0.97/%%VERSION%%/include/gc_version.h
+lib/gauche-0.97/site/%%TARGET%%/.keepme
+lib/libgauche-0.97.so
+lib/libgauche-0.97.so.0
+lib/libgauche-0.97.so.0.7
+lib/libgauche-static-0.97.a
 man/man1/gauche-cesconv.1.gz
 man/man1/gauche-config.1.gz
 man/man1/gauche-install.1.gz
@@ -130,382 +129,387 @@ share/aclocal/gauche.m4
 %%EXAMPLESDIR%%/.keepme
 %%DATADIR%%/%%VERSION%%/lib/.packages/.keepme
 %%DATADIR%%/site/lib/.packages/.keepme
-share/gauche-0.9/%%VERSION%%/aclocal.m4
-share/gauche-0.9/%%VERSION%%/lib/binary/ftype.scm
-share/gauche-0.9/%%VERSION%%/lib/binary/io.scm
-share/gauche-0.9/%%VERSION%%/lib/binary/pack.scm
-share/gauche-0.9/%%VERSION%%/lib/build-standalone
-share/gauche-0.9/%%VERSION%%/lib/cesconv
-share/gauche-0.9/%%VERSION%%/lib/check-script
-share/gauche-0.9/%%VERSION%%/lib/compat/chibi-test.scm
-share/gauche-0.9/%%VERSION%%/lib/compat/jfilter.scm
-share/gauche-0.9/%%VERSION%%/lib/compat/norational.scm
-share/gauche-0.9/%%VERSION%%/lib/compat/r7rs-srfi-tests.scm
-share/gauche-0.9/%%VERSION%%/lib/compat/stk.scm
-share/gauche-0.9/%%VERSION%%/lib/control/job.scm
-share/gauche-0.9/%%VERSION%%/lib/control/thread-pool.scm
-share/gauche-0.9/%%VERSION%%/lib/crypt/bcrypt.scm
-share/gauche-0.9/%%VERSION%%/lib/data/cache.scm
-share/gauche-0.9/%%VERSION%%/lib/data/heap.scm
-share/gauche-0.9/%%VERSION%%/lib/data/ideque.scm
-share/gauche-0.9/%%VERSION%%/lib/data/imap.scm
-share/gauche-0.9/%%VERSION%%/lib/data/queue.scm
-share/gauche-0.9/%%VERSION%%/lib/data/random.scm
-share/gauche-0.9/%%VERSION%%/lib/data/ring-buffer.scm
-share/gauche-0.9/%%VERSION%%/lib/data/sparse.scm
-share/gauche-0.9/%%VERSION%%/lib/data/trie.scm
-share/gauche-0.9/%%VERSION%%/lib/dbd/null.scm
-share/gauche-0.9/%%VERSION%%/lib/dbi.scm
-share/gauche-0.9/%%VERSION%%/lib/dbm.scm
-share/gauche-0.9/%%VERSION%%/lib/dbm/dump
-share/gauche-0.9/%%VERSION%%/lib/dbm/fsdbm.scm
-%%GDBM%%share/gauche-0.9/%%VERSION%%/lib/dbm/gdbm.scm
-share/gauche-0.9/%%VERSION%%/lib/dbm/ndbm.scm
-share/gauche-0.9/%%VERSION%%/lib/dbm/restore
-share/gauche-0.9/%%VERSION%%/lib/file/filter.scm
-share/gauche-0.9/%%VERSION%%/lib/file/util.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/array.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/base.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/cgen.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/cise.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/literal.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/optimizer.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/precomp.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/standalone.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/stub.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/tmodule.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/type.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/unit.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/charconv.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/collection.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/common-macros.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/computil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/condutil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/config.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/configure.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/defvalues.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/dictionary.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/experimental/app.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/experimental/lamb.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/experimental/ref.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/fcntl.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/fileutil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/generator.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/generic-sortutil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/hashutil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/hook.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/interactive.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/interactive/ed.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/interactive/editable-reader.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/interactive/info.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/interactive/toplevel.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/interpolate.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/lazy.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/let-opt.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/libutil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/listener.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/logger.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/logical.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/macroutil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/matrix.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/modutil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/mop/bound-slot.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/mop/instance-pool.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/mop/propagate.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/mop/singleton.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/mop/validator.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/net.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/numerical.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/package.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/package/build.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/package/compile.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/package/fetch.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/package/util.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/parameter.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/parseopt.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/partcont.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/portutil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/pputil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/procedure.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/process.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/record.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/redefutil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/regexp.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/reload.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/selector.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/sequence.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/serializer.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/serializer/aserializer.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/signal.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/singleton.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/sortutil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/stringutil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/syslog.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/sysutil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/termios.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/test.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/test/generative.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/test/script.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/threads.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/time.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/treeutil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/unicode.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/uvector.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/validator.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/vecutil.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/version.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/vm/debugger.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/vm/insn-core.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/vm/insn.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/vm/profiler.scm
-share/gauche-0.9/%%VERSION%%/lib/gauche/vport.scm
-share/gauche-0.9/%%VERSION%%/lib/gencomp
-share/gauche-0.9/%%VERSION%%/lib/genstub
-share/gauche-0.9/%%VERSION%%/lib/lang/asm/x86_64.scm
-share/gauche-0.9/%%VERSION%%/lib/math/const.scm
-share/gauche-0.9/%%VERSION%%/lib/math/mt-random.scm
-share/gauche-0.9/%%VERSION%%/lib/math/prime.scm
-share/gauche-0.9/%%VERSION%%/lib/os/windows.scm
-share/gauche-0.9/%%VERSION%%/lib/os/windows/console/codepage.scm
-share/gauche-0.9/%%VERSION%%/lib/parser/peg.scm
-share/gauche-0.9/%%VERSION%%/lib/precomp
-share/gauche-0.9/%%VERSION%%/lib/r7rs.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/822.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/base64.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/cookie.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/ftp.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/hmac.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/http.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/icmp.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/ip.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/json.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/md5.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/mime-port.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/mime.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/quoted-printable.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/sha.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/sha1.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/tls.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/tls/mbed.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/uri.scm
-share/gauche-0.9/%%VERSION%%/lib/rfc/zlib.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/base.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/box.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/case-lambda.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/char.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/charset.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/comparator.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/complex.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/cxr.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/eval.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/file.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/generator.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/hash-table.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/ideque.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/inexact.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/lazy.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/list-queue.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/list.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/load.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/lseq.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/process-context.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/r5rs.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/read.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/repl.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/set.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/sort.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/time.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/vector.scm
-share/gauche-0.9/%%VERSION%%/lib/scheme/write.scm
-share/gauche-0.9/%%VERSION%%/lib/slib.scm
-%%SLIB%%share/gauche-0.9/%%VERSION%%/lib/slibcat
-share/gauche-0.9/%%VERSION%%/lib/srfi-0.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-1.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-106.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-11.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-112.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-113.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-114.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-117.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-118.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-121.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-125.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-127.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-128.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-129.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-13.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-131.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-132.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-133.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-134.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-14.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-14/query.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-14/set.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-141.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-143.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-146.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-146/hash.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-151.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-152.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-154.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-155.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-158.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-18.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-19.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-25.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-26.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-27.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-29.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-29/bundle.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-29/format.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-31.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-37.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-39.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-4.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-42.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-43.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-5.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-55.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-60.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-64.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-66.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-69.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-7.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-74.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-78.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-9.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-96.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-98.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi-99.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/0.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/1.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/10.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/106.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/11.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/111.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/112.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/113.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/114.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/117.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/118.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/121.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/125.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/127.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/128.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/129.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/13.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/131.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/132.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/133.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/134.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/14.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/141.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/143.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/145.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/146.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/149.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/151.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/152.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/158.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/16.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/17.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/18.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/19.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/2.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/22.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/23.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/25.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/26.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/27.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/28.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/29.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/30.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/31.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/34.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/35.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/36.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/37.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/38.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/39.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/4.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/40.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/42.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/43.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/45.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/46.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/5.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/55.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/6.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/60.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/61.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/62.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/64.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/66.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/69.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/7.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/74.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/78.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/8.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/87.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/9.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/95.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/96.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/98.scm
-share/gauche-0.9/%%VERSION%%/lib/srfi/99.scm
-share/gauche-0.9/%%VERSION%%/lib/sxml/adaptor.scm
-share/gauche-0.9/%%VERSION%%/lib/sxml/serializer.scm
-share/gauche-0.9/%%VERSION%%/lib/sxml/ssax.scm
-share/gauche-0.9/%%VERSION%%/lib/sxml/sxpath.scm
-share/gauche-0.9/%%VERSION%%/lib/sxml/to-html.scm
-share/gauche-0.9/%%VERSION%%/lib/sxml/tools.scm
-share/gauche-0.9/%%VERSION%%/lib/sxml/tree-trans.scm
-share/gauche-0.9/%%VERSION%%/lib/text/console.scm
-share/gauche-0.9/%%VERSION%%/lib/text/console/generic.scm
-share/gauche-0.9/%%VERSION%%/lib/text/console/windows.scm
-share/gauche-0.9/%%VERSION%%/lib/text/csv.scm
-share/gauche-0.9/%%VERSION%%/lib/text/diff.scm
-share/gauche-0.9/%%VERSION%%/lib/text/gap-buffer.scm
-share/gauche-0.9/%%VERSION%%/lib/text/gettext.scm
-share/gauche-0.9/%%VERSION%%/lib/text/html-lite.scm
-share/gauche-0.9/%%VERSION%%/lib/text/info.scm
-share/gauche-0.9/%%VERSION%%/lib/text/line-edit.scm
-share/gauche-0.9/%%VERSION%%/lib/text/parse.scm
-share/gauche-0.9/%%VERSION%%/lib/text/progress.scm
-share/gauche-0.9/%%VERSION%%/lib/text/sql.scm
-share/gauche-0.9/%%VERSION%%/lib/text/template.scm
-share/gauche-0.9/%%VERSION%%/lib/text/tr.scm
-share/gauche-0.9/%%VERSION%%/lib/text/tree.scm
-share/gauche-0.9/%%VERSION%%/lib/text/unicode.scm
-share/gauche-0.9/%%VERSION%%/lib/text/unicode/ucd.scm
-share/gauche-0.9/%%VERSION%%/lib/util/combinations.scm
-share/gauche-0.9/%%VERSION%%/lib/util/digest.scm
-share/gauche-0.9/%%VERSION%%/lib/util/dominator.scm
-share/gauche-0.9/%%VERSION%%/lib/util/isomorph.scm
-share/gauche-0.9/%%VERSION%%/lib/util/lcs.scm
-share/gauche-0.9/%%VERSION%%/lib/util/levenshtein.scm
-share/gauche-0.9/%%VERSION%%/lib/util/list.scm
-share/gauche-0.9/%%VERSION%%/lib/util/match.scm
-share/gauche-0.9/%%VERSION%%/lib/util/queue.scm
-share/gauche-0.9/%%VERSION%%/lib/util/rbtree.scm
-share/gauche-0.9/%%VERSION%%/lib/util/record.scm
-share/gauche-0.9/%%VERSION%%/lib/util/relation.scm
-share/gauche-0.9/%%VERSION%%/lib/util/sparse.scm
-share/gauche-0.9/%%VERSION%%/lib/util/stream.scm
-share/gauche-0.9/%%VERSION%%/lib/util/toposort.scm
-share/gauche-0.9/%%VERSION%%/lib/util/tree.scm
-share/gauche-0.9/%%VERSION%%/lib/util/trie.scm
-share/gauche-0.9/%%VERSION%%/lib/util/unification.scm
-share/gauche-0.9/%%VERSION%%/lib/www/cgi-test.scm
-share/gauche-0.9/%%VERSION%%/lib/www/cgi.scm
-share/gauche-0.9/%%VERSION%%/lib/www/cgi/test.scm
-share/gauche-0.9/%%VERSION%%/lib/www/css.scm
-share/gauche-0.9/%%VERSION%%/template.Makefile.in
-share/gauche-0.9/%%VERSION%%/template.configure
-share/gauche-0.9/%%VERSION%%/template.configure.ac
-share/gauche-0.9/%%VERSION%%/template.extension.c
-share/gauche-0.9/%%VERSION%%/template.extension.h
-share/gauche-0.9/%%VERSION%%/template.extensionlib.stub
-share/gauche-0.9/%%VERSION%%/template.module.scm
-share/gauche-0.9/%%VERSION%%/template.package.scm
-share/gauche-0.9/%%VERSION%%/template.test.scm
-share/gauche-0.9/site/lib/.packages/.keepme
+share/gauche-0.97/%%VERSION%%/aclocal.m4
+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/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/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
+%%GDBM%%share/gauche-0.97/%%VERSION%%/lib/dbm/gdbm.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/defvalues.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/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/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/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/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/gauche/connection.scm
+share/gauche-0.97/%%VERSION%%/lib/parser/peg/deprecated.scm
+share/gauche-0.97/%%VERSION%%/lib/rfc/http/tunnel.scm
+share/gauche-0.97/%%VERSION%%/lib/srfi/154.scm
+share/gauche-0.97/%%VERSION%%/lib/text/edn.scm
+share/gauche-0.97/%%VERSION%%/lib/text/mexpr.scm
+share/gauche-0.97/%%VERSION%%/lib/precomp
+share/gauche-0.97/%%VERSION%%/lib/r7rs.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/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/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/eval.scm
+share/gauche-0.97/%%VERSION%%/lib/scheme/file.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/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/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/time.scm
+share/gauche-0.97/%%VERSION%%/lib/scheme/vector.scm
+share/gauche-0.97/%%VERSION%%/lib/scheme/write.scm
+share/gauche-0.97/%%VERSION%%/lib/slib.scm
+%%SLIB%%share/gauche-0.97/%%VERSION%%/lib/slibcat
+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-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-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-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-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-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-26.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-31.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-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/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/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

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812290803.wBT83OGj047048>