Sat Jul 24 14:50:42 2021 UTC ()
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).


(yhardy)
diff -r1.75 -r1.76 pkgsrc/lang/gauche/Makefile
diff -r1.32 -r1.33 pkgsrc/lang/gauche/PLIST
diff -r1.39 -r1.40 pkgsrc/lang/gauche/distinfo

cvs diff -r1.75 -r1.76 pkgsrc/lang/gauche/Makefile (expand / switch to unified diff)

--- pkgsrc/lang/gauche/Makefile 2020/03/22 10:50:35 1.75
+++ pkgsrc/lang/gauche/Makefile 2021/07/24 14:50:42 1.76
@@ -1,43 +1,44 @@ @@ -1,43 +1,44 @@
1# $NetBSD: Makefile,v 1.75 2020/03/22 10:50:35 rillig Exp $ 1# $NetBSD: Makefile,v 1.76 2021/07/24 14:50:42 yhardy Exp $
2# 2#
3 3
4DISTNAME= Gauche-0.9.6 4DISTNAME= Gauche-0.9.10
5CATEGORIES= lang 5CATEGORIES= lang
6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gauche/} 6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gauche/}
7EXTRACT_SUFX= .tgz 7EXTRACT_SUFX= .tgz
8 8
9MAINTAINER= enami@NetBSD.org 9MAINTAINER= enami@NetBSD.org
10HOMEPAGE= https://practical-scheme.net/gauche/ 10HOMEPAGE= https://practical-scheme.net/gauche/
11COMMENT= R7RS Scheme implementation aimed to be a handy tool for daily works 11COMMENT= R7RS Scheme implementation aimed to be a handy tool for daily works
12LICENSE= modified-bsd # see work/${DISTNAME}/COPYING 12LICENSE= modified-bsd # see work/${DISTNAME}/COPYING
13 13
14DEPENDS+= slib-[0-9]*:../../devel/slib 14DEPENDS+= slib-[0-9]*:../../devel/slib
15 15
16.include "options.mk" 16.include "options.mk"
17 17
18MAKE_JOBS_SAFE= no 18MAKE_JOBS_SAFE= no
19GNU_CONFIGURE= yes 19GNU_CONFIGURE= yes
20GNU_CONFIGURE_STRICT= no # has several configure programs 20GNU_CONFIGURE_STRICT= no # has several configure programs
21CONFIGURE_ARGS+= --with-slib=${LOCALBASE}/share/slib 21CONFIGURE_ARGS+= --with-slib=${LOCALBASE}/share/slib
22CONFIGURE_ARGS+= --enable-threads=pthreads 22CONFIGURE_ARGS+= --enable-threads=pthreads
23CONFIGURE_ARGS+= --with-iconv=${BUILDLINK_PREFIX.iconv} 23CONFIGURE_ARGS+= --with-iconv=${BUILDLINK_PREFIX.iconv}
24CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib} 24CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib}
25 25
26USE_LANGUAGES= c c99 26USE_LANGUAGES= c c99
27USE_LIBTOOL= yes 27USE_LIBTOOL= yes
28USE_TOOLS+= gmake gzip makeinfo 28USE_TOOLS+= gmake gzip makeinfo
29TEST_TARGET= check 29TEST_TARGET= check
30INFO_FILES= yes 30INFO_FILES= yes
 31TEXINFO_REQD= 5.0
31 32
32# refer %install in ${WRKSRC}/Gauche.spec 33# refer %install in ${WRKSRC}/Gauche.spec
33INSTALL_TARGET= install-pkg install-doc 34INSTALL_TARGET= install-pkg install-doc
34 35
35# Does relink internally 36# Does relink internally
36BUILDLINK_PASSTHRU_RPATHDIRS+= ${WRKSRC} 37BUILDLINK_PASSTHRU_RPATHDIRS+= ${WRKSRC}
37 38
38.include "../../mk/dlopen.buildlink3.mk" 39.include "../../mk/dlopen.buildlink3.mk"
39.include "../../mk/pthread.buildlink3.mk" 40.include "../../mk/pthread.buildlink3.mk"
40 41
41post-install: 42post-install:
42 gzip -d ${DESTDIR}${PREFIX}/${PKGINFODIR}/gauche-ref*gz 43 gzip -d ${DESTDIR}${PREFIX}/${PKGINFODIR}/gauche-ref*gz
43 44

cvs diff -r1.32 -r1.33 pkgsrc/lang/gauche/PLIST (expand / switch to unified diff)

--- pkgsrc/lang/gauche/PLIST 2018/07/26 16:55:29 1.32
+++ pkgsrc/lang/gauche/PLIST 2021/07/24 14:50:42 1.33
@@ -1,509 +1,656 @@ @@ -1,509 +1,656 @@
1@comment $NetBSD: PLIST,v 1.32 2018/07/26 16:55:29 jperkin Exp $ 1@comment $NetBSD: PLIST,v 1.33 2021/07/24 14:50:42 yhardy Exp $
2bin/gauche-cesconv 2bin/gauche-cesconv
3bin/gauche-config 3bin/gauche-config
4bin/gauche-install 4bin/gauche-install
5bin/gauche-package 5bin/gauche-package
6bin/gosh 6bin/gosh
7info/gauche-refe.info 7info/gauche-refe.info
8info/gauche-refj.info 8info/gauche-refj.info
9lib/gauche-0.9/${PKGVERSION}/include/gauche.h 9lib/gauche-0.97/${PKGVERSION}/include/gauche.h
10lib/gauche-0.9/${PKGVERSION}/include/gauche/bignum.h 10lib/gauche-0.97/${PKGVERSION}/include/gauche/bignum.h
11lib/gauche-0.9/${PKGVERSION}/include/gauche/bits.h 11lib/gauche-0.97/${PKGVERSION}/include/gauche/bits.h
12lib/gauche-0.9/${PKGVERSION}/include/gauche/bits_inline.h 12lib/gauche-0.97/${PKGVERSION}/include/gauche/bits_inline.h
13lib/gauche-0.9/${PKGVERSION}/include/gauche/bytes_inline.h 13lib/gauche-0.97/${PKGVERSION}/include/gauche/char_euc_jp.h
14lib/gauche-0.9/${PKGVERSION}/include/gauche/char_euc_jp.h 14lib/gauche-0.97/${PKGVERSION}/include/gauche/char_none.h
15lib/gauche-0.9/${PKGVERSION}/include/gauche/char_none.h 15lib/gauche-0.97/${PKGVERSION}/include/gauche/char_sjis.h
16lib/gauche-0.9/${PKGVERSION}/include/gauche/char_sjis.h 16lib/gauche-0.97/${PKGVERSION}/include/gauche/char_utf_8.h
17lib/gauche-0.9/${PKGVERSION}/include/gauche/char_utf_8.h 17lib/gauche-0.97/${PKGVERSION}/include/gauche/charset.h
18lib/gauche-0.9/${PKGVERSION}/include/gauche/charset.h 18lib/gauche-0.97/${PKGVERSION}/include/gauche/class.h
19lib/gauche-0.9/${PKGVERSION}/include/gauche/class.h 19lib/gauche-0.97/${PKGVERSION}/include/gauche/code.h
20lib/gauche-0.9/${PKGVERSION}/include/gauche/code.h 20lib/gauche-0.97/${PKGVERSION}/include/gauche/collection.h
21lib/gauche-0.9/${PKGVERSION}/include/gauche/collection.h 21lib/gauche-0.97/${PKGVERSION}/include/gauche/compare.h
22lib/gauche-0.9/${PKGVERSION}/include/gauche/compare.h 22lib/gauche-0.97/${PKGVERSION}/include/gauche/config.h
23lib/gauche-0.9/${PKGVERSION}/include/gauche/config.h 23lib/gauche-0.97/${PKGVERSION}/include/gauche/config_threads.h
24lib/gauche-0.9/${PKGVERSION}/include/gauche/config_threads.h 24lib/gauche-0.97/${PKGVERSION}/include/gauche/endian.h
25lib/gauche-0.9/${PKGVERSION}/include/gauche/exception.h 25lib/gauche-0.97/${PKGVERSION}/include/gauche/exception.h
26lib/gauche-0.9/${PKGVERSION}/include/gauche/extend.h 26lib/gauche-0.97/${PKGVERSION}/include/gauche/extend.h
27lib/gauche-0.9/${PKGVERSION}/include/gauche/extern.h 27lib/gauche-0.97/${PKGVERSION}/include/gauche/extern.h
28lib/gauche-0.9/${PKGVERSION}/include/gauche/float.h 28lib/gauche-0.97/${PKGVERSION}/include/gauche/float.h
29lib/gauche-0.9/${PKGVERSION}/include/gauche/gloc.h 29lib/gauche-0.97/${PKGVERSION}/include/gauche/gloc.h
30lib/gauche-0.9/${PKGVERSION}/include/gauche/hash.h 30lib/gauche-0.97/${PKGVERSION}/include/gauche/hash.h
31lib/gauche-0.9/${PKGVERSION}/include/gauche/int64.h 31lib/gauche-0.97/${PKGVERSION}/include/gauche/int64.h
32lib/gauche-0.9/${PKGVERSION}/include/gauche/load.h 32lib/gauche-0.97/${PKGVERSION}/include/gauche/load.h
33lib/gauche-0.9/${PKGVERSION}/include/gauche/module.h 33lib/gauche-0.97/${PKGVERSION}/include/gauche/module.h
34lib/gauche-0.9/${PKGVERSION}/include/gauche/number.h 34lib/gauche-0.97/${PKGVERSION}/include/gauche/number.h
35lib/gauche-0.9/${PKGVERSION}/include/gauche/parameter.h 35lib/gauche-0.97/${PKGVERSION}/include/gauche/parameter.h
36lib/gauche-0.9/${PKGVERSION}/include/gauche/paths.h 36lib/gauche-0.97/${PKGVERSION}/include/gauche/port.h
37lib/gauche-0.9/${PKGVERSION}/include/gauche/port.h 37lib/gauche-0.97/${PKGVERSION}/include/gauche/prof.h
38lib/gauche-0.9/${PKGVERSION}/include/gauche/prof.h 38lib/gauche-0.97/${PKGVERSION}/include/gauche/pthread.h
39lib/gauche-0.9/${PKGVERSION}/include/gauche/pthread.h 39lib/gauche-0.97/${PKGVERSION}/include/gauche/reader.h
40lib/gauche-0.9/${PKGVERSION}/include/gauche/reader.h 40lib/gauche-0.97/${PKGVERSION}/include/gauche/regexp.h
41lib/gauche-0.9/${PKGVERSION}/include/gauche/regexp.h 41lib/gauche-0.97/${PKGVERSION}/include/gauche/scmconst.h
42lib/gauche-0.9/${PKGVERSION}/include/gauche/scmconst.h 42lib/gauche-0.97/${PKGVERSION}/include/gauche/static.h
43lib/gauche-0.9/${PKGVERSION}/include/gauche/static.h 43lib/gauche-0.97/${PKGVERSION}/include/gauche/string.h
44lib/gauche-0.9/${PKGVERSION}/include/gauche/string.h 44lib/gauche-0.97/${PKGVERSION}/include/gauche/symbol.h
45lib/gauche-0.9/${PKGVERSION}/include/gauche/symbol.h 45lib/gauche-0.97/${PKGVERSION}/include/gauche/system.h
46lib/gauche-0.9/${PKGVERSION}/include/gauche/system.h 46lib/gauche-0.97/${PKGVERSION}/include/gauche/treemap.h
47lib/gauche-0.9/${PKGVERSION}/include/gauche/treemap.h 47lib/gauche-0.97/${PKGVERSION}/include/gauche/uthread.h
48lib/gauche-0.9/${PKGVERSION}/include/gauche/uthread.h 48lib/gauche-0.97/${PKGVERSION}/include/gauche/uvector.h
49lib/gauche-0.9/${PKGVERSION}/include/gauche/uvector.h 49lib/gauche-0.97/${PKGVERSION}/include/gauche/vector.h
50lib/gauche-0.9/${PKGVERSION}/include/gauche/vector.h 50lib/gauche-0.97/${PKGVERSION}/include/gauche/vm.h
51lib/gauche-0.9/${PKGVERSION}/include/gauche/vm.h 51lib/gauche-0.97/${PKGVERSION}/include/gauche/vminsn.h
52lib/gauche-0.9/${PKGVERSION}/include/gauche/vminsn.h 52lib/gauche-0.97/${PKGVERSION}/include/gauche/weak.h
53lib/gauche-0.9/${PKGVERSION}/include/gauche/weak.h 53lib/gauche-0.97/${PKGVERSION}/include/gauche/win-compat.h
54lib/gauche-0.9/${PKGVERSION}/include/gauche/win-compat.h 54lib/gauche-0.97/${PKGVERSION}/include/gauche/writer.h
55lib/gauche-0.9/${PKGVERSION}/include/gauche/writer.h 55lib/gauche-0.97/${PKGVERSION}/include/gauche/wthread.h
56lib/gauche-0.9/${PKGVERSION}/include/gauche/wthread.h 56lib/gauche-0.97/${PKGVERSION}/include/gc.h
57lib/gauche-0.9/${PKGVERSION}/include/gc.h 57lib/gauche-0.97/${PKGVERSION}/include/gc_allocator.h
58lib/gauche-0.9/${PKGVERSION}/include/gc_allocator.h 58lib/gauche-0.97/${PKGVERSION}/include/gc_config_macros.h
59lib/gauche-0.9/${PKGVERSION}/include/gc_config_macros.h 59lib/gauche-0.97/${PKGVERSION}/include/gc_cpp.h
60lib/gauche-0.9/${PKGVERSION}/include/gc_cpp.h 60lib/gauche-0.97/${PKGVERSION}/include/gc_inline.h
61lib/gauche-0.9/${PKGVERSION}/include/gc_inline.h 61lib/gauche-0.97/${PKGVERSION}/include/gc_mark.h
62lib/gauche-0.9/${PKGVERSION}/include/gc_mark.h 62lib/gauche-0.97/${PKGVERSION}/include/gc_pthread_redirects.h
63lib/gauche-0.9/${PKGVERSION}/include/gc_pthread_redirects.h 63lib/gauche-0.97/${PKGVERSION}/include/gc_tiny_fl.h
64lib/gauche-0.9/${PKGVERSION}/include/gc_tiny_fl.h 64lib/gauche-0.97/${PKGVERSION}/include/gc_typed.h
65lib/gauche-0.9/${PKGVERSION}/include/gc_typed.h 65lib/gauche-0.97/${PKGVERSION}/include/gc_version.h
66lib/gauche-0.9/${PKGVERSION}/include/gc_version.h 66lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/binary--io.so
67lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/binary--io.so 67lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/crypt--bcrypt.so
68lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/crypt--bcrypt.so 68lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/data--queue.so
69lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/data--queue.so 69lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/data--ring-buffer.so
70lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/data--sparse.so 70lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/data--sparse.so
71${PLIST.gdbm}lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/dbm--gdbm.so 71lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/data--trie.so
72lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/dbm--ndbm.so 72${PLIST.gdbm}lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/dbm--gdbm.so
73lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/file--util.so 73lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/dbm--ndbm.so
74lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--charconv.so 74lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/file--util.so
75lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--collection.so 75lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--charconv.so
76lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--dictionary.so 76lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--collection.so
77lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--fcntl.so 77lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--dictionary.so
78lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--generator.so 78lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--fcntl.so
79lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--hook.so 79lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--generator.so
80lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--net.so 80lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--hook.so
81lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--parameter.so 81lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--net.so
82lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--record.so 82lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--parameter.so
83lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--sequence.so 83lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--process.so
84lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--syslog.so 84lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--record.so
85lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--termios.so 85lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--sequence.so
86lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--threads.so 86lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--syslog.so
87lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--unicode.so 87lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--termios.so
88lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--uvector.so 88lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--threads.so
89lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--vport.so 89lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--unicode.so
90lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-cesconv 90lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--uvector.so
91lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-config 91lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--vport.so
92lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-install 92lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-cesconv
93lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-package 93lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-config
94lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gosh 94lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-install
95lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-0.9.so 95lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-package
96lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-0.9.so.0 96lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gosh
97lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-0.9.so.0.6 97lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-0.97.so
98lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-static-0.9.a 98lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-0.97.so.0
99lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/math--mt-random.so 99lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-0.97.so.0.10
100lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/os--windows.so 100lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-static-0.97.a
101lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/parser--peg.so 101lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/math--mt-random.so
102lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--822.so 102lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/os--windows.so
103lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--md5.so 103lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/parser--peg.so
104lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--mime.so 104lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--822.so
105lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--sha.so 105lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--md5.so
106lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--tls--mbed.so 106lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--mime.so
107lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--tls.so 107lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--sha.so
108lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--zlib.so 108lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--tls--mbed.so
109lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-1.so 109lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--tls.so
110lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-13.so 110lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--zlib.so
111lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-133.so 111lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-1.so
112lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-19.so 112lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-13.so
113lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-43.so 113lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-133.so
114lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--serializer.so 114lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-144.so
115lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--ssax.so 115lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-178.so
116lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--sxpath.so 116lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-19.so
117lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--tools.so 117lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-43.so
118lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--gettext.so 118lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--serializer.so
119lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--tr.so 119lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--ssax.so
120lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/util--match.so 120lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--sxpath.so
121lib/libgauche-0.9.so 121lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--tools.so
122lib/libgauche-0.9.so.0 122lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--console.so
123lib/libgauche-0.9.so.0.6 123lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--gap-buffer.so
124lib/libgauche-static-0.9.a 124lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--gettext.so
 125lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--line-edit.so
 126lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--tr.so
 127lib/gauche-0.97/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/util--match.so
 128lib/libgauche-0.97.so
 129lib/libgauche-0.97.so.0
 130lib/libgauche-0.97.so.0.10
 131lib/libgauche-static-0.97.a
