Thu Dec 16 03:42:09 2010 UTC ()
Update to Gauche 0.9.1

New in Gauche 0.9.1: Major Feature Enhancements

+ New Features
  o Extended formals: Built-in lambda, define etc. can
    recognize optional and keyword arguments, a la Common Lisp.
  o Enhanced module mechanism: Now you can rename, choose,
    or add prefix to the symbols when importing other modules.
  o Efficient record types: A new module gauche.record provides
    ERR5RS (srfi-99) compatible record types. It is also upper
    compatible to srfi-9 records.
  o More support for multithreaded applications: Thread-safe
    queue is added to util.queue, and thread-pool feature is
    provided by the new module control.thread-pool.
    Continuations can be passed between threads.
  o Partial continuations.
  o Enhanced Windows support.
  o New module: crypt.bcrypt: A module for Blowfish password hashing.
  o New module: srfi-98: portable environment variable lookup support.
  o New module: gauche.mop.propagate: Making object composition simpler.
  o New module: rfc.json: JSON parsing and construction.
+ Changes
  o The directory structure for Gauche installation has changed so
    that we can keep binary compatibility for the extension
    modules throughout 0.9.x releases.
  o Now it is an error to pass a keyword argument that isn't
    expected by the callee. It used to be a warning.
  o Regular expression re{,M} now means the same as re{0,M},
    which is compatible to Oniguruma.
+ Improvements
  o The compiler and the runtime got optimized more.
    The compiler now knows more about built-in procedures, and tries
    compile-time constant folding and/or inlining more aggressively.
    For example, sxml.ssax can parse XML document a lot faster.
  o ^ can be used in place of lambda, allowing more concise code.
    There's also convenience macros ^a, ^b, ... ^z and ^_ as
    abbreviations of lambda (a) etc.
  o ~ is added for universal accessing operator. (~ x y) is the same
    as (ref x y), and (~ x y z) is the same as (ref (ref x y) z),
    and so on. It can be used with generalized setter, e.g.
    (set! (~ array i) x).
  o define-syntax, let-syntax, and letrec-syntax are enhanced so that
    they can take a general expression in rhs, as far as it yields
    a syntactic transformer.
  o gauche.process: I/O redirection handling in run-process becomes
    more flexible.
  o rfc.http module now supports https connection (unix platforms only).
    Currently it relies on an external program (stunnel).
  o A new procedure current-load-path allows the program to know
    the file name it is being loaded from.
  o A new procedure .$ is introduced as an alternative name of compose.
  o Regular expressions now got read-write invariance. Some internal
    regexp routines are made public, giving users an easy way
    to construct and analyze regexp programatically.
  o rfc.822: New procedure: rfc822-date->date.
  o file.util: The procedure temporary-directory now became a parameter
    so that you can switch it when necessary. The default value is taken
    from (sys-tmpdir), which determines temporary directory in the
    recommended way of the platform; esp., it works on Windows native
    platforms. home-directory works on Windows, too.
    Procedures null-device and console-device are added to make it easier
    to write portable script across Unix and Windows platforms.
  o util.queue: New proceduers: any-in-queue, every-in-queue.
  o gauche.parseopt: When let-args encounters a command-line option
    that doesn't match any spec, it now raises a condition of type
    <parseopt-error> instead of <error>. The application can capture
    the condition to handle invalid command-line arguments.
  o gauche.uvector: New procedure uvector-size to obtain number of octets
    actually to be written out when the given uvector is written out
    by write-block.
  o dbm: A new procedure dbm-type->class allows an application to load
    appropriate dbm implementation at runtime. Utility scripts dbm/dump
    and dbm/restore are provided for easier backup and migration.
  o Procedure slot-pop! is added for the consistency with other
    *-push!/pop! API pairs.
  o When ref is used for object slot access, it can take default value
    in case the slot is unbound.
  o Made (set! (ref list k) value) work.
  o New procedures delete-keywords, delete-keywords!, tree-map-map,
    tree-map-for-each.
  o unwind-protect allows multiple handlers, as in CL.
  o sqrt now returns an exact number if the argument is exact and
    the result can be computed exactly. Also, R6RS's exact-integer-sqrt
    is added.
  o gauche.parameter: Parameters can be used with generalized set!.
  o The default-endian parameter is moved from binary.io module
    to the core, so that this parameter controls default endian
    of binary I/O in general. For example, read-block! and write-block
    of the gauche.uvector module now uses the value of this parameter
    as the default. A new procedure native-endian is added to retrieve
    the platform's native endianness.
  o More R6RS procedures: inexact, exact, real-valued?, rational-valued?,
    integer-valued?, div, mod, div0, mod0.

A number of bug fixes.


(asau)
diff -r1.54 -r1.55 pkgsrc/lang/gauche/Makefile
diff -r1.23 -r1.24 pkgsrc/lang/gauche/PLIST
diff -r1.26 -r1.27 pkgsrc/lang/gauche/distinfo
diff -r1.10 -r1.11 pkgsrc/lang/gauche/patches/patch-aa
diff -r1.9 -r0 pkgsrc/lang/gauche/patches/patch-ab
diff -r1.7 -r0 pkgsrc/lang/gauche/patches/patch-ah

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

--- pkgsrc/lang/gauche/Makefile 2010/02/25 19:07:53 1.54
+++ pkgsrc/lang/gauche/Makefile 2010/12/16 03:42:08 1.55
@@ -1,19 +1,18 @@ @@ -1,19 +1,18 @@
1# $NetBSD: Makefile,v 1.54 2010/02/25 19:07:53 joerg Exp $ 1# $NetBSD: Makefile,v 1.55 2010/12/16 03:42:08 asau Exp $
2# 2#
3 3
4DISTNAME= Gauche-0.9 4DISTNAME= Gauche-0.9.1
5CATEGORIES= lang 5CATEGORIES= lang
6#PKGREVISION= 1 
7MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gauche/} 6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gauche/}
8EXTRACT_SUFX= .tgz 7EXTRACT_SUFX= .tgz
9 8
10MAINTAINER= uebayasi@NetBSD.org, minoura@NetBSD.org 9MAINTAINER= uebayasi@NetBSD.org, minoura@NetBSD.org
11HOMEPAGE= http://www.shiro.dreamhost.com/scheme/gauche/index.html 10HOMEPAGE= http://www.shiro.dreamhost.com/scheme/gauche/index.html
12COMMENT= R5RS Scheme implementation aimed to be a handy tool for daily works 11COMMENT= R5RS Scheme implementation aimed to be a handy tool for daily works
13 12
14DEPENDS+= slib-[0-9]*:../../devel/slib 13DEPENDS+= slib-[0-9]*:../../devel/slib
15 14
16PKG_DESTDIR_SUPPORT= user-destdir 15PKG_DESTDIR_SUPPORT= user-destdir
17NOT_FOR_BULK_PLATFORM= HPUX-*-* 16NOT_FOR_BULK_PLATFORM= HPUX-*-*
18 17
19.include "options.mk" 18.include "options.mk"

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

