guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.9-221-gbf0d5


From: Mark H Weaver
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.9-221-gbf0d59e
Date: Mon, 03 Mar 2014 22:34:40 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=bf0d59e54de22f0a2e384b0fea2aa039769676fb

The branch, stable-2.0 has been updated
       via  bf0d59e54de22f0a2e384b0fea2aa039769676fb (commit)
       via  d5f7b6678f40be433bd806309665a36494030293 (commit)
      from  e1bb79fde62e678c0f8ceb32c7edd2dab0201a5c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit bf0d59e54de22f0a2e384b0fea2aa039769676fb
Author: Mark H Weaver <address@hidden>
Date:   Mon Mar 3 17:20:03 2014 -0500

    SRFI-19: Update the table of leap seconds.
    
    * module/srfi/srfi-19.scm (leap-second-table): Update to include the two
      most recent leap seconds.

commit d5f7b6678f40be433bd806309665a36494030293
Author: Mark H Weaver <address@hidden>
Date:   Sat Mar 1 19:03:35 2014 -0500

    Add missing files to the test-suite Makefile.
    
    * test-suite/Makefile.am (SCM_TESTS): Add "tests/compiler.test",
      "tests/encoding-escapes.test", "tests/encoding-iso88591.test",
      "tests/encoding-iso88597.test", "tests/encoding-utf8.test",
      "tests/pairs.test", "tests/records.test", "tests/sort.test",
      "tests/srfi-17.test", "tests/srfi-18.test", "tests/srfi-98.test",
      "tests/streams.test", "tests/vectors.test", and "tests/web-client.test".

-----------------------------------------------------------------------

Summary of changes:
 module/srfi/srfi-19.scm |    9 ++++++---
 test-suite/Makefile.am  |   16 +++++++++++++++-
 2 files changed, 21 insertions(+), 4 deletions(-)

diff --git a/module/srfi/srfi-19.scm b/module/srfi/srfi-19.scm
index c0a27b1..6d86ee6 100644
--- a/module/srfi/srfi-19.scm
+++ b/module/srfi/srfi-19.scm
@@ -1,6 +1,7 @@
 ;;; srfi-19.scm --- Time/Date Library
 
-;;     Copyright (C) 2001, 2002, 2003, 2005, 2006, 2007, 2008, 2009, 2010, 
2011 Free Software Foundation, Inc.
+;; Copyright (C) 2001, 2002, 2003, 2005, 2006, 2007, 2008, 2009, 2010,
+;;   2011, 2014 Free Software Foundation, Inc.
 ;;
 ;; This library is free software; you can redistribute it and/or
 ;; modify it under the terms of the GNU Lesser General Public
@@ -171,7 +172,7 @@
 ;; A table of leap seconds
 ;; See ftp://maia.usno.navy.mil/ser7/tai-utc.dat
 ;; and update as necessary.
-;; this procedures reads the file in the abover
+;; this procedures reads the file in the above
 ;; format and creates the leap second table
 ;; it also calls the almost standard, but not R5 procedures read-line
 ;; & open-input-string
@@ -202,7 +203,9 @@
 ;; each entry is (tai seconds since epoch . # seconds to subtract for utc)
 ;; note they go higher to lower, and end in 1972.
 (define leap-second-table
-  '((1136073600 . 33)
+  '((1341100800 . 35)
+    (1230768000 . 34)
+    (1136073600 . 33)
     (915148800 . 32)
     (867715200 . 31)
     (820454400 . 30)
diff --git a/test-suite/Makefile.am b/test-suite/Makefile.am
index 41feb15..a050f83 100644
--- a/test-suite/Makefile.am
+++ b/test-suite/Makefile.am
@@ -1,7 +1,7 @@
 ## Process this file with automake to produce Makefile.in.
 ##
 ## Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
-##   2010, 2011, 2012, 2013 Software Foundation, Inc.
+##   2010, 2011, 2012, 2013, 2014 Software Foundation, Inc.
 ##
 ## This file is part of GUILE.
 ##
@@ -37,11 +37,16 @@ SCM_TESTS = tests/00-initial-env.test               \
            tests/chars.test                    \
            tests/coding.test                   \
            tests/common-list.test              \
+           tests/compiler.test                 \
            tests/control.test                  \
            tests/continuations.test            \
            tests/coverage.test                 \
            tests/cse.test                      \
            tests/curried-definitions.test      \
+           tests/encoding-escapes.test         \
+           tests/encoding-iso88591.test        \
+           tests/encoding-iso88597.test        \
+           tests/encoding-utf8.test            \
            tests/ecmascript.test               \
            tests/elisp.test                    \
            tests/elisp-compiler.test           \
@@ -77,6 +82,7 @@ SCM_TESTS = tests/00-initial-env.test         \
            tests/numbers.test                  \
            tests/optargs.test                  \
            tests/options.test                  \
+           tests/pairs.test                    \
            tests/parameters.test               \
            tests/peval.test                    \
            tests/print.test                    \
@@ -111,10 +117,12 @@ SCM_TESTS = tests/00-initial-env.test             \
            tests/ramap.test                    \
            tests/rdelim.test                   \
            tests/reader.test                   \
+           tests/records.test                  \
            tests/receive.test                  \
            tests/regexp.test                   \
            tests/session.test                  \
            tests/signals.test                  \
+           tests/sort.test                     \
            tests/srcprop.test                  \
            tests/srfi-1.test                   \
            tests/srfi-6.test                   \
@@ -122,6 +130,8 @@ SCM_TESTS = tests/00-initial-env.test               \
            tests/srfi-11.test                  \
            tests/srfi-13.test                  \
            tests/srfi-14.test                  \
+           tests/srfi-17.test                  \
+           tests/srfi-18.test                  \
            tests/srfi-19.test                  \
            tests/srfi-26.test                  \
            tests/srfi-27.test                  \
@@ -140,11 +150,13 @@ SCM_TESTS = tests/00-initial-env.test             \
            tests/srfi-67.test                  \
            tests/srfi-69.test                  \
            tests/srfi-88.test                  \
+           tests/srfi-98.test                  \
            tests/srfi-105.test                 \
            tests/srfi-111.test                 \
            tests/srfi-4.test                   \
            tests/srfi-9.test                   \
            tests/statprof.test                 \
+           tests/streams.test                  \
            tests/strings.test                  \
            tests/structs.test                  \
            tests/sxml.fold.test                \
@@ -165,8 +177,10 @@ SCM_TESTS = tests/00-initial-env.test              \
            tests/tree-il.test                  \
            tests/types.test                    \
            tests/version.test                  \
+           tests/vectors.test                  \
            tests/vlist.test                    \
            tests/weaks.test                    \
+           tests/web-client.test               \
            tests/web-http.test                 \
            tests/web-request.test              \
            tests/web-response.test             \


hooks/post-receive
-- 
GNU Guile



reply via email to

[Prev in Thread] Current Thread [Next in Thread]