Date: Mon, 13 Nov 2006 08:15:49 -0600 (CST) From: Erik Greenwald <erik@smluc.org> To: FreeBSD-gnats-submit@FreeBSD.org Cc: erik@math.missouristate.edu Subject: ports/105477: [Maintainer Update] lang/gauche 0.8.7 -> 0.8.8 Message-ID: <20061113141549.9ABC11CE55@phoenix.smluc.org> Resent-Message-ID: <200611131420.kADEK2b4013946@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 105477 >Category: ports >Synopsis: [Maintainer Update] lang/gauche 0.8.7 -> 0.8.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Nov 13 14:20:01 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Erik Greenwald >Release: FreeBSD 6.2-PRERELEASE i386 >Organization: >Environment: System: FreeBSD fenris 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #0: Tue Oct 10 16:58:15 EDT 2006 erik@fenris:/usr/obj/usr/src/sys/FENRIS i386 >Description: freshmeat blurb: Exact rational arithmetic is added. The reader becomes more strict about malformed UTF-8 input. Numerous bugfixes, including a fix for a race condition in I/O. >How-To-Repeat: >Fix: --- lang_gauche.patch begins here --- Index: lang/gauche/Makefile =================================================================== RCS file: /home/ncvs/ports/lang/gauche/Makefile,v retrieving revision 1.41 diff -u -r1.41 Makefile --- lang/gauche/Makefile 3 Jul 2006 14:53:56 -0000 1.41 +++ lang/gauche/Makefile 13 Nov 2006 14:10:50 -0000 @@ -6,7 +6,7 @@ # PORTNAME= gauche -PORTVERSION= 0.8.7 # Keep databases/gauche-gdbm in sync with this +PORTVERSION= 0.8.8 # Keep databases/gauche-gdbm in sync with this CATEGORIES= lang scheme MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} Index: lang/gauche/distinfo =================================================================== RCS file: /home/ncvs/ports/lang/gauche/distinfo,v retrieving revision 1.22 diff -u -r1.22 distinfo --- lang/gauche/distinfo 1 May 2006 18:22:26 -0000 1.22 +++ lang/gauche/distinfo 13 Nov 2006 14:10:50 -0000 @@ -1,3 +1,3 @@ -MD5 (Gauche-0.8.7.tgz) = 5c7cb6eba7455c9877aec884b0088a25 -SHA256 (Gauche-0.8.7.tgz) = 4b8ff6064529c457c81b9bc5205cb1ec3cd6f316735de0d1b611f97cccfe655c -SIZE (Gauche-0.8.7.tgz) = 2939701 +MD5 (Gauche-0.8.8.tgz) = ed12c4e28ec36f68629843c4e8725ccc +SHA256 (Gauche-0.8.8.tgz) = 508834bd84a4c5446d6c8d7606246debea5bc88a8b6a06ee6c42f4f93d07cf11 +SIZE (Gauche-0.8.8.tgz) = 3022297 Index: lang/gauche/pkg-plist =================================================================== RCS file: /home/ncvs/ports/lang/gauche/pkg-plist,v retrieving revision 1.22 diff -u -r1.22 pkg-plist --- lang/gauche/pkg-plist 1 May 2006 18:22:26 -0000 1.22 +++ lang/gauche/pkg-plist 13 Nov 2006 14:10:50 -0000 @@ -30,6 +30,7 @@ lib/gauche/%%VERSION%%/%%TARGET%%/srfi-13-lib.so lib/gauche/%%VERSION%%/%%TARGET%%/srfi-19-lib.so lib/gauche/%%VERSION%%/%%TARGET%%/srfi-43-lib.so +lib/gauche/%%VERSION%%/%%TARGET%%/sxml-serializer.so lib/gauche/%%VERSION%%/%%TARGET%%/sxml-ssax.so lib/gauche/%%VERSION%%/%%TARGET%%/sxml-sxpath.so lib/gauche/%%VERSION%%/%%TARGET%%/sxml-tools.so @@ -40,6 +41,7 @@ lib/gauche/%%VERSION%%/%%TARGET%%/vport.so lib/gauche/%%VERSION%%/include/gauche.h lib/gauche/%%VERSION%%/include/gauche/arch.h +lib/gauche/%%VERSION%%/include/gauche/bignum.h lib/gauche/%%VERSION%%/include/gauche/builtin-syms.h lib/gauche/%%VERSION%%/include/gauche/char_euc_jp.h lib/gauche/%%VERSION%%/include/gauche/char_none.h @@ -53,8 +55,11 @@ lib/gauche/%%VERSION%%/include/gauche/int64.h lib/gauche/%%VERSION%%/include/gauche/mingw-compat.h lib/gauche/%%VERSION%%/include/gauche/net.h +lib/gauche/%%VERSION%%/include/gauche/number.h +lib/gauche/%%VERSION%%/include/gauche/port.h lib/gauche/%%VERSION%%/include/gauche/pthread.h lib/gauche/%%VERSION%%/include/gauche/scmconst.h +lib/gauche/%%VERSION%%/include/gauche/system.h lib/gauche/%%VERSION%%/include/gauche/uthread.h lib/gauche/%%VERSION%%/include/gauche/uvector.h lib/gauche/%%VERSION%%/include/gauche/vm.h @@ -67,6 +72,10 @@ lib/libgauche.so.%%VERSION%% lib/libgauche.so.0 share/aclocal/gauche.m4 +share/gauche/%%VERSION%%/lib/compat/norational.scm +share/gauche/%%VERSION%%/lib/sxml/serializer.scm +share/gauche/%%VERSION%%/lib/util/rbtree.scm +share/gauche/%%VERSION%%/lib/util/trie.scm %%DATADIR%%/%%VERSION%%/aclocal.m4 %%DATADIR%%/%%VERSION%%/lib/.packages/.keepme %%DATADIR%%/%%VERSION%%/lib/binary/io.scm Index: lang/gauche/files/patch-doc-Makefile.in =================================================================== RCS file: /home/ncvs/ports/lang/gauche/files/patch-doc-Makefile.in,v retrieving revision 1.6 diff -u -r1.6 patch-doc-Makefile.in --- lang/gauche/files/patch-doc-Makefile.in 21 May 2006 19:13:53 -0000 1.6 +++ lang/gauche/files/patch-doc-Makefile.in 13 Nov 2006 14:10:50 -0000 @@ -1,5 +1,5 @@ ---- ./doc/Makefile.in.orig Fri Apr 7 20:26:08 2006 -+++ ./doc/Makefile.in Tue May 9 14:38:56 2006 +--- doc/Makefile.in.orig Sun Oct 22 03:55:35 2006 ++++ doc/Makefile.in Sun Nov 12 12:14:52 2006 @@ -79,7 +79,7 @@ pdf : gauche-refe.pdf @@ -14,13 +14,11 @@ $(GOSH) ./extract -en -o gauche-refe.texi gauche-ref.texi -gauche-refe.info.gz : gauche-refe.texi -- if test X$(MAKEINFO) != X -a X$(GZIP_PROGRAM) != X; then \ -- $(MAKEINFO) --no-warn gauche-refe.texi; \ ++gauche-refe.info : gauche-refe.texi + if test X$(MAKEINFO) != X -a X$(GZIP_PROGRAM) != X; then \ + env LANG=C $(MAKEINFO) --no-warn gauche-refe.texi; \ - rm -rf gauche-refe.info*.gz; \ - $(GZIP_PROGRAM) gauche-refe.info gauche-refe.info-[0-9]*; \ -+gauche-refe.info : gauche-refe.texi -+ if test X$(MAKEINFO) != X ; then \ -+ $(MAKEINFO) --no-warn --no-split gauche-refe.texi; \ fi gauche-refj.html : gauche-refj.texi @@ -29,13 +27,11 @@ $(GOSH) ./extract -jp -o gauche-refj.texi gauche-ref.texi -gauche-refj.info.gz : gauche-refj.texi -- if test X$(MAKEINFO) != X -a X$(GZIP_PROGRAM) != X; then \ -- $(MAKEINFO) --no-warn gauche-refj.texi; \ ++gauche-refj.info : gauche-refj.texi + if test X$(MAKEINFO) != X -a X$(GZIP_PROGRAM) != X; then \ + env LANG=C $(MAKEINFO) --no-warn gauche-refj.texi; \ - rm -rf gauche-refj.info*.gz; \ - $(GZIP_PROGRAM) gauche-refj.info gauche-refj.info-[0-9]*; \ -+gauche-refj.info : gauche-refj.texi -+ if test X$(MAKEINFO) != X; then \ -+ $(MAKEINFO) --no-warn --no-split gauche-refj.texi; \ fi gauche-deve.texi : gauche-dev.texi extract --- lang_gauche.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20061113141549.9ABC11CE55>