diff --git a/.packit.yaml b/.packit.yaml index f80e3815..4c62ef71 100644 --- a/.packit.yaml +++ b/.packit.yaml @@ -33,13 +33,14 @@ jobs: rhel-9: additional_repos: - https://yum.theforeman.org/releases/nightly/el9/x86_64/ - - https://yum.puppet.com/puppet7/el/9/x86_64/ + - https://yum.voxpupuli.org/openvox8/el/9/x86_64/ module_hotfixes: true srpm_build_deps: - - wget - - make - gcc + - libyaml + - make - ruby - ruby-devel - rubygem-bundler + - wget diff --git a/Gemfile b/Gemfile index 791e90f2..571dce38 100644 --- a/Gemfile +++ b/Gemfile @@ -6,20 +6,18 @@ gem 'rdoc', '< 6.4' gem 'kafo', '>= 7.6', '< 8' gem 'librarian-puppet', '>= 3.0' -gem 'puppet', ENV.key?('PUPPET_VERSION') ? "~> #{ENV['PUPPET_VERSION']}" : '~> 8.0' -gem 'facter', '~> 4.1' -gem 'puppet-strings' +gem 'openvox', "~> #{ENV.fetch('PUPPET_VERSION', '8.0')}" +gem 'openvox-strings' + gem 'rake' if RUBY_VERSION >= '3.4' - gem 'base64' - gem 'getoptlong' + # https://github.com/OpenVoxProject/puppet/issues/90 gem 'syslog' # can be removed when we release https://github.com/theforeman/kafo/pull/387 & https://github.com/theforeman/kafo_wizards/pull/13 gem 'abbrev' end -gem 'racc' if RUBY_VERSION >= '3.3' gem 'semverse', groups: [:development, :test]