This plugin allows you to schedule events to run at recurring
intervals. Events will run during the first request which meets or exceeds the specified time. Depending on the level of traffic to the application, events may or may not run at exactly the correct time, but it should be enough to satisfy many basic scheduling needs. WWW: http://search.cpan.org/dist/Catalyst-Plugin-Scheduler/ PR: ports/133074 Submitted by: Fernan Aguero <fernan at iib.unsam.edu.ar>
This commit is contained in:
parent
c55582e081
commit
6ca3fb232e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=231142
5 changed files with 48 additions and 0 deletions
|
@ -764,6 +764,7 @@
|
|||
SUBDIR += p5-Catalyst-Plugin-Params-Nested
|
||||
SUBDIR += p5-Catalyst-Plugin-Pluggable
|
||||
SUBDIR += p5-Catalyst-Plugin-Prototype
|
||||
SUBDIR += p5-Catalyst-Plugin-Scheduler
|
||||
SUBDIR += p5-Catalyst-Plugin-Server
|
||||
SUBDIR += p5-Catalyst-Plugin-Session
|
||||
SUBDIR += p5-Catalyst-Plugin-Session-FastMmap
|
||||
|
|
34
www/p5-Catalyst-Plugin-Scheduler/Makefile
Normal file
34
www/p5-Catalyst-Plugin-Scheduler/Makefile
Normal file
|
@ -0,0 +1,34 @@
|
|||
# Ports collection makefile for: p5-Catalyst-Plugin-Scheduler
|
||||
# Date created: 25.Mar.2007
|
||||
# Whom: Fernan Aguero <fernan@iib.unsam.edu.ar>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= Catalyst-Plugin-Scheduler
|
||||
PORTVERSION= 0.08
|
||||
CATEGORIES= www perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= fernan@iib.unsam.edu.ar
|
||||
COMMENT= Schedule events to run in a cron-like manner
|
||||
|
||||
RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:${PORTSDIR}/www/p5-Catalyst-Runtime \
|
||||
p5-DateTime-Event-Cron>=0:${PORTSDIR}/devel/p5-DateTime-Event-Cron \
|
||||
p5-Set-Scalar>=0:${PORTSDIR}/devel/p5-Set-Scalar \
|
||||
p5-Storable>=0:${PORTSDIR}/devel/p5-Storable \
|
||||
p5-YAML>=0:${PORTSDIR}/textproc/p5-YAML
|
||||
BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
|
||||
PERL_MODBUILD= yes
|
||||
|
||||
MAN3= Catalyst::Plugin::Scheduler.3
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PERL_LEVEL} < 500801
|
||||
IGNORE= requires at least Perl 5.8.1. Install lang/perl5.8, and try again
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
3
www/p5-Catalyst-Plugin-Scheduler/distinfo
Normal file
3
www/p5-Catalyst-Plugin-Scheduler/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (Catalyst-Plugin-Scheduler-0.08.tar.gz) = a3b22b3a1e25cc05782dbc319fe341d2
|
||||
SHA256 (Catalyst-Plugin-Scheduler-0.08.tar.gz) = 3c3d69bf2c2faaa81ec680039f067d28d41ef59aa90318f29ab6d0e98ecd1412
|
||||
SIZE (Catalyst-Plugin-Scheduler-0.08.tar.gz) = 12635
|
7
www/p5-Catalyst-Plugin-Scheduler/pkg-descr
Normal file
7
www/p5-Catalyst-Plugin-Scheduler/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
|||
This plugin allows you to schedule events to run at recurring
|
||||
intervals. Events will run during the first request which meets or
|
||||
exceeds the specified time. Depending on the level of traffic to the
|
||||
application, events may or may not run at exactly the correct time,
|
||||
but it should be enough to satisfy many basic scheduling needs.
|
||||
|
||||
WWW: http://search.cpan.org/dist/Catalyst-Plugin-Scheduler/
|
3
www/p5-Catalyst-Plugin-Scheduler/pkg-plist
Normal file
3
www/p5-Catalyst-Plugin-Scheduler/pkg-plist
Normal file
|
@ -0,0 +1,3 @@
|
|||
%%SITE_PERL%%/Catalyst/Plugin/Scheduler.pm
|
||||
@dirrmtry %%SITE_PERL%%/Catalyst/Plugin
|
||||
@dirrmtry %%SITE_PERL%%/Catalyst
|
Loading…
Reference in a new issue