File: Conflicts.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 (22 lines) | stat: -rw-r--r-- 543 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package Bar::Conflicts;
use strict;
use warnings;

use Dist::CheckConflicts
    ':runtime',
    -conflicts => {
        'Bar::Foo'        => 0.01,
        'Bar::Foo::Good'  => 0.01,
        'Bar::Foo::Bad'   => 0.01,
        'Bar::Bar'        => 0.01,
        'Bar::Bar::Good'  => 0.01,
        'Bar::Bar::Bad'   => 0.01,
        'Bar::Baz'        => 0.01,
        'Bar::Baz::Good'  => 0.01,
        'Bar::Baz::Bad'   => 0.01,
        'Bar::Quux'       => 0.01,
        'Bar::Quux::Good' => 0.01,
        'Bar::Quux::Bad'  => 0.01,
    };

1;