summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2020-02-04 13:32:00 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2020-02-04 16:05:31 -0800
commit7a4ca0be1789abaecadaf1097a341f37ffc2dfdc (patch)
treee24255b6bd4c280c17963941ba95c95c45f3d6a5
parenta95b6690b1c3207d2297f1b2ed6f0924da3330e9 (diff)
downloadchef-lcg/chef-sugar-versionstring-backport.tar.gz
Add some version string backcompat APIslcg/chef-sugar-versionstring-backport
These are strictly necessary for backcompat with chef-sugar and necessary for converting omnibus off of chef-sugar and onto chef-utils. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r--chef-utils/lib/chef-utils.rb3
-rw-r--r--chef-utils/lib/chef-utils/dsl/platform.rb2
-rw-r--r--chef-utils/lib/chef-utils/dsl/platform_version.rb39
-rw-r--r--chef-utils/lib/chef-utils/version_string.rb6
4 files changed, 49 insertions, 1 deletions
diff --git a/chef-utils/lib/chef-utils.rb b/chef-utils/lib/chef-utils.rb
index 1fe6b7af59..4426b8b41c 100644
--- a/chef-utils/lib/chef-utils.rb
+++ b/chef-utils/lib/chef-utils.rb
@@ -22,6 +22,7 @@ require_relative "chef-utils/dsl/os"
require_relative "chef-utils/dsl/path_sanity"
require_relative "chef-utils/dsl/platform"
require_relative "chef-utils/dsl/platform_family"
+require_relative "chef-utils/dsl/platform_version"
require_relative "chef-utils/dsl/service"
require_relative "chef-utils/dsl/train_helpers"
require_relative "chef-utils/dsl/virtualization"
@@ -37,6 +38,8 @@ module ChefUtils
include ChefUtils::DSL::OS
include ChefUtils::DSL::Platform
include ChefUtils::DSL::PlatformFamily
+ include ChefUtils::DSL::PlatformVersion
+ include ChefUtils::DSL::TrainHelpers
include ChefUtils::DSL::Virtualization
include ChefUtils::DSL::Windows
# FIXME: include ChefUtils::DSL::Which in Chef 16.0
diff --git a/chef-utils/lib/chef-utils/dsl/platform.rb b/chef-utils/lib/chef-utils/dsl/platform.rb
index 29f6b1563c..88133dd5f6 100644
--- a/chef-utils/lib/chef-utils/dsl/platform.rb
+++ b/chef-utils/lib/chef-utils/dsl/platform.rb
@@ -1,5 +1,5 @@
#
-# Copyright:: Copyright 2018-2019, Chef Software Inc.
+# Copyright:: Copyright 2018-2020, Chef Software Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-utils/lib/chef-utils/dsl/platform_version.rb b/chef-utils/lib/chef-utils/dsl/platform_version.rb
new file mode 100644
index 0000000000..9d576b797a
--- /dev/null
+++ b/chef-utils/lib/chef-utils/dsl/platform_version.rb
@@ -0,0 +1,39 @@
+#
+# Copyright:: Copyright 2018-2020, Chef Software Inc.
+# 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.
+#
+
+require_relative "../internal"
+
+module ChefUtils
+ module DSL
+ module PlatformVersion
+ include Internal
+
+ # Return the platform_version for the node. Acts like a String
+ # but also provides a mechanism for checking version constraints.
+ #
+ # @param [Chef::Node] node
+ #
+ # @return [ChefUtils::VersionString]
+ #
+ def platform_version(node = __getnode)
+ ChefUtils::VersionString.new(node["platform_version"])
+ end
+
+ extend self
+ end
+ end
+end
diff --git a/chef-utils/lib/chef-utils/version_string.rb b/chef-utils/lib/chef-utils/version_string.rb
index 5b3780e618..7a7096909f 100644
--- a/chef-utils/lib/chef-utils/version_string.rb
+++ b/chef-utils/lib/chef-utils/version_string.rb
@@ -139,5 +139,11 @@ module ChefUtils
end
end
+ # Back-compat API for chef-sugar. The other APIs are preferable.
+ #
+ # @api private
+ def satisfies?(*constraints)
+ Gem::Requirement.new(*constraints).satisfied_by?(@parsed_version)
+ end
end
end