| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Acme::CPANModules::ManagingMultipleRepositories; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
275734
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
69
|
|
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
|
6
|
|
|
|
|
|
|
our $DATE = '2023-10-29'; # DATE |
|
7
|
|
|
|
|
|
|
our $DIST = 'Acme-CPANModules-ManagingMultipleRepositories'; # DIST |
|
8
|
|
|
|
|
|
|
our $VERSION = '0.002'; # VERSION |
|
9
|
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
4
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
19
|
|
|
11
|
1
|
|
|
1
|
|
463
|
use Acme::CPANModulesUtil::Misc; |
|
|
1
|
|
|
|
|
502
|
|
|
|
1
|
|
|
|
|
88
|
|
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
my $text = <<'_'; |
|
14
|
|
|
|
|
|
|
This Acme::CPANModules list catalogs tools to manage multiple repositories. |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Keywords: git, vcs, cvs |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
**1. On CPAN** |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
**1.a git only** |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
from |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
from |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
from |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
***1.b VCS-agnostic*** |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
TBD |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
**2. Outside CPAN** |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
**2.a git only** |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
TBD |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
**2.b VCS-agnostic** |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
mr, |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
_ |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
our $LIST = { |
|
48
|
|
|
|
|
|
|
summary => 'List of tools to manage multiple repositories', |
|
49
|
|
|
|
|
|
|
description => $text, |
|
50
|
|
|
|
|
|
|
tags => ['task'], |
|
51
|
|
|
|
|
|
|
}; |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
Acme::CPANModulesUtil::Misc::populate_entries_from_module_links_in_description; |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
1; |
|
56
|
|
|
|
|
|
|
# ABSTRACT: List of tools to manage multiple repositories |
|
57
|
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
__END__ |