--- pkgsrc/lang/gauche/PLIST 2010/02/20 13:51:12 1.23
+++ pkgsrc/lang/gauche/PLIST 2010/12/16 03:42:09 1.24
@@ -1,291 +1,309 @@ @@ -1,291 +1,309 @@
1@comment $NetBSD: PLIST,v 1.23 2010/02/20 13:51:12 obache Exp $ 1@comment $NetBSD: PLIST,v 1.24 2010/12/16 03:42:09 asau 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/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/binary--io.so 9lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/binary--io.so
10${PLIST.gdbm}lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/dbm--gdbm.so 10lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/crypt--bcrypt.so
11lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/dbm--ndbm.so 11${PLIST.gdbm}lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/dbm--gdbm.so
12lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/file--util.so 12lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/dbm--ndbm.so
13lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--auxsys.so 13lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/file--util.so
14lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--charconv.so 14lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--auxsys.so
15lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--collection.so 15lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--charconv.so
16lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--fcntl.so 16lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--collection.so
17lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--hook.so 17lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--fcntl.so
18lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--net.so 18lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--hook.so
19lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--parameter.so 19lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--net.so
20lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--sequence.so 20lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--parameter.so
21lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--syslog.so 21lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--sequence.so
22lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--termios.so 22lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--syslog.so
23lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--threads.so 23lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--termios.so
24lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--vport.so 24lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--threads.so
25lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-cesconv 25lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche--vport.so
26lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-config 26lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-cesconv
27lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-install 27lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-config
28lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-package 28lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-install
29lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gosh 29lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gauche-package
30lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-uvector.so 30lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/gosh
31lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche.so 31lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-0.9.so
32lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/math--mt-random.so 32lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/libgauche-uvector.so
33lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--md5.so 33lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/math--mt-random.so
34lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--sha.so 34lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/os--windows.so
35lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--zlib.so 35lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/parser--peg.so
36lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-1.so 36lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--md5.so
37lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-13.so 37lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--sha.so
38lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-19.so 38lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/rfc--zlib.so
39lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-43.so 39lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-1.so
40lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--serializer.so 40lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-13.so
41lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--ssax.so 41lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-19.so
42lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--sxpath.so 42lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/srfi-43.so
43lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--tools.so 43lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--serializer.so
44lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--gettext.so 44lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--ssax.so
45lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--tr.so 45lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--sxpath.so
46lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/util--match.so 46lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/sxml--tools.so
47lib/gauche/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/util--sparse.so 47lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--gettext.so
48lib/gauche/${PKGVERSION}/include/gauche.h 48lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/text--tr.so
49lib/gauche/${PKGVERSION}/include/gauche/arch.h 49lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/util--match.so
50lib/gauche/${PKGVERSION}/include/gauche/bignum.h 50lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/util--queue.so
51lib/gauche/${PKGVERSION}/include/gauche/bits.h 51lib/gauche-0.9/${PKGVERSION}/${MACHINE_GNU_PLATFORM}/util--sparse.so
52lib/gauche/${PKGVERSION}/include/gauche/bits_inline.h 52lib/gauche-0.9/${PKGVERSION}/include/gauche.h
53lib/gauche/${PKGVERSION}/include/gauche/builtin-syms.h 53lib/gauche-0.9/${PKGVERSION}/include/gauche/arch.h
54lib/gauche/${PKGVERSION}/include/gauche/char_euc_jp.h 54lib/gauche-0.9/${PKGVERSION}/include/gauche/bignum.h
55lib/gauche/${PKGVERSION}/include/gauche/char_none.h 55lib/gauche-0.9/${PKGVERSION}/include/gauche/bits.h
56lib/gauche/${PKGVERSION}/include/gauche/char_sjis.h 56lib/gauche-0.9/${PKGVERSION}/include/gauche/bits_inline.h
57lib/gauche/${PKGVERSION}/include/gauche/char_utf_8.h 57lib/gauche-0.9/${PKGVERSION}/include/gauche/builtin-syms.h
58lib/gauche/${PKGVERSION}/include/gauche/charset.h 58lib/gauche-0.9/${PKGVERSION}/include/gauche/bytes_inline.h
59lib/gauche/${PKGVERSION}/include/gauche/class.h 59lib/gauche-0.9/${PKGVERSION}/include/gauche/char_euc_jp.h
60lib/gauche/${PKGVERSION}/include/gauche/code.h 60lib/gauche-0.9/${PKGVERSION}/include/gauche/char_none.h
61lib/gauche/${PKGVERSION}/include/gauche/collection.h 61lib/gauche-0.9/${PKGVERSION}/include/gauche/char_sjis.h
62lib/gauche/${PKGVERSION}/include/gauche/config.h 62lib/gauche-0.9/${PKGVERSION}/include/gauche/char_utf_8.h
63lib/gauche/${PKGVERSION}/include/gauche/exception.h 63lib/gauche-0.9/${PKGVERSION}/include/gauche/charset.h
64lib/gauche/${PKGVERSION}/include/gauche/extend.h 64lib/gauche-0.9/${PKGVERSION}/include/gauche/class.h
65lib/gauche/${PKGVERSION}/include/gauche/extern.h 65lib/gauche-0.9/${PKGVERSION}/include/gauche/code.h
66lib/gauche/${PKGVERSION}/include/gauche/float.h 66lib/gauche-0.9/${PKGVERSION}/include/gauche/collection.h
67lib/gauche/${PKGVERSION}/include/gauche/gloc.h 67lib/gauche-0.9/${PKGVERSION}/include/gauche/config.h
68lib/gauche/${PKGVERSION}/include/gauche/hash.h 68lib/gauche-0.9/${PKGVERSION}/include/gauche/exception.h
69lib/gauche/${PKGVERSION}/include/gauche/int64.h 69lib/gauche-0.9/${PKGVERSION}/include/gauche/extend.h
70lib/gauche/${PKGVERSION}/include/gauche/keyword.h 70lib/gauche-0.9/${PKGVERSION}/include/gauche/extern.h
71lib/gauche/${PKGVERSION}/include/gauche/load.h 71lib/gauche-0.9/${PKGVERSION}/include/gauche/float.h
72lib/gauche/${PKGVERSION}/include/gauche/macro.h 72lib/gauche-0.9/${PKGVERSION}/include/gauche/gloc.h
73lib/gauche/${PKGVERSION}/include/gauche/module.h 73lib/gauche-0.9/${PKGVERSION}/include/gauche/hash.h
74lib/gauche/${PKGVERSION}/include/gauche/number.h 74lib/gauche-0.9/${PKGVERSION}/include/gauche/int64.h
75lib/gauche/${PKGVERSION}/include/gauche/parameter.h 75lib/gauche-0.9/${PKGVERSION}/include/gauche/keyword.h
76lib/gauche/${PKGVERSION}/include/gauche/paths.h 76lib/gauche-0.9/${PKGVERSION}/include/gauche/load.h
77lib/gauche/${PKGVERSION}/include/gauche/port.h 77lib/gauche-0.9/${PKGVERSION}/include/gauche/macro.h
78lib/gauche/${PKGVERSION}/include/gauche/prof.h 78lib/gauche-0.9/${PKGVERSION}/include/gauche/module.h
79lib/gauche/${PKGVERSION}/include/gauche/pthread.h 79lib/gauche-0.9/${PKGVERSION}/include/gauche/number.h
80lib/gauche/${PKGVERSION}/include/gauche/reader.h 80lib/gauche-0.9/${PKGVERSION}/include/gauche/parameter.h
81lib/gauche/${PKGVERSION}/include/gauche/regexp.h 81lib/gauche-0.9/${PKGVERSION}/include/gauche/paths.h
82lib/gauche/${PKGVERSION}/include/gauche/scmconst.h 82lib/gauche-0.9/${PKGVERSION}/include/gauche/port.h
83lib/gauche/${PKGVERSION}/include/gauche/string.h 83lib/gauche-0.9/${PKGVERSION}/include/gauche/prof.h
84lib/gauche/${PKGVERSION}/include/gauche/symbol.h 84lib/gauche-0.9/${PKGVERSION}/include/gauche/pthread.h
85lib/gauche/${PKGVERSION}/include/gauche/system.h 85lib/gauche-0.9/${PKGVERSION}/include/gauche/reader.h
86lib/gauche/${PKGVERSION}/include/gauche/treemap.h 86lib/gauche-0.9/${PKGVERSION}/include/gauche/regexp.h
87lib/gauche/${PKGVERSION}/include/gauche/uthread.h 87lib/gauche-0.9/${PKGVERSION}/include/gauche/scmconst.h
88lib/gauche/${PKGVERSION}/include/gauche/uvector.h 88lib/gauche-0.9/${PKGVERSION}/include/gauche/string.h
89lib/gauche/${PKGVERSION}/include/gauche/vector.h 89lib/gauche-0.9/${PKGVERSION}/include/gauche/symbol.h
90lib/gauche/${PKGVERSION}/include/gauche/vm.h 90lib/gauche-0.9/${PKGVERSION}/include/gauche/system.h
91lib/gauche/${PKGVERSION}/include/gauche/vminsn.h 91lib/gauche-0.9/${PKGVERSION}/include/gauche/treemap.h
92lib/gauche/${PKGVERSION}/include/gauche/weak.h 92lib/gauche-0.9/${PKGVERSION}/include/gauche/uthread.h
93lib/gauche/${PKGVERSION}/include/gauche/win-compat.h 93lib/gauche-0.9/${PKGVERSION}/include/gauche/uvector.h
94lib/gauche/${PKGVERSION}/include/gc.h 94lib/gauche-0.9/${PKGVERSION}/include/gauche/vector.h
95lib/gauche/${PKGVERSION}/include/gc_allocator.h 95lib/gauche-0.9/${PKGVERSION}/include/gauche/vm.h
96lib/gauche/${PKGVERSION}/include/gc_config_macros.h 96lib/gauche-0.9/${PKGVERSION}/include/gauche/vminsn.h
97lib/gauche/${PKGVERSION}/include/gc_cpp.h 97lib/gauche-0.9/${PKGVERSION}/include/gauche/weak.h
98lib/gauche/${PKGVERSION}/include/gc_inline.h 98lib/gauche-0.9/${PKGVERSION}/include/gauche/win-compat.h
99lib/gauche/${PKGVERSION}/include/gc_mark.h 99lib/gauche-0.9/${PKGVERSION}/include/gc.h
100lib/gauche/${PKGVERSION}/include/gc_pthread_redirects.h 100lib/gauche-0.9/${PKGVERSION}/include/gc_allocator.h
101lib/gauche/${PKGVERSION}/include/gc_tiny_fl.h 101lib/gauche-0.9/${PKGVERSION}/include/gc_config_macros.h
102lib/gauche/${PKGVERSION}/include/gc_typed.h 102lib/gauche-0.9/${PKGVERSION}/include/gc_cpp.h
103lib/gauche/${PKGVERSION}/include/gc_version.h 103lib/gauche-0.9/${PKGVERSION}/include/gc_inline.h
104lib/libgauche.so 104lib/gauche-0.9/${PKGVERSION}/include/gc_mark.h
105lib/libgauche.so.0 105lib/gauche-0.9/${PKGVERSION}/include/gc_pthread_redirects.h
106lib/libgauche.so.${PKGVERSION}.0 106lib/gauche-0.9/${PKGVERSION}/include/gc_tiny_fl.h
 107lib/gauche-0.9/${PKGVERSION}/include/gc_typed.h
 108lib/gauche-0.9/${PKGVERSION}/include/gc_version.h
 109lib/libgauche-0.9.so
 110lib/libgauche-0.9.so.0
 111lib/libgauche-0.9.so.0.1
 112man/man1/gauche-cesconv.1
