summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authoryhardy <yhardy@pkgsrc.org>2021-07-24 14:50:42 +0000
committeryhardy <yhardy@pkgsrc.org>2021-07-24 14:50:42 +0000
commit2667ee625b76bfb4b33df8c1052db93587021355 (patch)
tree7fc671d54c8dfd46169f3682ca8151f4b4c75583 /lang
parent321fe3d94f14b790d8dfcf247a1cf9c718de6153 (diff)
downloadpkgsrc-2667ee625b76bfb4b33df8c1052db93587021355.tar.gz
lang/gauche: update to Gauche-0.9.10
Announcements: == Release 0.9.10 Major feature enhancements New Features R7RS Large and SRFI support We cover R7RS-large Red and Tangerine Edition. * scheme.ilist: Immutable list library * scheme.rlist: Random access lists * scheme.bytevector: R6RS-compatible bytevectors * scheme.text: Immutable texts * scheme.show: Combinator formatting * scheme.regex: Scheme Regular Expressions: Grapheme support is completed by @pclouds. * srfi-78: Lightweight testing (now integrated with gauche.test). * srfi-101: Purely functional random-access pairs and lists (scheme.rlist) * srfi-116: Immutable list library (scheme.ilist) * srfi-130: Cursor-based string library * srfi-135: Immutable texts (scheme.text) * srfi-159: Combinator formatting (scheme.show) * srfi-170: POSIX API * srfi-174: POSIX timespecs * srfi-175: ASCII character library * srfi-176: Version flag. Supported as built-in. (version-alist) * srfi-178: Bitvector library * srfi-180: JSON * srfi-181: Custom ports * srfi-185: Linear adjustable-length strings * srfi-189: Maybe and either: optional container types * srfi-192: Port positioning * srfi-193: Command line * srfi-195: Multiple-value boxes (Boxes). New modules * parser.peg: PEG parser combinator library. This module has been unofficially included for long time, but it finally became official. If you've been using it, check out the document, for API has been changed. Compatibility module is provided. * data.skew-list: Skew binary functional random-access list * data.priority-map: Priority map. * rfc.uuid: UUID generation and parsing. * text.external-editor: Running external editor. * text.pager: Display with pager. Improvements String indexing improvements In Gauche, string access using integer character index costs O(n) by default, because we store strings in multibyte format. Two improvements are incorporated to allow O(1) random string access. * String cursors (srfi-130). It is an object directly points to a specific character within a string, thus allowing O(1) access. It is supported natively, so all built-in string procedures that takes character index also accept string cursors. See String%20cursors, for the details. This is the work mostly done by @pclouds. * String indexing (scheme.text). You can precompute a string index, which is an auxiliary data attached to a string that allows O(1) integer character index access. You need O(n) to compute a string index, but once computed, character index access in that string becomes O(1). In R7RS-large, scheme.text library provides this feature (with a distinct type text). In Gauche, a text is simply a string with a string index computed. See String indexing for the details. Note: Gauche internally had string pointers to implement some string operations efficiently. Now string cursors can be used for that purpose, we dropped string pointers. If you have code that uses string pointers, although it was undocumented, you can keep using it by defining GAUCHE_STRING_POINTER environment variable. We'll completely drop it in the next release, though. Immutable pairs Scheme defines literal pairs to be immutable, but it is up to the implementation to check it. Gauche used to not check it, allowing mutating literal pairs. Now it is no longer allowed--it throws an error. Mutating literal pairs is never correct, and if you get the error, you've been doing it wrong. Immutable pairs can also be explicitly constructed using scheme.ilist module. In Gauche, immutable pairs and lists behaves exactly like normal pairs and lists, except that they can't be modified. See Mutable and immutable pairs, for the details. If your code depends on the previous behavior and can't change swiftly, set the environment variable GAUCHE_MUTABLE_LITERALS to restore the old behavior. Input line editing The editor feature is enhanced a lot, including online help. Type M-h h to get a quick cheet sheet. The line editor isn't turn on by default yet, but you can either turn on with the command-line option -fread-edit or the environment variable GAUCHE_READ_EDIT. Parameters are now built-in You no longer need to (use gauche.parameter) to use parameters as defined in R7RS. The module still exists and provides a few obscure features. Bitvector literal and incomplete string literals We now supports bitvector type in the core. Note that there's a syntax conflict with bitvector literals and incomplete strings; now the official way of incomplete string literal is to prefix a string with #**. The older syntax is still recognized as far as it's not ambiguous. See Incomplete%20strings. The C-level Port API is overhauled This only affects for C code using ScmPort. To support future extensions flexibly, we hide the internal implementation of ScmPort. It shouldn't affect code that accesses ScmPort via API, but if the code directly refers to the members of ScmPort, it should be rewritten to use API. One notable change is that port positions no longer need to be an integer offset. TLS support improvement * With default configuration, Gauche searches several known locations of ca-certificates, so it can work mostly out of the box. See rfc.tls for the details. * With default configuration, <mbed-tls> is used if it's available. <ax-tls> is always available but its cipher support is limited and can't connect to some https sites. * You can also configure to embed MbedTLS support into Gauche so that it will run on a system that doesn't have MbedTLS installed. (See INSTALL.adoc for the details.) Note that if you embed MbedTLS, the resulting binary is covered by MbedTLS Apache License 2.0 as well. Windows Installer version has MbedTLS embedded. Encoding conversion improvement Now we support conversion natively, between UTF (8, 16, 32) and ISO8859-n, as well as between Japanese encodings. We use iconv(3) only when we need to deal with other encodings. This is because iconv lacks a necessary API to support srfi-181 transcoded ports properly. If you just need to convert encodings, you can keep using gauche.charconv and it handles wide variety of encodings supported by iconv. If you use srfi-181, the conversion is limited between the natively supported encodings. We may enhance native support of conversions if there's need for it. Miscellaneous improvements * gauche.generator: Add giterate, giterate1. * gauche.lazy: Add literate. * format: Make ~f handle complex numbers as well, and added a bunch of new directives: ~t, , ~~, ~|, and ~$. * define-hybrid-syntax: The compiler macro feature. * current-trace-port: A parameter to keep trace output. Output of debug-print goes to this port, for example. The default is stderr. * gauche.record: Allow record types to inherit from non-record class, as long as the superclass doesn't add slots. Also allow to specify metaclasses. * gauche.unicode: Conversion procedures utf8->ucs4 etc. now takes replace strictness that replaces invalid unicode sequence with U+FFFD. utf8->string is also changed to use the replace character for invalid input sequence, instead of throwing an error. * gauche.unicode: string->utf16: Add add-bom? argument. * gauche.unicode: Add string->utf32, utf32->string. * identifier?: Now it responds #t to both symbols and wrapped identifiers. In ER-macro systems, identifiers can be a bare symbol as well. To check an object is an identifier but not a symbol, you can use wrapped-identifier? to check an object is a non-symbol identifier. * When gosh is run inside a build tree (with -frest option), make sure we link with libgauche.so in the build tree regardless of the setting of LD_LIBRARY_PATH. (PR#557) * apropos now takes a string as well as a symbol (PR#555) * Character set is now hashable with the default-hash. * Add .dir-locals.el file in the source tree. It sets up Emacs to add some Gauche-specific indentations. * If gosh is run in suid/sgid process, do not load .gaucherc file and do not load/save history files. * complete-sexp? is moved to the core (used to be in gauche.listener. * string->number: Added default-exactness optional argument to specify the exactness of the result when no exactness prefix is given in the input. * gauche-package generate can now generate template of Scheme-only package. * srfi-42: Added :collection qualifier to use a collection as a generator. * gauche.fcntl: Added sys-open, sys-statvfs, sys-fstatvfs. * sys-utime: Allow <time> object for timestamp. * sys-nice: Added nice() interface. * make-hash-table: If a comparator whose equalily predicate is eq?/eqv?, we use eq-hash/eqv-hash regardless of comparator's hash function. It is permitted by srfi-125, and it allows objects that doesn't have hash method can still be used with eq/eqv based hashtables (#708). * gauche.vport: Add bidirectional virtual port. Add open-output-accumulator. * gauche.process: Allow command pipeline in process port API (#717). Also :error keyword argument accepts :merge, to tell run-process that stderr should be merged into stdout. * gauche.process: Added process-wait/poll, process-shutdown. * gauche.threads: atomic-update!: Allow proc to return more values than the atom holds. It is useful if one wants to update atom state and compute something using before-update values. * gosh: -e option can accept multiple S-expressions. * gauche.dictionary: Add <stacked-map>. Bug fixes * Fix double-rounding bug when converting ratnum to flonum. Originall reported in Ruby, it is a common issue that first convert numerator and denominator to double and then divide. (blog entry). * math.mt-random: (Incompatible change) When the given seed is bignum, we use all bits now to initialize the RNG. The previous versions only used the lowest word, but that loses the entropy. Technically this causes RNG to produce different sequence if the seed is bignum. For typical usage, though, seed is within fixnum or at most as wide as a machine word and we think it's rare that the change becomes an issue. * Some macro-defining-macro issues are fixed, including #532 . * file.util: make-directory*: Fixed timing hazard. * www.css: construct-css: Fix :not pseudo class rendering (PR#645), added missing an+b syntax (PR#648). * gauche.process: High-level utilities didn't handle :encoding keyword argument (#651). * load-from-port: Fixed a bug that didn't reset literal reader context (#292). * apply detects if the argument list is circular and throws an error. * copy-list detects the circular list and throws an error. * scheme.list: lset=: Argument order to invoke the equality predicate was incorrect. * math.prime: native-factorize: Reject other than positive exact integers. Factorizing 1 returns (). * assume: Fix to return the value of the expression. * and-let*: Fix 20-year old bug - and-let* is allowed to take an empty body. * let-optionals*: There was a bug that inserts reference of undefined hygienically, causing an error when used in R7RS code that doesn't inherit gauche module. * rfc.json: construct-json: Allow non-aggregate toplevel value. It was prohibited in rfc4627, but allowed in rfc7159. * pprint: Fix circular structure printing in case when the cycle begins in the middle of a list (#713). == Release 0.9.9 Bug fix and enhancements * New features - More R7RS-large and SRFI support - Charset enhancements to Full Unicode range - Macro tracer - Checking use of undefined result in conditionals * Improvements * Bug fixes * Potential incompatibilities New features More R7RS-large and SRFI support * scheme.stream: Streams (formerly srfi-41). * scheme.ephemeron: Ephemeron (formerly srfi-124). * scheme.regex: Scheme Regular Expression (formerly srfi-125). Contributed from @pclouds. Grapheme support is still missing. * scheme.vector.u8 etc.: Homogeneous numeric vector libraries (srfi-160). * srfi-162: Comparators sublibrary. * srfi-173: Hooks. Charset enhancements to Full Unicode range * Predefined char-sets (srfi-14) are enhanced to the entire Unicode range, e.g. char-set:digit now includes all Unicode characters with general category Nd. If you want to limit the range to ASCII, there are corresponding char sets (e.g. char-set:ascii-digit) provided. * 'Umbrella' general category char-set: char-set:L includes characters from general categories that begin with L, etc. * In regexps and char-set literals, you can use \p{category} and \P{category}, where category is Unicode general category, e.g. Lu. * The \d, \w, \s in regexp and char-sets are still limited to ASCII range, for changing them would likely to break existing code. * POSIX notation [:alpha:] etc., also covers ASCII range only. To cover full Unicode, you can use [:ALPHA:] etc. Macro tracer * trace-macro: You can now trace macro expansion. Checking use of undefined result in conditionals * Return value of procedures that return "undefined result" shouldn't be used in portable code. However, Gauche usually returns #<undef> from such procedures, and it counts to true as a boolean test in conditionals. We found quite a few code that branches based on the result of undefined return value. Such code is fragile, for it may break with unintentional change of return values of such procedures. Gauche can now warn such cases when the environment variable GAUCHE_CHECK_UNDEFINED_TEST is set. See the blog entry and Undefined values. Improvements * Partial continuation support is overhauled w.r.t interaction with dynamic environment and full continuations. Contributed by @Hamayama. * gauche.uvector: Support uniform complex vectors (c32, c64 and c128). * gauche.test: New compile-only option to test-script, so that it can perform syntax check without executing the actual script (useful if the script is written without using main). * gauche.generator: Add negative step value support to grange. * regexp-replace etc.: It used to be an error when regexp matches zero-length string. Which wasn't wrong, but in practice it was annoyance. Now if regexp matches zero-length string we advance one character and repeat matching. This behavior is also adopted by Perl and Ruby. * gosh -h now emits help messages to stdout and exits with 0. * Experimental line editor: backward-word and forward-word added by @pclouds PR#524 Bug fixes * Keyword argument handling wasn't hygienic. * pprint: Prettyprint emits negative labels (#484) * Extend the limit of environment frame size (#487) * Scm_CharSetAdd could yield inconsistent result when you add an ASCII character to a large charset. Patch by @pclouds PR#500 * import: Only/rename import qualifiers didn't work with transitiev export (#472) * Some system calls shouldn't be restarted when interrupted. #504 * format: ~vr didn't work. #509 * sort!, stable-sort!: We implemented them as if they were linear-updating, that is, we didn't guarantee if the argument still pointed to the head of the sequence after the call. However, srfi-95 didn't explicitly mentions linear updating semantics, so we guaranteed that caller can call them purely for side-effects. Potential incompatibilities * Scm_RegExec now takes two more arguments specifying start and end of the range of input string. I overlooked this change and missed to add a proper transition macro. You can use #ifdef SCM_REGEXP_MULTI_LINE to switch the new interface vs the old one. * Toplevel define now inserts a dummy binding at compile-time (as a result of #549). It is consistent with the specification, but existing code that relied on undefined behavior might be affected. See the blog entry. * The (scheme base) library inadvertently exported Gauche's define instead of R7RS define; Gauche's define recognizes extended lambda arguments, while R7RS's not. This was a bug and fixed now, but if your R7RS code happens to use Gauche's extended argument notation, it'll break. * macroexpand: Now it strips syntactic information from the return values (with renaming macro-inserted identifiers, so that different identifiers with the same name won't be confused). This generally improves interactive use when you check how macros are expanded. If you're using the output of macroexpand programatically, this may break hygiene; you can pass an optional argument to preserve syntactic information. * parser.peg: This module is still unofficial, but in case you're using it: $do is now obsoleted. Use $let and $let*. $parameterize is added by @SaitoAtsushi. == Release 0.9.8 Bug fixes and enhancements * Major changes - The syntax of quasirename is changed - Keywords are symbols by default. - Some support of R7RS-Large Tangerine Edition. - Prettyprinting is now default on REPL. * Bug fixes * Other notable changes Major changes The syntax of quasirename is changed The template was implicitly quasiquoted before, but it turned out it interferes when quasiquote and quasirename were nested. Now the template needs to be explicitly quasiquoted. The old syntax is also supported for the backward compatibility. You can change the supported compatibility level by an environment variable GAUCHE_QUASIRENAME_MODE. See the manual entry of quasirename and the blog post for more details. Keywords are symbols by default. There can be some corner cases that causes backward compatibility. You can revert to the old behavior by setting an environment variable GAUCHE_KEYWORD_DISJOINT. See the "Keyword" section of the manual for how to adapt to the new way. Some support of R7RS-Large Tangerine Edition. We have scheme.mapping, scheme.mapping.hash, scheme.generator, scheme.division, scheme.bitwise, scheme.fixnum, scheme.flonum. See Gauche:R7RS-large for which libraries in R7RS-Large have been supported. Prettyprinting is now default on REPL. If it bothers you, set an environment variable GAUCHE_REPL_NO_PPRINT. Bug fixes * The identifiers _ and ... are bound to syntax, to be friendly to hygienic macros. * floor/ and ceiling/ returned incorrect values when remainder is zero. * During compilation, feature identifiers are considered according to the target platform, so that cross compilation work (#407). * A finite inexact number multiplied by an exact zero now yields an exact zero consistently. * Precompiled uniform vectors had lost infinities, NaNs and minus zeros. Now they are handled properly. * The record accessor accidentally leaked #<unbound> to the Scheme world. Other notable changes * GC version is bumped to 8.0.4, thanks to @qykth-git. * Unicode support is bumped to 12.1.0, thanks to @qykth-git (#471). * Numerous enhancements on Windows/MinGW version, thanks to @Hamayama. * Now gauche-package compile command has --keep-c-files and --no-line options, for easier troubleshooting with generated C files (#427). * gauche.cgen.cise: Enhanced support for C procedure declaration, C struct and union type definition, and function type notation. * Default hash function works on uniform vector (#440) * The gauche.interactive module now doesn't load ~/.gaucherc---that feature is splitted to gauche/interactive/ init.scm. Thus, when you start gosh it still reads ~/.gaucherc, but if you use gauche.interactive as an ordinary module, it doesn't load .gaucherc (#448). * gauche.array: New procedures array-negate-elements!, array-reciprocate-elements!. * disasm: Now it shows lifted closures as well. * When the number of arguments passed to apply is fixed at the compile time, the compiler now optimize apply away. For example, (apply f 'a '(b c)) now becomes exactly the same as (f 'a 'b 'c). If this optimization somehow causes a problem, pass -fnodissolve-apply option to gosh. * srfi-42: Uniform vectors are supported just like vectors. * Now we have predefined char-set for each of Unicode general category, e.g. char-set:Lu. * New flonum procedures: approx=?, flonum-min-normalized, fronum-min-denormalized. * gauche.vport: Virtual port constructors accept :name argument. == Release 0.9.7 Major C API/ABI overhaul * Changes of C API/ABI * New modules and procedures * Bug fixes and improvements * Incompatible changes in unofficial module Changes of C API/ABI This release includes several C API/ABI changes that breaks the backward compatibilities, in order to have clean API towards 1.0. Although we haven't officially defined C API/ABI, we kept the de facto backward compatible as much as possible. Some turned out to be design shortcomings. We don't want them to hinder future developments, so we decided to change them now. In most cases, all you need to do is to recompile the extensions. We checked existing extensions being compilable with the new version as much as possible. If you find an extension breaks, let us know. See API Changes in 0.9.7 for the details. We bumped ABI version from 0.9 to 0.97, so the extensions compiled up to 0.9.6 won't be linked with the new version of Gauche. If necessary, you can install 0.9.6 and 0.9.7 Gauche in parallel, and switch them using -v VERSION option. If you're not sure what extensions you've installed, check the directory ${prefix}/share/gauche-0.9/site/lib/.packages /. It contains gpd (Gauche Package Description) files of the extensions you've installed for 0.9.6 and before. New modules and procedures * srfi-154: First-class dynamic extents * gauche.connection: An interface that handles connection-based full-dupex communication channel. The <socket> (gauche.net) class implements it, as well as a couple of other classes. It allows to write a communication code (e.g. server request handlers) without knowing the underlying connection implementation. * text.edn: Parse and write Clojure's EDN representation. * compat.chibi-test: A small adapter module to run tests written for Chibi Scheme (some srfi reference implementations use it) within gauche.test. * text.html-lite: HTML5 elements are added. PR#363 * gauche.array: Export array-copy. * gauche.configure: Add more feature tests: cf-check-lib, cf-check-libs, cf-check-type, cf-check-types, cf-check-func, cf-check-funcs, cf-check-decl, cf-check-decls, cf-check-member, cf-check-members. Also added cf-init-gauche-extension and cf-output-default, which takes care of common task of Gauche extensions so that the configure script can now be very terse. * gauche-package make-tarball is updated to read package.scm. Used with gauche.configure, this eliminates the need of DIST script for the extensions. * file.util: Added call-with-temporary-file, call-with-temporary-directory. * assoc-adjoin, assoc-update-in: A couple of new assoc-list procedures. Bug fixes and improvements * rfc.tls: If CA bundle path is set, axTLS connection also validates server certificates (mbedTLS rejects connection when CA bundle path is not set). PR#362 * rfc.tls: On Windows, you can specify system as CA bundle path to use the system certificate store. PR#395 , PR#398 * rfc.tls: If Gauche is configured with mbed-tls but without axtls, the default tls class is set to <mbed-tls>. * Bumped to bdwgc 7.6.8. PR#373 * Experimentally turned on generic function dispatcher optimization for ref and object-apply by default. It could boost the performance of these generic function calls up to 5x. We keep monitoring the effect of optimization and will enhance it in future. * Now glob sorts the result by default (consistent of glob(3). To avoid sorting, or supply alternative sort procedure, use :sorter argument. * REPL's info uses the value of the PAGER environemnt variable for paging. Now you can put command-line arguments in it (not only the command name). PR#358 * REPL's info failed to work when Gauche is built without zlib support. * sxml.serializer: If the attribute value is the same as attribute name, we took it as a boolean attribute and just rendered with attribute name only. It interferes with an attribute with the value that happens to be the same as the name, so we changed it. This is backward-compatible change. PR#359 * sxml.ssax: Fix whitespace handling. PR#360 * We had a kludge to handle a setter of a slot accessor method, that causes confusion when you use the module that implements a base class then define slot accessor in the derived class. It is fixed. See the thread https://sourceforge.net/p/gauche/mailman/message/36363814/ for the details. * Now we handle utf-8 source file that has BOM at the beginning. * open-input-file, open-output-file, etc.: We now honor element-type keyword arguments (it was ignored before). It only makes difference on Windows. * scheme.set: Fix set<? etc. * util.digest: digest-hexify can now take u8vector as well. * A bug in hash-table-copy caused inconsistent hash table state. #400 Incompatible changes in unofficial module * parser.peg: Removed pre-defined character parsers (anychar, upper, lower, letter, alphanum, digit, hexdigit, newline, tab, space, spaces, and eof) and shorthands ($s, $c, and $y). Those names are easy to conflict (esp. 'newline') yet not so much useful, for it's quite easy to define. If existing code relies on these procedures, say (use parser.peg.deprecated).
Diffstat (limited to 'lang')
-rw-r--r--lang/gauche/Makefile5
-rw-r--r--lang/gauche/PLIST1139
-rw-r--r--lang/gauche/distinfo10
3 files changed, 651 insertions, 503 deletions
diff --git a/lang/gauche/Makefile b/lang/gauche/Makefile
index c1937a5ec07..30c248a6dc6 100644
--- a/lang/gauche/Makefile
+++ b/lang/gauche/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.75 2020/03/22 10:50:35 rillig Exp $
+# $NetBSD: Makefile,v 1.76 2021/07/24 14:50:42 yhardy Exp $
#
-DISTNAME= Gauche-0.9.6
+DISTNAME= Gauche-0.9.10
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gauche/}
EXTRACT_SUFX= .tgz
@@ -28,6 +28,7 @@ USE_LIBTOOL= yes
USE_TOOLS+= gmake gzip makeinfo
TEST_TARGET= check
INFO_FILES= yes
+TEXINFO_REQD= 5.0
# refer %install in ${WRKSRC}/Gauche.spec
INSTALL_TARGET= install-pkg install-doc
diff --git a/lang/gauche/PLIST b/lang/gauche/PLIST
index 63189330a1e..427c8ea4cf4 100644
--- a/lang/gauche/PLIST
+++ b/lang/gauche/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.32 2018/07/26 16:55:29 jperkin Exp $
+@comment $NetBSD: PLIST,v 1.33 2021/07/24 14:50:42 yhardy Exp $
bin/gauche-cesconv
bin/gauche-config
bin/gauche-install
@@ -6,504 +6,651 @@ bin/gauche-package
bin/gosh
info/gauche-refe.info
info/gauche-refj.info
-lib/gauche-0.9/${PKGVERSION}/include/gauche.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/bignum.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/bits.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/bits_inline.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/bytes_inline.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/char_euc_jp.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/char_none.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/char_sjis.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/char_utf_8.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/charset.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/class.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/code.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/collection.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/compare.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/config.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/config_threads.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/exception.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/extend.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/extern.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/float.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/gloc.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/hash.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/int64.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/load.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/module.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/number.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/parameter.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/paths.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/port.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/prof.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/pthread.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/reader.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/regexp.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/scmconst.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/static.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/string.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/symbol.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/system.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/treemap.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/uthread.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/uvector.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/vector.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/vm.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/vminsn.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/weak.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/win-compat.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/writer.h
-lib/gauche-0.9/${PKGVERSION}/include/gauche/wthread.h
-lib/gauche-0.9/${PKGVERSION}/include/gc.h
-lib/gauche-0.9/${PKGVERSION}/include/gc_allocator.h
-lib/gauche-0.9/${PKGVERSION}/include/gc_config_macros.h
-lib/gauche-0.9/${PKGVERSION}/include/gc_cpp.h
-lib/gauche-0.9/${PKGVERSION}/include/gc_inline.h
-lib/gauche-0.9/${PKGVERSION}/include/gc_mark.h
-lib/gauche-0.9/${PKGVERSION}/include/gc_pthread_redirects.h
-lib/gauche-0.9/${PKGVERSION}/include/gc_tiny_fl.h
-lib/gauche-0.9/${PKGVERSION}/include/gc_typed.h
-lib/gauche-0.9/${PKGVERSION}/include/gc_version.h
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/binary--io.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/crypt--bcrypt.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/data--queue.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/data--sparse.so
-${PLIST.gdbm}lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/dbm--gdbm.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/dbm--ndbm.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/file--util.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--charconv.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--collection.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--dictionary.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--fcntl.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--generator.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--hook.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--net.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--parameter.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--record.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--sequence.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--syslog.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--termios.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--threads.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--unicode.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--uvector.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--vport.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-cesconv
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-config
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-install
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-package
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gosh
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-0.9.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-0.9.so.0
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-0.9.so.0.6
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-static-0.9.a
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/math--mt-random.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/os--windows.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/parser--peg.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--822.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--md5.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--mime.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--sha.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--tls--mbed.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--tls.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--zlib.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-1.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-13.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-133.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-19.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-43.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--serializer.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--ssax.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--sxpath.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--tools.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--gettext.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--tr.so
-lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/util--match.so
-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/${PKGVERSION}/include/gauche.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/bignum.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/bits.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/bits_inline.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/char_euc_jp.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/char_none.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/char_sjis.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/char_utf_8.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/charset.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/class.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/code.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/collection.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/compare.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/config.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/config_threads.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/endian.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/exception.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/extend.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/extern.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/float.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/gloc.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/hash.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/int64.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/load.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/module.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/number.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/parameter.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/port.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/prof.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/pthread.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/reader.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/regexp.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/scmconst.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/static.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/string.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/symbol.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/system.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/treemap.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/uthread.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/uvector.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/vector.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/vm.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/vminsn.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/weak.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/win-compat.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/writer.h
+lib/gauche-0.97/${PKGVERSION}/include/gauche/wthread.h
+lib/gauche-0.97/${PKGVERSION}/include/gc.h
+lib/gauche-0.97/${PKGVERSION}/include/gc_allocator.h
+lib/gauche-0.97/${PKGVERSION}/include/gc_config_macros.h
+lib/gauche-0.97/${PKGVERSION}/include/gc_cpp.h
+lib/gauche-0.97/${PKGVERSION}/include/gc_inline.h
+lib/gauche-0.97/${PKGVERSION}/include/gc_mark.h
+lib/gauche-0.97/${PKGVERSION}/include/gc_pthread_redirects.h
+lib/gauche-0.97/${PKGVERSION}/include/gc_tiny_fl.h
+lib/gauche-0.97/${PKGVERSION}/include/gc_typed.h
+lib/gauche-0.97/${PKGVERSION}/include/gc_version.h
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/binary--io.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/crypt--bcrypt.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/data--queue.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/data--ring-buffer.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/data--sparse.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/data--trie.so
+${PLIST.gdbm}lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/dbm--gdbm.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/dbm--ndbm.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/file--util.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--charconv.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--collection.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--dictionary.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--fcntl.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--generator.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--hook.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--net.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--parameter.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--process.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--record.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--sequence.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--syslog.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--termios.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--threads.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--unicode.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--uvector.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--vport.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-cesconv
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-config
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-install
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-package
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gosh
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-0.97.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-0.97.so.0
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-0.97.so.0.10
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-static-0.97.a
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/math--mt-random.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/os--windows.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/parser--peg.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--822.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--md5.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--mime.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--sha.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--tls--mbed.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--tls.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--zlib.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-1.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-13.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-133.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-144.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-178.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-19.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-43.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--serializer.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--ssax.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--sxpath.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--tools.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--console.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--gap-buffer.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--gettext.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--line-edit.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--tr.so
+lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/util--match.so
+lib/libgauche-0.97.so
+lib/libgauche-0.97.so.0
+lib/libgauche-0.97.so.0.10
+lib/libgauche-static-0.97.a
man/man1/gauche-cesconv.1
man/man1/gauche-config.1
man/man1/gauche-install.1
man/man1/gauche-package.1
man/man1/gosh.1
share/aclocal/gauche.m4
-share/gauche-0.9/${PKGVERSION}/aclocal.m4
-share/gauche-0.9/${PKGVERSION}/lib/binary/ftype.scm
-share/gauche-0.9/${PKGVERSION}/lib/binary/io.scm
-share/gauche-0.9/${PKGVERSION}/lib/binary/pack.scm
-share/gauche-0.9/${PKGVERSION}/lib/build-standalone
-share/gauche-0.9/${PKGVERSION}/lib/cesconv
-share/gauche-0.9/${PKGVERSION}/lib/check-script
-share/gauche-0.9/${PKGVERSION}/lib/compat/chibi-test.scm
-share/gauche-0.9/${PKGVERSION}/lib/compat/jfilter.scm
-share/gauche-0.9/${PKGVERSION}/lib/compat/norational.scm
-share/gauche-0.9/${PKGVERSION}/lib/compat/r7rs-srfi-tests.scm
-share/gauche-0.9/${PKGVERSION}/lib/compat/stk.scm
-share/gauche-0.9/${PKGVERSION}/lib/control/job.scm
-share/gauche-0.9/${PKGVERSION}/lib/control/thread-pool.scm
-share/gauche-0.9/${PKGVERSION}/lib/crypt/bcrypt.scm
-share/gauche-0.9/${PKGVERSION}/lib/data/cache.scm
-share/gauche-0.9/${PKGVERSION}/lib/data/heap.scm
-share/gauche-0.9/${PKGVERSION}/lib/data/ideque.scm
-share/gauche-0.9/${PKGVERSION}/lib/data/imap.scm
-share/gauche-0.9/${PKGVERSION}/lib/data/queue.scm
-share/gauche-0.9/${PKGVERSION}/lib/data/random.scm
-share/gauche-0.9/${PKGVERSION}/lib/data/ring-buffer.scm
-share/gauche-0.9/${PKGVERSION}/lib/data/sparse.scm
-share/gauche-0.9/${PKGVERSION}/lib/data/trie.scm
-share/gauche-0.9/${PKGVERSION}/lib/dbd/null.scm
-share/gauche-0.9/${PKGVERSION}/lib/dbi.scm
-share/gauche-0.9/${PKGVERSION}/lib/dbm.scm
-share/gauche-0.9/${PKGVERSION}/lib/dbm/dump
-share/gauche-0.9/${PKGVERSION}/lib/dbm/fsdbm.scm
-${PLIST.gdbm}share/gauche-0.9/${PKGVERSION}/lib/dbm/gdbm.scm
-share/gauche-0.9/${PKGVERSION}/lib/dbm/ndbm.scm
-share/gauche-0.9/${PKGVERSION}/lib/dbm/restore
-share/gauche-0.9/${PKGVERSION}/lib/file/filter.scm
-share/gauche-0.9/${PKGVERSION}/lib/file/util.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/array.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/base.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/cise.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/literal.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/optimizer.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/precomp.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/standalone.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/stub.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/tmodule.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/type.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/unit.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/charconv.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/collection.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/common-macros.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/computil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/condutil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/config.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/configure.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/defvalues.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/dictionary.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/experimental/app.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/experimental/lamb.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/experimental/ref.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/fcntl.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/fileutil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/generator.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/generic-sortutil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/hashutil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/hook.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/interactive.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/interactive/ed.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/interactive/editable-reader.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/interactive/info.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/interactive/toplevel.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/interpolate.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/lazy.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/let-opt.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/libutil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/listener.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/logger.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/logical.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/macroutil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/matrix.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/modutil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/mop/bound-slot.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/mop/instance-pool.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/mop/propagate.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/mop/singleton.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/mop/validator.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/net.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/numerical.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/package.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/package/build.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/package/compile.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/package/fetch.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/package/util.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/parameter.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/parseopt.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/partcont.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/portutil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/pputil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/procedure.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/process.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/record.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/redefutil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/regexp.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/reload.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/selector.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/sequence.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/serializer.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/serializer/aserializer.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/signal.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/singleton.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/sortutil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/stringutil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/syslog.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/sysutil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/termios.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/test.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/test/generative.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/test/script.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/threads.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/time.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/treeutil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/unicode.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/uvector.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/validator.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/vecutil.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/version.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/vm/debugger.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/vm/insn-core.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/vm/insn.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/vm/profiler.scm
-share/gauche-0.9/${PKGVERSION}/lib/gauche/vport.scm
-share/gauche-0.9/${PKGVERSION}/lib/gencomp
-share/gauche-0.9/${PKGVERSION}/lib/genstub
-share/gauche-0.9/${PKGVERSION}/lib/lang/asm/x86_64.scm
-share/gauche-0.9/${PKGVERSION}/lib/math/const.scm
-share/gauche-0.9/${PKGVERSION}/lib/math/mt-random.scm
-share/gauche-0.9/${PKGVERSION}/lib/math/prime.scm
-share/gauche-0.9/${PKGVERSION}/lib/os/windows.scm
-share/gauche-0.9/${PKGVERSION}/lib/os/windows/console/codepage.scm
-share/gauche-0.9/${PKGVERSION}/lib/parser/peg.scm
-share/gauche-0.9/${PKGVERSION}/lib/precomp
-share/gauche-0.9/${PKGVERSION}/lib/r7rs.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/822.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/base64.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/cookie.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/ftp.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/hmac.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/http.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/icmp.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/ip.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/json.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/md5.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/mime-port.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/mime.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/quoted-printable.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/sha.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/sha1.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/tls.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/tls/mbed.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/uri.scm
-share/gauche-0.9/${PKGVERSION}/lib/rfc/zlib.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/base.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/box.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/case-lambda.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/char.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/charset.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/comparator.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/complex.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/cxr.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/eval.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/file.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/generator.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/hash-table.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/ideque.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/inexact.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/lazy.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/list-queue.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/list.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/load.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/lseq.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/process-context.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/r5rs.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/read.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/repl.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/set.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/sort.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/time.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/vector.scm
-share/gauche-0.9/${PKGVERSION}/lib/scheme/write.scm
-share/gauche-0.9/${PKGVERSION}/lib/slib.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-0.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-1.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-106.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-11.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-112.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-113.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-114.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-117.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-118.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-121.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-125.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-127.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-128.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-129.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-13.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-131.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-132.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-133.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-134.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-14.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-14/query.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-14/set.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-141.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-143.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-146.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-146/hash.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-151.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-152.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-154.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-155.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-158.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-18.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-19.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-25.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-26.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-27.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-29.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-29/bundle.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-29/format.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-31.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-37.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-39.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-4.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-42.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-43.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-5.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-55.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-60.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-64.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-66.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-69.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-7.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-74.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-78.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-9.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-96.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-98.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi-99.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/0.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/1.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/10.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/106.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/11.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/111.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/112.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/113.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/114.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/117.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/118.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/121.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/125.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/127.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/128.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/129.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/13.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/131.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/132.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/133.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/134.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/14.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/141.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/143.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/145.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/146.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/149.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/151.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/152.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/158.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/16.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/17.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/18.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/19.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/2.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/22.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/23.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/25.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/26.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/27.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/28.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/29.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/30.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/31.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/34.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/35.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/36.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/37.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/38.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/39.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/4.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/40.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/42.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/43.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/45.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/46.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/5.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/55.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/6.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/60.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/61.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/62.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/64.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/66.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/69.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/7.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/74.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/78.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/8.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/87.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/9.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/95.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/96.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/98.scm
-share/gauche-0.9/${PKGVERSION}/lib/srfi/99.scm
-share/gauche-0.9/${PKGVERSION}/lib/sxml/adaptor.scm
-share/gauche-0.9/${PKGVERSION}/lib/sxml/serializer.scm
-share/gauche-0.9/${PKGVERSION}/lib/sxml/ssax.scm
-share/gauche-0.9/${PKGVERSION}/lib/sxml/sxpath.scm
-share/gauche-0.9/${PKGVERSION}/lib/sxml/to-html.scm
-share/gauche-0.9/${PKGVERSION}/lib/sxml/tools.scm
-share/gauche-0.9/${PKGVERSION}/lib/sxml/tree-trans.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/console.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/console/generic.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/console/windows.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/csv.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/diff.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/gap-buffer.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/gettext.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/html-lite.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/info.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/line-edit.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/parse.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/progress.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/sql.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/template.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/tr.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/tree.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/unicode.scm
-share/gauche-0.9/${PKGVERSION}/lib/text/unicode/ucd.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/combinations.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/digest.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/dominator.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/isomorph.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/lcs.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/levenshtein.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/list.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/match.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/queue.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/rbtree.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/record.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/relation.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/sparse.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/stream.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/toposort.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/tree.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/trie.scm
-share/gauche-0.9/${PKGVERSION}/lib/util/unification.scm
-share/gauche-0.9/${PKGVERSION}/lib/www/cgi-test.scm
-share/gauche-0.9/${PKGVERSION}/lib/www/cgi.scm
-share/gauche-0.9/${PKGVERSION}/lib/www/cgi/test.scm
-share/gauche-0.9/${PKGVERSION}/lib/www/css.scm
-share/gauche-0.9/${PKGVERSION}/template.Makefile.in
-share/gauche-0.9/${PKGVERSION}/template.configure
-share/gauche-0.9/${PKGVERSION}/template.configure.ac
-share/gauche-0.9/${PKGVERSION}/template.extension.c
-share/gauche-0.9/${PKGVERSION}/template.extension.h
-share/gauche-0.9/${PKGVERSION}/template.extensionlib.stub
-share/gauche-0.9/${PKGVERSION}/template.module.scm
-share/gauche-0.9/${PKGVERSION}/template.package.scm
-share/gauche-0.9/${PKGVERSION}/template.test.scm
-@pkgdir share/gauche-0.9/site/lib
-@pkgdir lib/gauche-0.9/site/${MACHINE_GNU_PLATFORM}
+share/gauche-0.97/${PKGVERSION}/aclocal.m4
+share/gauche-0.97/${PKGVERSION}/lib/binary/ftype.scm
+share/gauche-0.97/${PKGVERSION}/lib/binary/io.scm
+share/gauche-0.97/${PKGVERSION}/lib/binary/pack.scm
+share/gauche-0.97/${PKGVERSION}/lib/build-standalone
+share/gauche-0.97/${PKGVERSION}/lib/cesconv
+share/gauche-0.97/${PKGVERSION}/lib/check-script
+share/gauche-0.97/${PKGVERSION}/lib/compat/chibi-test.scm
+share/gauche-0.97/${PKGVERSION}/lib/compat/jfilter.scm
+share/gauche-0.97/${PKGVERSION}/lib/compat/norational.scm
+share/gauche-0.97/${PKGVERSION}/lib/compat/r7rs-srfi-tests.scm
+share/gauche-0.97/${PKGVERSION}/lib/compat/stk.scm
+share/gauche-0.97/${PKGVERSION}/lib/control/job.scm
+share/gauche-0.97/${PKGVERSION}/lib/control/mapper.scm
+share/gauche-0.97/${PKGVERSION}/lib/control/thread-pool.scm
+share/gauche-0.97/${PKGVERSION}/lib/crypt/bcrypt.scm
+share/gauche-0.97/${PKGVERSION}/lib/data/cache.scm
+share/gauche-0.97/${PKGVERSION}/lib/data/heap.scm
+share/gauche-0.97/${PKGVERSION}/lib/data/ideque.scm
+share/gauche-0.97/${PKGVERSION}/lib/data/imap.scm
+share/gauche-0.97/${PKGVERSION}/lib/data/priority-map.scm
+share/gauche-0.97/${PKGVERSION}/lib/data/queue.scm
+share/gauche-0.97/${PKGVERSION}/lib/data/random.scm
+share/gauche-0.97/${PKGVERSION}/lib/data/ring-buffer.scm
+share/gauche-0.97/${PKGVERSION}/lib/data/skew-list.scm
+share/gauche-0.97/${PKGVERSION}/lib/data/sparse.scm
+share/gauche-0.97/${PKGVERSION}/lib/data/trie.scm
+share/gauche-0.97/${PKGVERSION}/lib/dbd/null.scm
+share/gauche-0.97/${PKGVERSION}/lib/dbi.scm
+share/gauche-0.97/${PKGVERSION}/lib/dbm.scm
+share/gauche-0.97/${PKGVERSION}/lib/dbm/dump
+share/gauche-0.97/${PKGVERSION}/lib/dbm/fsdbm.scm
+${PLIST.gdbm}share/gauche-0.97/${PKGVERSION}/lib/dbm/gdbm.scm
+share/gauche-0.97/${PKGVERSION}/lib/dbm/gdbm.scm
+share/gauche-0.97/${PKGVERSION}/lib/dbm/ndbm.scm
+share/gauche-0.97/${PKGVERSION}/lib/dbm/restore
+share/gauche-0.97/${PKGVERSION}/lib/file/filter.scm
+share/gauche-0.97/${PKGVERSION}/lib/file/util.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/array.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/base.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/cise.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/literal.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/optimizer.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/precomp.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/standalone.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/stub.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/tmodule.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/type.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/unit.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/charconv.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/collection.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/common-macros.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/computil.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/config.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/configure.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/connection.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/dictionary.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/experimental/app.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/experimental/lamb.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/experimental/ref.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/exports.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/fcntl.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/fileutil.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/generator.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/generic-sortutil.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/hashutil.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/hook.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/interactive.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/interactive/editable-reader.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/interactive/info.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/interactive/init.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/interactive/toplevel.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/interpolate.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/lazy.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/let-opt.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/libutil.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/listener.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/logger.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/logical.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/matrix.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/modutil.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/mop/bound-slot.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/mop/instance-pool.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/mop/propagate.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/mop/singleton.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/mop/validator.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/net.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/numerical.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/package.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/package/build.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/package/compile.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/package/fetch.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/package/util.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/parameter.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/parseopt.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/partcont.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/portutil.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/pputil.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/procedure.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/process.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/record.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/redefutil.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/regexp.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/regexp/sre.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/reload.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/selector.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/sequence.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/serializer.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/serializer/aserializer.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/signal.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/singleton.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/syslog.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/sysutil.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/termios.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/test.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/test/generative.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/test/script.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/threads.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/time.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/treeutil.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/unicode.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/base.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/c128.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/c32.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/c64.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/f16.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/f32.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/f64.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/s16.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/s32.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/s64.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/s8.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/u16.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/u32.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/u64.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/u8.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/validator.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/vecutil.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/version.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/vm/debugger.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/vm/insn-core.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/vm/insn.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/vm/profiler.scm
+share/gauche-0.97/${PKGVERSION}/lib/gauche/vport.scm
+share/gauche-0.97/${PKGVERSION}/lib/gencomp
+share/gauche-0.97/${PKGVERSION}/lib/genstub
+share/gauche-0.97/${PKGVERSION}/lib/lang/asm/x86_64.scm
+share/gauche-0.97/${PKGVERSION}/lib/math/const.scm
+share/gauche-0.97/${PKGVERSION}/lib/math/mt-random.scm
+share/gauche-0.97/${PKGVERSION}/lib/math/prime.scm
+share/gauche-0.97/${PKGVERSION}/lib/os/windows.scm
+share/gauche-0.97/${PKGVERSION}/lib/os/windows/console/codepage.scm
+share/gauche-0.97/${PKGVERSION}/lib/parser/peg.scm
+share/gauche-0.97/${PKGVERSION}/lib/parser/peg/deprecated.scm
+share/gauche-0.97/${PKGVERSION}/lib/precomp
+share/gauche-0.97/${PKGVERSION}/lib/r7rs-setup.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/822.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/base64.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/cookie.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/ftp.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/hmac.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/http.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/http/tunnel.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/icmp.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/ip.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/json.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/md5.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/mime-port.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/mime.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/quoted-printable.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/sha.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/sha1.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/tls.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/tls/get-cacert.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/tls/mbed.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/uri.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/uuid.scm
+share/gauche-0.97/${PKGVERSION}/lib/rfc/zlib.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/base.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/bitwise.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/box.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/bytevector.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/case-lambda.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/char.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/charset.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/comparator.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/complex.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/cxr.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/division.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/ephemeron.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/eval.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/file.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/fixnum.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/flonum.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/generator.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/hash-table.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/ideque.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/ilist.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/inexact.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/lazy.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/list-queue.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/list.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/load.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/lseq.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/mapping.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/mapping/hash.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/process-context.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/r5rs.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/read.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/regex.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/repl.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/rlist.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/set.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/show.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/show/base.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/show/color.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/show/columnar.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/show/unicode.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/sort.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/stream.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/stream/derived.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/stream/primitive.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/text.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/time.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/vector.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/base.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/c128.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/c64.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/f32.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/f64.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/s16.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/s32.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/s64.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/s8.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/u16.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/u32.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/u64.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/u8.scm
+share/gauche-0.97/${PKGVERSION}/lib/scheme/write.scm
+share/gauche-0.97/${PKGVERSION}/lib/slib.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-1.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-101.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-106.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-11.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-112.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-113.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-114.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-115.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-116.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-117.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-118.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-121.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-124.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-125.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-127.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-128.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-129.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-13.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-130.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-131.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-132.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-133.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-134.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-135.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-14.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-14/query.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-14/set.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-141.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-143.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-144.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-146.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-146/hash.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-151.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-152.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-154.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-155.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-158.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159/base.sld
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159/color.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159/color.sld
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159/column.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159/columnar.sld
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/base.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/base.sld
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/monad.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/pretty.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/pretty.sld
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/util.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/util.sld
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/write.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159/unicode.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-159/unicode.sld
+share/gauche-0.97/${PKGVERSION}/lib/srfi-160.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-162.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-170.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-173.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-174.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-175.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-176.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-178.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-18.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-180.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-181.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-185.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-189.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-19.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-192.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-193.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-198.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-25.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-27.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-29.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-29/bundle.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-29/format.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-37.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-39.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-4.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-41.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-42.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-43.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-5.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-55.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-60.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-64.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-66.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-69.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-7.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-74.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-78.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-9.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-96.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-98.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi-99.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/0.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/1.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/10.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/101.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/106.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/11.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/111.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/112.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/113.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/114.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/115.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/116.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/117.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/118.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/121.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/124.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/125.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/127.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/128.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/129.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/13.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/130.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/131.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/132.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/133.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/134.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/135.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/14.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/141.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/143.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/144.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/145.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/146.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/149.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/151.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/152.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/154.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/158.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/159.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/159/base.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/159/color.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/159/columnar.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/159/unicode.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/16.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/160.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/160/base.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/160/c128.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/160/c64.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/160/f32.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/160/f64.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/160/s16.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/160/s32.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/160/s64.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/160/s8.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/160/u16.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/160/u32.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/160/u64.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/160/u8.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/162.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/17.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/170.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/173.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/174.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/175.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/176.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/178.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/18.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/180.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/181.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/185.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/189.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/19.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/192.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/193.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/195.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/2.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/22.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/23.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/25.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/26.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/27.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/28.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/29.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/30.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/31.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/34.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/35.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/36.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/37.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/38.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/39.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/4.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/40.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/41.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/42.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/43.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/45.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/46.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/5.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/55.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/6.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/60.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/61.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/62.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/64.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/66.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/69.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/7.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/74.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/78.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/8.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/87.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/9.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/95.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/96.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/98.scm
+share/gauche-0.97/${PKGVERSION}/lib/srfi/99.scm
+share/gauche-0.97/${PKGVERSION}/lib/sxml/adaptor.scm
+share/gauche-0.97/${PKGVERSION}/lib/sxml/serializer.scm
+share/gauche-0.97/${PKGVERSION}/lib/sxml/ssax.scm
+share/gauche-0.97/${PKGVERSION}/lib/sxml/sxpath.scm
+share/gauche-0.97/${PKGVERSION}/lib/sxml/to-html.scm
+share/gauche-0.97/${PKGVERSION}/lib/sxml/tools.scm
+share/gauche-0.97/${PKGVERSION}/lib/sxml/tree-trans.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/console.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/console/framebuffer.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/console/wide-char-setting.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/console/windows.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/csv.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/diff.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/edn.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/external-editor.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/gap-buffer.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/gettext.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/html-lite.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/info.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/line-edit.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/pager.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/parse.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/progress.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/sql.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/template.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/tr.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/tree.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/unicode.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/unicode/codeset.scm
+share/gauche-0.97/${PKGVERSION}/lib/text/unicode/ucd.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/combinations.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/digest.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/dominator.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/isomorph.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/lcs.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/levenshtein.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/list.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/match.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/queue.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/rbtree.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/record.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/relation.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/sparse.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/stream.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/toposort.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/tree.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/trie.scm
+share/gauche-0.97/${PKGVERSION}/lib/util/unification.scm
+share/gauche-0.97/${PKGVERSION}/lib/www/cgi-test.scm
+share/gauche-0.97/${PKGVERSION}/lib/www/cgi.scm
+share/gauche-0.97/${PKGVERSION}/lib/www/cgi/test.scm
+share/gauche-0.97/${PKGVERSION}/lib/www/css.scm
+share/gauche-0.97/${PKGVERSION}/package-templates/Makefile-pure-scheme.in
+share/gauche-0.97/${PKGVERSION}/package-templates/Makefile.in
+share/gauche-0.97/${PKGVERSION}/package-templates/configure
+share/gauche-0.97/${PKGVERSION}/package-templates/configure-compat
+share/gauche-0.97/${PKGVERSION}/package-templates/configure.ac
+share/gauche-0.97/${PKGVERSION}/package-templates/extension.c
+share/gauche-0.97/${PKGVERSION}/package-templates/extension.h
+share/gauche-0.97/${PKGVERSION}/package-templates/extensionlib.stub
+share/gauche-0.97/${PKGVERSION}/package-templates/module-pure-scheme.scm
+share/gauche-0.97/${PKGVERSION}/package-templates/module.scm
+share/gauche-0.97/${PKGVERSION}/package-templates/package.scm
+share/gauche-0.97/${PKGVERSION}/package-templates/test.scm
+@pkgdir share/gauche-0.97/site/lib
+@pkgdir lib/gauche-0.97/site/${MACHINE_GNU_PLATFORM}
diff --git a/lang/gauche/distinfo b/lang/gauche/distinfo
index 7bbbd07d7af..4dfe6d9e311 100644
--- a/lang/gauche/distinfo
+++ b/lang/gauche/distinfo
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.39 2018/07/26 16:55:29 jperkin Exp $
+$NetBSD: distinfo,v 1.40 2021/07/24 14:50:42 yhardy Exp $
-SHA1 (Gauche-0.9.6.tgz) = 20f2a0a4b37c40ce0175e627d5767b32d8f4eb5d
-RMD160 (Gauche-0.9.6.tgz) = 36d77c87881978c408daf7958bc41048aa4b2edd
-SHA512 (Gauche-0.9.6.tgz) = 1d8a7f56fd9ca183d6dce1dedadfaec7c7150c29540e5158f2a61977f7406d7d7a8ab753ef1912865a7d7e9a9e2fa845d86b2eb4c5e07a176f1c60276bc1908f
-Size (Gauche-0.9.6.tgz) = 6927530 bytes
+SHA1 (Gauche-0.9.10.tgz) = a1a35944db9b71d9117cf0d9f7806aa34711b636
+RMD160 (Gauche-0.9.10.tgz) = 0b21bea6aead08b4274605f7fa0ac6ae9efd2f87
+SHA512 (Gauche-0.9.10.tgz) = f014ec00903fc91b90da8dbdaace04a64d12695c631e923d5cdca3574aaf6701374f5adbed20c395881b047bb5a448352614d4ce7f16b6e38f69382bf8e66ed0
+Size (Gauche-0.9.10.tgz) = 7701616 bytes
SHA1 (patch-aa) = 41f2160ffdb8ad66e77d9d30950e820dd07b18a8
SHA1 (patch-af) = 0962445f5eab8d788283455f60386aa1cfd70230
SHA1 (patch-ag) = 524048e151225dc73d00c31623be25e84206920a