pspp-commits
[Top][All Lists]
Advanced

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

[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.8.1-74-g02a682


From: Ben Pfaff
Subject: [Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.8.1-74-g02a6822
Date: Wed, 23 Oct 2013 06:07:13 +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 PSPP".

The branch, master has been updated
       via  02a682272552710b1c4c869db3fea1d83b0eb3a7 (commit)
       via  f68aeb1f6d16c5863d9bc7803f403ff6ded9abac (commit)
       via  84dbb69fc7d58eedd8ba5f89e500a3385713f6df (commit)
       via  a1c1a4ca100da5c40fe8637b1d460e61a4a8668e (commit)
       via  9c1c557505cc8e35ea0569ad41c9e821ab885262 (commit)
       via  128f9567c68a176ab88fd0f54b2398de1f23ba9d (commit)
       via  4b3e6a4e436268fc3f6874e7305582f787da8faa (commit)
       via  f411d708e7db110702db21a109c85f045070d713 (commit)
       via  912f3dd1f6cf864162234ee28ee599f5b543b290 (commit)
      from  450315cb33fe7c2dd1261e99d6440ed2de76e7cb (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 02a682272552710b1c4c869db3fea1d83b0eb3a7
Author: Ben Pfaff <address@hidden>
Date:   Tue Oct 22 22:11:58 2013 -0700

    pspp-convert: New utility to convert among data formats.

commit f68aeb1f6d16c5863d9bc7803f403ff6ded9abac
Author: Ben Pfaff <address@hidden>
Date:   Sun Oct 20 09:44:09 2013 -0700

    i18n: Make recode_substring_pool() always return a pool_malloc()'d string.
    
    recode_substring_pool() generally returned a string allocated by
    pool_malloc(), but when there was an error finding the converter it
    returned a string that was allocated by pool_alloc().  This was a problem
    for parse_value_labels() in the system file reader, because that function
    frees all the strings it recodes.  This commit fixes the problem by
    always using pool_malloc() in recode_substring_pool().

commit 84dbb69fc7d58eedd8ba5f89e500a3385713f6df
Author: Ben Pfaff <address@hidden>
Date:   Sun Oct 20 09:36:26 2013 -0700

    csv-file-writer: Use comma as default delimiter.
    
    The previous default delimiter was a null byte, which isn't reasonable.
    (This didn't manifest anywhere because the only existing user of the
    CSV file writer always overrides the default.)

commit a1c1a4ca100da5c40fe8637b1d460e61a4a8668e
Author: Ben Pfaff <address@hidden>
Date:   Tue Oct 22 22:56:18 2013 -0700

    Implement ZLIB compressed system file reader and writer.
    
    Thanks to Hugo Alejandro and Bastián Díaz for providing sample files in
    ZLIB compressed format to use as samples.

commit 9c1c557505cc8e35ea0569ad41c9e821ab885262
Author: Ben Pfaff <address@hidden>
Date:   Fri Oct 18 23:41:59 2013 -0700

    integer-format: Support 8-byte values in integer_put().
    
    It looks to me that the assertion was just incorrect.

commit 128f9567c68a176ab88fd0f54b2398de1f23ba9d
Author: Ben Pfaff <address@hidden>
Date:   Wed Oct 16 22:11:33 2013 -0700

    sys-file-writer: Simplify use of put_cmp_number(), put_cmp_string().

commit 4b3e6a4e436268fc3f6874e7305582f787da8faa
Author: Ben Pfaff <address@hidden>
Date:   Wed Oct 16 22:10:38 2013 -0700

    sys-file-writer: Simplify compressed data buffering.

commit f411d708e7db110702db21a109c85f045070d713
Author: Ben Pfaff <address@hidden>
Date:   Fri Oct 18 22:36:41 2013 -0700

    configure: Make zlib a required dependency (instead of optional).
    
    It would be nice to support zlib compression for system files everywhere,
    not just on some systems, so to do that we need to require zlib.

commit 912f3dd1f6cf864162234ee28ee599f5b543b290
Author: Ben Pfaff <address@hidden>
Date:   Tue Oct 22 22:13:30 2013 -0700

    por-file-writer: Rename 'fv' member to 'case_index'.
    
    'fv' used to be used throughout the tree to refer to the first of possibly
    several sequential indexes into a case, but it is now obsolescent.  The
    term 'case_index' is now widely used.

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

Summary of changes:
 INSTALL                                    |    4 +-
 NEWS                                       |   13 +
 configure.ac                               |   14 +-
 doc/automake.mk                            |    1 +
 doc/dev/system-file-format.texi            |  180 +++++++++++--
 doc/files.texi                             |   33 ++-
 doc/pspp-convert.texi                      |   73 +++++
 doc/pspp.texinfo                           |    5 +-
 perl-module/PSPP.xs                        |    4 +-
 src/data/automake.mk                       |    1 +
 src/data/csv-file-writer.c                 |    4 +-
 src/data/por-file-writer.c                 |    8 +-
 src/data/sys-file-private.h                |   17 +-
 src/data/sys-file-reader.c                 |  394 ++++++++++++++++++++++++++--
 src/data/sys-file-reader.h                 |    3 +-
 src/data/sys-file-writer.c                 |  279 ++++++++++++++++----
 src/data/sys-file-writer.h                 |    5 +-
 src/data/{any-writer.h => sys-file.h}      |   21 +-
 src/language/data-io/save.c                |    7 +-
 src/language/dictionary/sys-file-info.c    |    7 +-
 src/libpspp/i18n.c                         |   11 +-
 src/libpspp/inflate.c                      |    6 +-
 src/libpspp/integer-format.c               |    4 +-
 src/libpspp/zip-reader.c                   |    6 +-
 src/libpspp/zip-reader.h                   |    4 +-
 tests/data/sack.c                          |   83 ++++++-
 tests/data/sys-file-reader.at              |  398 +++++++++++++++++++++++++++-
 tests/data/sys-file.at                     |   33 ++-
 tests/language/dictionary/sys-file-info.at |    2 +-
 utilities/automake.mk                      |    9 +
 utilities/pspp-convert.1                   |   83 ++++++
 utilities/pspp-convert.c                   |  211 +++++++++++++++
 utilities/pspp-dump-sav.c                  |  139 +++++++++-
 33 files changed, 1870 insertions(+), 192 deletions(-)
 create mode 100644 doc/pspp-convert.texi
 copy src/data/{any-writer.h => sys-file.h} (64%)
 create mode 100644 utilities/pspp-convert.1
 create mode 100644 utilities/pspp-convert.c


hooks/post-receive
-- 
GNU PSPP



reply via email to

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