125man/man1/gauche-cesconv.1 132man/man1/gauche-cesconv.1
126man/man1/gauche-config.1 133man/man1/gauche-config.1
127man/man1/gauche-install.1 134man/man1/gauche-install.1
128man/man1/gauche-package.1 135man/man1/gauche-package.1
129man/man1/gosh.1 136man/man1/gosh.1
130share/aclocal/gauche.m4 137share/aclocal/gauche.m4
131share/gauche-0.9/${PKGVERSION}/aclocal.m4 138share/gauche-0.97/${PKGVERSION}/aclocal.m4
132share/gauche-0.9/${PKGVERSION}/lib/binary/ftype.scm 139share/gauche-0.97/${PKGVERSION}/lib/binary/ftype.scm
133share/gauche-0.9/${PKGVERSION}/lib/binary/io.scm 140share/gauche-0.97/${PKGVERSION}/lib/binary/io.scm
134share/gauche-0.9/${PKGVERSION}/lib/binary/pack.scm 141share/gauche-0.97/${PKGVERSION}/lib/binary/pack.scm
135share/gauche-0.9/${PKGVERSION}/lib/build-standalone 142share/gauche-0.97/${PKGVERSION}/lib/build-standalone
136share/gauche-0.9/${PKGVERSION}/lib/cesconv 143share/gauche-0.97/${PKGVERSION}/lib/cesconv
137share/gauche-0.9/${PKGVERSION}/lib/check-script 144share/gauche-0.97/${PKGVERSION}/lib/check-script
138share/gauche-0.9/${PKGVERSION}/lib/compat/chibi-test.scm 145share/gauche-0.97/${PKGVERSION}/lib/compat/chibi-test.scm
139share/gauche-0.9/${PKGVERSION}/lib/compat/jfilter.scm 146share/gauche-0.97/${PKGVERSION}/lib/compat/jfilter.scm
140share/gauche-0.9/${PKGVERSION}/lib/compat/norational.scm 147share/gauche-0.97/${PKGVERSION}/lib/compat/norational.scm
141share/gauche-0.9/${PKGVERSION}/lib/compat/r7rs-srfi-tests.scm 148share/gauche-0.97/${PKGVERSION}/lib/compat/r7rs-srfi-tests.scm
142share/gauche-0.9/${PKGVERSION}/lib/compat/stk.scm 149share/gauche-0.97/${PKGVERSION}/lib/compat/stk.scm
143share/gauche-0.9/${PKGVERSION}/lib/control/job.scm 150share/gauche-0.97/${PKGVERSION}/lib/control/job.scm
144share/gauche-0.9/${PKGVERSION}/lib/control/thread-pool.scm 151share/gauche-0.97/${PKGVERSION}/lib/control/mapper.scm
145share/gauche-0.9/${PKGVERSION}/lib/crypt/bcrypt.scm 152share/gauche-0.97/${PKGVERSION}/lib/control/thread-pool.scm
146share/gauche-0.9/${PKGVERSION}/lib/data/cache.scm 153share/gauche-0.97/${PKGVERSION}/lib/crypt/bcrypt.scm
147share/gauche-0.9/${PKGVERSION}/lib/data/heap.scm 154share/gauche-0.97/${PKGVERSION}/lib/data/cache.scm
148share/gauche-0.9/${PKGVERSION}/lib/data/ideque.scm 155share/gauche-0.97/${PKGVERSION}/lib/data/heap.scm
149share/gauche-0.9/${PKGVERSION}/lib/data/imap.scm 156share/gauche-0.97/${PKGVERSION}/lib/data/ideque.scm
150share/gauche-0.9/${PKGVERSION}/lib/data/queue.scm 157share/gauche-0.97/${PKGVERSION}/lib/data/imap.scm
151share/gauche-0.9/${PKGVERSION}/lib/data/random.scm 158share/gauche-0.97/${PKGVERSION}/lib/data/priority-map.scm
152share/gauche-0.9/${PKGVERSION}/lib/data/ring-buffer.scm 159share/gauche-0.97/${PKGVERSION}/lib/data/queue.scm
153share/gauche-0.9/${PKGVERSION}/lib/data/sparse.scm 160share/gauche-0.97/${PKGVERSION}/lib/data/random.scm
154share/gauche-0.9/${PKGVERSION}/lib/data/trie.scm 161share/gauche-0.97/${PKGVERSION}/lib/data/ring-buffer.scm
155share/gauche-0.9/${PKGVERSION}/lib/dbd/null.scm 162share/gauche-0.97/${PKGVERSION}/lib/data/skew-list.scm
156share/gauche-0.9/${PKGVERSION}/lib/dbi.scm 163share/gauche-0.97/${PKGVERSION}/lib/data/sparse.scm
157share/gauche-0.9/${PKGVERSION}/lib/dbm.scm 164share/gauche-0.97/${PKGVERSION}/lib/data/trie.scm
158share/gauche-0.9/${PKGVERSION}/lib/dbm/dump 165share/gauche-0.97/${PKGVERSION}/lib/dbd/null.scm
159share/gauche-0.9/${PKGVERSION}/lib/dbm/fsdbm.scm 166share/gauche-0.97/${PKGVERSION}/lib/dbi.scm
160${PLIST.gdbm}share/gauche-0.9/${PKGVERSION}/lib/dbm/gdbm.scm 167share/gauche-0.97/${PKGVERSION}/lib/dbm.scm
161share/gauche-0.9/${PKGVERSION}/lib/dbm/ndbm.scm 168share/gauche-0.97/${PKGVERSION}/lib/dbm/dump
162share/gauche-0.9/${PKGVERSION}/lib/dbm/restore 169share/gauche-0.97/${PKGVERSION}/lib/dbm/fsdbm.scm
163share/gauche-0.9/${PKGVERSION}/lib/file/filter.scm 170${PLIST.gdbm}share/gauche-0.97/${PKGVERSION}/lib/dbm/gdbm.scm
164share/gauche-0.9/${PKGVERSION}/lib/file/util.scm 171share/gauche-0.97/${PKGVERSION}/lib/dbm/gdbm.scm
165share/gauche-0.9/${PKGVERSION}/lib/gauche/array.scm 172share/gauche-0.97/${PKGVERSION}/lib/dbm/ndbm.scm
166share/gauche-0.9/${PKGVERSION}/lib/gauche/base.scm 173share/gauche-0.97/${PKGVERSION}/lib/dbm/restore
167share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen.scm 174share/gauche-0.97/${PKGVERSION}/lib/file/filter.scm
168share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/cise.scm 175share/gauche-0.97/${PKGVERSION}/lib/file/util.scm
169share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/literal.scm 176share/gauche-0.97/${PKGVERSION}/lib/gauche/array.scm
170share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/optimizer.scm 177share/gauche-0.97/${PKGVERSION}/lib/gauche/base.scm
171share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/precomp.scm 178share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen.scm
172share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/standalone.scm 179share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/cise.scm
173share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/stub.scm 180share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/literal.scm
174share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/tmodule.scm 181share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/optimizer.scm
175share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/type.scm 182share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/precomp.scm
176share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/unit.scm 183share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/standalone.scm
177share/gauche-0.9/${PKGVERSION}/lib/gauche/charconv.scm 184share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/stub.scm
178share/gauche-0.9/${PKGVERSION}/lib/gauche/collection.scm 185share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/tmodule.scm
179share/gauche-0.9/${PKGVERSION}/lib/gauche/common-macros.scm 186share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/type.scm
180share/gauche-0.9/${PKGVERSION}/lib/gauche/computil.scm 187share/gauche-0.97/${PKGVERSION}/lib/gauche/cgen/unit.scm
181share/gauche-0.9/${PKGVERSION}/lib/gauche/condutil.scm 188share/gauche-0.97/${PKGVERSION}/lib/gauche/charconv.scm
182share/gauche-0.9/${PKGVERSION}/lib/gauche/config.scm 189share/gauche-0.97/${PKGVERSION}/lib/gauche/collection.scm
183share/gauche-0.9/${PKGVERSION}/lib/gauche/configure.scm 190share/gauche-0.97/${PKGVERSION}/lib/gauche/common-macros.scm
184share/gauche-0.9/${PKGVERSION}/lib/gauche/defvalues.scm 191share/gauche-0.97/${PKGVERSION}/lib/gauche/computil.scm
185share/gauche-0.9/${PKGVERSION}/lib/gauche/dictionary.scm 192share/gauche-0.97/${PKGVERSION}/lib/gauche/config.scm
186share/gauche-0.9/${PKGVERSION}/lib/gauche/experimental/app.scm 193share/gauche-0.97/${PKGVERSION}/lib/gauche/configure.scm
187share/gauche-0.9/${PKGVERSION}/lib/gauche/experimental/lamb.scm 194share/gauche-0.97/${PKGVERSION}/lib/gauche/connection.scm
188share/gauche-0.9/${PKGVERSION}/lib/gauche/experimental/ref.scm 195share/gauche-0.97/${PKGVERSION}/lib/gauche/dictionary.scm
189share/gauche-0.9/${PKGVERSION}/lib/gauche/fcntl.scm 196share/gauche-0.97/${PKGVERSION}/lib/gauche/experimental/app.scm
190share/gauche-0.9/${PKGVERSION}/lib/gauche/fileutil.scm 197share/gauche-0.97/${PKGVERSION}/lib/gauche/experimental/lamb.scm
191share/gauche-0.9/${PKGVERSION}/lib/gauche/generator.scm 198share/gauche-0.97/${PKGVERSION}/lib/gauche/experimental/ref.scm
192share/gauche-0.9/${PKGVERSION}/lib/gauche/generic-sortutil.scm 199share/gauche-0.97/${PKGVERSION}/lib/gauche/exports.scm
193share/gauche-0.9/${PKGVERSION}/lib/gauche/hashutil.scm 200share/gauche-0.97/${PKGVERSION}/lib/gauche/fcntl.scm
194share/gauche-0.9/${PKGVERSION}/lib/gauche/hook.scm 201share/gauche-0.97/${PKGVERSION}/lib/gauche/fileutil.scm
195share/gauche-0.9/${PKGVERSION}/lib/gauche/interactive.scm 202share/gauche-0.97/${PKGVERSION}/lib/gauche/generator.scm
196share/gauche-0.9/${PKGVERSION}/lib/gauche/interactive/ed.scm 203share/gauche-0.97/${PKGVERSION}/lib/gauche/generic-sortutil.scm
197share/gauche-0.9/${PKGVERSION}/lib/gauche/interactive/editable-reader.scm 204share/gauche-0.97/${PKGVERSION}/lib/gauche/hashutil.scm
198share/gauche-0.9/${PKGVERSION}/lib/gauche/interactive/info.scm 205share/gauche-0.97/${PKGVERSION}/lib/gauche/hook.scm
199share/gauche-0.9/${PKGVERSION}/lib/gauche/interactive/toplevel.scm 206share/gauche-0.97/${PKGVERSION}/lib/gauche/interactive.scm
200share/gauche-0.9/${PKGVERSION}/lib/gauche/interpolate.scm 207share/gauche-0.97/${PKGVERSION}/lib/gauche/interactive/editable-reader.scm
201share/gauche-0.9/${PKGVERSION}/lib/gauche/lazy.scm 208share/gauche-0.97/${PKGVERSION}/lib/gauche/interactive/info.scm
202share/gauche-0.9/${PKGVERSION}/lib/gauche/let-opt.scm 209share/gauche-0.97/${PKGVERSION}/lib/gauche/interactive/init.scm
203share/gauche-0.9/${PKGVERSION}/lib/gauche/libutil.scm 210share/gauche-0.97/${PKGVERSION}/lib/gauche/interactive/toplevel.scm
204share/gauche-0.9/${PKGVERSION}/lib/gauche/listener.scm 211share/gauche-0.97/${PKGVERSION}/lib/gauche/interpolate.scm
205share/gauche-0.9/${PKGVERSION}/lib/gauche/logger.scm 212share/gauche-0.97/${PKGVERSION}/lib/gauche/lazy.scm
206share/gauche-0.9/${PKGVERSION}/lib/gauche/logical.scm 213share/gauche-0.97/${PKGVERSION}/lib/gauche/let-opt.scm
207share/gauche-0.9/${PKGVERSION}/lib/gauche/macroutil.scm 214share/gauche-0.97/${PKGVERSION}/lib/gauche/libutil.scm
208share/gauche-0.9/${PKGVERSION}/lib/gauche/matrix.scm 215share/gauche-0.97/${PKGVERSION}/lib/gauche/listener.scm
209share/gauche-0.9/${PKGVERSION}/lib/gauche/modutil.scm 216share/gauche-0.97/${PKGVERSION}/lib/gauche/logger.scm
210share/gauche-0.9/${PKGVERSION}/lib/gauche/mop/bound-slot.scm 217share/gauche-0.97/${PKGVERSION}/lib/gauche/logical.scm
211share/gauche-0.9/${PKGVERSION}/lib/gauche/mop/instance-pool.scm 218share/gauche-0.97/${PKGVERSION}/lib/gauche/matrix.scm
212share/gauche-0.9/${PKGVERSION}/lib/gauche/mop/propagate.scm 219share/gauche-0.97/${PKGVERSION}/lib/gauche/modutil.scm
213share/gauche-0.9/${PKGVERSION}/lib/gauche/mop/singleton.scm 220share/gauche-0.97/${PKGVERSION}/lib/gauche/mop/bound-slot.scm
214share/gauche-0.9/${PKGVERSION}/lib/gauche/mop/validator.scm 221share/gauche-0.97/${PKGVERSION}/lib/gauche/mop/instance-pool.scm
215share/gauche-0.9/${PKGVERSION}/lib/gauche/net.scm 222share/gauche-0.97/${PKGVERSION}/lib/gauche/mop/propagate.scm
216share/gauche-0.9/${PKGVERSION}/lib/gauche/numerical.scm 223share/gauche-0.97/${PKGVERSION}/lib/gauche/mop/singleton.scm
217share/gauche-0.9/${PKGVERSION}/lib/gauche/package.scm 224share/gauche-0.97/${PKGVERSION}/lib/gauche/mop/validator.scm
218share/gauche-0.9/${PKGVERSION}/lib/gauche/package/build.scm 225share/gauche-0.97/${PKGVERSION}/lib/gauche/net.scm
219share/gauche-0.9/${PKGVERSION}/lib/gauche/package/compile.scm 226share/gauche-0.97/${PKGVERSION}/lib/gauche/numerical.scm
220share/gauche-0.9/${PKGVERSION}/lib/gauche/package/fetch.scm 227share/gauche-0.97/${PKGVERSION}/lib/gauche/package.scm
221share/gauche-0.9/${PKGVERSION}/lib/gauche/package/util.scm 228share/gauche-0.97/${PKGVERSION}/lib/gauche/package/build.scm
222share/gauche-0.9/${PKGVERSION}/lib/gauche/parameter.scm 229share/gauche-0.97/${PKGVERSION}/lib/gauche/package/compile.scm
223share/gauche-0.9/${PKGVERSION}/lib/gauche/parseopt.scm 230share/gauche-0.97/${PKGVERSION}/lib/gauche/package/fetch.scm
224share/gauche-0.9/${PKGVERSION}/lib/gauche/partcont.scm 231share/gauche-0.97/${PKGVERSION}/lib/gauche/package/util.scm
225share/gauche-0.9/${PKGVERSION}/lib/gauche/portutil.scm 232share/gauche-0.97/${PKGVERSION}/lib/gauche/parameter.scm
226share/gauche-0.9/${PKGVERSION}/lib/gauche/pputil.scm 233share/gauche-0.97/${PKGVERSION}/lib/gauche/parseopt.scm
227share/gauche-0.9/${PKGVERSION}/lib/gauche/procedure.scm 234share/gauche-0.97/${PKGVERSION}/lib/gauche/partcont.scm
228share/gauche-0.9/${PKGVERSION}/lib/gauche/process.scm 235share/gauche-0.97/${PKGVERSION}/lib/gauche/portutil.scm
229share/gauche-0.9/${PKGVERSION}/lib/gauche/record.scm 236share/gauche-0.97/${PKGVERSION}/lib/gauche/pputil.scm
230share/gauche-0.9/${PKGVERSION}/lib/gauche/redefutil.scm 237share/gauche-0.97/${PKGVERSION}/lib/gauche/procedure.scm
231share/gauche-0.9/${PKGVERSION}/lib/gauche/regexp.scm 238share/gauche-0.97/${PKGVERSION}/lib/gauche/process.scm
232share/gauche-0.9/${PKGVERSION}/lib/gauche/reload.scm 239share/gauche-0.97/${PKGVERSION}/lib/gauche/record.scm
233share/gauche-0.9/${PKGVERSION}/lib/gauche/selector.scm 240share/gauche-0.97/${PKGVERSION}/lib/gauche/redefutil.scm
234share/gauche-0.9/${PKGVERSION}/lib/gauche/sequence.scm 241share/gauche-0.97/${PKGVERSION}/lib/gauche/regexp.scm
235share/gauche-0.9/${PKGVERSION}/lib/gauche/serializer.scm 242share/gauche-0.97/${PKGVERSION}/lib/gauche/regexp/sre.scm
236share/gauche-0.9/${PKGVERSION}/lib/gauche/serializer/aserializer.scm 243share/gauche-0.97/${PKGVERSION}/lib/gauche/reload.scm
237share/gauche-0.9/${PKGVERSION}/lib/gauche/signal.scm 244share/gauche-0.97/${PKGVERSION}/lib/gauche/selector.scm
238share/gauche-0.9/${PKGVERSION}/lib/gauche/singleton.scm 245share/gauche-0.97/${PKGVERSION}/lib/gauche/sequence.scm
239share/gauche-0.9/${PKGVERSION}/lib/gauche/sortutil.scm 246share/gauche-0.97/${PKGVERSION}/lib/gauche/serializer.scm
240share/gauche-0.9/${PKGVERSION}/lib/gauche/stringutil.scm 247share/gauche-0.97/${PKGVERSION}/lib/gauche/serializer/aserializer.scm
241share/gauche-0.9/${PKGVERSION}/lib/gauche/syslog.scm 248share/gauche-0.97/${PKGVERSION}/lib/gauche/signal.scm
242share/gauche-0.9/${PKGVERSION}/lib/gauche/sysutil.scm 249share/gauche-0.97/${PKGVERSION}/lib/gauche/singleton.scm
243share/gauche-0.9/${PKGVERSION}/lib/gauche/termios.scm 250share/gauche-0.97/${PKGVERSION}/lib/gauche/syslog.scm
244share/gauche-0.9/${PKGVERSION}/lib/gauche/test.scm 251share/gauche-0.97/${PKGVERSION}/lib/gauche/sysutil.scm
245share/gauche-0.9/${PKGVERSION}/lib/gauche/test/generative.scm 252share/gauche-0.97/${PKGVERSION}/lib/gauche/termios.scm
246share/gauche-0.9/${PKGVERSION}/lib/gauche/test/script.scm 253share/gauche-0.97/${PKGVERSION}/lib/gauche/test.scm
247share/gauche-0.9/${PKGVERSION}/lib/gauche/threads.scm 254share/gauche-0.97/${PKGVERSION}/lib/gauche/test/generative.scm
248share/gauche-0.9/${PKGVERSION}/lib/gauche/time.scm 255share/gauche-0.97/${PKGVERSION}/lib/gauche/test/script.scm
249share/gauche-0.9/${PKGVERSION}/lib/gauche/treeutil.scm 256share/gauche-0.97/${PKGVERSION}/lib/gauche/threads.scm
250share/gauche-0.9/${PKGVERSION}/lib/gauche/unicode.scm 257share/gauche-0.97/${PKGVERSION}/lib/gauche/time.scm
251share/gauche-0.9/${PKGVERSION}/lib/gauche/uvector.scm 258share/gauche-0.97/${PKGVERSION}/lib/gauche/treeutil.scm
252share/gauche-0.9/${PKGVERSION}/lib/gauche/validator.scm 259share/gauche-0.97/${PKGVERSION}/lib/gauche/unicode.scm
253share/gauche-0.9/${PKGVERSION}/lib/gauche/vecutil.scm 260share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector.scm
254share/gauche-0.9/${PKGVERSION}/lib/gauche/version.scm 261share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/base.scm
255share/gauche-0.9/${PKGVERSION}/lib/gauche/vm/debugger.scm 262share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/c128.scm
256share/gauche-0.9/${PKGVERSION}/lib/gauche/vm/insn-core.scm 263share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/c32.scm
257share/gauche-0.9/${PKGVERSION}/lib/gauche/vm/insn.scm 264share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/c64.scm
258share/gauche-0.9/${PKGVERSION}/lib/gauche/vm/profiler.scm 265share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/f16.scm
259share/gauche-0.9/${PKGVERSION}/lib/gauche/vport.scm 266share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/f32.scm
260share/gauche-0.9/${PKGVERSION}/lib/gencomp 267share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/f64.scm
261share/gauche-0.9/${PKGVERSION}/lib/genstub 268share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/s16.scm
262share/gauche-0.9/${PKGVERSION}/lib/lang/asm/x86_64.scm 269share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/s32.scm
263share/gauche-0.9/${PKGVERSION}/lib/math/const.scm 270share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/s64.scm
264share/gauche-0.9/${PKGVERSION}/lib/math/mt-random.scm 271share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/s8.scm
265share/gauche-0.9/${PKGVERSION}/lib/math/prime.scm 272share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/u16.scm
266share/gauche-0.9/${PKGVERSION}/lib/os/windows.scm 273share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/u32.scm
267share/gauche-0.9/${PKGVERSION}/lib/os/windows/console/codepage.scm 274share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/u64.scm
268share/gauche-0.9/${PKGVERSION}/lib/parser/peg.scm 275share/gauche-0.97/${PKGVERSION}/lib/gauche/uvector/u8.scm
269share/gauche-0.9/${PKGVERSION}/lib/precomp 276share/gauche-0.97/${PKGVERSION}/lib/gauche/validator.scm
270share/gauche-0.9/${PKGVERSION}/lib/r7rs.scm 277share/gauche-0.97/${PKGVERSION}/lib/gauche/vecutil.scm
271share/gauche-0.9/${PKGVERSION}/lib/rfc/822.scm 278share/gauche-0.97/${PKGVERSION}/lib/gauche/version.scm
272share/gauche-0.9/${PKGVERSION}/lib/rfc/base64.scm 279share/gauche-0.97/${PKGVERSION}/lib/gauche/vm/debugger.scm
273share/gauche-0.9/${PKGVERSION}/lib/rfc/cookie.scm 280share/gauche-0.97/${PKGVERSION}/lib/gauche/vm/insn-core.scm
274share/gauche-0.9/${PKGVERSION}/lib/rfc/ftp.scm 281share/gauche-0.97/${PKGVERSION}/lib/gauche/vm/insn.scm
275share/gauche-0.9/${PKGVERSION}/lib/rfc/hmac.scm 282share/gauche-0.97/${PKGVERSION}/lib/gauche/vm/profiler.scm
276share/gauche-0.9/${PKGVERSION}/lib/rfc/http.scm 283share/gauche-0.97/${PKGVERSION}/lib/gauche/vport.scm
277share/gauche-0.9/${PKGVERSION}/lib/rfc/icmp.scm 284share/gauche-0.97/${PKGVERSION}/lib/gencomp
278share/gauche-0.9/${PKGVERSION}/lib/rfc/ip.scm 285share/gauche-0.97/${PKGVERSION}/lib/genstub
279share/gauche-0.9/${PKGVERSION}/lib/rfc/json.scm 286share/gauche-0.97/${PKGVERSION}/lib/lang/asm/x86_64.scm
280share/gauche-0.9/${PKGVERSION}/lib/rfc/md5.scm 287share/gauche-0.97/${PKGVERSION}/lib/math/const.scm
281share/gauche-0.9/${PKGVERSION}/lib/rfc/mime-port.scm 288share/gauche-0.97/${PKGVERSION}/lib/math/mt-random.scm
282share/gauche-0.9/${PKGVERSION}/lib/rfc/mime.scm 289share/gauche-0.97/${PKGVERSION}/lib/math/prime.scm
283share/gauche-0.9/${PKGVERSION}/lib/rfc/quoted-printable.scm 290share/gauche-0.97/${PKGVERSION}/lib/os/windows.scm
284share/gauche-0.9/${PKGVERSION}/lib/rfc/sha.scm 291share/gauche-0.97/${PKGVERSION}/lib/os/windows/console/codepage.scm
285share/gauche-0.9/${PKGVERSION}/lib/rfc/sha1.scm 292share/gauche-0.97/${PKGVERSION}/lib/parser/peg.scm
286share/gauche-0.9/${PKGVERSION}/lib/rfc/tls.scm 293share/gauche-0.97/${PKGVERSION}/lib/parser/peg/deprecated.scm
287share/gauche-0.9/${PKGVERSION}/lib/rfc/tls/mbed.scm 294share/gauche-0.97/${PKGVERSION}/lib/precomp
288share/gauche-0.9/${PKGVERSION}/lib/rfc/uri.scm 295share/gauche-0.97/${PKGVERSION}/lib/r7rs-setup.scm
289share/gauche-0.9/${PKGVERSION}/lib/rfc/zlib.scm 296share/gauche-0.97/${PKGVERSION}/lib/rfc/822.scm
290share/gauche-0.9/${PKGVERSION}/lib/scheme/base.scm 297share/gauche-0.97/${PKGVERSION}/lib/rfc/base64.scm
291share/gauche-0.9/${PKGVERSION}/lib/scheme/box.scm 298share/gauche-0.97/${PKGVERSION}/lib/rfc/cookie.scm
292share/gauche-0.9/${PKGVERSION}/lib/scheme/case-lambda.scm 299share/gauche-0.97/${PKGVERSION}/lib/rfc/ftp.scm
293share/gauche-0.9/${PKGVERSION}/lib/scheme/char.scm 300share/gauche-0.97/${PKGVERSION}/lib/rfc/hmac.scm
294share/gauche-0.9/${PKGVERSION}/lib/scheme/charset.scm 301share/gauche-0.97/${PKGVERSION}/lib/rfc/http.scm
295share/gauche-0.9/${PKGVERSION}/lib/scheme/comparator.scm 302share/gauche-0.97/${PKGVERSION}/lib/rfc/http/tunnel.scm
296share/gauche-0.9/${PKGVERSION}/lib/scheme/complex.scm 303share/gauche-0.97/${PKGVERSION}/lib/rfc/icmp.scm
297share/gauche-0.9/${PKGVERSION}/lib/scheme/cxr.scm 304share/gauche-0.97/${PKGVERSION}/lib/rfc/ip.scm
298share/gauche-0.9/${PKGVERSION}/lib/scheme/eval.scm 305share/gauche-0.97/${PKGVERSION}/lib/rfc/json.scm
299share/gauche-0.9/${PKGVERSION}/lib/scheme/file.scm 306share/gauche-0.97/${PKGVERSION}/lib/rfc/md5.scm
300share/gauche-0.9/${PKGVERSION}/lib/scheme/generator.scm 307share/gauche-0.97/${PKGVERSION}/lib/rfc/mime-port.scm
301share/gauche-0.9/${PKGVERSION}/lib/scheme/hash-table.scm 308share/gauche-0.97/${PKGVERSION}/lib/rfc/mime.scm
302share/gauche-0.9/${PKGVERSION}/lib/scheme/ideque.scm 309share/gauche-0.97/${PKGVERSION}/lib/rfc/quoted-printable.scm
303share/gauche-0.9/${PKGVERSION}/lib/scheme/inexact.scm 310share/gauche-0.97/${PKGVERSION}/lib/rfc/sha.scm
304share/gauche-0.9/${PKGVERSION}/lib/scheme/lazy.scm 311share/gauche-0.97/${PKGVERSION}/lib/rfc/sha1.scm
305share/gauche-0.9/${PKGVERSION}/lib/scheme/list-queue.scm 312share/gauche-0.97/${PKGVERSION}/lib/rfc/tls.scm
306share/gauche-0.9/${PKGVERSION}/lib/scheme/list.scm 313share/gauche-0.97/${PKGVERSION}/lib/rfc/tls/get-cacert.scm
307share/gauche-0.9/${PKGVERSION}/lib/scheme/load.scm 314share/gauche-0.97/${PKGVERSION}/lib/rfc/tls/mbed.scm
308share/gauche-0.9/${PKGVERSION}/lib/scheme/lseq.scm 315share/gauche-0.97/${PKGVERSION}/lib/rfc/uri.scm
309share/gauche-0.9/${PKGVERSION}/lib/scheme/process-context.scm 316share/gauche-0.97/${PKGVERSION}/lib/rfc/uuid.scm
310share/gauche-0.9/${PKGVERSION}/lib/scheme/r5rs.scm 317share/gauche-0.97/${PKGVERSION}/lib/rfc/zlib.scm
311share/gauche-0.9/${PKGVERSION}/lib/scheme/read.scm 318share/gauche-0.97/${PKGVERSION}/lib/scheme/base.scm
312share/gauche-0.9/${PKGVERSION}/lib/scheme/repl.scm 319share/gauche-0.97/${PKGVERSION}/lib/scheme/bitwise.scm
313share/gauche-0.9/${PKGVERSION}/lib/scheme/set.scm 320share/gauche-0.97/${PKGVERSION}/lib/scheme/box.scm
314share/gauche-0.9/${PKGVERSION}/lib/scheme/sort.scm 321share/gauche-0.97/${PKGVERSION}/lib/scheme/bytevector.scm
315share/gauche-0.9/${PKGVERSION}/lib/scheme/time.scm 322share/gauche-0.97/${PKGVERSION}/lib/scheme/case-lambda.scm
316share/gauche-0.9/${PKGVERSION}/lib/scheme/vector.scm 323share/gauche-0.97/${PKGVERSION}/lib/scheme/char.scm
317share/gauche-0.9/${PKGVERSION}/lib/scheme/write.scm 324share/gauche-0.97/${PKGVERSION}/lib/scheme/charset.scm
318share/gauche-0.9/${PKGVERSION}/lib/slib.scm 325share/gauche-0.97/${PKGVERSION}/lib/scheme/comparator.scm
319share/gauche-0.9/${PKGVERSION}/lib/srfi-0.scm 326share/gauche-0.97/${PKGVERSION}/lib/scheme/complex.scm
320share/gauche-0.9/${PKGVERSION}/lib/srfi-1.scm 327share/gauche-0.97/${PKGVERSION}/lib/scheme/cxr.scm
321share/gauche-0.9/${PKGVERSION}/lib/srfi-106.scm 328share/gauche-0.97/${PKGVERSION}/lib/scheme/division.scm
322share/gauche-0.9/${PKGVERSION}/lib/srfi-11.scm 329share/gauche-0.97/${PKGVERSION}/lib/scheme/ephemeron.scm
323share/gauche-0.9/${PKGVERSION}/lib/srfi-112.scm 330share/gauche-0.97/${PKGVERSION}/lib/scheme/eval.scm
324share/gauche-0.9/${PKGVERSION}/lib/srfi-113.scm 331share/gauche-0.97/${PKGVERSION}/lib/scheme/file.scm
325share/gauche-0.9/${PKGVERSION}/lib/srfi-114.scm 332share/gauche-0.97/${PKGVERSION}/lib/scheme/fixnum.scm
326share/gauche-0.9/${PKGVERSION}/lib/srfi-117.scm 333share/gauche-0.97/${PKGVERSION}/lib/scheme/flonum.scm
327share/gauche-0.9/${PKGVERSION}/lib/srfi-118.scm 334share/gauche-0.97/${PKGVERSION}/lib/scheme/generator.scm
328share/gauche-0.9/${PKGVERSION}/lib/srfi-121.scm 335share/gauche-0.97/${PKGVERSION}/lib/scheme/hash-table.scm
329share/gauche-0.9/${PKGVERSION}/lib/srfi-125.scm 336share/gauche-0.97/${PKGVERSION}/lib/scheme/ideque.scm
330share/gauche-0.9/${PKGVERSION}/lib/srfi-127.scm 337share/gauche-0.97/${PKGVERSION}/lib/scheme/ilist.scm
331share/gauche-0.9/${PKGVERSION}/lib/srfi-128.scm 338share/gauche-0.97/${PKGVERSION}/lib/scheme/inexact.scm
332share/gauche-0.9/${PKGVERSION}/lib/srfi-129.scm 339share/gauche-0.97/${PKGVERSION}/lib/scheme/lazy.scm
333share/gauche-0.9/${PKGVERSION}/lib/srfi-13.scm 340share/gauche-0.97/${PKGVERSION}/lib/scheme/list-queue.scm
334share/gauche-0.9/${PKGVERSION}/lib/srfi-131.scm 341share/gauche-0.97/${PKGVERSION}/lib/scheme/list.scm
335share/gauche-0.9/${PKGVERSION}/lib/srfi-132.scm 342share/gauche-0.97/${PKGVERSION}/lib/scheme/load.scm
336share/gauche-0.9/${PKGVERSION}/lib/srfi-133.scm 343share/gauche-0.97/${PKGVERSION}/lib/scheme/lseq.scm
337share/gauche-0.9/${PKGVERSION}/lib/srfi-134.scm 344share/gauche-0.97/${PKGVERSION}/lib/scheme/mapping.scm
338share/gauche-0.9/${PKGVERSION}/lib/srfi-14.scm 345share/gauche-0.97/${PKGVERSION}/lib/scheme/mapping/hash.scm
339share/gauche-0.9/${PKGVERSION}/lib/srfi-14/query.scm 346share/gauche-0.97/${PKGVERSION}/lib/scheme/process-context.scm
340share/gauche-0.9/${PKGVERSION}/lib/srfi-14/set.scm 347share/gauche-0.97/${PKGVERSION}/lib/scheme/r5rs.scm
341share/gauche-0.9/${PKGVERSION}/lib/srfi-141.scm 348share/gauche-0.97/${PKGVERSION}/lib/scheme/read.scm
342share/gauche-0.9/${PKGVERSION}/lib/srfi-143.scm 349share/gauche-0.97/${PKGVERSION}/lib/scheme/regex.scm
343share/gauche-0.9/${PKGVERSION}/lib/srfi-146.scm 350share/gauche-0.97/${PKGVERSION}/lib/scheme/repl.scm
344share/gauche-0.9/${PKGVERSION}/lib/srfi-146/hash.scm 351share/gauche-0.97/${PKGVERSION}/lib/scheme/rlist.scm
345share/gauche-0.9/${PKGVERSION}/lib/srfi-151.scm 352share/gauche-0.97/${PKGVERSION}/lib/scheme/set.scm
346share/gauche-0.9/${PKGVERSION}/lib/srfi-152.scm 353share/gauche-0.97/${PKGVERSION}/lib/scheme/show.scm
347share/gauche-0.9/${PKGVERSION}/lib/srfi-154.scm 354share/gauche-0.97/${PKGVERSION}/lib/scheme/show/base.scm
348share/gauche-0.9/${PKGVERSION}/lib/srfi-155.scm 355share/gauche-0.97/${PKGVERSION}/lib/scheme/show/color.scm
349share/gauche-0.9/${PKGVERSION}/lib/srfi-158.scm 356share/gauche-0.97/${PKGVERSION}/lib/scheme/show/columnar.scm
350share/gauche-0.9/${PKGVERSION}/lib/srfi-18.scm 357share/gauche-0.97/${PKGVERSION}/lib/scheme/show/unicode.scm
351share/gauche-0.9/${PKGVERSION}/lib/srfi-19.scm 358share/gauche-0.97/${PKGVERSION}/lib/scheme/sort.scm
352share/gauche-0.9/${PKGVERSION}/lib/srfi-25.scm 359share/gauche-0.97/${PKGVERSION}/lib/scheme/stream.scm
353share/gauche-0.9/${PKGVERSION}/lib/srfi-26.scm 360share/gauche-0.97/${PKGVERSION}/lib/scheme/stream/derived.scm
354share/gauche-0.9/${PKGVERSION}/lib/srfi-27.scm 361share/gauche-0.97/${PKGVERSION}/lib/scheme/stream/primitive.scm
355share/gauche-0.9/${PKGVERSION}/lib/srfi-29.scm 362share/gauche-0.97/${PKGVERSION}/lib/scheme/text.scm
356share/gauche-0.9/${PKGVERSION}/lib/srfi-29/bundle.scm 363share/gauche-0.97/${PKGVERSION}/lib/scheme/time.scm
357share/gauche-0.9/${PKGVERSION}/lib/srfi-29/format.scm 364share/gauche-0.97/${PKGVERSION}/lib/scheme/vector.scm
358share/gauche-0.9/${PKGVERSION}/lib/srfi-31.scm 365share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/base.scm
359share/gauche-0.9/${PKGVERSION}/lib/srfi-37.scm 366share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/c128.scm
360share/gauche-0.9/${PKGVERSION}/lib/srfi-39.scm 367share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/c64.scm
361share/gauche-0.9/${PKGVERSION}/lib/srfi-4.scm 368share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/f32.scm
362share/gauche-0.9/${PKGVERSION}/lib/srfi-42.scm 369share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/f64.scm
363share/gauche-0.9/${PKGVERSION}/lib/srfi-43.scm 370share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/s16.scm
364share/gauche-0.9/${PKGVERSION}/lib/srfi-5.scm 371share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/s32.scm
365share/gauche-0.9/${PKGVERSION}/lib/srfi-55.scm 372share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/s64.scm
366share/gauche-0.9/${PKGVERSION}/lib/srfi-60.scm 373share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/s8.scm
367share/gauche-0.9/${PKGVERSION}/lib/srfi-64.scm 374share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/u16.scm
368share/gauche-0.9/${PKGVERSION}/lib/srfi-66.scm 375share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/u32.scm
369share/gauche-0.9/${PKGVERSION}/lib/srfi-69.scm 376share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/u64.scm
370share/gauche-0.9/${PKGVERSION}/lib/srfi-7.scm 377share/gauche-0.97/${PKGVERSION}/lib/scheme/vector/u8.scm
371share/gauche-0.9/${PKGVERSION}/lib/srfi-74.scm 378share/gauche-0.97/${PKGVERSION}/lib/scheme/write.scm
372share/gauche-0.9/${PKGVERSION}/lib/srfi-78.scm 379share/gauche-0.97/${PKGVERSION}/lib/slib.scm
373share/gauche-0.9/${PKGVERSION}/lib/srfi-9.scm 380share/gauche-0.97/${PKGVERSION}/lib/srfi-1.scm
374share/gauche-0.9/${PKGVERSION}/lib/srfi-96.scm 381share/gauche-0.97/${PKGVERSION}/lib/srfi-101.scm
375share/gauche-0.9/${PKGVERSION}/lib/srfi-98.scm 382share/gauche-0.97/${PKGVERSION}/lib/srfi-106.scm
376share/gauche-0.9/${PKGVERSION}/lib/srfi-99.scm 383share/gauche-0.97/${PKGVERSION}/lib/srfi-11.scm
377share/gauche-0.9/${PKGVERSION}/lib/srfi/0.scm 384share/gauche-0.97/${PKGVERSION}/lib/srfi-112.scm
378share/gauche-0.9/${PKGVERSION}/lib/srfi/1.scm 385share/gauche-0.97/${PKGVERSION}/lib/srfi-113.scm
379share/gauche-0.9/${PKGVERSION}/lib/srfi/10.scm 386share/gauche-0.97/${PKGVERSION}/lib/srfi-114.scm
380share/gauche-0.9/${PKGVERSION}/lib/srfi/106.scm 387share/gauche-0.97/${PKGVERSION}/lib/srfi-115.scm
381share/gauche-0.9/${PKGVERSION}/lib/srfi/11.scm 388share/gauche-0.97/${PKGVERSION}/lib/srfi-116.scm
382share/gauche-0.9/${PKGVERSION}/lib/srfi/111.scm 389share/gauche-0.97/${PKGVERSION}/lib/srfi-117.scm
383share/gauche-0.9/${PKGVERSION}/lib/srfi/112.scm 390share/gauche-0.97/${PKGVERSION}/lib/srfi-118.scm
384share/gauche-0.9/${PKGVERSION}/lib/srfi/113.scm 391share/gauche-0.97/${PKGVERSION}/lib/srfi-121.scm
385share/gauche-0.9/${PKGVERSION}/lib/srfi/114.scm 392share/gauche-0.97/${PKGVERSION}/lib/srfi-124.scm
386share/gauche-0.9/${PKGVERSION}/lib/srfi/117.scm 393share/gauche-0.97/${PKGVERSION}/lib/srfi-125.scm
387share/gauche-0.9/${PKGVERSION}/lib/srfi/118.scm 394share/gauche-0.97/${PKGVERSION}/lib/srfi-127.scm
388share/gauche-0.9/${PKGVERSION}/lib/srfi/121.scm 395share/gauche-0.97/${PKGVERSION}/lib/srfi-128.scm
389share/gauche-0.9/${PKGVERSION}/lib/srfi/125.scm 396share/gauche-0.97/${PKGVERSION}/lib/srfi-129.scm
390share/gauche-0.9/${PKGVERSION}/lib/srfi/127.scm 397share/gauche-0.97/${PKGVERSION}/lib/srfi-13.scm
391share/gauche-0.9/${PKGVERSION}/lib/srfi/128.scm 398share/gauche-0.97/${PKGVERSION}/lib/srfi-130.scm
392share/gauche-0.9/${PKGVERSION}/lib/srfi/129.scm 399share/gauche-0.97/${PKGVERSION}/lib/srfi-131.scm
393share/gauche-0.9/${PKGVERSION}/lib/srfi/13.scm 400share/gauche-0.97/${PKGVERSION}/lib/srfi-132.scm
394share/gauche-0.9/${PKGVERSION}/lib/srfi/131.scm 401share/gauche-0.97/${PKGVERSION}/lib/srfi-133.scm
395share/gauche-0.9/${PKGVERSION}/lib/srfi/132.scm 402share/gauche-0.97/${PKGVERSION}/lib/srfi-134.scm
396share/gauche-0.9/${PKGVERSION}/lib/srfi/133.scm 403share/gauche-0.97/${PKGVERSION}/lib/srfi-135.scm
397share/gauche-0.9/${PKGVERSION}/lib/srfi/134.scm 404share/gauche-0.97/${PKGVERSION}/lib/srfi-14.scm
398share/gauche-0.9/${PKGVERSION}/lib/srfi/14.scm 405share/gauche-0.97/${PKGVERSION}/lib/srfi-14/query.scm
399share/gauche-0.9/${PKGVERSION}/lib/srfi/141.scm 406share/gauche-0.97/${PKGVERSION}/lib/srfi-14/set.scm
400share/gauche-0.9/${PKGVERSION}/lib/srfi/143.scm 407share/gauche-0.97/${PKGVERSION}/lib/srfi-141.scm
401share/gauche-0.9/${PKGVERSION}/lib/srfi/145.scm 408share/gauche-0.97/${PKGVERSION}/lib/srfi-143.scm
402share/gauche-0.9/${PKGVERSION}/lib/srfi/146.scm 409share/gauche-0.97/${PKGVERSION}/lib/srfi-144.scm
403share/gauche-0.9/${PKGVERSION}/lib/srfi/149.scm 410share/gauche-0.97/${PKGVERSION}/lib/srfi-146.scm
404share/gauche-0.9/${PKGVERSION}/lib/srfi/151.scm 411share/gauche-0.97/${PKGVERSION}/lib/srfi-146/hash.scm
405share/gauche-0.9/${PKGVERSION}/lib/srfi/152.scm 412share/gauche-0.97/${PKGVERSION}/lib/srfi-151.scm
406share/gauche-0.9/${PKGVERSION}/lib/srfi/158.scm 413share/gauche-0.97/${PKGVERSION}/lib/srfi-152.scm
407share/gauche-0.9/${PKGVERSION}/lib/srfi/16.scm 414share/gauche-0.97/${PKGVERSION}/lib/srfi-154.scm
408share/gauche-0.9/${PKGVERSION}/lib/srfi/17.scm 415share/gauche-0.97/${PKGVERSION}/lib/srfi-155.scm
409share/gauche-0.9/${PKGVERSION}/lib/srfi/18.scm 416share/gauche-0.97/${PKGVERSION}/lib/srfi-158.scm
410share/gauche-0.9/${PKGVERSION}/lib/srfi/19.scm 417share/gauche-0.97/${PKGVERSION}/lib/srfi-159.scm
411share/gauche-0.9/${PKGVERSION}/lib/srfi/2.scm 418share/gauche-0.97/${PKGVERSION}/lib/srfi-159/base.sld
412share/gauche-0.9/${PKGVERSION}/lib/srfi/22.scm 419share/gauche-0.97/${PKGVERSION}/lib/srfi-159/color.scm
413share/gauche-0.9/${PKGVERSION}/lib/srfi/23.scm 420share/gauche-0.97/${PKGVERSION}/lib/srfi-159/color.sld
414share/gauche-0.9/${PKGVERSION}/lib/srfi/25.scm 421share/gauche-0.97/${PKGVERSION}/lib/srfi-159/column.scm
415share/gauche-0.9/${PKGVERSION}/lib/srfi/26.scm 422share/gauche-0.97/${PKGVERSION}/lib/srfi-159/columnar.sld
416share/gauche-0.9/${PKGVERSION}/lib/srfi/27.scm 423share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/base.scm
417share/gauche-0.9/${PKGVERSION}/lib/srfi/28.scm 424share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/base.sld
418share/gauche-0.9/${PKGVERSION}/lib/srfi/29.scm 425share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/monad.scm
419share/gauche-0.9/${PKGVERSION}/lib/srfi/30.scm 426share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/pretty.scm
420share/gauche-0.9/${PKGVERSION}/lib/srfi/31.scm 427share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/pretty.sld
421share/gauche-0.9/${PKGVERSION}/lib/srfi/34.scm 428share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/util.scm
422share/gauche-0.9/${PKGVERSION}/lib/srfi/35.scm 429share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/util.sld
423share/gauche-0.9/${PKGVERSION}/lib/srfi/36.scm 430share/gauche-0.97/${PKGVERSION}/lib/srfi-159/internal/write.scm
424share/gauche-0.9/${PKGVERSION}/lib/srfi/37.scm 431share/gauche-0.97/${PKGVERSION}/lib/srfi-159/unicode.scm
425share/gauche-0.9/${PKGVERSION}/lib/srfi/38.scm 432share/gauche-0.97/${PKGVERSION}/lib/srfi-159/unicode.sld
426share/gauche-0.9/${PKGVERSION}/lib/srfi/39.scm 433share/gauche-0.97/${PKGVERSION}/lib/srfi-160.scm
427share/gauche-0.9/${PKGVERSION}/lib/srfi/4.scm 434share/gauche-0.97/${PKGVERSION}/lib/srfi-162.scm
428share/gauche-0.9/${PKGVERSION}/lib/srfi/40.scm 435share/gauche-0.97/${PKGVERSION}/lib/srfi-170.scm
429share/gauche-0.9/${PKGVERSION}/lib/srfi/42.scm 436share/gauche-0.97/${PKGVERSION}/lib/srfi-173.scm
430share/gauche-0.9/${PKGVERSION}/lib/srfi/43.scm 437share/gauche-0.97/${PKGVERSION}/lib/srfi-174.scm
431share/gauche-0.9/${PKGVERSION}/lib/srfi/45.scm 438share/gauche-0.97/${PKGVERSION}/lib/srfi-175.scm
432share/gauche-0.9/${PKGVERSION}/lib/srfi/46.scm 439share/gauche-0.97/${PKGVERSION}/lib/srfi-176.scm
433share/gauche-0.9/${PKGVERSION}/lib/srfi/5.scm 440share/gauche-0.97/${PKGVERSION}/lib/srfi-178.scm
434share/gauche-0.9/${PKGVERSION}/lib/srfi/55.scm 441share/gauche-0.97/${PKGVERSION}/lib/srfi-18.scm
435share/gauche-0.9/${PKGVERSION}/lib/srfi/6.scm 442share/gauche-0.97/${PKGVERSION}/lib/srfi-180.scm
436share/gauche-0.9/${PKGVERSION}/lib/srfi/60.scm 443share/gauche-0.97/${PKGVERSION}/lib/srfi-181.scm
437share/gauche-0.9/${PKGVERSION}/lib/srfi/61.scm 444share/gauche-0.97/${PKGVERSION}/lib/srfi-185.scm
438share/gauche-0.9/${PKGVERSION}/lib/srfi/62.scm 445share/gauche-0.97/${PKGVERSION}/lib/srfi-189.scm
439share/gauche-0.9/${PKGVERSION}/lib/srfi/64.scm 446share/gauche-0.97/${PKGVERSION}/lib/srfi-19.scm
440share/gauche-0.9/${PKGVERSION}/lib/srfi/66.scm 447share/gauche-0.97/${PKGVERSION}/lib/srfi-192.scm
441share/gauche-0.9/${PKGVERSION}/lib/srfi/69.scm 448share/gauche-0.97/${PKGVERSION}/lib/srfi-193.scm
442share/gauche-0.9/${PKGVERSION}/lib/srfi/7.scm 449share/gauche-0.97/${PKGVERSION}/lib/srfi-198.scm
443share/gauche-0.9/${PKGVERSION}/lib/srfi/74.scm 450share/gauche-0.97/${PKGVERSION}/lib/srfi-25.scm
444share/gauche-0.9/${PKGVERSION}/lib/srfi/78.scm 451share/gauche-0.97/${PKGVERSION}/lib/srfi-27.scm
445share/gauche-0.9/${PKGVERSION}/lib/srfi/8.scm 452share/gauche-0.97/${PKGVERSION}/lib/srfi-29.scm
446share/gauche-0.9/${PKGVERSION}/lib/srfi/87.scm 453share/gauche-0.97/${PKGVERSION}/lib/srfi-29/bundle.scm
447share/gauche-0.9/${PKGVERSION}/lib/srfi/9.scm 454share/gauche-0.97/${PKGVERSION}/lib/srfi-29/format.scm
448share/gauche-0.9/${PKGVERSION}/lib/srfi/95.scm 455share/gauche-0.97/${PKGVERSION}/lib/srfi-37.scm
449share/gauche-0.9/${PKGVERSION}/lib/srfi/96.scm 456share/gauche-0.97/${PKGVERSION}/lib/srfi-39.scm
450share/gauche-0.9/${PKGVERSION}/lib/srfi/98.scm 457share/gauche-0.97/${PKGVERSION}/lib/srfi-4.scm
451share/gauche-0.9/${PKGVERSION}/lib/srfi/99.scm 458share/gauche-0.97/${PKGVERSION}/lib/srfi-41.scm
452share/gauche-0.9/${PKGVERSION}/lib/sxml/adaptor.scm 459share/gauche-0.97/${PKGVERSION}/lib/srfi-42.scm
453share/gauche-0.9/${PKGVERSION}/lib/sxml/serializer.scm 460share/gauche-0.97/${PKGVERSION}/lib/srfi-43.scm
454share/gauche-0.9/${PKGVERSION}/lib/sxml/ssax.scm 461share/gauche-0.97/${PKGVERSION}/lib/srfi-5.scm
455share/gauche-0.9/${PKGVERSION}/lib/sxml/sxpath.scm 462share/gauche-0.97/${PKGVERSION}/lib/srfi-55.scm
456share/gauche-0.9/${PKGVERSION}/lib/sxml/to-html.scm 463share/gauche-0.97/${PKGVERSION}/lib/srfi-60.scm
457share/gauche-0.9/${PKGVERSION}/lib/sxml/tools.scm 464share/gauche-0.97/${PKGVERSION}/lib/srfi-64.scm
458share/gauche-0.9/${PKGVERSION}/lib/sxml/tree-trans.scm 465share/gauche-0.97/${PKGVERSION}/lib/srfi-66.scm
459share/gauche-0.9/${PKGVERSION}/lib/text/console.scm 466share/gauche-0.97/${PKGVERSION}/lib/srfi-69.scm
460share/gauche-0.9/${PKGVERSION}/lib/text/console/generic.scm 467share/gauche-0.97/${PKGVERSION}/lib/srfi-7.scm
461share/gauche-0.9/${PKGVERSION}/lib/text/console/windows.scm 468share/gauche-0.97/${PKGVERSION}/lib/srfi-74.scm
462share/gauche-0.9/${PKGVERSION}/lib/text/csv.scm 469share/gauche-0.97/${PKGVERSION}/lib/srfi-78.scm
463share/gauche-0.9/${PKGVERSION}/lib/text/diff.scm 470share/gauche-0.97/${PKGVERSION}/lib/srfi-9.scm
464share/gauche-0.9/${PKGVERSION}/lib/text/gap-buffer.scm 471share/gauche-0.97/${PKGVERSION}/lib/srfi-96.scm
465share/gauche-0.9/${PKGVERSION}/lib/text/gettext.scm 472share/gauche-0.97/${PKGVERSION}/lib/srfi-98.scm
466share/gauche-0.9/${PKGVERSION}/lib/text/html-lite.scm 473share/gauche-0.97/${PKGVERSION}/lib/srfi-99.scm
467share/gauche-0.9/${PKGVERSION}/lib/text/info.scm 474share/gauche-0.97/${PKGVERSION}/lib/srfi/0.scm
468share/gauche-0.9/${PKGVERSION}/lib/text/line-edit.scm 475share/gauche-0.97/${PKGVERSION}/lib/srfi/1.scm
469share/gauche-0.9/${PKGVERSION}/lib/text/parse.scm 476share/gauche-0.97/${PKGVERSION}/lib/srfi/10.scm
470share/gauche-0.9/${PKGVERSION}/lib/text/progress.scm 477share/gauche-0.97/${PKGVERSION}/lib/srfi/101.scm
471share/gauche-0.9/${PKGVERSION}/lib/text/sql.scm 478share/gauche-0.97/${PKGVERSION}/lib/srfi/106.scm
472share/gauche-0.9/${PKGVERSION}/lib/text/template.scm 479share/gauche-0.97/${PKGVERSION}/lib/srfi/11.scm
473share/gauche-0.9/${PKGVERSION}/lib/text/tr.scm 480share/gauche-0.97/${PKGVERSION}/lib/srfi/111.scm
474share/gauche-0.9/${PKGVERSION}/lib/text/tree.scm 481share/gauche-0.97/${PKGVERSION}/lib/srfi/112.scm
475share/gauche-0.9/${PKGVERSION}/lib/text/unicode.scm 482share/gauche-0.97/${PKGVERSION}/lib/srfi/113.scm
476share/gauche-0.9/${PKGVERSION}/lib/text/unicode/ucd.scm 483share/gauche-0.97/${PKGVERSION}/lib/srfi/114.scm
477share/gauche-0.9/${PKGVERSION}/lib/util/combinations.scm 484share/gauche-0.97/${PKGVERSION}/lib/srfi/115.scm
478share/gauche-0.9/${PKGVERSION}/lib/util/digest.scm 485share/gauche-0.97/${PKGVERSION}/lib/srfi/116.scm
479share/gauche-0.9/${PKGVERSION}/lib/util/dominator.scm 486share/gauche-0.97/${PKGVERSION}/lib/srfi/117.scm
480share/gauche-0.9/${PKGVERSION}/lib/util/isomorph.scm 487share/gauche-0.97/${PKGVERSION}/lib/srfi/118.scm
481share/gauche-0.9/${PKGVERSION}/lib/util/lcs.scm 488share/gauche-0.97/${PKGVERSION}/lib/srfi/121.scm
482share/gauche-0.9/${PKGVERSION}/lib/util/levenshtein.scm 489share/gauche-0.97/${PKGVERSION}/lib/srfi/124.scm
483share/gauche-0.9/${PKGVERSION}/lib/util/list.scm 490share/gauche-0.97/${PKGVERSION}/lib/srfi/125.scm
484share/gauche-0.9/${PKGVERSION}/lib/util/match.scm 491share/gauche-0.97/${PKGVERSION}/lib/srfi/127.scm
485share/gauche-0.9/${PKGVERSION}/lib/util/queue.scm 492share/gauche-0.97/${PKGVERSION}/lib/srfi/128.scm
486share/gauche-0.9/${PKGVERSION}/lib/util/rbtree.scm 493share/gauche-0.97/${PKGVERSION}/lib/srfi/129.scm
487share/gauche-0.9/${PKGVERSION}/lib/util/record.scm 494share/gauche-0.97/${PKGVERSION}/lib/srfi/13.scm
488share/gauche-0.9/${PKGVERSION}/lib/util/relation.scm 495share/gauche-0.97/${PKGVERSION}/lib/srfi/130.scm
489share/gauche-0.9/${PKGVERSION}/lib/util/sparse.scm 496share/gauche-0.97/${PKGVERSION}/lib/srfi/131.scm
490share/gauche-0.9/${PKGVERSION}/lib/util/stream.scm 497share/gauche-0.97/${PKGVERSION}/lib/srfi/132.scm
491share/gauche-0.9/${PKGVERSION}/lib/util/toposort.scm 498share/gauche-0.97/${PKGVERSION}/lib/srfi/133.scm
492share/gauche-0.9/${PKGVERSION}/lib/util/tree.scm 499share/gauche-0.97/${PKGVERSION}/lib/srfi/134.scm
493share/gauche-0.9/${PKGVERSION}/lib/util/trie.scm 500share/gauche-0.97/${PKGVERSION}/lib/srfi/135.scm
494share/gauche-0.9/${PKGVERSION}/lib/util/unification.scm 501share/gauche-0.97/${PKGVERSION}/lib/srfi/14.scm
495share/gauche-0.9/${PKGVERSION}/lib/www/cgi-test.scm 502share/gauche-0.97/${PKGVERSION}/lib/srfi/141.scm
496share/gauche-0.9/${PKGVERSION}/lib/www/cgi.scm 503share/gauche-0.97/${PKGVERSION}/lib/srfi/143.scm
497share/gauche-0.9/${PKGVERSION}/lib/www/cgi/test.scm 504share/gauche-0.97/${PKGVERSION}/lib/srfi/144.scm
498share/gauche-0.9/${PKGVERSION}/lib/www/css.scm 505share/gauche-0.97/${PKGVERSION}/lib/srfi/145.scm
499share/gauche-0.9/${PKGVERSION}/template.Makefile.in 506share/gauche-0.97/${PKGVERSION}/lib/srfi/146.scm
500share/gauche-0.9/${PKGVERSION}/template.configure 507share/gauche-0.97/${PKGVERSION}/lib/srfi/149.scm
501share/gauche-0.9/${PKGVERSION}/template.configure.ac 508share/gauche-0.97/${PKGVERSION}/lib/srfi/151.scm
502share/gauche-0.9/${PKGVERSION}/template.extension.c 509share/gauche-0.97/${PKGVERSION}/lib/srfi/152.scm
503share/gauche-0.9/${PKGVERSION}/template.extension.h 510share/gauche-0.97/${PKGVERSION}/lib/srfi/154.scm
504share/gauche-0.9/${PKGVERSION}/template.extensionlib.stub 511share/gauche-0.97/${PKGVERSION}/lib/srfi/158.scm
505share/gauche-0.9/${PKGVERSION}/template.module.scm 512share/gauche-0.97/${PKGVERSION}/lib/srfi/159.scm
506share/gauche-0.9/${PKGVERSION}/template.package.scm 513share/gauche-0.97/${PKGVERSION}/lib/srfi/159/base.scm
507share/gauche-0.9/${PKGVERSION}/template.test.scm 514share/gauche-0.97/${PKGVERSION}/lib/srfi/159/color.scm
508@pkgdir share/gauche-0.9/site/lib 515share/gauche-0.97/${PKGVERSION}/lib/srfi/159/columnar.scm
509@pkgdir lib/gauche-0.9/site/${MACHINE_GNU_PLATFORM} 516share/gauche-0.97/${PKGVERSION}/lib/srfi/159/unicode.scm
 517share/gauche-0.97/${PKGVERSION}/lib/srfi/16.scm
 518share/gauche-0.97/${PKGVERSION}/lib/srfi/160.scm
 519share/gauche-0.97/${PKGVERSION}/lib/srfi/160/base.scm
 520share/gauche-0.97/${PKGVERSION}/lib/srfi/160/c128.scm
 521share/gauche-0.97/${PKGVERSION}/lib/srfi/160/c64.scm
 522share/gauche-0.97/${PKGVERSION}/lib/srfi/160/f32.scm
 523share/gauche-0.97/${PKGVERSION}/lib/srfi/160/f64.scm
 524share/gauche-0.97/${PKGVERSION}/lib/srfi/160/s16.scm
 525share/gauche-0.97/${PKGVERSION}/lib/srfi/160/s32.scm
 526share/gauche-0.97/${PKGVERSION}/lib/srfi/160/s64.scm
 527share/gauche-0.97/${PKGVERSION}/lib/srfi/160/s8.scm
 528share/gauche-0.97/${PKGVERSION}/lib/srfi/160/u16.scm
 529share/gauche-0.97/${PKGVERSION}/lib/srfi/160/u32.scm
 530share/gauche-0.97/${PKGVERSION}/lib/srfi/160/u64.scm
 531share/gauche-0.97/${PKGVERSION}/lib/srfi/160/u8.scm
 532share/gauche-0.97/${PKGVERSION}/lib/srfi/162.scm
 533share/gauche-0.97/${PKGVERSION}/lib/srfi/17.scm
 534share/gauche-0.97/${PKGVERSION}/lib/srfi/170.scm
 535share/gauche-0.97/${PKGVERSION}/lib/srfi/173.scm
 536share/gauche-0.97/${PKGVERSION}/lib/srfi/174.scm
 537share/gauche-0.97/${PKGVERSION}/lib/srfi/175.scm
 538share/gauche-0.97/${PKGVERSION}/lib/srfi/176.scm
 539share/gauche-0.97/${PKGVERSION}/lib/srfi/178.scm
 540share/gauche-0.97/${PKGVERSION}/lib/srfi/18.scm
 541share/gauche-0.97/${PKGVERSION}/lib/srfi/180.scm
 542share/gauche-0.97/${PKGVERSION}/lib/srfi/181.scm
 543share/gauche-0.97/${PKGVERSION}/lib/srfi/185.scm
 544share/gauche-0.97/${PKGVERSION}/lib/srfi/189.scm
 545share/gauche-0.97/${PKGVERSION}/lib/srfi/19.scm
 546share/gauche-0.97/${PKGVERSION}/lib/srfi/192.scm
 547share/gauche-0.97/${PKGVERSION}/lib/srfi/193.scm
 548share/gauche-0.97/${PKGVERSION}/lib/srfi/195.scm
 549share/gauche-0.97/${PKGVERSION}/lib/srfi/2.scm
 550share/gauche-0.97/${PKGVERSION}/lib/srfi/22.scm
 551share/gauche-0.97/${PKGVERSION}/lib/srfi/23.scm
 552share/gauche-0.97/${PKGVERSION}/lib/srfi/25.scm
 553share/gauche-0.97/${PKGVERSION}/lib/srfi/26.scm
 554share/gauche-0.97/${PKGVERSION}/lib/srfi/27.scm
 555share/gauche-0.97/${PKGVERSION}/lib/srfi/28.scm
 556share/gauche-0.97/${PKGVERSION}/lib/srfi/29.scm
 557share/gauche-0.97/${PKGVERSION}/lib/srfi/30.scm
 558share/gauche-0.97/${PKGVERSION}/lib/srfi/31.scm
 559share/gauche-0.97/${PKGVERSION}/lib/srfi/34.scm
 560share/gauche-0.97/${PKGVERSION}/lib/srfi/35.scm
 561share/gauche-0.97/${PKGVERSION}/lib/srfi/36.scm
 562share/gauche-0.97/${PKGVERSION}/lib/srfi/37.scm
 563share/gauche-0.97/${PKGVERSION}/lib/srfi/38.scm
 564share/gauche-0.97/${PKGVERSION}/lib/srfi/39.scm
 565share/gauche-0.97/${PKGVERSION}/lib/srfi/4.scm
 566share/gauche-0.97/${PKGVERSION}/lib/srfi/40.scm
 567share/gauche-0.97/${PKGVERSION}/lib/srfi/41.scm
 568share/gauche-0.97/${PKGVERSION}/lib/srfi/42.scm
 569share/gauche-0.97/${PKGVERSION}/lib/srfi/43.scm
 570share/gauche-0.97/${PKGVERSION}/lib/srfi/45.scm
 571share/gauche-0.97/${PKGVERSION}/lib/srfi/46.scm
 572share/gauche-0.97/${PKGVERSION}/lib/srfi/5.scm
 573share/gauche-0.97/${PKGVERSION}/lib/srfi/55.scm
 574share/gauche-0.97/${PKGVERSION}/lib/srfi/6.scm
 575share/gauche-0.97/${PKGVERSION}/lib/srfi/60.scm
 576share/gauche-0.97/${PKGVERSION}/lib/srfi/61.scm
 577share/gauche-0.97/${PKGVERSION}/lib/srfi/62.scm
 578share/gauche-0.97/${PKGVERSION}/lib/srfi/64.scm
 579share/gauche-0.97/${PKGVERSION}/lib/srfi/66.scm
 580share/gauche-0.97/${PKGVERSION}/lib/srfi/69.scm
 581share/gauche-0.97/${PKGVERSION}/lib/srfi/7.scm
 582share/gauche-0.97/${PKGVERSION}/lib/srfi/74.scm
 583share/gauche-0.97/${PKGVERSION}/lib/srfi/78.scm
 584share/gauche-0.97/${PKGVERSION}/lib/srfi/8.scm
 585share/gauche-0.97/${PKGVERSION}/lib/srfi/87.scm
 586share/gauche-0.97/${PKGVERSION}/lib/srfi/9.scm
 587share/gauche-0.97/${PKGVERSION}/lib/srfi/95.scm
 588share/gauche-0.97/${PKGVERSION}/lib/srfi/96.scm
 589share/gauche-0.97/${PKGVERSION}/lib/srfi/98.scm
 590share/gauche-0.97/${PKGVERSION}/lib/srfi/99.scm
 591share/gauche-0.97/${PKGVERSION}/lib/sxml/adaptor.scm
 592share/gauche-0.97/${PKGVERSION}/lib/sxml/serializer.scm
 593share/gauche-0.97/${PKGVERSION}/lib/sxml/ssax.scm
 594share/gauche-0.97/${PKGVERSION}/lib/sxml/sxpath.scm
 595share/gauche-0.97/${PKGVERSION}/lib/sxml/to-html.scm
 596share/gauche-0.97/${PKGVERSION}/lib/sxml/tools.scm
 597share/gauche-0.97/${PKGVERSION}/lib/sxml/tree-trans.scm
 598share/gauche-0.97/${PKGVERSION}/lib/text/console.scm
 599share/gauche-0.97/${PKGVERSION}/lib/text/console/framebuffer.scm
 600share/gauche-0.97/${PKGVERSION}/lib/text/console/wide-char-setting.scm
 601share/gauche-0.97/${PKGVERSION}/lib/text/console/windows.scm
 602share/gauche-0.97/${PKGVERSION}/lib/text/csv.scm
 603share/gauche-0.97/${PKGVERSION}/lib/text/diff.scm
 604share/gauche-0.97/${PKGVERSION}/lib/text/edn.scm
 605share/gauche-0.97/${PKGVERSION}/lib/text/external-editor.scm
 606share/gauche-0.97/${PKGVERSION}/lib/text/gap-buffer.scm
 607share/gauche-0.97/${PKGVERSION}/lib/text/gettext.scm
 608share/gauche-0.97/${PKGVERSION}/lib/text/html-lite.scm
 609share/gauche-0.97/${PKGVERSION}/lib/text/info.scm
 610share/gauche-0.97/${PKGVERSION}/lib/text/line-edit.scm
 611share/gauche-0.97/${PKGVERSION}/lib/text/pager.scm
 612share/gauche-0.97/${PKGVERSION}/lib/text/parse.scm
 613share/gauche-0.97/${PKGVERSION}/lib/text/progress.scm
 614share/gauche-0.97/${PKGVERSION}/lib/text/sql.scm
 615share/gauche-0.97/${PKGVERSION}/lib/text/template.scm
 616share/gauche-0.97/${PKGVERSION}/lib/text/tr.scm
 617share/gauche-0.97/${PKGVERSION}/lib/text/tree.scm
 618share/gauche-0.97/${PKGVERSION}/lib/text/unicode.scm
 619share/gauche-0.97/${PKGVERSION}/lib/text/unicode/codeset.scm
 620share/gauche-0.97/${PKGVERSION}/lib/text/unicode/ucd.scm
 621share/gauche-0.97/${PKGVERSION}/lib/util/combinations.scm
 622share/gauche-0.97/${PKGVERSION}/lib/util/digest.scm
 623share/gauche-0.97/${PKGVERSION}/lib/util/dominator.scm
 624share/gauche-0.97/${PKGVERSION}/lib/util/isomorph.scm
 625share/gauche-0.97/${PKGVERSION}/lib/util/lcs.scm
 626share/gauche-0.97/${PKGVERSION}/lib/util/levenshtein.scm
 627share/gauche-0.97/${PKGVERSION}/lib/util/list.scm
 628share/gauche-0.97/${PKGVERSION}/lib/util/match.scm
 629share/gauche-0.97/${PKGVERSION}/lib/util/queue.scm
 630share/gauche-0.97/${PKGVERSION}/lib/util/rbtree.scm
 631share/gauche-0.97/${PKGVERSION}/lib/util/record.scm
 632share/gauche-0.97/${PKGVERSION}/lib/util/relation.scm
 633share/gauche-0.97/${PKGVERSION}/lib/util/sparse.scm
 634share/gauche-0.97/${PKGVERSION}/lib/util/stream.scm
 635share/gauche-0.97/${PKGVERSION}/lib/util/toposort.scm
 636share/gauche-0.97/${PKGVERSION}/lib/util/tree.scm
 637share/gauche-0.97/${PKGVERSION}/lib/util/trie.scm
 638share/gauche-0.97/${PKGVERSION}/lib/util/unification.scm
 639share/gauche-0.97/${PKGVERSION}/lib/www/cgi-test.scm
 640share/gauche-0.97/${PKGVERSION}/lib/www/cgi.scm
 641share/gauche-0.97/${PKGVERSION}/lib/www/cgi/test.scm
 642share/gauche-0.97/${PKGVERSION}/lib/www/css.scm
 643share/gauche-0.97/${PKGVERSION}/package-templates/Makefile-pure-scheme.in
 644share/gauche-0.97/${PKGVERSION}/package-templates/Makefile.in
 645share/gauche-0.97/${PKGVERSION}/package-templates/configure
 646share/gauche-0.97/${PKGVERSION}/package-templates/configure-compat
 647share/gauche-0.97/${PKGVERSION}/package-templates/configure.ac
 648share/gauche-0.97/${PKGVERSION}/package-templates/extension.c
 649share/gauche-0.97/${PKGVERSION}/package-templates/extension.h
 650share/gauche-0.97/${PKGVERSION}/package-templates/extensionlib.stub
 651share/gauche-0.97/${PKGVERSION}/package-templates/module-pure-scheme.scm
 652share/gauche-0.97/${PKGVERSION}/package-templates/module.scm
 653share/gauche-0.97/${PKGVERSION}/package-templates/package.scm
 654share/gauche-0.97/${PKGVERSION}/package-templates/test.scm
 655@pkgdir share/gauche-0.97/site/lib
 656@pkgdir lib/gauche-0.97/site/${MACHINE_GNU_PLATFORM}

