Date: Wed, 6 Jun 2018 18:25:34 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471868 - in head/lang/gauche: . files Message-ID: <201806061825.w56IPYwP059088@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Wed Jun 6 18:25:34 2018 New Revision: 471868 URL: https://svnweb.freebsd.org/changeset/ports/471868 Log: - Update `lang/gauche' to version 0.9.5 - Fix SLIB_BUILD_DEPENDS so it points to the file actually being used - Convert to our testing framework (TEST_TARGET) and unbreak regression tests by preserving the `gosh' executable (prior to relinking), which allows to run the tests without having Gauche installed Tested on: i386, amd64 (all tests pass) Added: head/lang/gauche/files/patch-src_Makefile.in (contents, props changed) Modified: head/lang/gauche/Makefile head/lang/gauche/distinfo head/lang/gauche/pkg-plist Modified: head/lang/gauche/Makefile ============================================================================== --- head/lang/gauche/Makefile Wed Jun 6 18:25:01 2018 (r471867) +++ head/lang/gauche/Makefile Wed Jun 6 18:25:34 2018 (r471868) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gauche -PORTVERSION= 0.9.4 -PORTREVISION= 1 +PORTVERSION= 0.9.5 CATEGORIES= lang scheme MASTER_SITES= SF/${PORTNAME}/Gauche DISTNAME= Gauche-${PORTVERSION} @@ -26,6 +25,7 @@ CONFIGURE_ARGS= --enable-tls=none \ ${ICONV_CONFIGURE_BASE:S/lib//} USE_LDCONFIG= yes MAKE_JOBS_UNSAFE=yes +TEST_TARGET= check PLIST_SUB= VERSION="${PORTVERSION}" \ TARGET="${CONFIGURE_TARGET}" @@ -46,7 +46,7 @@ EUCJP_CONFIGURE_ON= --enable-multibyte=euc-jp GDBM_LIB_DEPENDS= libgdbm.so:databases/gdbm GDBM_CONFIGURE_ON= --with-local=${LOCALBASE} SLIB_DESC= Create catalogue for SLIB port -SLIB_BUILD_DEPENDS= slib>0:lang/slib +SLIB_BUILD_DEPENDS= ${LOCALBASE}/share/slib/require.scm:lang/slib SLIB_CONFIGURE_ON= --with-slib=${LOCALBASE}/share/slib SLIB_CONFIGURE_OFF= --with-slib=${WRKDIR} SJIS_DESC= Shift_JIS encoding support @@ -89,8 +89,5 @@ post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gauche-0.9/${PORTVERSION}/${CONFIGURE_TARGET}/${i} @${CHMOD} u-w ${STAGEDIR}${PREFIX}/lib/gauche-0.9/${PORTVERSION}/${CONFIGURE_TARGET}/${i} .endfor - -regression-test: build - cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check .include <bsd.port.mk> Modified: head/lang/gauche/distinfo ============================================================================== --- head/lang/gauche/distinfo Wed Jun 6 18:25:01 2018 (r471867) +++ head/lang/gauche/distinfo Wed Jun 6 18:25:34 2018 (r471868) @@ -1,2 +1,3 @@ -SHA256 (Gauche-0.9.4.tgz) = 7b18bcd70beaced1e004594be46c8cff95795318f6f5830dd2a8a700410fc149 -SIZE (Gauche-0.9.4.tgz) = 5601987 +TIMESTAMP = 1475925924 +SHA256 (Gauche-0.9.5.tgz) = 4c8a53213de112708bbda5fa9648c21497d43ebf809ed5b32b15f21266b4e73c +SIZE (Gauche-0.9.5.tgz) = 6458675 Added: head/lang/gauche/files/patch-src_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/gauche/files/patch-src_Makefile.in Wed Jun 6 18:25:34 2018 (r471868) @@ -0,0 +1,24 @@ +--- src/Makefile.in.orig 2016-10-02 07:41:35 UTC ++++ src/Makefile.in +@@ -248,7 +248,7 @@ test-extra$(EXEEXT) : $(LIBGAUCHE).$(SOEXT) $(test_ext + # need to relink gosh-noconsole.exe (windows no-console version). + relink : + $(RELINK) $(libgauche_LDFLAGS) $(LIBGAUCHE).$(SOEXT) $(libgauche_OBJECTS) $(libgc_pic_LIBRARY) $(GC_ATOMIC_OPS_LIBS) $(LIBS) +- $(RELINK) $(gosh_LDFLAGS) -o gosh$(EXEEXT) $(gosh_OBJECTS) $(gosh_LDADD) $(LIBS) ++ $(RELINK) $(gosh_LDFLAGS) -o gosh-relinked$(EXEEXT) $(gosh_OBJECTS) $(gosh_LDADD) $(LIBS) + $(RELINK) -o gauche-config$(EXEEXT) gauche-config.$(OBJEXT) $(LIBS) + + $(OBJECTS) : $(HEADERS) +@@ -510,8 +510,10 @@ install-relink : install-aux + install-core : install-relink + $(INSTALL) $(INSTALL_LIBS) $(DESTDIR)$(LIB_INSTALL_DIR) + $(INSTALL) $(INSTALL_LIBS) $(DESTDIR)$(ARCH_INSTALL_DIR) +- $(INSTALL) -m 555 $(INSTALL_BINS) $(DESTDIR)$(BIN_INSTALL_DIR) +- $(INSTALL) -m 555 $(INSTALL_BINS) $(DESTDIR)$(ARCH_INSTALL_DIR) ++ $(INSTALL) -m 555 $(INSTALL_BINS:Ngosh$(EXEEXT)) $(DESTDIR)$(BIN_INSTALL_DIR) ++ $(INSTALL) -m 555 gosh-relinked$(EXEEXT) $(DESTDIR)$(BIN_INSTALL_DIR)/gosh$(EXEEXT) ++ $(INSTALL) -m 555 $(INSTALL_BINS:Ngosh$(EXEEXT)) $(DESTDIR)$(ARCH_INSTALL_DIR) ++ $(INSTALL) -m 555 gosh-relinked$(EXEEXT) $(DESTDIR)$(ARCH_INSTALL_DIR)/gosh$(EXEEXT) + @case `$(GAUCHE_CONFIG) --arch` in *-cygwin*|*-mingw*) \ + $(INSTALL) $(INSTALL_LIBS) $(DESTDIR)$(BIN_INSTALL_DIR);;\ + esac Modified: head/lang/gauche/pkg-plist ============================================================================== --- head/lang/gauche/pkg-plist Wed Jun 6 18:25:01 2018 (r471867) +++ head/lang/gauche/pkg-plist Wed Jun 6 18:25:34 2018 (r471868) @@ -5,36 +5,44 @@ bin/gauche-package bin/gosh lib/gauche-0.9/%%VERSION%%/%%TARGET%%/binary--io.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/crypt--bcrypt.so +lib/gauche-0.9/%%VERSION%%/%%TARGET%%/data--queue.so +lib/gauche-0.9/%%VERSION%%/%%TARGET%%/data--sparse.so +%%GDBM%%lib/gauche-0.9/%%VERSION%%/%%TARGET%%/dbm--gdbm.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/dbm--ndbm.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/file--util.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--charconv.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--collection.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--fcntl.so +lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--generator.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--hook.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--net.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--parameter.so +lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--record.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--sequence.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--syslog.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--termios.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--threads.so +lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--unicode.so +lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--uvector.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche--vport.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche-cesconv lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche-config lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche-install lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gauche-package -%%GDBM%%lib/gauche-0.9/%%VERSION%%/%%TARGET%%/dbm--gdbm.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/gosh lib/gauche-0.9/%%VERSION%%/%%TARGET%%/libgauche-0.9.so -lib/gauche-0.9/%%VERSION%%/%%TARGET%%/libgauche-uvector.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/math--mt-random.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/os--windows.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/parser--peg.so +lib/gauche-0.9/%%VERSION%%/%%TARGET%%/rfc--822.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/rfc--md5.so +lib/gauche-0.9/%%VERSION%%/%%TARGET%%/rfc--mime.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/rfc--sha.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/rfc--tls.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/rfc--zlib.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/srfi-1.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/srfi-13.so +lib/gauche-0.9/%%VERSION%%/%%TARGET%%/srfi-133.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/srfi-19.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/srfi-43.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/sxml--serializer.so @@ -43,10 +51,7 @@ lib/gauche-0.9/%%VERSION%%/%%TARGET%%/sxml--sxpath.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/sxml--tools.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/text--gettext.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/text--tr.so -lib/gauche-0.9/%%VERSION%%/%%TARGET%%/text--unicode.so lib/gauche-0.9/%%VERSION%%/%%TARGET%%/util--match.so -lib/gauche-0.9/%%VERSION%%/%%TARGET%%/util--queue.so -lib/gauche-0.9/%%VERSION%%/%%TARGET%%/util--sparse.so lib/gauche-0.9/%%VERSION%%/include/gauche.h lib/gauche-0.9/%%VERSION%%/include/gauche/bignum.h lib/gauche-0.9/%%VERSION%%/include/gauche/bits.h @@ -71,7 +76,6 @@ lib/gauche-0.9/%%VERSION%%/include/gauche/gloc.h lib/gauche-0.9/%%VERSION%%/include/gauche/hash.h lib/gauche-0.9/%%VERSION%%/include/gauche/int64.h lib/gauche-0.9/%%VERSION%%/include/gauche/load.h -lib/gauche-0.9/%%VERSION%%/include/gauche/macro.h lib/gauche-0.9/%%VERSION%%/include/gauche/module.h lib/gauche-0.9/%%VERSION%%/include/gauche/number.h lib/gauche-0.9/%%VERSION%%/include/gauche/parameter.h @@ -82,6 +86,7 @@ lib/gauche-0.9/%%VERSION%%/include/gauche/pthread.h lib/gauche-0.9/%%VERSION%%/include/gauche/reader.h lib/gauche-0.9/%%VERSION%%/include/gauche/regexp.h lib/gauche-0.9/%%VERSION%%/include/gauche/scmconst.h +lib/gauche-0.9/%%VERSION%%/include/gauche/static.h lib/gauche-0.9/%%VERSION%%/include/gauche/string.h lib/gauche-0.9/%%VERSION%%/include/gauche/symbol.h lib/gauche-0.9/%%VERSION%%/include/gauche/system.h @@ -108,7 +113,7 @@ lib/gauche-0.9/%%VERSION%%/include/gc_version.h lib/gauche-0.9/site/%%TARGET%%/.keepme lib/libgauche-0.9.so lib/libgauche-0.9.so.0 -lib/libgauche-0.9.so.0.4 +lib/libgauche-0.9.so.0.5 man/man1/gauche-cesconv.1.gz man/man1/gauche-config.1.gz man/man1/gauche-install.1.gz @@ -123,14 +128,25 @@ share/gauche-0.9/%%VERSION%%/aclocal.m4 share/gauche-0.9/%%VERSION%%/lib/binary/ftype.scm share/gauche-0.9/%%VERSION%%/lib/binary/io.scm share/gauche-0.9/%%VERSION%%/lib/binary/pack.scm +share/gauche-0.9/%%VERSION%%/lib/build-standalone share/gauche-0.9/%%VERSION%%/lib/cesconv +share/gauche-0.9/%%VERSION%%/lib/check-script +share/gauche-0.9/%%VERSION%%/lib/compat/chibi-test.scm share/gauche-0.9/%%VERSION%%/lib/compat/jfilter.scm share/gauche-0.9/%%VERSION%%/lib/compat/norational.scm share/gauche-0.9/%%VERSION%%/lib/compat/stk.scm share/gauche-0.9/%%VERSION%%/lib/control/job.scm share/gauche-0.9/%%VERSION%%/lib/control/thread-pool.scm share/gauche-0.9/%%VERSION%%/lib/crypt/bcrypt.scm +share/gauche-0.9/%%VERSION%%/lib/data/cache.scm +share/gauche-0.9/%%VERSION%%/lib/data/heap.scm +share/gauche-0.9/%%VERSION%%/lib/data/ideque.scm +share/gauche-0.9/%%VERSION%%/lib/data/imap.scm +share/gauche-0.9/%%VERSION%%/lib/data/queue.scm share/gauche-0.9/%%VERSION%%/lib/data/random.scm +share/gauche-0.9/%%VERSION%%/lib/data/ring-buffer.scm +share/gauche-0.9/%%VERSION%%/lib/data/sparse.scm +share/gauche-0.9/%%VERSION%%/lib/data/trie.scm share/gauche-0.9/%%VERSION%%/lib/dbd/null.scm share/gauche-0.9/%%VERSION%%/lib/dbi.scm share/gauche-0.9/%%VERSION%%/lib/dbm.scm @@ -142,11 +158,13 @@ share/gauche-0.9/%%VERSION%%/lib/dbm/restore share/gauche-0.9/%%VERSION%%/lib/file/filter.scm share/gauche-0.9/%%VERSION%%/lib/file/util.scm share/gauche-0.9/%%VERSION%%/lib/gauche/array.scm +share/gauche-0.9/%%VERSION%%/lib/gauche/base.scm share/gauche-0.9/%%VERSION%%/lib/gauche/cgen.scm share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/cise.scm share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/literal.scm share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/optimizer.scm share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/precomp.scm +share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/standalone.scm share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/stub.scm share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/tmodule.scm share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/type.scm @@ -154,6 +172,7 @@ share/gauche-0.9/%%VERSION%%/lib/gauche/cgen/unit.scm share/gauche-0.9/%%VERSION%%/lib/gauche/charconv.scm share/gauche-0.9/%%VERSION%%/lib/gauche/collection.scm share/gauche-0.9/%%VERSION%%/lib/gauche/common-macros.scm +share/gauche-0.9/%%VERSION%%/lib/gauche/computil.scm share/gauche-0.9/%%VERSION%%/lib/gauche/condutil.scm share/gauche-0.9/%%VERSION%%/lib/gauche/config.scm share/gauche-0.9/%%VERSION%%/lib/gauche/configure.scm @@ -169,7 +188,10 @@ share/gauche-0.9/%%VERSION%%/lib/gauche/generic-sortut share/gauche-0.9/%%VERSION%%/lib/gauche/hashutil.scm share/gauche-0.9/%%VERSION%%/lib/gauche/hook.scm share/gauche-0.9/%%VERSION%%/lib/gauche/interactive.scm +share/gauche-0.9/%%VERSION%%/lib/gauche/interactive/ed.scm +share/gauche-0.9/%%VERSION%%/lib/gauche/interactive/editable-reader.scm share/gauche-0.9/%%VERSION%%/lib/gauche/interactive/info.scm +share/gauche-0.9/%%VERSION%%/lib/gauche/interactive/toplevel.scm share/gauche-0.9/%%VERSION%%/lib/gauche/interpolate.scm share/gauche-0.9/%%VERSION%%/lib/gauche/lazy.scm share/gauche-0.9/%%VERSION%%/lib/gauche/let-opt.scm @@ -180,6 +202,7 @@ share/gauche-0.9/%%VERSION%%/lib/gauche/logical.scm share/gauche-0.9/%%VERSION%%/lib/gauche/macroutil.scm share/gauche-0.9/%%VERSION%%/lib/gauche/matrix.scm share/gauche-0.9/%%VERSION%%/lib/gauche/modutil.scm +share/gauche-0.9/%%VERSION%%/lib/gauche/mop/bound-slot.scm share/gauche-0.9/%%VERSION%%/lib/gauche/mop/instance-pool.scm share/gauche-0.9/%%VERSION%%/lib/gauche/mop/propagate.scm share/gauche-0.9/%%VERSION%%/lib/gauche/mop/singleton.scm @@ -195,6 +218,7 @@ share/gauche-0.9/%%VERSION%%/lib/gauche/parameter.scm share/gauche-0.9/%%VERSION%%/lib/gauche/parseopt.scm share/gauche-0.9/%%VERSION%%/lib/gauche/partcont.scm share/gauche-0.9/%%VERSION%%/lib/gauche/portutil.scm +share/gauche-0.9/%%VERSION%%/lib/gauche/pp.scm share/gauche-0.9/%%VERSION%%/lib/gauche/procedure.scm share/gauche-0.9/%%VERSION%%/lib/gauche/process.scm share/gauche-0.9/%%VERSION%%/lib/gauche/record.scm @@ -217,6 +241,7 @@ share/gauche-0.9/%%VERSION%%/lib/gauche/test/generativ share/gauche-0.9/%%VERSION%%/lib/gauche/threads.scm share/gauche-0.9/%%VERSION%%/lib/gauche/time.scm share/gauche-0.9/%%VERSION%%/lib/gauche/treeutil.scm +share/gauche-0.9/%%VERSION%%/lib/gauche/unicode.scm share/gauche-0.9/%%VERSION%%/lib/gauche/uvector.scm share/gauche-0.9/%%VERSION%%/lib/gauche/validator.scm share/gauche-0.9/%%VERSION%%/lib/gauche/vecutil.scm @@ -228,6 +253,7 @@ share/gauche-0.9/%%VERSION%%/lib/gauche/vm/profiler.sc share/gauche-0.9/%%VERSION%%/lib/gauche/vport.scm share/gauche-0.9/%%VERSION%%/lib/gencomp share/gauche-0.9/%%VERSION%%/lib/genstub +share/gauche-0.9/%%VERSION%%/lib/lang/asm/x86_64.scm share/gauche-0.9/%%VERSION%%/lib/math/const.scm share/gauche-0.9/%%VERSION%%/lib/math/mt-random.scm share/gauche-0.9/%%VERSION%%/lib/math/prime.scm @@ -275,11 +301,23 @@ share/gauche-0.9/%%VERSION%%/lib/srfi-0.scm share/gauche-0.9/%%VERSION%%/lib/srfi-1.scm share/gauche-0.9/%%VERSION%%/lib/srfi-106.scm share/gauche-0.9/%%VERSION%%/lib/srfi-11.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-112.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-113.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-114.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-117.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-118.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-121.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-128.scm share/gauche-0.9/%%VERSION%%/lib/srfi-13.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-131.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-133.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-134.scm share/gauche-0.9/%%VERSION%%/lib/srfi-14.scm share/gauche-0.9/%%VERSION%%/lib/srfi-14/query.scm share/gauche-0.9/%%VERSION%%/lib/srfi-14/set.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-18.scm share/gauche-0.9/%%VERSION%%/lib/srfi-19.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-25.scm share/gauche-0.9/%%VERSION%%/lib/srfi-26.scm share/gauche-0.9/%%VERSION%%/lib/srfi-27.scm share/gauche-0.9/%%VERSION%%/lib/srfi-29.scm @@ -287,21 +325,36 @@ share/gauche-0.9/%%VERSION%%/lib/srfi-29/bundle.scm share/gauche-0.9/%%VERSION%%/lib/srfi-29/format.scm share/gauche-0.9/%%VERSION%%/lib/srfi-31.scm share/gauche-0.9/%%VERSION%%/lib/srfi-37.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-39.scm share/gauche-0.9/%%VERSION%%/lib/srfi-4.scm share/gauche-0.9/%%VERSION%%/lib/srfi-42.scm share/gauche-0.9/%%VERSION%%/lib/srfi-43.scm share/gauche-0.9/%%VERSION%%/lib/srfi-5.scm share/gauche-0.9/%%VERSION%%/lib/srfi-55.scm share/gauche-0.9/%%VERSION%%/lib/srfi-60.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-69.scm share/gauche-0.9/%%VERSION%%/lib/srfi-7.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-78.scm share/gauche-0.9/%%VERSION%%/lib/srfi-9.scm share/gauche-0.9/%%VERSION%%/lib/srfi-98.scm +share/gauche-0.9/%%VERSION%%/lib/srfi-99.scm share/gauche-0.9/%%VERSION%%/lib/srfi/0.scm share/gauche-0.9/%%VERSION%%/lib/srfi/1.scm share/gauche-0.9/%%VERSION%%/lib/srfi/10.scm share/gauche-0.9/%%VERSION%%/lib/srfi/106.scm share/gauche-0.9/%%VERSION%%/lib/srfi/11.scm +share/gauche-0.9/%%VERSION%%/lib/srfi/111.scm +share/gauche-0.9/%%VERSION%%/lib/srfi/112.scm +share/gauche-0.9/%%VERSION%%/lib/srfi/113.scm +share/gauche-0.9/%%VERSION%%/lib/srfi/114.scm +share/gauche-0.9/%%VERSION%%/lib/srfi/117.scm +share/gauche-0.9/%%VERSION%%/lib/srfi/118.scm +share/gauche-0.9/%%VERSION%%/lib/srfi/121.scm +share/gauche-0.9/%%VERSION%%/lib/srfi/128.scm share/gauche-0.9/%%VERSION%%/lib/srfi/13.scm +share/gauche-0.9/%%VERSION%%/lib/srfi/131.scm +share/gauche-0.9/%%VERSION%%/lib/srfi/133.scm +share/gauche-0.9/%%VERSION%%/lib/srfi/134.scm share/gauche-0.9/%%VERSION%%/lib/srfi/14.scm share/gauche-0.9/%%VERSION%%/lib/srfi/16.scm share/gauche-0.9/%%VERSION%%/lib/srfi/17.scm @@ -328,13 +381,16 @@ share/gauche-0.9/%%VERSION%%/lib/srfi/40.scm share/gauche-0.9/%%VERSION%%/lib/srfi/42.scm share/gauche-0.9/%%VERSION%%/lib/srfi/43.scm share/gauche-0.9/%%VERSION%%/lib/srfi/45.scm +share/gauche-0.9/%%VERSION%%/lib/srfi/46.scm share/gauche-0.9/%%VERSION%%/lib/srfi/5.scm share/gauche-0.9/%%VERSION%%/lib/srfi/55.scm share/gauche-0.9/%%VERSION%%/lib/srfi/6.scm share/gauche-0.9/%%VERSION%%/lib/srfi/60.scm share/gauche-0.9/%%VERSION%%/lib/srfi/61.scm share/gauche-0.9/%%VERSION%%/lib/srfi/62.scm +share/gauche-0.9/%%VERSION%%/lib/srfi/69.scm share/gauche-0.9/%%VERSION%%/lib/srfi/7.scm +share/gauche-0.9/%%VERSION%%/lib/srfi/78.scm share/gauche-0.9/%%VERSION%%/lib/srfi/8.scm share/gauche-0.9/%%VERSION%%/lib/srfi/87.scm share/gauche-0.9/%%VERSION%%/lib/srfi/9.scm @@ -348,21 +404,28 @@ share/gauche-0.9/%%VERSION%%/lib/sxml/sxpath.scm share/gauche-0.9/%%VERSION%%/lib/sxml/to-html.scm share/gauche-0.9/%%VERSION%%/lib/sxml/tools.scm share/gauche-0.9/%%VERSION%%/lib/sxml/tree-trans.scm +share/gauche-0.9/%%VERSION%%/lib/text/console/windows.scm +share/gauche-0.9/%%VERSION%%/lib/text/console.scm share/gauche-0.9/%%VERSION%%/lib/text/csv.scm share/gauche-0.9/%%VERSION%%/lib/text/diff.scm +share/gauche-0.9/%%VERSION%%/lib/text/gap-buffer.scm share/gauche-0.9/%%VERSION%%/lib/text/gettext.scm share/gauche-0.9/%%VERSION%%/lib/text/html-lite.scm share/gauche-0.9/%%VERSION%%/lib/text/info.scm +share/gauche-0.9/%%VERSION%%/lib/text/line-edit.scm share/gauche-0.9/%%VERSION%%/lib/text/parse.scm share/gauche-0.9/%%VERSION%%/lib/text/progress.scm share/gauche-0.9/%%VERSION%%/lib/text/sql.scm share/gauche-0.9/%%VERSION%%/lib/text/tr.scm share/gauche-0.9/%%VERSION%%/lib/text/tree.scm +share/gauche-0.9/%%VERSION%%/lib/text/unicode/ucd.scm share/gauche-0.9/%%VERSION%%/lib/text/unicode.scm share/gauche-0.9/%%VERSION%%/lib/util/combinations.scm share/gauche-0.9/%%VERSION%%/lib/util/digest.scm +share/gauche-0.9/%%VERSION%%/lib/util/dominator.scm share/gauche-0.9/%%VERSION%%/lib/util/isomorph.scm share/gauche-0.9/%%VERSION%%/lib/util/lcs.scm +share/gauche-0.9/%%VERSION%%/lib/util/levenshtein.scm share/gauche-0.9/%%VERSION%%/lib/util/list.scm share/gauche-0.9/%%VERSION%%/lib/util/match.scm share/gauche-0.9/%%VERSION%%/lib/util/queue.scm @@ -374,11 +437,11 @@ share/gauche-0.9/%%VERSION%%/lib/util/stream.scm share/gauche-0.9/%%VERSION%%/lib/util/toposort.scm share/gauche-0.9/%%VERSION%%/lib/util/tree.scm share/gauche-0.9/%%VERSION%%/lib/util/trie.scm +share/gauche-0.9/%%VERSION%%/lib/util/unification.scm share/gauche-0.9/%%VERSION%%/lib/www/cgi-test.scm share/gauche-0.9/%%VERSION%%/lib/www/cgi.scm share/gauche-0.9/%%VERSION%%/lib/www/cgi/test.scm share/gauche-0.9/%%VERSION%%/lib/www/css.scm -share/gauche-0.9/%%VERSION%%/template.DIST share/gauche-0.9/%%VERSION%%/template.Makefile.in share/gauche-0.9/%%VERSION%%/template.configure share/gauche-0.9/%%VERSION%%/template.configure.ac @@ -386,5 +449,6 @@ share/gauche-0.9/%%VERSION%%/template.extension.c share/gauche-0.9/%%VERSION%%/template.extension.h share/gauche-0.9/%%VERSION%%/template.extensionlib.stub share/gauche-0.9/%%VERSION%%/template.module.scm +share/gauche-0.9/%%VERSION%%/template.package.scm share/gauche-0.9/%%VERSION%%/template.test.scm share/gauche-0.9/site/lib/.packages/.keepme
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806061825.w56IPYwP059088>