git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] Import David's SVN exporter
@ 2010-05-23 21:40 Ramkumar Ramachandra
  2010-05-23 21:40 ` [WIP PATCH 1/7] Add skeleton remote helper for SVN Ramkumar Ramachandra
                   ` (6 more replies)
  0 siblings, 7 replies; 29+ messages in thread
From: Ramkumar Ramachandra @ 2010-05-23 21:40 UTC (permalink / raw)
  To: Git Mailing List; +Cc: David Michael Barr

Except for the first patch, this patch series attempts to include
David's exporter [1] into git.git. I've made some efforts to go
through every small detail in the code to clean and document it for
clarity. If the code is more-or-less ready for inclusion (perhaps into
'next'?), the plan is to continue developing the exporter on a
separate repository and pull changes into git.git. I haven't written a
Makefile rule for building this yet.

The first patch includes the skeleton remote helper I sent last time
with some minor changes, and is still a WIP (I'm especially unhappy
with the Makefile rule): I'll post another patch shortly. I've only
included it in this series to illustrate how I'll use David's
exporter.

[1]: http://github.com/artagnon/svn-dump-fast-export

-- Ram

Ramkumar Ramachandra (7):
  Add skeleton remote helper for SVN
  Add cpp macro implementation of treaps
  Add buffer pool library
  Add a memory pool library
  Add API for string-specific memory pool
  Add SVN revision parser and exporter
  Add handler for SVN dump

 Makefile              |    9 ++-
 remote-svn.c          |  201 +++++++++++++++++++++++++++++
 vcs-svn/fast_export.c |   61 +++++++++
 vcs-svn/fast_export.h |   17 +++
 vcs-svn/line_buffer.c |  115 +++++++++++++++++
 vcs-svn/line_buffer.h |   14 ++
 vcs-svn/obj_pool.h    |   61 +++++++++
 vcs-svn/repo_tree.c   |  333 +++++++++++++++++++++++++++++++++++++++++++++++++
 vcs-svn/repo_tree.h   |   31 +++++
 vcs-svn/string_pool.c |   84 +++++++++++++
 vcs-svn/string_pool.h |   11 ++
 vcs-svn/svnclient.c   |   20 +++
 vcs-svn/svnclient.h   |    7 +
 vcs-svn/svndump.c     |  277 ++++++++++++++++++++++++++++++++++++++++
 vcs-svn/svndump.h     |    7 +
 vcs-svn/trp.h         |  221 ++++++++++++++++++++++++++++++++
 16 files changed, 1468 insertions(+), 1 deletions(-)
 create mode 100644 remote-svn.c
 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/svnclient.c
 create mode 100644 vcs-svn/svnclient.h
 create mode 100644 vcs-svn/svndump.c
 create mode 100644 vcs-svn/svndump.h
 create mode 100644 vcs-svn/trp.h

^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2010-05-30 16:53 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-23 21:40 [PATCH 0/7] Import David's SVN exporter Ramkumar Ramachandra
2010-05-23 21:40 ` [WIP PATCH 1/7] Add skeleton remote helper for SVN Ramkumar Ramachandra
2010-05-23 21:40 ` [PATCH 2/7] Add cpp macro implementation of treaps Ramkumar Ramachandra
2010-05-29  7:18   ` Jonathan Nieder
2010-05-30  9:09     ` Ramkumar Ramachandra
2010-05-30  9:31       ` Jonathan Nieder
2010-05-30  9:33         ` Ramkumar Ramachandra
2010-05-23 21:40 ` [PATCH 3/7] Add buffer pool library Ramkumar Ramachandra
2010-05-24  7:47   ` Peter Baumann
2010-05-24 10:11     ` Ramkumar Ramachandra
2010-05-24 10:37       ` David Michael Barr
2010-05-29  8:51   ` Jonathan Nieder
2010-05-29 10:55     ` David Michael Barr
2010-05-23 21:40 ` [PATCH 4/7] Add a memory " Ramkumar Ramachandra
2010-05-29  9:06   ` Jonathan Nieder
2010-05-30  9:12     ` Ramkumar Ramachandra
2010-05-30  9:55       ` Jonathan Nieder
2010-05-30 10:51         ` Ramkumar Ramachandra
2010-05-23 21:40 ` [PATCH 5/7] Add API for string-specific memory pool Ramkumar Ramachandra
2010-05-29 11:38   ` Jonathan Nieder
2010-05-30  9:38     ` Ramkumar Ramachandra
2010-05-30 10:09       ` Jonathan Nieder
2010-05-30 16:52     ` Ramkumar Ramachandra
2010-05-23 21:40 ` [PATCH 6/7] Add SVN revision parser and exporter Ramkumar Ramachandra
2010-05-29 14:06   ` Jonathan Nieder
2010-05-30 15:58     ` Ramkumar Ramachandra
2010-05-23 21:40 ` [PATCH 7/7] Add handler for SVN dump Ramkumar Ramachandra
2010-05-30  8:59   ` Jonathan Nieder
2010-05-30 10:45     ` Ramkumar Ramachandra

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).