-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
133 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
= DESCRIPTION: | ||
|
||
= REQUIREMENTS: | ||
|
||
= ATTRIBUTES: | ||
|
||
= USAGE: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# | ||
# Author:: Marius Ducea ([email protected]) | ||
# Cookbook Name:: diaspora | ||
# Attributes:: diaspora | ||
# | ||
# Copyright 2010, Promet Solutions | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
default.diaspora[:dir] = "/usr/local" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"recipes": { | ||
}, | ||
"replacing": { | ||
}, | ||
"attributes": { | ||
}, | ||
"maintainer_email": "[email protected]", | ||
"groupings": { | ||
}, | ||
"dependencies": { | ||
"mongodb": [ | ||
|
||
], | ||
"xml": [ | ||
|
||
], | ||
"git": [ | ||
|
||
], | ||
"imagemagick": [ | ||
|
||
], | ||
"build-essential": [ | ||
|
||
] | ||
}, | ||
"recommendations": { | ||
}, | ||
"long_description": "= DESCRIPTION:\n\n= REQUIREMENTS:\n\n= ATTRIBUTES: \n\n= USAGE:\n\n", | ||
"suggestions": { | ||
}, | ||
"platforms": { | ||
"debian": [ | ||
|
||
], | ||
"ubuntu": [ | ||
|
||
] | ||
}, | ||
"license": "Apache 2.0", | ||
"version": "0.1.0", | ||
"conflicting": { | ||
}, | ||
"name": "diaspora", | ||
"providing": { | ||
}, | ||
"description": "Installs/Configures diaspora", | ||
"maintainer": "Promet Solutions" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
maintainer "Promet Solutions" | ||
maintainer_email "[email protected]" | ||
license "Apache 2.0" | ||
description "Installs/Configures diaspora" | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.rdoc')) | ||
version "0.1" | ||
|
||
%w{ xml imagemagick git build-essential mongodb }.each do |cb| | ||
depends cb | ||
end | ||
%w{ ubuntu debian }.each do |os| | ||
supports os | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# | ||
# Author:: Marius Ducea ([email protected]) | ||
# Cookbook Name:: diaspora | ||
# Recipe:: default | ||
# | ||
# Copyright 2010, Promet Solutions | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
include_recipe "build-essential" | ||
include_recipe "xml" | ||
include_recipe "imagemagick" | ||
include_recipe "git" | ||
include_recipe "mongodb" | ||
|
||
gem_package "bundler" | ||
package "libxslt1-dev" | ||
|
||
diaspora_dir = "#{node[:diaspora][:dir]}/diaspora" | ||
execute "clone diaspora repository" do | ||
command "git clone http://github.com/diaspora/diaspora.git" | ||
cwd "#{node[:diaspora][:dir]}" | ||
not_if "test -d #{diaspora_dir}" | ||
end | ||
|
||
execute "bundle install" do | ||
command "bundle install" | ||
cwd "#{diaspora_dir}" | ||
not_if "cd #{diaspora_dir}; bundle check |grep 'dependencies are satisfied'" | ||
end |