Name : perl-SVN-Dump
| |
Version : 0.06
| Vendor : obs://build_opensuse_org/devel:languages:perl
|
Release : 1.1
| Date : 2018-12-03 21:50:36
|
Group : Development/Libraries/Perl
| Source RPM : perl-SVN-Dump-0.06-1.1.src.rpm
|
Size : 0.05 MB
| |
Packager : (none)
| |
Summary : A Perl interface to Subversion dumps
|
Description :
An SVN::Dump object represents a Subversion dump.
This module follow the semantics used in the reference document (the file _notes/fs_dumprestore.txt_ in the Subversion source tree):
* *
A dump is a collection of records (the SVN::Dump::Record manpage objects).
* *
A record is composed of a set of headers (a the SVN::Dump::Headers manpage object), a set of properties (a the SVN::Dump::Property manpage object) and an optional bloc of text (a the SVN::Dump::Text manpage object).
* *
Some special records (\'delete\' records with a \'Node-kind\' header) recursively contain included records.
Each class has a \'as_string()\' method that prints its content in the dump format.
The most basic thing you can do with SVN::Dump is simply copy a dump:
use SVN::Dump;
my $dump = SVN::Dump->new( \'mydump.svn\' ); print $dump->as_string(); # only print the dump header
while( $rec = $dump->next_record() ) { print $rec->as_string(); }
After the operation, the resulting dump should be identical to the original dump.
|
RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/devel:/languages:/perl/SLE_12_SP4/noarch |
Hmm ... It's impossible ;-) This RPM doesn't exist on any FTP server
Provides :
perl(SVN::Dump)
perl(SVN::Dump::Headers)
perl(SVN::Dump::Property)
perl(SVN::Dump::Reader)
perl(SVN::Dump::Record)
perl(SVN::Dump::Text)
perl-SVN-Dump
Requires :