cvs diff -r1.39 -r1.40 pkgsrc/lang/gauche/distinfo (expand / switch to unified diff)

--- pkgsrc/lang/gauche/distinfo 2018/07/26 16:55:29 1.39
+++ pkgsrc/lang/gauche/distinfo 2021/07/24 14:50:42 1.40
@@ -1,11 +1,11 @@ @@ -1,11 +1,11 @@
1$NetBSD: distinfo,v 1.39 2018/07/26 16:55:29 jperkin Exp $ 1$NetBSD: distinfo,v 1.40 2021/07/24 14:50:42 yhardy Exp $
2 2
3SHA1 (Gauche-0.9.6.tgz) = 20f2a0a4b37c40ce0175e627d5767b32d8f4eb5d 3SHA1 (Gauche-0.9.10.tgz) = a1a35944db9b71d9117cf0d9f7806aa34711b636
4RMD160 (Gauche-0.9.6.tgz) = 36d77c87881978c408daf7958bc41048aa4b2edd 4RMD160 (Gauche-0.9.10.tgz) = 0b21bea6aead08b4274605f7fa0ac6ae9efd2f87
5SHA512 (Gauche-0.9.6.tgz) = 1d8a7f56fd9ca183d6dce1dedadfaec7c7150c29540e5158f2a61977f7406d7d7a8ab753ef1912865a7d7e9a9e2fa845d86b2eb4c5e07a176f1c60276bc1908f 5SHA512 (Gauche-0.9.10.tgz) = f014ec00903fc91b90da8dbdaace04a64d12695c631e923d5cdca3574aaf6701374f5adbed20c395881b047bb5a448352614d4ce7f16b6e38f69382bf8e66ed0
6Size (Gauche-0.9.6.tgz) = 6927530 bytes 6Size (Gauche-0.9.10.tgz) = 7701616 bytes
7SHA1 (patch-aa) = 41f2160ffdb8ad66e77d9d30950e820dd07b18a8 7SHA1 (patch-aa) = 41f2160ffdb8ad66e77d9d30950e820dd07b18a8
8SHA1 (patch-af) = 0962445f5eab8d788283455f60386aa1cfd70230 8SHA1 (patch-af) = 0962445f5eab8d788283455f60386aa1cfd70230
9SHA1 (patch-ag) = 524048e151225dc73d00c31623be25e84206920a 9SHA1 (patch-ag) = 524048e151225dc73d00c31623be25e84206920a
10SHA1 (patch-ext_tls_axTLS_ssl_os__port.h) = 347babc3449082d01e6905a3f6a6016ba3b55652 10SHA1 (patch-ext_tls_axTLS_ssl_os__port.h) = 347babc3449082d01e6905a3f6a6016ba3b55652
11SHA1 (patch-ext_zlib_Makefile.in) = 29fab7f300a880d1509fa144ec15612289445a96 11SHA1 (patch-ext_zlib_Makefile.in) = 29fab7f300a880d1509fa144ec15612289445a96