File: Conflicts2.pm

package info (click to toggle)
libdist-checkconflicts-perl 0.11-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 428 kB
  • sloc: perl: 938; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 186 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Bar::Conflicts2;
use strict;
use warnings;

use Dist::CheckConflicts
    -conflicts => {
        'Bar::Also' => 0.06,
    },
    -also => [
        'Bar::Conflicts3',
    ];

1;