107man/man1/gauche-config.1 113man/man1/gauche-config.1
 114man/man1/gauche-install.1
 115man/man1/gauche-package.1
108man/man1/gosh.1 116man/man1/gosh.1
109share/aclocal/gauche.m4 117share/aclocal/gauche.m4
110share/gauche/${PKGVERSION}/aclocal.m4 118share/gauche-0.9/${PKGVERSION}/aclocal.m4
111share/gauche/${PKGVERSION}/lib/binary/io.scm 119share/gauche-0.9/${PKGVERSION}/lib/binary/io.scm
112share/gauche/${PKGVERSION}/lib/binary/pack.scm 120share/gauche-0.9/${PKGVERSION}/lib/binary/pack.scm
113share/gauche/${PKGVERSION}/lib/cesconv 121share/gauche-0.9/${PKGVERSION}/lib/cesconv
114share/gauche/${PKGVERSION}/lib/compat/jfilter.scm 122share/gauche-0.9/${PKGVERSION}/lib/compat/jfilter.scm
115share/gauche/${PKGVERSION}/lib/compat/norational.scm 123share/gauche-0.9/${PKGVERSION}/lib/compat/norational.scm
116share/gauche/${PKGVERSION}/lib/compat/stk.scm 124share/gauche-0.9/${PKGVERSION}/lib/compat/stk.scm
117share/gauche/${PKGVERSION}/lib/dbd/null.scm 125share/gauche-0.9/${PKGVERSION}/lib/control/job.scm
118share/gauche/${PKGVERSION}/lib/dbi.scm 126share/gauche-0.9/${PKGVERSION}/lib/control/thread-pool.scm
119share/gauche/${PKGVERSION}/lib/dbm.scm 127share/gauche-0.9/${PKGVERSION}/lib/crypt/bcrypt.scm
120share/gauche/${PKGVERSION}/lib/dbm/fsdbm.scm 128share/gauche-0.9/${PKGVERSION}/lib/dbd/null.scm
121${PLIST.gdbm}share/gauche/${PKGVERSION}/lib/dbm/gdbm.scm 129share/gauche-0.9/${PKGVERSION}/lib/dbi.scm
122share/gauche/${PKGVERSION}/lib/dbm/ndbm.scm 130share/gauche-0.9/${PKGVERSION}/lib/dbm.scm
123share/gauche/${PKGVERSION}/lib/file/filter.scm 131share/gauche-0.9/${PKGVERSION}/lib/dbm/dump
124share/gauche/${PKGVERSION}/lib/file/util.scm 132share/gauche-0.9/${PKGVERSION}/lib/dbm/fsdbm.scm
125share/gauche/${PKGVERSION}/lib/gauche-init.scm 133${PLIST.gdbm}share/gauche-0.9/${PKGVERSION}/lib/dbm/gdbm.scm
126share/gauche/${PKGVERSION}/lib/gauche/array.scm 134share/gauche-0.9/${PKGVERSION}/lib/dbm/ndbm.scm
127share/gauche/${PKGVERSION}/lib/gauche/auxsys.scm 135share/gauche-0.9/${PKGVERSION}/lib/dbm/restore
128share/gauche/${PKGVERSION}/lib/gauche/cgen.scm 136share/gauche-0.9/${PKGVERSION}/lib/file/filter.scm
129share/gauche/${PKGVERSION}/lib/gauche/cgen/cise.scm 137share/gauche-0.9/${PKGVERSION}/lib/file/util.scm
130share/gauche/${PKGVERSION}/lib/gauche/cgen/literal-uv.scm 138share/gauche-0.9/${PKGVERSION}/lib/gauche-init.scm
131share/gauche/${PKGVERSION}/lib/gauche/cgen/literal.scm 139share/gauche-0.9/${PKGVERSION}/lib/gauche/array.scm
132share/gauche/${PKGVERSION}/lib/gauche/cgen/precomp.scm 140share/gauche-0.9/${PKGVERSION}/lib/gauche/auxsys.scm
133share/gauche/${PKGVERSION}/lib/gauche/cgen/stub.scm 141share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen.scm
134share/gauche/${PKGVERSION}/lib/gauche/cgen/type.scm 142share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/cise.scm
135share/gauche/${PKGVERSION}/lib/gauche/cgen/unit.scm 143share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/literal.scm
136share/gauche/${PKGVERSION}/lib/gauche/charconv.scm 144share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/precomp.scm
137share/gauche/${PKGVERSION}/lib/gauche/collection.scm 145share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/stub.scm
138share/gauche/${PKGVERSION}/lib/gauche/common-macros.scm 146share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/type.scm
139share/gauche/${PKGVERSION}/lib/gauche/condutil.scm 147share/gauche-0.9/${PKGVERSION}/lib/gauche/cgen/unit.scm
140share/gauche/${PKGVERSION}/lib/gauche/config.scm 148share/gauche-0.9/${PKGVERSION}/lib/gauche/charconv.scm
141share/gauche/${PKGVERSION}/lib/gauche/defvalues.scm 149share/gauche-0.9/${PKGVERSION}/lib/gauche/collection.scm
142share/gauche/${PKGVERSION}/lib/gauche/dictionary.scm 150share/gauche-0.9/${PKGVERSION}/lib/gauche/common-macros.scm
143share/gauche/${PKGVERSION}/lib/gauche/experimental/app.scm 151share/gauche-0.9/${PKGVERSION}/lib/gauche/condutil.scm
144share/gauche/${PKGVERSION}/lib/gauche/experimental/lamb.scm 152share/gauche-0.9/${PKGVERSION}/lib/gauche/config.scm
145share/gauche/${PKGVERSION}/lib/gauche/experimental/ref.scm 153share/gauche-0.9/${PKGVERSION}/lib/gauche/defvalues.scm
146share/gauche/${PKGVERSION}/lib/gauche/fcntl.scm 154share/gauche-0.9/${PKGVERSION}/lib/gauche/dictionary.scm
147share/gauche/${PKGVERSION}/lib/gauche/fileutil.scm 155share/gauche-0.9/${PKGVERSION}/lib/gauche/experimental/app.scm
148share/gauche/${PKGVERSION}/lib/gauche/hashutil.scm 156share/gauche-0.9/${PKGVERSION}/lib/gauche/experimental/lamb.scm
149share/gauche/${PKGVERSION}/lib/gauche/hook.scm 157share/gauche-0.9/${PKGVERSION}/lib/gauche/experimental/ref.scm
150share/gauche/${PKGVERSION}/lib/gauche/interactive.scm 158share/gauche-0.9/${PKGVERSION}/lib/gauche/fcntl.scm
151share/gauche/${PKGVERSION}/lib/gauche/interactive/info.scm 159share/gauche-0.9/${PKGVERSION}/lib/gauche/fileutil.scm
152share/gauche/${PKGVERSION}/lib/gauche/interpolate.scm 160share/gauche-0.9/${PKGVERSION}/lib/gauche/hashutil.scm
153share/gauche/${PKGVERSION}/lib/gauche/let-opt.scm 161share/gauche-0.9/${PKGVERSION}/lib/gauche/hook.scm
154share/gauche/${PKGVERSION}/lib/gauche/libutil.scm 162share/gauche-0.9/${PKGVERSION}/lib/gauche/interactive.scm
155share/gauche/${PKGVERSION}/lib/gauche/listener.scm 163share/gauche-0.9/${PKGVERSION}/lib/gauche/interactive/info.scm
156share/gauche/${PKGVERSION}/lib/gauche/logger.scm 164share/gauche-0.9/${PKGVERSION}/lib/gauche/interpolate.scm
157share/gauche/${PKGVERSION}/lib/gauche/logical.scm 165share/gauche-0.9/${PKGVERSION}/lib/gauche/let-opt.scm
158share/gauche/${PKGVERSION}/lib/gauche/macroutil.scm 166share/gauche-0.9/${PKGVERSION}/lib/gauche/libutil.scm
159share/gauche/${PKGVERSION}/lib/gauche/matrix.scm 167share/gauche-0.9/${PKGVERSION}/lib/gauche/listener.scm
160share/gauche/${PKGVERSION}/lib/gauche/modutil.scm 168share/gauche-0.9/${PKGVERSION}/lib/gauche/logger.scm
161share/gauche/${PKGVERSION}/lib/gauche/mop/instance-pool.scm 169share/gauche-0.9/${PKGVERSION}/lib/gauche/logical.scm
162share/gauche/${PKGVERSION}/lib/gauche/mop/propagate.scm 170share/gauche-0.9/${PKGVERSION}/lib/gauche/macroutil.scm
163share/gauche/${PKGVERSION}/lib/gauche/mop/singleton.scm 171share/gauche-0.9/${PKGVERSION}/lib/gauche/matrix.scm
164share/gauche/${PKGVERSION}/lib/gauche/mop/validator.scm 172share/gauche-0.9/${PKGVERSION}/lib/gauche/modutil.scm
165share/gauche/${PKGVERSION}/lib/gauche/net.scm 173share/gauche-0.9/${PKGVERSION}/lib/gauche/mop/instance-pool.scm
166share/gauche/${PKGVERSION}/lib/gauche/numerical.scm 174share/gauche-0.9/${PKGVERSION}/lib/gauche/mop/propagate.scm
167share/gauche/${PKGVERSION}/lib/gauche/package.scm 175share/gauche-0.9/${PKGVERSION}/lib/gauche/mop/singleton.scm
168share/gauche/${PKGVERSION}/lib/gauche/package/build.scm 176share/gauche-0.9/${PKGVERSION}/lib/gauche/mop/validator.scm
169share/gauche/${PKGVERSION}/lib/gauche/package/compile.scm 177share/gauche-0.9/${PKGVERSION}/lib/gauche/net.scm
170share/gauche/${PKGVERSION}/lib/gauche/package/fetch.scm 178share/gauche-0.9/${PKGVERSION}/lib/gauche/numerical.scm
171share/gauche/${PKGVERSION}/lib/gauche/package/util.scm 179share/gauche-0.9/${PKGVERSION}/lib/gauche/package.scm
172share/gauche/${PKGVERSION}/lib/gauche/parameter.scm 180share/gauche-0.9/${PKGVERSION}/lib/gauche/package/build.scm
173share/gauche/${PKGVERSION}/lib/gauche/parseopt.scm 181share/gauche-0.9/${PKGVERSION}/lib/gauche/package/compile.scm
174share/gauche/${PKGVERSION}/lib/gauche/portutil.scm 182share/gauche-0.9/${PKGVERSION}/lib/gauche/package/fetch.scm
175share/gauche/${PKGVERSION}/lib/gauche/procedure.scm 183share/gauche-0.9/${PKGVERSION}/lib/gauche/package/util.scm
176share/gauche/${PKGVERSION}/lib/gauche/process.scm 184share/gauche-0.9/${PKGVERSION}/lib/gauche/parameter.scm
177share/gauche/${PKGVERSION}/lib/gauche/redefutil.scm 185share/gauche-0.9/${PKGVERSION}/lib/gauche/parseopt.scm
178share/gauche/${PKGVERSION}/lib/gauche/regexp.scm 186share/gauche-0.9/${PKGVERSION}/lib/gauche/partcont.scm
179share/gauche/${PKGVERSION}/lib/gauche/reload.scm 187share/gauche-0.9/${PKGVERSION}/lib/gauche/portutil.scm
180share/gauche/${PKGVERSION}/lib/gauche/selector.scm 188share/gauche-0.9/${PKGVERSION}/lib/gauche/procedure.scm
181share/gauche/${PKGVERSION}/lib/gauche/sequence.scm 189share/gauche-0.9/${PKGVERSION}/lib/gauche/process.scm
182share/gauche/${PKGVERSION}/lib/gauche/serializer.scm 190share/gauche-0.9/${PKGVERSION}/lib/gauche/record.scm
183share/gauche/${PKGVERSION}/lib/gauche/serializer/aserializer.scm 191share/gauche-0.9/${PKGVERSION}/lib/gauche/redefutil.scm
184share/gauche/${PKGVERSION}/lib/gauche/signal.scm 192share/gauche-0.9/${PKGVERSION}/lib/gauche/regexp.scm
185share/gauche/${PKGVERSION}/lib/gauche/singleton.scm 193share/gauche-0.9/${PKGVERSION}/lib/gauche/reload.scm
186share/gauche/${PKGVERSION}/lib/gauche/sortutil.scm 194share/gauche-0.9/${PKGVERSION}/lib/gauche/selector.scm
187share/gauche/${PKGVERSION}/lib/gauche/stringutil.scm 195share/gauche-0.9/${PKGVERSION}/lib/gauche/sequence.scm
188share/gauche/${PKGVERSION}/lib/gauche/syslog.scm 196share/gauche-0.9/${PKGVERSION}/lib/gauche/serializer.scm
189share/gauche/${PKGVERSION}/lib/gauche/termios.scm 197share/gauche-0.9/${PKGVERSION}/lib/gauche/serializer/aserializer.scm
190share/gauche/${PKGVERSION}/lib/gauche/test.scm 198share/gauche-0.9/${PKGVERSION}/lib/gauche/signal.scm
191share/gauche/${PKGVERSION}/lib/gauche/threads.scm 199share/gauche-0.9/${PKGVERSION}/lib/gauche/singleton.scm
192share/gauche/${PKGVERSION}/lib/gauche/time.scm 200share/gauche-0.9/${PKGVERSION}/lib/gauche/sortutil.scm
193share/gauche/${PKGVERSION}/lib/gauche/treeutil.scm 201share/gauche-0.9/${PKGVERSION}/lib/gauche/stringutil.scm
194share/gauche/${PKGVERSION}/lib/gauche/uvector.scm 202share/gauche-0.9/${PKGVERSION}/lib/gauche/syslog.scm
195share/gauche/${PKGVERSION}/lib/gauche/validator.scm 203share/gauche-0.9/${PKGVERSION}/lib/gauche/termios.scm
196share/gauche/${PKGVERSION}/lib/gauche/version.scm 204share/gauche-0.9/${PKGVERSION}/lib/gauche/test.scm
197share/gauche/${PKGVERSION}/lib/gauche/vm/debugger.scm 205share/gauche-0.9/${PKGVERSION}/lib/gauche/threads.scm
198share/gauche/${PKGVERSION}/lib/gauche/vm/insn-core.scm 206share/gauche-0.9/${PKGVERSION}/lib/gauche/time.scm
199share/gauche/${PKGVERSION}/lib/gauche/vm/insn.scm 207share/gauche-0.9/${PKGVERSION}/lib/gauche/treeutil.scm
200share/gauche/${PKGVERSION}/lib/gauche/vm/profiler.scm 208share/gauche-0.9/${PKGVERSION}/lib/gauche/uvector.scm
201share/gauche/${PKGVERSION}/lib/gauche/vport.scm 209share/gauche-0.9/${PKGVERSION}/lib/gauche/validator.scm
202share/gauche/${PKGVERSION}/lib/gencomp 210share/gauche-0.9/${PKGVERSION}/lib/gauche/version.scm
203share/gauche/${PKGVERSION}/lib/genstub 211share/gauche-0.9/${PKGVERSION}/lib/gauche/vm/debugger.scm
204share/gauche/${PKGVERSION}/lib/math/const.scm 212share/gauche-0.9/${PKGVERSION}/lib/gauche/vm/insn-core.scm
205share/gauche/${PKGVERSION}/lib/math/mt-random.scm 213share/gauche-0.9/${PKGVERSION}/lib/gauche/vm/insn.scm
206share/gauche/${PKGVERSION}/lib/precomp 214share/gauche-0.9/${PKGVERSION}/lib/gauche/vm/profiler.scm
207share/gauche/${PKGVERSION}/lib/rfc/822.scm 215share/gauche-0.9/${PKGVERSION}/lib/gauche/vport.scm
208share/gauche/${PKGVERSION}/lib/rfc/base64.scm 216share/gauche-0.9/${PKGVERSION}/lib/gencomp
209share/gauche/${PKGVERSION}/lib/rfc/cookie.scm 217share/gauche-0.9/${PKGVERSION}/lib/genstub
210share/gauche/${PKGVERSION}/lib/rfc/ftp.scm 218share/gauche-0.9/${PKGVERSION}/lib/math/const.scm
211share/gauche/${PKGVERSION}/lib/rfc/hmac.scm 219share/gauche-0.9/${PKGVERSION}/lib/math/mt-random.scm
212share/gauche/${PKGVERSION}/lib/rfc/http.scm 220share/gauche-0.9/${PKGVERSION}/lib/os/windows.scm
213share/gauche/${PKGVERSION}/lib/rfc/icmp.scm 221share/gauche-0.9/${PKGVERSION}/lib/parser/peg.scm
214share/gauche/${PKGVERSION}/lib/rfc/ip.scm 222share/gauche-0.9/${PKGVERSION}/lib/precomp
215share/gauche/${PKGVERSION}/lib/rfc/md5.scm 223share/gauche-0.9/${PKGVERSION}/lib/rfc/822.scm
216share/gauche/${PKGVERSION}/lib/rfc/mime.scm 224share/gauche-0.9/${PKGVERSION}/lib/rfc/base64.scm
217share/gauche/${PKGVERSION}/lib/rfc/quoted-printable.scm 225share/gauche-0.9/${PKGVERSION}/lib/rfc/cookie.scm
218share/gauche/${PKGVERSION}/lib/rfc/sha.scm 226share/gauche-0.9/${PKGVERSION}/lib/rfc/ftp.scm
219share/gauche/${PKGVERSION}/lib/rfc/sha1.scm 227share/gauche-0.9/${PKGVERSION}/lib/rfc/hmac.scm
220share/gauche/${PKGVERSION}/lib/rfc/uri.scm 228share/gauche-0.9/${PKGVERSION}/lib/rfc/http.scm
221share/gauche/${PKGVERSION}/lib/rfc/zlib.scm 229share/gauche-0.9/${PKGVERSION}/lib/rfc/icmp.scm
222share/gauche/${PKGVERSION}/lib/slib.scm 230share/gauche-0.9/${PKGVERSION}/lib/rfc/ip.scm
223@unexec ${RM} -f %D/share/gauche/${PKGVERSION}/lib/slibcat || ${TRUE} 231share/gauche-0.9/${PKGVERSION}/lib/rfc/json.scm
224share/gauche/${PKGVERSION}/lib/srfi-0.scm 232share/gauche-0.9/${PKGVERSION}/lib/rfc/md5.scm
225share/gauche/${PKGVERSION}/lib/srfi-1.scm 233share/gauche-0.9/${PKGVERSION}/lib/rfc/mime.scm
226share/gauche/${PKGVERSION}/lib/srfi-11.scm 234share/gauche-0.9/${PKGVERSION}/lib/rfc/quoted-printable.scm
227share/gauche/${PKGVERSION}/lib/srfi-13.scm 235share/gauche-0.9/${PKGVERSION}/lib/rfc/sha.scm
228share/gauche/${PKGVERSION}/lib/srfi-14.scm 236share/gauche-0.9/${PKGVERSION}/lib/rfc/sha1.scm
229share/gauche/${PKGVERSION}/lib/srfi-14/query.scm 237share/gauche-0.9/${PKGVERSION}/lib/rfc/uri.scm
230share/gauche/${PKGVERSION}/lib/srfi-14/set.scm 238share/gauche-0.9/${PKGVERSION}/lib/rfc/zlib.scm
231share/gauche/${PKGVERSION}/lib/srfi-19.scm 239share/gauche-0.9/${PKGVERSION}/lib/slib.scm
232share/gauche/${PKGVERSION}/lib/srfi-26.scm 240@unexec ${RM} -f %D/share/gauche-0.9/${PKGVERSION}/lib/slibcat || ${TRUE}
233share/gauche/${PKGVERSION}/lib/srfi-27.scm 241share/gauche-0.9/${PKGVERSION}/lib/srfi-0.scm
234share/gauche/${PKGVERSION}/lib/srfi-29.scm 242share/gauche-0.9/${PKGVERSION}/lib/srfi-1.scm
235share/gauche/${PKGVERSION}/lib/srfi-29/bundle.scm 243share/gauche-0.9/${PKGVERSION}/lib/srfi-11.scm
236share/gauche/${PKGVERSION}/lib/srfi-29/format.scm 244share/gauche-0.9/${PKGVERSION}/lib/srfi-13.scm
237share/gauche/${PKGVERSION}/lib/srfi-31.scm 245share/gauche-0.9/${PKGVERSION}/lib/srfi-14.scm
238share/gauche/${PKGVERSION}/lib/srfi-37.scm 246share/gauche-0.9/${PKGVERSION}/lib/srfi-14/query.scm
239share/gauche/${PKGVERSION}/lib/srfi-4.scm 247share/gauche-0.9/${PKGVERSION}/lib/srfi-14/set.scm
240share/gauche/${PKGVERSION}/lib/srfi-42.scm 248share/gauche-0.9/${PKGVERSION}/lib/srfi-19.scm
241share/gauche/${PKGVERSION}/lib/srfi-43.scm 249share/gauche-0.9/${PKGVERSION}/lib/srfi-26.scm
242share/gauche/${PKGVERSION}/lib/srfi-5.scm 250share/gauche-0.9/${PKGVERSION}/lib/srfi-27.scm
243share/gauche/${PKGVERSION}/lib/srfi-55.scm 251share/gauche-0.9/${PKGVERSION}/lib/srfi-29.scm
244share/gauche/${PKGVERSION}/lib/srfi-7.scm 252share/gauche-0.9/${PKGVERSION}/lib/srfi-29/bundle.scm
245share/gauche/${PKGVERSION}/lib/srfi-9.scm 253share/gauche-0.9/${PKGVERSION}/lib/srfi-29/format.scm
246share/gauche/${PKGVERSION}/lib/sxml/adaptor.scm 254share/gauche-0.9/${PKGVERSION}/lib/srfi-31.scm
247share/gauche/${PKGVERSION}/lib/sxml/serializer.scm 255share/gauche-0.9/${PKGVERSION}/lib/srfi-37.scm
248share/gauche/${PKGVERSION}/lib/sxml/ssax.scm 256share/gauche-0.9/${PKGVERSION}/lib/srfi-4.scm
249share/gauche/${PKGVERSION}/lib/sxml/sxpath.scm 257share/gauche-0.9/${PKGVERSION}/lib/srfi-42.scm
250share/gauche/${PKGVERSION}/lib/sxml/to-html.scm 258share/gauche-0.9/${PKGVERSION}/lib/srfi-43.scm
251share/gauche/${PKGVERSION}/lib/sxml/tools.scm 259share/gauche-0.9/${PKGVERSION}/lib/srfi-5.scm
252share/gauche/${PKGVERSION}/lib/sxml/tree-trans.scm 260share/gauche-0.9/${PKGVERSION}/lib/srfi-55.scm
253share/gauche/${PKGVERSION}/lib/text/csv.scm 261share/gauche-0.9/${PKGVERSION}/lib/srfi-7.scm
254share/gauche/${PKGVERSION}/lib/text/diff.scm 262share/gauche-0.9/${PKGVERSION}/lib/srfi-9.scm
255share/gauche/${PKGVERSION}/lib/text/gettext.scm 263share/gauche-0.9/${PKGVERSION}/lib/srfi-98.scm
256share/gauche/${PKGVERSION}/lib/text/html-lite.scm 264share/gauche-0.9/${PKGVERSION}/lib/sxml/adaptor.scm
257share/gauche/${PKGVERSION}/lib/text/info.scm 265share/gauche-0.9/${PKGVERSION}/lib/sxml/serializer.scm
258share/gauche/${PKGVERSION}/lib/text/parse.scm 266share/gauche-0.9/${PKGVERSION}/lib/sxml/ssax.scm
259share/gauche/${PKGVERSION}/lib/text/progress.scm 267share/gauche-0.9/${PKGVERSION}/lib/sxml/sxpath.scm
260share/gauche/${PKGVERSION}/lib/text/sql.scm 268share/gauche-0.9/${PKGVERSION}/lib/sxml/to-html.scm
261share/gauche/${PKGVERSION}/lib/text/tr.scm 269share/gauche-0.9/${PKGVERSION}/lib/sxml/tools.scm
262share/gauche/${PKGVERSION}/lib/text/tree.scm 270share/gauche-0.9/${PKGVERSION}/lib/sxml/tree-trans.scm
263share/gauche/${PKGVERSION}/lib/util/combinations.scm 271share/gauche-0.9/${PKGVERSION}/lib/text/csv.scm
264share/gauche/${PKGVERSION}/lib/util/digest.scm 272share/gauche-0.9/${PKGVERSION}/lib/text/diff.scm
265share/gauche/${PKGVERSION}/lib/util/isomorph.scm 273share/gauche-0.9/${PKGVERSION}/lib/text/gettext.scm
266share/gauche/${PKGVERSION}/lib/util/lcs.scm 274share/gauche-0.9/${PKGVERSION}/lib/text/html-lite.scm
267share/gauche/${PKGVERSION}/lib/util/list.scm 275share/gauche-0.9/${PKGVERSION}/lib/text/info.scm
268share/gauche/${PKGVERSION}/lib/util/match.scm 276share/gauche-0.9/${PKGVERSION}/lib/text/parse.scm
269share/gauche/${PKGVERSION}/lib/util/queue.scm 277share/gauche-0.9/${PKGVERSION}/lib/text/progress.scm
270share/gauche/${PKGVERSION}/lib/util/rbtree.scm 278share/gauche-0.9/${PKGVERSION}/lib/text/sql.scm
271share/gauche/${PKGVERSION}/lib/util/record.scm 279share/gauche-0.9/${PKGVERSION}/lib/text/tr.scm
272share/gauche/${PKGVERSION}/lib/util/relation.scm 280share/gauche-0.9/${PKGVERSION}/lib/text/tree.scm
273share/gauche/${PKGVERSION}/lib/util/sparse.scm 281share/gauche-0.9/${PKGVERSION}/lib/util/combinations.scm
274share/gauche/${PKGVERSION}/lib/util/stream.scm 282share/gauche-0.9/${PKGVERSION}/lib/util/digest.scm
275share/gauche/${PKGVERSION}/lib/util/toposort.scm 283share/gauche-0.9/${PKGVERSION}/lib/util/isomorph.scm
276share/gauche/${PKGVERSION}/lib/util/tree.scm 284share/gauche-0.9/${PKGVERSION}/lib/util/lcs.scm
277share/gauche/${PKGVERSION}/lib/util/trie.scm 285share/gauche-0.9/${PKGVERSION}/lib/util/list.scm
278share/gauche/${PKGVERSION}/lib/www/cgi-test.scm 286share/gauche-0.9/${PKGVERSION}/lib/util/match.scm
279share/gauche/${PKGVERSION}/lib/www/cgi.scm 287share/gauche-0.9/${PKGVERSION}/lib/util/queue.scm
280share/gauche/${PKGVERSION}/lib/www/cgi/test.scm 288share/gauche-0.9/${PKGVERSION}/lib/util/rbtree.scm
281share/gauche/${PKGVERSION}/template.DIST 289share/gauche-0.9/${PKGVERSION}/lib/util/record.scm
282share/gauche/${PKGVERSION}/template.Makefile.in 290share/gauche-0.9/${PKGVERSION}/lib/util/relation.scm
283share/gauche/${PKGVERSION}/template.configure.ac 291share/gauche-0.9/${PKGVERSION}/lib/util/sparse.scm
284share/gauche/${PKGVERSION}/template.extension.c 292share/gauche-0.9/${PKGVERSION}/lib/util/stream.scm
285share/gauche/${PKGVERSION}/template.extension.h 293share/gauche-0.9/${PKGVERSION}/lib/util/toposort.scm
286share/gauche/${PKGVERSION}/template.extensionlib.stub 294share/gauche-0.9/${PKGVERSION}/lib/util/tree.scm
287share/gauche/${PKGVERSION}/template.module.scm 295share/gauche-0.9/${PKGVERSION}/lib/util/trie.scm
288share/gauche/${PKGVERSION}/template.test.scm 296share/gauche-0.9/${PKGVERSION}/lib/www/cgi-test.scm
289@pkgdir lib/gauche/site/${PKGVERSION}/${MACHINE_GNU_PLATFORM} 297share/gauche-0.9/${PKGVERSION}/lib/www/cgi.scm
290@pkgdir share/gauche/site/lib 298share/gauche-0.9/${PKGVERSION}/lib/www/cgi/test.scm
 299share/gauche-0.9/${PKGVERSION}/template.DIST
 300share/gauche-0.9/${PKGVERSION}/template.Makefile.in
 301share/gauche-0.9/${PKGVERSION}/template.configure.ac
 302share/gauche-0.9/${PKGVERSION}/template.extension.c
 303share/gauche-0.9/${PKGVERSION}/template.extension.h
 304share/gauche-0.9/${PKGVERSION}/template.extensionlib.stub
 305share/gauche-0.9/${PKGVERSION}/template.module.scm
 306share/gauche-0.9/${PKGVERSION}/template.test.scm
 307@pkgdir lib/gauche-0.9/site/${PKGVERSION}/${MACHINE_GNU_PLATFORM}
 308@pkgdir share/gauche-0.9/site/lib
