deprec 1.9.0 → 1.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,29 +5,29 @@ Capistrano.configuration(:must_exist).load do
5
5
  end
6
6
 
7
7
  task :apache_install do
8
- version = 'httpd-2.2.4'
8
+ version = 'httpd-2.2.6'
9
9
  set :src_package, {
10
- :file => version + '.tar.gz',
11
- :md5sum => '3add41e0b924d4bb53c2dee55a38c09e httpd-2.2.4.tar.gz',
12
- :dir => version,
10
+ :file => version + '.tar.gz',
11
+ :md5sum => 'd050a49bd7532ec21c6bb593b3473a5d httpd-2.2.6.tar.gz',
12
+ :dir => version,
13
13
  :url => "http://www.apache.org/dist/httpd/#{version}.tar.gz",
14
14
  :unpack => "tar zxf #{version}.tar.gz;",
15
15
  :configure => %w(
16
16
  ./configure
17
17
  --enable-mods-shared=all
18
- --enable-proxy
19
- --enable-proxy-balancer
20
- --enable-proxy-http
21
- --enable-rewrite
22
- --enable-cache
23
- --enable-headers
24
- --enable-ssl
25
- --enable-deflate
18
+ --enable-proxy
19
+ --enable-proxy-balancer
20
+ --enable-proxy-http
21
+ --enable-rewrite
22
+ --enable-cache
23
+ --enable-headers
24
+ --enable-ssl
25
+ --enable-deflate
26
26
  --with-included-apr #_so_this_recipe_doesn't_break_when_rerun
27
27
  --enable-dav #_for_subversion_
28
28
  --enable-so #_for_subversion_
29
29
  ;
30
- ).reject{|arg| arg.match '#'}.join(' '),
30
+ ).reject{|arg| arg.match '#'}.join(' '),
31
31
  :make => 'make;',
32
32
  :install => 'make install;',
33
33
  :post_install => 'install -b support/apachectl /etc/init.d/httpd;'
@@ -66,7 +66,7 @@ Capistrano.configuration(:must_exist).load do
66
66
  --with-sqlite
67
67
  --enable-sqlite-utf8
68
68
  --with-openssl
69
- --with-mcrypt
69
+ --with-mcrypt
70
70
  --with-ncurses
71
71
  --with-jpeg-dir=/usr
72
72
  --with-gd
@@ -35,7 +35,7 @@ Capistrano.configuration(:must_exist).load do
35
35
  }.reject{|arg| arg.match '#'}.join(' '),
36
36
  :make => 'make;',
37
37
  :install => 'make install;',
38
- :post_install => 'install -b support/apachectl /etc/init.d/httpd;'
38
+ :post_install => 'install -b scripts/memcached-init /etc/init.d/memcached;'
39
39
  }
40
40
  apt.install( {:base => %w(libevent-dev)}, :stable )
41
41
  deprec.download_src(src_package, src_dir)
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: deprec
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.9.0
7
- date: 2007-06-28 00:00:00 +10:00
6
+ version: 1.9.1
7
+ date: 2007-11-11 00:00:00 +11:00
8
8
  summary: deployment recipes for capistrano
9
9
  require_paths:
10
10
  - lib
@@ -36,20 +36,17 @@ files:
36
36
  - docs/README.svn_trac
37
37
  - lib/deprec
38
38
  - lib/deprec/capistrano_extensions
39
- - lib/deprec/generators
40
- - lib/deprec/recipes
41
- - lib/deprec/recipes.rb
42
- - lib/deprec/templates
43
- - lib/deprec/third_party
44
39
  - lib/deprec/capistrano_extensions/actor_extensions.rb
45
40
  - lib/deprec/capistrano_extensions/cli_extensions.rb
46
41
  - lib/deprec/capistrano_extensions/deprec_extensions.rb
42
+ - lib/deprec/generators
47
43
  - lib/deprec/generators/deprec
48
- - lib/deprec/generators/loader.rb
49
44
  - lib/deprec/generators/deprec/deprec_generator.rb
50
45
  - lib/deprec/generators/deprec/templates
51
- - lib/deprec/generators/deprec/USAGE
52
46
  - lib/deprec/generators/deprec/templates/deploy.rb
47
+ - lib/deprec/generators/deprec/USAGE
48
+ - lib/deprec/generators/loader.rb
49
+ - lib/deprec/recipes
53
50
  - lib/deprec/recipes/apache.rb
54
51
  - lib/deprec/recipes/cache_svn.rb
55
52
  - lib/deprec/recipes/memcache.rb
@@ -59,16 +56,17 @@ files:
59
56
  - lib/deprec/recipes/trac.rb
60
57
  - lib/deprec/recipes/ubuntu.rb
61
58
  - lib/deprec/recipes/vmware.rb
59
+ - lib/deprec/recipes.rb
60
+ - lib/deprec/templates
62
61
  - lib/deprec/templates/postfix_main.conf
63
62
  - lib/deprec/templates/trac.ini.erb
63
+ - lib/deprec/third_party
64
64
  - lib/deprec/third_party/mongrel_cluster
65
- - lib/deprec/third_party/railsmachine
66
- - lib/deprec/third_party/THIRD_PARTY_README
67
- - lib/deprec/third_party/vmbuilder
68
65
  - lib/deprec/third_party/mongrel_cluster/LICENSE
69
66
  - lib/deprec/third_party/mongrel_cluster/recipes.rb
70
67
  - lib/deprec/third_party/mongrel_cluster/resources
71
68
  - lib/deprec/third_party/mongrel_cluster/resources/mongrel_cluster
69
+ - lib/deprec/third_party/railsmachine
72
70
  - lib/deprec/third_party/railsmachine/LICENSE
73
71
  - lib/deprec/third_party/railsmachine/recipes
74
72
  - lib/deprec/third_party/railsmachine/recipes/apache.rb
@@ -76,11 +74,13 @@ files:
76
74
  - lib/deprec/third_party/railsmachine/recipes/templates
77
75
  - lib/deprec/third_party/railsmachine/recipes/templates/httpd-ssl.conf
78
76
  - lib/deprec/third_party/railsmachine/recipes/templates/httpd.conf
77
+ - lib/deprec/third_party/THIRD_PARTY_README
78
+ - lib/deprec/third_party/vmbuilder
79
79
  - lib/deprec/third_party/vmbuilder/plugins
80
- - lib/deprec/third_party/vmbuilder/plugins.rb
81
80
  - lib/deprec/third_party/vmbuilder/plugins/apt.rb
82
81
  - lib/deprec/third_party/vmbuilder/plugins/gem.rb
83
82
  - lib/deprec/third_party/vmbuilder/plugins/std.rb
83
+ - lib/deprec/third_party/vmbuilder/plugins.rb
84
84
  - resources/capistrano_include_dotfiles.patch
85
85
  test_files: []
86
86