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
|
From: =?utf-8?q?Romain_Tarti=C3=A8re?= <romain@blogreen.org>
Date: Wed, 26 Nov 2025 09:50:31 -0500
Subject: Allow latest gemspec
This is not enougth to update fast_gettext when using bundler because we
depend on gettext-setup which in turn depends on fast_gettext ~> 2.1.
But in the context of non-AIO install like we have on FreeBSD it allows
us to get rid of local patches.
Bug-Debian: https://bugs.debian.org/1120410
Origin: backport, https://github.com/OpenVoxProject/openvox/commit/b990b4ad3191b8e6430e2ddfd94e1e4d1a5c023f
Forwarded: not-needed
---
puppet.gemspec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/puppet.gemspec b/puppet.gemspec
index a1f2f5c..5da08b3 100644
--- a/puppet.gemspec
+++ b/puppet.gemspec
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency('concurrent-ruby', '~> 1.0')
spec.add_runtime_dependency('deep_merge', '~> 1.0')
spec.add_runtime_dependency('facter', ['>= 4.3.0', '< 5'])
- spec.add_runtime_dependency('fast_gettext', '>= 2.1', '< 4')
+ spec.add_runtime_dependency('fast_gettext', '>= 2.1', '< 5')
spec.add_runtime_dependency('getoptlong', '~> 0')
spec.add_runtime_dependency('locale', '~> 2.1')
spec.add_runtime_dependency('multi_json', '~> 1.13')
|