1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
#
# Copyright 2012-2016, Chef Software, Inc.
#
# 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 "chef"
friendly_name "Chef Client"
maintainer "Chef Software, Inc. <maintainers@chef.io>"
homepage "https://www.chef.io"
build_iteration 1
current_file ||= __FILE__
version_file = File.expand_path("../../../../VERSION", current_file)
build_version IO.read(version_file).strip
if windows?
# NOTE: Ruby DevKit fundamentally CANNOT be installed into "Program Files"
# Native gems will use gcc which will barf on files with spaces,
# which is only fixable if everyone in the world fixes their Makefiles
install_dir "#{default_root}/opscode/#{name}"
package_name "chef-client"
else
install_dir "#{default_root}/#{name}"
end
override :ruby, version: "2.1.8"
# Leave dev-kit pinned to 4.5 because 4.7 is 20MB larger and we don't want
# to unnecessarily make the client any fatter.
override :'ruby-windows-devkit', version: "4.5.2-20111229-1559" if windows? && windows_arch_i386?
override :bundler, version: "1.11.2"
override :rubygems, version: "2.5.2"
# Chef Release version pinning
override :chef, version: "local_source"
override :ohai, version: "master"
# Global FIPS override flag.
if windows? || rhel?
override :fips, enabled: true
end
dependency "preparation"
dependency "rb-readline"
dependency "nokogiri"
dependency "pry"
dependency "chef"
dependency "shebang-cleanup"
dependency "version-manifest"
dependency "openssl-customization"
if windows?
dependency "ruby-windows-devkit"
dependency "ruby-windows-devkit-bash"
end
# Lower level library pins
override :xproto, version: "7.0.28"
override :"util-macros", version: "1.19.0"
override :makedepend, version: "1.0.5"
## We are currently on the latest of these:
#override :"ncurses", version: "5.9"
#override :"zlib", version: "1.2.8"
#override :"pkg-config-lite", version: "0.28-1"
#override :"libffi", version: "3.2.1"
#override :"libyaml", version: "0.1.6"
#override :"libiconv", version: "1.14"
#override :"liblzma", version: "5.2.2"
#override :"libxml2", version: "2.9.3"
#override :"libxslt", version: "1.1.28"
## according to comment in omnibus-sw, latest versions don't work on solaris
# https://github.com/chef/omnibus-software/blob/aefb7e79d29ca746c3f843673ef5e317fa3cba54/config/software/libtool.rb#L23
#override :"libtool"
## These can float as they are frequently updated in a way that works for us
#override :"cacerts", # probably best to float?
#override :"openssl" # leave this?
dependency "clean-static-libs"
package :rpm do
signing_passphrase ENV["OMNIBUS_RPM_SIGNING_PASSPHRASE"]
end
proj_to_work_around_cleanroom = self
package :pkg do
identifier "com.getchef.pkg.#{proj_to_work_around_cleanroom.name}"
signing_identity "Developer ID Installer: Chef Software, Inc. (EU3VF8YLX2)"
end
compress :dmg
msi_upgrade_code = "D607A85C-BDFA-4F08-83ED-2ECB4DCD6BC5"
project_location_dir = name
package :msi do
fast_msi true
upgrade_code msi_upgrade_code
wix_candle_extension "WixUtilExtension"
wix_light_extension "WixUtilExtension"
signing_identity "F74E1A68005E8A9C465C3D2FF7B41F3988F0EA09", machine_store: true
parameters ChefLogDllPath: windows_safe_path(gem_path("chef-[0-9]*-mingw32/ext/win32-eventlog/chef-log.dll")),
ProjectLocationDir: project_location_dir
end
|