I found that the perl library perl-datetime-format-strptime is missing some runtime dependencies.
- perl-class-singleton
- perl-package-deprecationmanager
- perl-sub-install
I tested the library with a small sample script:
use DateTime::Format::Strptime;
my $strp = DateTime::Format::Strptime->new(
pattern => '%T',
locale => 'en_AU',
time_zone => 'Australia/Melbourne',
);
my $dt = $strp->parse_datetime('23:16:42');
$strp->format_datetime($dt);I can submit a patch, but was not sure about the usual process for such issues.
Should a task be opened first or can I also directly submit a patch and explain the reason within the patch itself?