[CC'd to dbi-dev]

On Mon, Feb 02, 2004 at 04:28:45AM -0500, Jeff Urlwin wrote:
> Tim,
> 
> Can you tell me exactly which commands you used?

If you just want to get a copy to look at or patch you'd just to

    svn checkout http://svn.perl.org/modules/dbi/trunk/

That's it. To send me a patch just to:

    svn update http://svn.perl.org/modules/dbi/trunk/ # get in sync
    svn diff > foo.patch

To load up initially I did something like this:

        tar xfz DBI-1.38.tar.gz
        tar xfz DBI-1.39.tar.gz
        tar xfz DBI-1.40.tar.gz
        svn mkdir http://svn.perl.org/modules/dbi/trunk/
        svn import DBI-1.38 http://svn.perl.org/modules/dbi/trunk/
        svn checkout http://svn.perl.org/modules/dbi/trunk/
        cp -rp DBI-1.39/. trunk/. # the /.'s are important
        (cd trunk && svn status) | grep -v ^M # to find files to svn add
        (cd trunk && svn commit)
        # repeat last three steps for each dir

That's a bit messy and could be cleaned up.

I'll be doing DBD::Oracle soon so I'll make more notes then.

Tim.

Reply via email to