#!/usr/bin/perl -w

use strict;
use warnings;

use RPM::Source::Transformation::Set::Updater5;

my $converter=RPM::Source::Transform->new();
$converter->transform();

__END__

=head1	NAME

source-batch-updater-list5 - batch update packages

=head1	SYNOPSIS

B<source-batch-updater-list5>
[B<-h>]
[B<other spec editing options here, see --help>]
I<input-5-column-tasklist>

=head1	DESCRIPTION

B<source-batch-updater-list5> batch update packages 
according to input file in 5 column format.
input file format is 5 tab separated columns
<rpm name> <source name> <new version> <old version> <source url>

=head1	OPTIONS

There are lots of srpm processing options that are inherited from RPM::Source::*
utilities. To view full list of available options, run source-batch-updater-list5 --help.

=head2 source-batch-updater-list5 specific OPTIONS

=over

=item	B<-h, --help>

Display this help and exit.

=item B<--srpmdir> I<dir>

Directory with input srpms

=back

=head1	AUTHOR

Written by Igor Vlasenko <viy@altlinux.org>.

=head1	COPYING

Copyright (c) 2018-2019 Igor Vlasenko, ALT Linux Team.

This is free software; you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.

=cut

