Commit 71fe4369a10b501062b4189d86b65b803614330f
Exists in
master
and in
17 other branches
Merge branch 'init_project' of /mnt/ebs/repositories/gitlab-org/omnibus-gitlab
Showing
3 changed files
with
93 additions
and
7 deletions
Show diff stats
| ... | ... | @@ -0,0 +1,69 @@ |
| 1 | +GIT | |
| 2 | + remote: git://github.com/opscode/omnibus-software.git | |
| 3 | + revision: 42d0a22686dcbc81b96f8bc2e544e706c7426121 | |
| 4 | + branch: master | |
| 5 | + specs: | |
| 6 | + omnibus-software (0.0.1) | |
| 7 | + | |
| 8 | +GEM | |
| 9 | + remote: https://rubygems.org/ | |
| 10 | + specs: | |
| 11 | + addressable (2.3.5) | |
| 12 | + arr-pm (0.0.8) | |
| 13 | + cabin (> 0) | |
| 14 | + backports (3.3.5) | |
| 15 | + cabin (0.6.1) | |
| 16 | + childprocess (0.3.9) | |
| 17 | + ffi (~> 1.0, >= 1.0.11) | |
| 18 | + clamp (0.6.3) | |
| 19 | + ffi (1.9.3) | |
| 20 | + fpm (0.4.42) | |
| 21 | + arr-pm (~> 0.0.8) | |
| 22 | + backports (>= 2.6.2) | |
| 23 | + cabin (>= 0.6.0) | |
| 24 | + childprocess | |
| 25 | + clamp (~> 0.6) | |
| 26 | + ftw (~> 0.0.30) | |
| 27 | + json (>= 1.7.7) | |
| 28 | + ftw (0.0.36) | |
| 29 | + addressable | |
| 30 | + backports (>= 2.6.2) | |
| 31 | + cabin (> 0) | |
| 32 | + http_parser.rb (= 0.5.3) | |
| 33 | + http_parser.rb (0.5.3) | |
| 34 | + ipaddress (0.8.0) | |
| 35 | + json (1.8.1) | |
| 36 | + mime-types (1.25) | |
| 37 | + mixlib-cli (1.3.0) | |
| 38 | + mixlib-config (1.1.2) | |
| 39 | + mixlib-log (1.6.0) | |
| 40 | + mixlib-shellout (1.2.0) | |
| 41 | + ohai (6.20.0) | |
| 42 | + ipaddress | |
| 43 | + mixlib-cli | |
| 44 | + mixlib-config | |
| 45 | + mixlib-log | |
| 46 | + mixlib-shellout | |
| 47 | + systemu (~> 2.5.2) | |
| 48 | + yajl-ruby | |
| 49 | + omnibus (1.2.0) | |
| 50 | + fpm (~> 0.4.33) | |
| 51 | + mixlib-config (~> 1.1.2) | |
| 52 | + mixlib-shellout (~> 1.0) | |
| 53 | + ohai (>= 0.6.12) | |
| 54 | + rake (>= 0.9) | |
| 55 | + thor (>= 0.16.0) | |
| 56 | + uber-s3 | |
| 57 | + rake (10.1.0) | |
| 58 | + systemu (2.5.2) | |
| 59 | + thor (0.18.1) | |
| 60 | + uber-s3 (0.2.4) | |
| 61 | + mime-types (~> 1.17) | |
| 62 | + yajl-ruby (1.1.0) | |
| 63 | + | |
| 64 | +PLATFORMS | |
| 65 | + ruby | |
| 66 | + | |
| 67 | +DEPENDENCIES | |
| 68 | + omnibus (~> 1.2.0) | |
| 69 | + omnibus-software! | ... | ... |
README.md
config/projects/gitlab.rb
| 1 | +# | |
| 2 | +## Copyright:: Copyright (c) 2013 GitLab.com | |
| 3 | +## License:: Apache License, Version 2.0 | |
| 4 | +## | |
| 5 | +## Licensed under the Apache License, Version 2.0 (the "License"); | |
| 6 | +## you may not use this file except in compliance with the License. | |
| 7 | +## You may obtain a copy of the License at | |
| 8 | +## | |
| 9 | +## http://www.apache.org/licenses/LICENSE-2.0 | |
| 10 | +## | |
| 11 | +## Unless required by applicable law or agreed to in writing, software | |
| 12 | +## distributed under the License is distributed on an "AS IS" BASIS, | |
| 13 | +## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 14 | +## See the License for the specific language governing permissions and | |
| 15 | +## limitations under the License. | |
| 16 | +## | |
| 17 | +# | |
| 1 | 18 | |
| 2 | 19 | name "gitlab" |
| 3 | -maintainer "CHANGE ME" | |
| 4 | -homepage "CHANGEME.com" | |
| 20 | +maintainer "GitLab.com" | |
| 21 | +homepage "http://gitlab.org" | |
| 5 | 22 | |
| 6 | 23 | replaces "gitlab" |
| 7 | 24 | install_path "/opt/gitlab" |
| 8 | -build_version Omnibus::BuildVersion.new.semver | |
| 25 | +build_version 6.3.0 | |
| 9 | 26 | build_iteration 1 |
| 10 | 27 | |
| 11 | 28 | # creates required build directories |
| 12 | 29 | dependency "preparation" |
| 13 | 30 | |
| 14 | -# gitlab dependencies/components | |
| 15 | -# dependency "somedep" | |
| 31 | +# GitLab dependencies/components | |
| 32 | +dependency "gitlab" | |
| 16 | 33 | |
| 17 | 34 | # version manifest file |
| 18 | 35 | dependency "version-manifest" | ... | ... |