summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
authordmcmahill <dmcmahill@pkgsrc.org>2011-05-26 01:34:39 +0000
committerdmcmahill <dmcmahill@pkgsrc.org>2011-05-26 01:34:39 +0000
commitb22f42ea7f8dea7b00c26bc97d9bfd7a7598ae2e (patch)
tree5961c891530f811199020b85b50fdf916237547b /time
parent1cb9b996dab95bc79eb32e870315680a4093decd (diff)
downloadpkgsrc-b22f42ea7f8dea7b00c26bc97d9bfd7a7598ae2e.tar.gz
Update to 1.11.
Changes from 1.10 are: 1.11 Web Dic 9 11:40:11 CET 2010 - Added support for $SHELL (Ji�[7m<99>í Pavlovský jira AT getnet.cz) While here, add OS dependent information for NetBSD and DragonFly
Diffstat (limited to 'time')
-rw-r--r--time/p5-Schedule-At/Makefile5
-rw-r--r--time/p5-Schedule-At/distinfo9
-rw-r--r--time/p5-Schedule-At/patches/patch-aa19
3 files changed, 27 insertions, 6 deletions
diff --git a/time/p5-Schedule-At/Makefile b/time/p5-Schedule-At/Makefile
index 2987880a94d..9c2059f6332 100644
--- a/time/p5-Schedule-At/Makefile
+++ b/time/p5-Schedule-At/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2011/05/19 05:03:59 obache Exp $
+# $NetBSD: Makefile,v 1.3 2011/05/26 01:34:39 dmcmahill Exp $
-DISTNAME= Schedule-At-1.10
+DISTNAME= Schedule-At-1.11
PKGNAME= p5-${DISTNAME}
CATEGORIES= time perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Schedule/}
@@ -14,6 +14,7 @@ USE_LANGUAGES= # empty
PERL5_PACKLIST= auto/Schedule/At/.packlist
PKG_DESTDIR_SUPPORT= user-destdir
+TEST_ENV= AT_CAN_EXEC=1
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/time/p5-Schedule-At/distinfo b/time/p5-Schedule-At/distinfo
index 2f889e67df6..022d65a5ecf 100644
--- a/time/p5-Schedule-At/distinfo
+++ b/time/p5-Schedule-At/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.1.1.1 2011/05/18 01:29:20 dmcmahill Exp $
+$NetBSD: distinfo,v 1.2 2011/05/26 01:34:39 dmcmahill Exp $
-SHA1 (Schedule-At-1.10.tar.gz) = d55dc9785dbde1adb46fef6836289c37582200fc
-RMD160 (Schedule-At-1.10.tar.gz) = 6088578d1b74dfaac215e0dab0a9ae3d17bdf050
-Size (Schedule-At-1.10.tar.gz) = 7254 bytes
+SHA1 (Schedule-At-1.11.tar.gz) = efd2fe95956875da23ab934dfc5d74fd446a4db9
+RMD160 (Schedule-At-1.11.tar.gz) = 0ee93623f175b30e2f72ea7ec90a67f70d8d6a7e
+Size (Schedule-At-1.11.tar.gz) = 7522 bytes
+SHA1 (patch-aa) = 6cd792f53d0e03cd1cae0fe4b482ec588c35d518
diff --git a/time/p5-Schedule-At/patches/patch-aa b/time/p5-Schedule-At/patches/patch-aa
new file mode 100644
index 00000000000..42b3a42670c
--- /dev/null
+++ b/time/p5-Schedule-At/patches/patch-aa
@@ -0,0 +1,19 @@
+$NetBSD: patch-aa,v 1.1 2011/05/26 01:34:39 dmcmahill Exp $
+
+--- At.pm.orig 2010-12-09 10:38:54.000000000 +0000
++++ At.pm
+@@ -462,6 +462,14 @@ sub AtCfg_freebsd {
+ $AT{'parseJobList'} = sub { $_[0] =~ s/^\s*(.+)\s+\S+\s+\S+\s+(\d+)$/$2_$1/; $_[0] =~ /^(.+)_(.+)$/ };
+ }
+
++sub AtCfg_netbsd {
++ &AtCfg_freebsd;
++}
++
++sub AtCfg_dragonfly {
++ &AtCfg_freebsd;
++}
++
+ sub AtCfg_openbsd {
+ &AtCfg_freebsd;
+ $AT{'headings'} = [];