pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/slib Update to 3b2 alias 3.2.2:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7725a91749c4
branches:  trunk
changeset: 398862:7725a91749c4
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Wed Sep 09 22:56:13 2009 +0000

description:
Update to 3b2 alias 3.2.2:

2009-08-02  Aubrey Jaffer  <jaffer@localhost.localdomain>

        * require.scm (*slib-version*): Bumped from 3b1 to 3b2.

2009-07-24  Clemens Fischer

        * html4each.scm (htm-fields): Value always is string.

2009-07-18  Aubrey Jaffer  <agj%alum.mit.edu@localhost>

        * prec.scm (prec:parse): Removed input newline flushing.

2009-07-03  Aubrey Jaffer  <agj%alum.mit.edu@localhost>

        * prec.scm (prec:parse): Added initial-column argument.

2009-07-03  Sarah Jaffer

        * prec.scm: Rewrote to make thread-safe; fluid-let variables
        replaced with `dyn' argument to most procedures.

2009-06-15  Aubrey Jaffer  <agj%alum.mit.edu@localhost>

        * prec.scm (prec:parse-nofix, prec:parse-postfix): Changed set! of
        *syn-rules* to fluid-let.

2009-06-05  Andrea Girotto

        * kawa.init (scheme-implementation-version): Update for Kawa-1.9.3.

2009-05-17  Aubrey Jaffer  <agj%alum.mit.edu@localhost>

        * dynamic.scm (dynamic-environment-rtd, dynamic-rtd):
        * priorque.scm (make-heap):
        * queue.scm (make-queue):
        * synclo.scm (make-reserved-name-item):
        * values.scm (values): In SISC (1.16.6), the second argument to
        'record-constructor' is not optional.  Second arguments added.

        * sisc.init (syncase:eval, syncase:load): Added.

2009-02-10  Adam Sampson

        * Makefile (install): Fixed DESTDIR use.

2008-12-14  Aubrey Jaffer  <agj%alum.mit.edu@localhost>

        * format.texi (Format Interface): Updated meta-information.

2008-12-13  Aubrey Jaffer  <agj%alum.mit.edu@localhost>

        * slib.texi (Catalog Creation): Added mention of implcat.
        (Compiled and Implementation-Specific Features): Added section.

2008-12-09  Aubrey Jaffer  <agj%alum.mit.edu@localhost>

        * tzfile.scm (tzfile:read): Made warning more informative.
        (tzfile:read): Commented out warning.

2008-12-07  Aubrey Jaffer  <agj%alum.mit.edu@localhost>

        * slib.texi (System Interface): The procedure `system' is Posix.

2008-11-15  Aubrey Jaffer  <agj%alum.mit.edu@localhost>

        * fdl.texi: Updated to Version 1.3.

        * mitscheme.init(system): Now called run-shell-command.
        (print-call-stack): Added dummy definition for trace.

2008-06-18  Aubrey Jaffer  <agj%alum.mit.edu@localhost>

        * require.scm (report:print): Report locations if given filename
        argument.

2008-05-17  Aubrey Jaffer  <agj%alum.mit.edu@localhost>

        * html4each.scm (htm-fields): Treat DTDs like comments.  Fixed
        handling of closing tags.  Corrected documentation.

2008-04-09  Aubrey Jaffer  <agj%alum.mit.edu@localhost>

        * qp.scm (qp): Don't add newlines when *qp-width* is #f.

        * trace.scm (debug:trace-procedure): Increased indent increment to
        2; wrap at column 31 so that depths 16 to 31 are offset.

        * guile.init (list->array): Redefine to take 3 arguments.
        (vector->array, array->vector): Define if missing.

2008-02-25  Aubrey Jaffer  <agj%alum.mit.edu@localhost>

        * guile.init (implementation-vicinity): Thomas Bushnell points out
        that %site-dir mashes all slibcat for all versions together.
        %library-dir (since Guile-1.6) is the versioned directory.
        (library-vicinity): Last resort changed to "/usr/share/slib/".

2008-02-10  Aubrey Jaffer  <agj%alum.mit.edu@localhost>

        * slib.texi (Input/Output): Fixed typo in file-position.
        (System): Macro:load doesn't affect current-error-port.

