#!/usr/bin/perl

use strict;
use warnings;
use Getopt::Long;
use RPM::Source::Transformation::GenericUtility;

$RPM::Source::Transformation::RaiseReleaseFactory::nextrel='nmu';
$RPM::Source::Transformation::RaiseReleaseFactory::defaultchangelog=
'- NMU for unknown reason:
  the person above was too neglectant to add --changelog "- NMU: <reason>" option.';

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