From e9c338ea69905611b6164ccf1a2c251801cc2e33 Mon Sep 17 00:00:00 2001 From: Jacob Vosmaer Date: Tue, 27 May 2014 05:00:53 -0700 Subject: [PATCH] Add python and docutils as dependencies --- config/software/gitlab-rails.rb | 1 + config/software/python-docutils.rb | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 0 deletions(-) create mode 100644 config/software/python-docutils.rb diff --git a/config/software/gitlab-rails.rb b/config/software/gitlab-rails.rb index 8672150..8d266ee 100644 --- a/config/software/gitlab-rails.rb +++ b/config/software/gitlab-rails.rb @@ -29,6 +29,7 @@ dependency "curl" dependency "rsync" dependency "libicu" dependency "postgresql" +dependency "python-docutils" dependency "mysql-client" if EE source :git => "https://gitlab.com/gitlab-org/gitlab-ce.git" diff --git a/config/software/python-docutils.rb b/config/software/python-docutils.rb new file mode 100644 index 0000000..d13f3f4 --- /dev/null +++ b/config/software/python-docutils.rb @@ -0,0 +1,28 @@ +# +## Copyright:: Copyright (c) 2014 GitLab.com +## License:: Apache License, Version 2.0 +## +## 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. +## +# + +name "python-docutils" + +default_version "0.11" + +dependency "pip" +dependency "python" + +build do + command "#{install_dir}/embedded/bin/pip install docutils==#{version}" +end -- libgit2 0.21.2