diffstat:

 devel/slib/Makefile         |   8 ++++----
 devel/slib/distinfo         |  10 +++++-----
 devel/slib/patches/patch-aa |  15 +++------------
 3 files changed, 12 insertions(+), 21 deletions(-)

diffs (69 lines):

diff -r 389710f46336 -r 7725a91749c4 devel/slib/Makefile
--- a/devel/slib/Makefile       Wed Sep 09 21:14:15 2009 +0000
+++ b/devel/slib/Makefile       Wed Sep 09 22:56:13 2009 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.31 2008/03/04 09:41:51 wiz Exp $
+# $NetBSD: Makefile,v 1.32 2009/09/09 22:56:13 wiz Exp $
 
-DISTNAME=      slib-3b1
+DISTNAME=      slib-3b2
 #
 # Convert the version number as follows 2d2 -> 2.4.2, where the d is
 # changed to a 4, representing the 4th letter.
@@ -8,7 +8,7 @@
 #
 # Also update guile-slib
 #
-PKGNAME=       slib-3.2.1
+PKGNAME=       slib-3.2.2
 CATEGORIES=    devel
 MASTER_SITES=  http://swissnet.ai.mit.edu/ftpdir/scm/
 
@@ -31,7 +31,7 @@
 SUBST_CLASSES+=                scmpath
 SUBST_STAGE.scmpath=   post-patch
 SUBST_FILES.scmpath=   guile.init
-SUBST_SED.scmpath=     -e "s|@PREFIX@|${PREFIX}|"
+SUBST_SED.scmpath=     -e "s|/usr/share/slib|${PREFIX}/share/slib|"
 
 do-install:
        ${INSTALL_DATA_DIR} ${DESTDIR}${SLIBDIR}
diff -r 389710f46336 -r 7725a91749c4 devel/slib/distinfo
--- a/devel/slib/distinfo       Wed Sep 09 21:14:15 2009 +0000
+++ b/devel/slib/distinfo       Wed Sep 09 22:56:13 2009 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.12 2008/03/04 09:41:51 wiz Exp $
+$NetBSD: distinfo,v 1.13 2009/09/09 22:56:13 wiz Exp $
 
-SHA1 (slib-3b1.tar.gz) = 27fc1e22df67f6560cac0fc55aa9b7b2f424bd54
-RMD160 (slib-3b1.tar.gz) = 1bced702312d847b41acbfc1e02c0cecc07e0002
-Size (slib-3b1.tar.gz) = 944819 bytes
-SHA1 (patch-aa) = 1d366c82b703f3a6a403a954728ad95df84fb431
+SHA1 (slib-3b2.tar.gz) = fced3cc9ca30bba21da303bfa520b615386852bb
+RMD160 (slib-3b2.tar.gz) = a053dcad6e7a1bea1c0079107f4664df1434270d
+Size (slib-3b2.tar.gz) = 948763 bytes
+SHA1 (patch-aa) = 15d2eecb09101b0605f21455e7ba318e76308aa8
diff -r 389710f46336 -r 7725a91749c4 devel/slib/patches/patch-aa
--- a/devel/slib/patches/patch-aa       Wed Sep 09 21:14:15 2009 +0000
+++ b/devel/slib/patches/patch-aa       Wed Sep 09 22:56:13 2009 +0000
@@ -1,17 +1,8 @@
-$NetBSD: patch-aa,v 1.5 2007/11/29 18:01:30 wiz Exp $
+$NetBSD: patch-aa,v 1.6 2009/09/09 22:56:13 wiz Exp $
 
---- guile.init.orig    2007-11-27 16:08:40.000000000 +0000
+--- guile.init.orig    2008-04-10 01:29:27.000000000 +0000
 +++ guile.init
-@@ -64,7 +64,7 @@
-             (and path (substring path 0 (- (string-length path) 10))))
-         ;; Use this path if your scheme does not support GETENV
-         ;; or if SCHEME_LIBRARY_PATH is not set.
--        "/usr/lib/slib/"
-+        "@PREFIX@/share/slib/"
-         (in-vicinity (implementation-vicinity) "slib/"))))
-     (lambda () library-path)))
- 
-@@ -128,7 +128,8 @@
+@@ -133,7 +133,8 @@
                   ((nosve) ".")
                   ((macos thinkc) ":")
                   ((ms-dos windows atarist os/2) "\\")



Home | Main Index | Thread Index | Old Index