Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions configs/components/rubygem-ruby-dbus.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#####
# Component release information:
# https://rubygems.org/gems/ruby-dbus
#####
component 'rubygem-ruby-dbus' do |pkg, _settings, _platform|
### Maintained by update_gems automation ###
pkg.version '0.25.0'
pkg.sha256sum 'fe431ca96a61f7c87a5177a43c9fe0a50eafe174c1d108421e38bb5165ea4814'
### End automated maintenance section ###

instance_eval File.read('configs/components/_base-rubygem.rb')
end
2 changes: 2 additions & 0 deletions configs/projects/agent-runtime-main.rb
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@
if platform.is_linux?
proj.component 'virt-what'
proj.component 'dmidecode' unless platform.architecture =~ /ppc64/
# DBus exists outside of Linux, but it's the most common platform to find it on
proj.component 'rubygem-ruby-dbus'
end
# rubocop:enable Style/IfUnlessModifier
end
6 changes: 6 additions & 0 deletions configs/projects/openbolt-runtime.rb
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,12 @@
proj.component 'ruby-shadow'
end

# Linux specific components
if platform.is_linux?
# DBus exists outside of Linux, but it's the most common platform to find it on
proj.component 'rubygem-ruby-dbus'
end

# rubocop:enable Style/IfUnlessModifier

# What to include in package?
Expand Down