--- svn-load-1.3.orig/debian/changelog +++ svn-load-1.3/debian/changelog @@ -0,0 +1,98 @@ +svn-load (1.3-1) unstable; urgency=low + + * New upstream release + * Adds --username and --password options (Closes: #508930) + * Add a manpage (Closes: #461388) + * Migrate to debhelper 7 + * Update Standards-Version to 3.9.1 + * Update copyright file to latest DEP5 specification + + -- dann frazier Fri, 11 Mar 2011 10:46:26 -0700 + +svn-load (1.2-1) unstable; urgency=low + + * New upstream release + * Check that directories exist before trying to load them. + Thanks to John Wright for the patch (closes: #512423) + + -- dann frazier Sun, 15 Feb 2009 14:23:51 -0700 + +svn-load (1.1-1) experimental; urgency=low + + * New upstream release + + -- dann frazier Fri, 12 Dec 2008 15:42:51 -0700 + +svn-load (1.0-1) experimental; urgency=low + + * New upstream release, upload to experimental due to lenny freeze + * Update Standards-Version to 3.8.0 + + -- dann frazier Tue, 28 Oct 2008 16:53:49 -0600 + +svn-load (0.10-1) unstable; urgency=low + + * New upstream release, all patches from Robert Hunger (thanks!) + - Fix issue with broken symlink becoming a regular file and issue + with a preexisting non-dangling directory symlink (closes: #477380) + - Fix traceback when --no-prompt is used w/o --move-map + (closes: #476569) + + -- dann frazier Wed, 23 Apr 2008 18:11:55 -0600 + +svn-load (0.9-1) unstable; urgency=low + + * New upstream release: + - Add support for regular files becoming symlinks (closes: #436751) + - Fix help output to show that at least one directory is required + (closes: #475093) + * Convert copyright file to proposed machine-readable format + * Update Standards-Version to 3.7.3 + + -- dann frazier Tue, 08 Apr 2008 23:35:54 -0600 + +svn-load (0.8-1) unstable; urgency=low + + * New upstream release + + -- dann frazier Tue, 18 Dec 2007 17:00:33 -0700 + +svn-load (0.7-1) unstable; urgency=low + + * New upstream release + * Fix move-map file feature of using strings instead of lambdas. Thanks + to Marcus Comstedt for the patch and John Wright for the test updates. + (closes: #435686) + + -- dann frazier Tue, 16 Oct 2007 11:05:09 -0600 + +svn-load (0.6-1) unstable; urgency=low + + * New upstream release which adds the move-map feature + from John Wright. + + -- dann frazier Mon, 18 Jun 2007 19:41:16 +0100 + +svn-load (0.5-1) unstable; urgency=low + + * New upstream release with symlink support (closes: #416421) + Thanks to John Wright for fixing the symlink-becomes-file case. + + -- dann frazier Mon, 21 May 2007 14:04:07 -0600 + +svn-load (0.4-2) unstable; urgency=low + + * Upload to unstable + + -- dann frazier Fri, 9 Mar 2007 00:49:29 -0700 + +svn-load (0.4-1) experimental; urgency=low + + [ John Wright ] + * Initial stab at packaging. + + [ dann frazier ] + * Update description fields in control file + * Upload to experimental (closes: #406292) + + -- dann frazier Mon, 19 Feb 2007 14:35:00 -0700 --- svn-load-1.3.orig/debian/rules +++ svn-load-1.3/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f +%: + dh $@ + +override_dh_auto_install: + install -D -m 755 svn-load $(CURDIR)/debian/svn-load/usr/bin/svn-load --- svn-load-1.3.orig/debian/copyright +++ svn-load-1.3/debian/copyright @@ -0,0 +1,38 @@ +Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file?rev=173 +Upstream-Contact: dann frazier +Source: http://dannf.org/svn-load + +Files: * +Copyright: 2007, Hewlett-Packard Development Company, L.P. + 2011, dann frazier +License: + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + . + * Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + . + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + . + * Neither the name of the Hewlett-Packard Co. nor the names + of its contributors may be used to endorse or promote + products derived from this software without specific prior + written permission. + . + THIS SOFTWARE IS PROVIDED BY HEWLETT-PACKARD DEVELOPMENT COMPANY + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT + NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL + HEWLETT-PACKARD DEVELOPMENT COMPANY BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. --- svn-load-1.3.orig/debian/compat +++ svn-load-1.3/debian/compat @@ -0,0 +1 @@ +7 --- svn-load-1.3.orig/debian/dirs +++ svn-load-1.3/debian/dirs @@ -0,0 +1 @@ +usr/bin --- svn-load-1.3.orig/debian/control +++ svn-load-1.3/debian/control @@ -0,0 +1,22 @@ +Source: svn-load +Section: devel +Priority: extra +Maintainer: dann frazier +Build-Depends: debhelper (>= 7.0.50~) +Standards-Version: 3.9.1 + +Package: svn-load +Architecture: all +Depends: python, python-svn, ${misc:Depends} +Description: An enhanced import facility for Subversion + svn-load is a free replacement for svn_load_dirs, an enhanced import + facility for Subversion. + . + This utility will commit a single changeset that alters a repository + subtree to match a local directory. It detects filenames that have been + removed or created, and uses this knowledge to prompt the user about file + and directory movements within the subtree. An automatic tagging option + is also supported. + . + svn-load is well suited for vendor branch maintenance, where external + source is routinely imported and merged. --- svn-load-1.3.orig/debian/manpages +++ svn-load-1.3/debian/manpages @@ -0,0 +1 @@ +debian/svn-load.1 --- svn-load-1.3.orig/debian/svn-load.1 +++ svn-load-1.3/debian/svn-load.1 @@ -0,0 +1,18 @@ +.\" You can view this file with: +.\" nroff -man [filename] +.\" +.TH svn-load 1 +.SH NAME +svn \- An enhanced import facility for Subversion +.SH SYNOPSIS +.TP +\fBsvn-load\fP [\fIoptions\fP] [\fIurl\fP] [\fItargetdir\fP] [\fIlocaldir1, localdir2, ...\fP] +.SH OVERVIEW +svn-load is a free replacement for svn_load_dirs, an enhanced import +facility for Subversion. + +This utility will commit a single changeset that alters a repository subtree to match a local directory. It detects filenames that have been removed or created, and uses this knowledge to prompt the user about file and directory movements within the subtree. An automatic tagging option is also supported. + +svn-load is well suited for vendor branch maintenance, where external source is routinely imported and merged. + +Run `svn-load -h' for detailed usage information.