SVN::Notify::Snapshot - Take snapshots from Subversion activity


SVN-Notify-Snapshot documentation  | view source Contained in the SVN-Notify-Snapshot distribution.

Index


NAME

Top

SVN::Notify::Snapshot - Take snapshots from Subversion activity

VERSION

Top

This document describes version 0.04 of SVN::Notify::Snapshot, released June 28, 2008.

SYNOPSIS

Top

Use svnnotify in post-commit:

  svnnotify --repos-path "$1" --revision "$2" \
    --to "/tmp/snapshot-$2.tar.gz" --handler Snapshot \
    [--append-rev] --handle-path pathname [options]
    [--tag-regex]

or as part of a SVN::Notify::Config YAML file:

  #!/usr/bin/perl -MSVN::Notify::Config=$0
  --- #YAML:1.0
  '':
    PATH: "/usr/local/bin:/usr/bin"
  '/project1/trunk':
    handler: Snapshot
    append-rev: 1
    to: "/srv/www/htdocs/snapshot.tgz"

Produce snapshots of a repository path. Typically used as part of a postcommit script, which will automatically e.g. a trunk-latest.tar.gz file for every commit to a specified path.

USAGE

Top

As a subclass of SVN::Notify, there are several ways to integrate this module into your postcommit script:

1. postcommit script

Add a line to an existing postcommit script that sets the --handler commandline option to "Snapshot". This method has the drawback that it will require multiple Perl interpreters to start up (one per handler line), which will delay the commit from completing on the client. Unless you use --to-regex-map, it will also mean that each line will be called for each revision committed, even if the path of interest hasn't changed.

2. SVN::Notify::Config stanza

Multiple handlers can be configured in a single SVN::Notify::Config YAML file, which acts both as the configuration data as well as the postcommit script itself. This method also ensures that the Snapshot handler will only be called when a change is made to the associated path (like --to-regex-map in the commandline case).

Options

In addition to all of the options available to the base SVN::Notify class, there are several that are specific to the Snapshot handler.

* handle-path

This commandline argument specifies the portion of the repository to take snapshot from, is not optional. It will be automatically set when using either --to-regex-map or when executed within a SVN::Notify::Config script, however.

* snapshot-base

By default, the base path inside the snapshot will be the basename of the --to argument, but you may override it with --snapshot-base. For example, if you are taking a snapshot of project1/trunk, you may want to set the snapshot-base to "project1" instead.

* append-rev

If you are passing both the --revision and --to arguments to svnnotify on the commandline, you can always construct the filename to include the revision by using shell substitution variables (like the example in the SYNOPSIS. However, if you are using a YAML config file or the --to-regex-map commandline option, you may want to use the append-rev option, which will insert a hyphen and the revision into the destination filename between the basename and the suffix.

For example, in the SYNOPSIS above, the YAML stanza will generate files like:

  /srv/www/htdocs/snapshot-1.tgz
  /srv/www/htdocs/snapshot-5.tgz
  /srv/www/htdocs/snapshot-6.tgz

assuming that the /project1/trunk changed in revs 1, 5, and 6.

AUTHORS

Top

John Peacock <jpeacock@cpan.org>

Autrijus Tang <autrijus@autrijus.org>

SEE ALSO

Top

SVN::Notify, SVN::Notify::Config

BUGS

Top

No bugs have been reported.

Please report any bugs or feature requests to bug-svn-notify-snapshot@rt.cpan.org, or through the web interface at http://rt.cpan.org.

LICENCE AND COPYRIGHT

Top


SVN-Notify-Snapshot documentation  | view source Contained in the SVN-Notify-Snapshot distribution.