291@exec %D/bin/gosh -ftest -uslib -E"require 'new-catalog" -Eexit || ${TRUE} 309@exec %D/bin/gosh -ftest -uslib -E"require 'new-catalog" -Eexit || ${TRUE}

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

--- pkgsrc/lang/gauche/distinfo 2010/01/05 13:21:23 1.26
+++ pkgsrc/lang/gauche/distinfo 2010/12/16 03:42:09 1.27
@@ -1,10 +1,8 @@ @@ -1,10 +1,8 @@
1$NetBSD: distinfo,v 1.26 2010/01/05 13:21:23 tnn Exp $ 1$NetBSD: distinfo,v 1.27 2010/12/16 03:42:09 asau Exp $
2 2
3SHA1 (Gauche-0.9.tgz) = ebc18917c36201d6c3fda29dfdc52fce2d856a5f 3SHA1 (Gauche-0.9.1.tgz) = 0581b16ffe77fc836c8b56faae0c9820490b17c8
4RMD160 (Gauche-0.9.tgz) = 3e0dfc1d498849b0d647e13f49addd0a56cc56fe 4RMD160 (Gauche-0.9.1.tgz) = a51fbd1751c5925aff8f1f0644ab4247c28bd9a5
5Size (Gauche-0.9.tgz) = 3938498 bytes 5Size (Gauche-0.9.1.tgz) = 4239842 bytes
6SHA1 (patch-aa) = fc85a438f3c4e032001a3b875d575a455f91a3ac 6SHA1 (patch-aa) = 44221973454aeb2b4ad1a4c9675f801a64de2806
7SHA1 (patch-ab) = b78322a4b99d0f60f82976055667f62f9d8e0c72 
8SHA1 (patch-af) = 0741e1a047ee7935bffa215a69cc417ba67b81f2 7SHA1 (patch-af) = 0741e1a047ee7935bffa215a69cc417ba67b81f2
9SHA1 (patch-ag) = ee9946e364d6723b0efe3b260fc5d02ccb04621d 8SHA1 (patch-ag) = ee9946e364d6723b0efe3b260fc5d02ccb04621d
10SHA1 (patch-ah) = db08d8363368331e006b45d88ef0f05e150adc86 

