libyui-rake 0.1.14 → 0.1.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/tasks/version.rake +22 -0
- metadata +13 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 713c99cc2241d43293cbb7d8c13d978d690aacb7845fae1e582d0951528f5a5d
|
4
|
+
data.tar.gz: a20a918ede5d0ea8b6fc53ccc54397027c5fd2ea47df45583d4f1d4bd47c096b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ad5b3761f45aa282d1c9150c79b583b79cb1591892fcba0992beded8bed31ac198fe7f5d4cdd3b3312793346c7db74a0ab21b332017ba9b08f2db2e5439bdc4
|
7
|
+
data.tar.gz: 47c540bde24966569748ec369e76604c57b3b29ca30919c469b4efa06373ea89876123ee1c65342f5e05d67da97977583f63536fa689199385e2c5192f996542
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.15
|
data/lib/tasks/version.rake
CHANGED
@@ -13,8 +13,12 @@
|
|
13
13
|
# License along with this library; if not, write to the Free Software
|
14
14
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
15
15
|
#++
|
16
|
+
|
17
|
+
require "packaging/git_helpers"
|
18
|
+
|
16
19
|
namespace :version do
|
17
20
|
include Libyui::Tasks::Helpers
|
21
|
+
include Packaging::GitHelpers
|
18
22
|
|
19
23
|
desc "Check that the version numbers are in sync"
|
20
24
|
task :check do
|
@@ -47,4 +51,22 @@ namespace :version do
|
|
47
51
|
end
|
48
52
|
puts version if verbose
|
49
53
|
end
|
54
|
+
|
55
|
+
desc "Show the version"
|
56
|
+
task :show do
|
57
|
+
puts cmake_version
|
58
|
+
end
|
59
|
+
|
60
|
+
desc "Create a git tag with this version"
|
61
|
+
task :tag do
|
62
|
+
create_version_tag { cmake_version }
|
63
|
+
# To use the version number from the .spec file, just use
|
64
|
+
# create_version_tag
|
65
|
+
# (without the code block)
|
66
|
+
end
|
67
|
+
|
68
|
+
desc "Create a git tag with this version (master branch only)"
|
69
|
+
task :tag_if_master do
|
70
|
+
create_version_tag { cmake_version } if master?
|
71
|
+
end
|
50
72
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libyui-rake
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- YaST team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-06-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -34,27 +34,21 @@ dependencies:
|
|
34
34
|
name: packaging_rake_tasks
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- - "
|
38
|
-
- !ruby/object:Gem::Version
|
39
|
-
version: 1.1.4
|
40
|
-
- - "<"
|
37
|
+
- - "~>"
|
41
38
|
- !ruby/object:Gem::Version
|
42
|
-
version:
|
39
|
+
version: 1.4.8
|
43
40
|
type: :runtime
|
44
41
|
prerelease: false
|
45
42
|
version_requirements: !ruby/object:Gem::Requirement
|
46
43
|
requirements:
|
47
|
-
- - "
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
version: 1.1.4
|
50
|
-
- - "<"
|
44
|
+
- - "~>"
|
51
45
|
- !ruby/object:Gem::Version
|
52
|
-
version:
|
46
|
+
version: 1.4.8
|
53
47
|
description: |
|
54
|
-
Rake tasks that support
|
55
|
-
a repo, sending it to build service, creating submit request
|
56
|
-
|
57
|
-
Heavily inspired
|
48
|
+
Rake tasks that support the workflow of a libyui developer. It allows packaging
|
49
|
+
a repo, sending it to the build service, creating a submit request to the
|
50
|
+
target repo or running the client from the git repo.
|
51
|
+
Heavily inspired by yast-rake.
|
58
52
|
email: yast-devel@suse.com
|
59
53
|
executables: []
|
60
54
|
extensions: []
|
@@ -87,8 +81,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
81
|
- !ruby/object:Gem::Version
|
88
82
|
version: '0'
|
89
83
|
requirements: []
|
90
|
-
|
84
|
+
rubyforge_project:
|
85
|
+
rubygems_version: 2.7.3
|
91
86
|
signing_key:
|
92
87
|
specification_version: 4
|
93
|
-
summary: Rake tasks providing basic
|
88
|
+
summary: Rake tasks providing basic workflow for libyui development
|
94
89
|
test_files: []
|