Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

relax versions of rubygems and comment out ostruct with reason #1917

Merged
merged 2 commits into from
Jan 17, 2025
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
10 changes: 6 additions & 4 deletions service/agama-yast.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,10 @@ Gem::Specification.new do |spec|
spec.add_dependency "nokogiri", "~> 1.15"
spec.add_dependency "rexml", "~> 3.2"
spec.add_dependency "ruby-dbus", ">= 0.23.1", "< 1.0"
spec.add_dependency "csv", "~> 3.3"
spec.add_dependency "prime", "~> 0.1.3"
spec.add_dependency "logger", "~> 1.6"
spec.add_dependency "ostruct", "~> 0.6.1"
spec.add_dependency "csv", "~> 3.2"
spec.add_dependency "prime", "~> 0.1"
spec.add_dependency "logger", "~> 1.5"
# here we have problem as ruby3.2 on SLFO does not provide rubygem-ostruct, but newer ruby will separate it after 3.4
# but dynamic dependencies are not possible in gemspec
# spec.add_dependency "ostruct", "~> 0.6.1"
end
6 changes: 6 additions & 0 deletions service/package/rubygem-agama-yast.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Jan 17 20:42:58 UTC 2025 - Josef Reidinger <[email protected]>

- Relax gems version in the gemspec file
(gh#agama-project/agama#1917)

-------------------------------------------------------------------
Thu Jan 16 17:30:03 UTC 2025 - Ladislav Slezák <[email protected]>

Expand Down
Loading