-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from libyui/ci_fix
Added SLE15-SP5 targets, newer Rubocop
- Loading branch information
Showing
14 changed files
with
67 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
gemspec | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.23 | ||
0.1.24 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
#-- | ||
# Copyright (C) 2015 SUSE LLC | ||
# This library is free software; you can redistribute it and/or modify | ||
|
@@ -17,31 +19,36 @@ | |
Gem::Specification.new do |spec| | ||
# gem name and description | ||
spec.name = "libyui-rake" | ||
spec.version = File.read(File.expand_path("../VERSION", __FILE__)).chomp | ||
spec.version = File.read(File.expand_path("VERSION", __dir__)).chomp | ||
spec.summary = "Rake tasks that provide basic workflow for libyui development" | ||
spec.license = "LGPL-2.1" | ||
|
||
# author | ||
spec.author = "YaST team" | ||
spec.email = "[email protected]" | ||
spec.homepage = "https://github.com/openSUSE/libyui-rake" | ||
|
||
spec.summary = "Rake tasks providing basic workflow for libyui development" | ||
spec.description = <<-end | ||
Rake tasks that support the workflow of a libyui developer. It allows packaging | ||
a repo, sending it to the build service, creating a submit request to the | ||
target repo or running the client from the git repo. | ||
Heavily inspired by yast-rake. | ||
end | ||
spec.email = "[email protected]" | ||
spec.homepage = "https://github.com/libyui/libyui-rake" | ||
|
||
spec.description = <<~DESCRIPTION | ||
Rake tasks that support the workflow of a libyui developer. It allows packaging | ||
a repo, sending it to the build service, creating a submit request to the | ||
target repo or running the client from the git repo. | ||
Heavily inspired by yast-rake. | ||
DESCRIPTION | ||
|
||
# gem content | ||
spec.files = Dir["lib/**/*.rb", "lib/tasks/*.rake", "data/*", "COPYING", "README.md", "VERSION"] | ||
|
||
# define LOAD_PATH | ||
spec.require_path = "lib" | ||
|
||
# Ruby 2.5.0+ is required | ||
spec.required_ruby_version = ">= 2.5.0" | ||
|
||
# dependencies | ||
spec.add_runtime_dependency("rake", "> 10.0", "< 99") | ||
spec.add_runtime_dependency("packaging_rake_tasks", "~> 1.5") | ||
# "~> 1.5" means ">= 1.5 and < 2" (thanks to darix) | ||
spec.add_runtime_dependency("packaging_rake_tasks", "~> 1.5") | ||
spec.add_runtime_dependency("rake", "> 10.0", "< 99") | ||
# enable MFA (2FA) authentication at rubygems.org | ||
# see https://guides.rubygems.org/mfa-requirement-opt-in/ | ||
spec.metadata["rubygems_mfa_required"] = "true" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
------------------------------------------------------------------- | ||
Fri Apr 8 07:14:20 UTC 2022 - Ladislav Slezák <[email protected]> | ||
|
||
- Use Rubocop 1.24.1 (the old one does not work in Ruby 3) | ||
- Updated data in Gemspec | ||
- Updated submit data, added SLE15-SP5 target, "sle_latest" moved | ||
to SLE15-SP5 (related to bsc#1198109) | ||
- 0.1.24 | ||
|
||
------------------------------------------------------------------- | ||
Wed Mar 31 13:35:58 UTC 2021 - Ladislav Slezák <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters