File: control

package info (click to toggle)
libschedule-cron-perl 1.01-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324 kB
  • ctags: 73
  • sloc: perl: 1,781; makefile: 6
file content (33 lines) | stat: -rw-r--r-- 1,469 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Source: libschedule-cron-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 9),
               libmodule-build-perl
Build-Depends-Indep: perl,
                     libtime-parsedate-perl,
                     libtest-pod-perl,
                     libtest-pod-coverage-perl
Standards-Version: 4.0.0
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libschedule-cron-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libschedule-cron-perl.git
Homepage: https://metacpan.org/release/Schedule-Cron

Package: libschedule-cron-perl
Architecture: all
Depends: ${perl:Depends},
         ${misc:Depends},
         libtime-parsedate-perl
Description: simple but complete cron like scheduler
 This perl module can be used for periodically executing perl
 subroutines. The dates and parameters for the subroutines to be
 called are specified with a format known as crontab entry (see
 manpage crontab(5) or documentation of Schedule::Cron).
 .
 The philosophy behind Schedule::Cron is to call subroutines
 periodically from within one single Perl program instead of letting
 cron trigger several (possibly different) Perl scripts. Everything
 under one roof. Furthermore Schedule::Cron provides mechanism to
 create crontab entries dynamically, which isn't that easy with cron.