cvs diff -r1.10 -r1.11 pkgsrc/lang/gauche/patches/patch-aa (expand / switch to unified diff)

--- pkgsrc/lang/gauche/patches/patch-aa 2009/11/29 13:01:06 1.10
+++ pkgsrc/lang/gauche/patches/patch-aa 2010/12/16 03:42:09 1.11
@@ -1,23 +1,23 @@ @@ -1,23 +1,23 @@
1$NetBSD: patch-aa,v 1.10 2009/11/29 13:01:06 enami Exp $ 1$NetBSD: patch-aa,v 1.11 2010/12/16 03:42:09 asau Exp $
2 2
3--- configure.orig 2009-11-22 08:32:29.000000000 +0000 3--- configure.orig 2010-12-13 03:45:32.000000000 +0300
4+++ configure 2009-11-29 09:13:36.000000000 +0000 4+++ configure 2010-12-16 06:00:33.000000000 +0300
5@@ -5459,6 +5459,9 @@ 5@@ -5017,6 +5017,9 @@
6 ;; 6 ;;
7 alpha*) 7 alpha*)
8 CFLAGS="$CFLAGS -mieee" ;; 8 CFLAGS="$CFLAGS -mieee" ;;
9+ arm*-*-netbsd*) 9+ arm*-*-netbsd*)
10+ # Don't define DOUBLE_ARMENDIAN on netbsd. 10+ # Don't define DOUBLE_ARMENDIAN on netbsd.
11+ ;; 11+ ;;
12 arm*) 12 arm*)
13 # ARM processor uses a special mixed endian for doubles. 13 # ARM processor may use a special mixed endian for doubles. It can
14 cat >>confdefs.h <<\_ACEOF 14 # be switched by processor configuration. So we check it at runtime.
15@@ -9402,7 +9405,7 @@ 15@@ -6161,7 +6164,7 @@
16  
17  16
 17 fi
18  18
19-for ac_func in isnan isinf trunc rint 19-for ac_func in isnan isinf trunc rint
20+for ac_func in isnan isinf trunc 20+for ac_func in isnan isinf trunc
21 do 21 do :
22 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` 22 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
23 { echo "$as_me:$LINENO: checking for $ac_func" >&5 23 ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"

File Deleted: pkgsrc/lang/gauche/patches/Attic/patch-ab

File Deleted: pkgsrc/lang/gauche/patches/Attic/patch-ah