|
|
|
@ -89,11 +89,11 @@ sub parse_target_metadata($) { |
|
|
|
|
}; |
|
|
|
|
push @{$target->{profiles}}, $profile; |
|
|
|
|
}; |
|
|
|
|
/^Target-Profile-Name:\s*(.+)\s*$/ and do { |
|
|
|
|
/^Target-Profile-Name:\s*(.+)\s*$/ and $profile->{name} = $1; |
|
|
|
|
/^Target-Profile-Priority:\s*(\d+)\s*$/ and do { |
|
|
|
|
$profile->{priority} = $1; |
|
|
|
|
$target->{sort} = 1; |
|
|
|
|
$profile->{name} = $1; |
|
|
|
|
}; |
|
|
|
|
/^Target-Profile-Priority:\s*(\d+)\s*$/ and $profile->{priority} = $1; |
|
|
|
|
/^Target-Profile-Packages:\s*(.*)\s*$/ and $profile->{packages} = [ split(/\s+/, $1) ]; |
|
|
|
|
/^Target-Profile-Description:\s*(.*)\s*/ and $profile->{desc} = get_multiline(*FILE); |
|
|
|
|
/^Target-Profile-Config:/ and $profile->{config} = get_multiline(*FILE, "\t"); |
|
|
|
|