Hi, I've decided to get this series merged now instead of waiting for the ternary treap refactor. It's in excellent shape, thanks to Jonathan's constant reviews/ fixes and David's constant refactoring. Since Jonathan's last send, I've incoporated some suggestions from my own review of Jonathan's series and split it into two series as I proposed earlier; I'll send the second series (rr/contrib-svn-fe) shortly after this. Once this series is merged, I estimate that the following will come in as incremental patches when the work is finished: rr/ternary-trp-refactor rr/zero-tree-refactor rr/dumpfilev3-parser Thanks. -- Ram David Barr (5): Add memory pool library Add string-specific memory pool Add stream helper library Add infrastructure to write revisions in fast-export format Add SVN dump parser Jason Evans (1): Add treap implementation Jonathan Nieder (2): Export parse_date_basic() to convert a date string to timestamp Introduce vcs-svn lib Makefile | 12 ++- cache.h | 1 + date.c | 14 +-- vcs-svn/LICENSE | 33 +++++ vcs-svn/fast_export.c | 75 +++++++++++ vcs-svn/fast_export.h | 14 ++ vcs-svn/line_buffer.c | 93 ++++++++++++++ vcs-svn/line_buffer.h | 14 ++ vcs-svn/obj_pool.h | 80 ++++++++++++ vcs-svn/repo_tree.c | 335 +++++++++++++++++++++++++++++++++++++++++++++++++ vcs-svn/repo_tree.h | 26 ++++ vcs-svn/string_pool.c | 114 +++++++++++++++++ vcs-svn/string_pool.h | 15 +++ vcs-svn/svndump.c | 289 ++++++++++++++++++++++++++++++++++++++++++ vcs-svn/svndump.h | 8 ++ vcs-svn/trp.h | 220 ++++++++++++++++++++++++++++++++ vcs-svn/trp.txt | 102 +++++++++++++++ 17 files changed, 1436 insertions(+), 9 deletions(-) create mode 100644 vcs-svn/LICENSE create mode 100644 vcs-svn/fast_export.c create mode 100644 vcs-svn/fast_export.h create mode 100644 vcs-svn/line_buffer.c create mode 100644 vcs-svn/line_buffer.h create mode 100644 vcs-svn/obj_pool.h create mode 100644 vcs-svn/repo_tree.c create mode 100644 vcs-svn/repo_tree.h create mode 100644 vcs-svn/string_pool.c create mode 100644 vcs-svn/string_pool.h create mode 100644 vcs-svn/svndump.c create mode 100644 vcs-svn/svndump.h create mode 100644 vcs-svn/trp.h create mode 100644 vcs-svn/trp.txt -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html