diff options
author | Sylvio Cesar Teixeira <sylvio@FreeBSD.org> | 2010-04-05 23:04:14 +0000 |
---|---|---|
committer | Sylvio Cesar Teixeira <sylvio@FreeBSD.org> | 2010-04-05 23:04:14 +0000 |
commit | 4ee08821fac2174688073c2254e382ecf653cb95 (patch) | |
tree | fc997ca8479eaab2b157bf118580f7a710c9e6c7 /sysutils/puppet | |
parent | d9e74eb9ac345d3a6c4cfb0406061cb51fe33c97 (diff) |
Notes
Diffstat (limited to 'sysutils/puppet')
-rw-r--r-- | sysutils/puppet/Makefile | 5 | ||||
-rw-r--r-- | sysutils/puppet/distinfo | 6 | ||||
-rw-r--r-- | sysutils/puppet/files/patch-lib-puppet-provider-cron-crontab.rb | 25 |
3 files changed, 5 insertions, 31 deletions
diff --git a/sysutils/puppet/Makefile b/sysutils/puppet/Makefile index 378ecd5ffd37..c27c59a3ceba 100644 --- a/sysutils/puppet/Makefile +++ b/sysutils/puppet/Makefile @@ -6,10 +6,9 @@ # PORTNAME= puppet -PORTVERSION= 0.25.3 -PORTREVISION= 1 +PORTVERSION= 0.25.4 CATEGORIES= sysutils -MASTER_SITES= http://www.reductivelabs.com/downloads/puppet/ +MASTER_SITES= http://www.puppetlabs.com/downloads/${PORTNAME}/ MAINTAINER= raj@csub.edu COMMENT= A configuration management framework written in Ruby diff --git a/sysutils/puppet/distinfo b/sysutils/puppet/distinfo index 1a23ffc34bd1..ff55eb965ded 100644 --- a/sysutils/puppet/distinfo +++ b/sysutils/puppet/distinfo @@ -1,3 +1,3 @@ -MD5 (puppet-0.25.3.tar.gz) = 44bd7408e01d985992fa8b318f4e227e -SHA256 (puppet-0.25.3.tar.gz) = a187019264c2b2d1cad6e103765f616f6e0afa7cc3fbad37fec318ab00e859fe -SIZE (puppet-0.25.3.tar.gz) = 1424590 +MD5 (puppet-0.25.4.tar.gz) = 69c97019fda5620f9f45f6ad64407e3b +SHA256 (puppet-0.25.4.tar.gz) = c2dd640a31d1e57ad09929001f90247cd83908485f1f737abca352eb1866fbf3 +SIZE (puppet-0.25.4.tar.gz) = 1424240 diff --git a/sysutils/puppet/files/patch-lib-puppet-provider-cron-crontab.rb b/sysutils/puppet/files/patch-lib-puppet-provider-cron-crontab.rb deleted file mode 100644 index 8d17e2b7fa44..000000000000 --- a/sysutils/puppet/files/patch-lib-puppet-provider-cron-crontab.rb +++ /dev/null @@ -1,25 +0,0 @@ ---- lib/puppet/provider/cron/crontab.rb.orig 2010-01-11 23:55:13.000000000 +0000 -+++ lib/puppet/provider/cron/crontab.rb 2010-01-19 02:49:58.000000000 +0000 -@@ -27,13 +27,18 @@ - - text_line :environment, :match => %r{^\w+=} - -- crontab = record_line :crontab, :fields => %w{special minute hour monthday month weekday command}, -- :match => %r{^\s*(?:@(\w+)|(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+))\s+(.+)$}, -- :optional => %w{special minute hour weekday month monthday}, :absent => "*" -+ record_line :freebsd_special, :fields => %w{special command}, -+ :match => %r{^@(\w+)\s+(.+)$}, :pre_gen => proc { |record| -+ record[:special] = "@" + record[:special] -+ } -+ -+ crontab = record_line :crontab, :fields => %w{minute hour monthday month weekday command}, -+ :match => %r{^\s*(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(.+)$}, -+ :optional => %w{minute hour weekday month monthday}, :absent => "*" - - class << crontab - def numeric_fields -- fields - [:command, :special] -+ fields - [:command] - end - # Do some post-processing of the parsed record. Basically just - # split the numeric fields on ','. |