TT#22250 debian/control: move libgraphviz-perl to Recommends

Change-Id: I16ae20cf7f6e2ec38d34579fb59d25d5933414d7
changes/21/15921/2
Andrew Pogrebennyk 9 years ago
parent 724165d540
commit 6d4f69bc56

@ -23,7 +23,6 @@ use strict;
use warnings;
use Cwd 'abs_path';
use Data::Dumper;
use GraphViz;
use Getopt::Long;
use English;
@ -46,6 +45,14 @@ if($#ARGV!=1)
die(usage());
}
my $rc = eval
{
require GraphViz;
GraphViz->import();
1;
};
return unless $rc;
my $g = GraphViz->new();
my $filename = abs_path($ARGV[0]);
my $outfilename = $ARGV[1];

6
debian/control vendored

@ -6,7 +6,6 @@ Build-Depends:
debhelper (>= 9),
devscripts,
libconfig-tiny-perl,
libgraphviz-perl,
libhash-merge-perl,
libjson-perl,
liblist-allutils-perl,
@ -15,6 +14,8 @@ Build-Depends:
libtext-csv-perl,
libyaml-libyaml-perl,
python,
Recommends:
libgraphviz-perl,
Standards-Version: 3.9.8
Homepage: https://www.sipwise.com/
@ -24,7 +25,6 @@ Depends:
curl,
libconfig-tiny-perl,
libfile-slurp-perl,
libgraphviz-perl,
libhash-merge-perl,
libio-compress-perl,
libjson-perl,
@ -42,5 +42,7 @@ Depends:
tcpdump,
${misc:Depends},
${perl:Depends},
Recommends:
libgraphviz-perl,
Description: Kamailio configuration tests
Scripts and tests scenarios to check Kamailio configuration.

Loading…
Cancel
Save