vanagon 0.52.0 → 0.53.0
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.
- checksums.yaml +4 -4
- data/lib/vanagon/platform/windows.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dcfc652c74393de406f65c3fd391916328f1f5345d154f6158df87c2adede4eb
|
|
4
|
+
data.tar.gz: 119027f507e48f04dafd5fb9c75ed0b70558be9fd73f8c3693a94b3e2faa0c62
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 968ddc06e1844e8a01608e64b2caaf11647167dc99ad5e69d2a7fd15fdf3abed275fd968bdd7e734c9ff99b71cfc568b919b3a990b6d3720be880dda9ca4f496
|
|
7
|
+
data.tar.gz: d8262f8c707e164058452f9487e0e88cdba55c01f10d4acc2e2cb267c5f4c4680766748df6abea1d9b72ac9d59199af72a13d119c825d431d0437ec331f6b5aa
|
|
@@ -192,14 +192,14 @@ class Vanagon
|
|
|
192
192
|
# -dr - Root DirectoryRef to point all components to
|
|
193
193
|
# -var - Replace "SourceDir" in the @source attributes of all components with a preprocessor variable
|
|
194
194
|
app_heat_flags = " -dr INSTALLDIR -v -ke -indent 2 -cg AppComponentGroup -gg -srd -t wix/filter.xslt -sreg -var var.AppSourcePath "
|
|
195
|
-
app_heat_flags += " -fips" if project.platform.
|
|
195
|
+
app_heat_flags += " -fips" if project.platform.is_windows? && project.platform.is_fips?
|
|
196
196
|
|
|
197
197
|
app_source_path = "SourceDir/#{project.settings[:base_dir]}/#{project.settings[:company_id]}/#{project.settings[:product_id]}"
|
|
198
198
|
# Candle.exe preprocessor vars are required due to the above double run of heat.exe, both runs of heat use
|
|
199
199
|
# preprocessor variables
|
|
200
200
|
candle_preprocessor = "-dAppSourcePath=\"#{app_source_path}\" "
|
|
201
201
|
candle_flags = "-arch #{@architecture} #{wix_extensions}"
|
|
202
|
-
candle_flags += " -fips" if project.platform.
|
|
202
|
+
candle_flags += " -fips" if project.platform.is_windows? && project.platform.is_fips?
|
|
203
203
|
|
|
204
204
|
# Enable verbose mode for the moment (will be removed for production)
|
|
205
205
|
# localisation flags to be added
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vanagon
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.53.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppet By Perforce
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-09-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: docopt
|