packaging_rake_tasks 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/VERSION +1 -1
  3. data/lib/tasks/check_license.rake +4 -4
  4. metadata +9 -13
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8c674c46edeff066618d417c9727d2860acfe681
4
+ data.tar.gz: d2819a4aab86eaa3922750d9647b79b4f79b39b1
5
+ SHA512:
6
+ metadata.gz: 8c795cec006bda74e55979a36d9d4f95f2a3b3b9681a7814ea34f1c9892220f44b5bb2e86ce0d571d1a57bba0ae22ee70eddd29e62e5c20df80130e3bb582292
7
+ data.tar.gz: b56eda7a831795fb966e5c83d9a662319c6391505fc1dfb37abf56d244e42a3aa38ba165e28d274a16d8ac147aa9fc069d15d1e1463805db4d0686bbc05a5147
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.5
1
+ 1.0.6
@@ -30,7 +30,7 @@ def license_report
30
30
  if fn =~ /\.yml\z/ || fn =~ /\.conf\z/ || fn =~ /\.xml\z/
31
31
  report[:skipped] << "#{fn}: skipped by name match (configuration file)"
32
32
  next
33
- elsif fn =~ /README/
33
+ elsif fn =~ /README/
34
34
  report[:skipped] << "#{fn}: skipped by name match (README file)"
35
35
  next
36
36
  elsif fn =~ /^db\//
@@ -42,9 +42,6 @@ def license_report
42
42
  elsif fn =~ /COPYING/
43
43
  report[:skipped] << "#{fn}: skipped by name match (already contain license)"
44
44
  next
45
- elsif fn =~ /\/rrdtool.*\.txt/
46
- report[:skipped] << "#{fn}: skipped by name match (rrdtool output is not licensed)"
47
- next
48
45
  elsif fn =~ /\.changes\z/
49
46
  report[:skipped] << "#{fn}: skipped by name match (changes file)"
50
47
  next
@@ -64,6 +61,9 @@ def license_report
64
61
  elsif fn =~ /\.gitignore\z/
65
62
  report[:skipped] << "#{fn}: skipped by name match (version system file)"
66
63
  next
64
+ elsif fn =~ /\.md\z/ || fn =~ /\.doc\z/ || fn =~ /\.txt\z/
65
+ report[:skipped] << "#{fn}: skipped by name match (documentation file)"
66
+ next
67
67
  end
68
68
  skipped = Packaging::Configuration.instance.skip_license_check.any? do |skip|
69
69
  res = fn =~ skip
metadata CHANGED
@@ -1,30 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: packaging_rake_tasks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
5
- prerelease:
4
+ version: 1.0.6
6
5
  platform: ruby
7
6
  authors:
8
7
  - Josef Reidinger
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-10-15 00:00:00.000000000 Z
11
+ date: 2013-11-08 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rake
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - '>='
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - '>='
28
25
  - !ruby/object:Gem::Version
29
26
  version: '0'
30
27
  description: Rake tasks to allow easy packaging ruby projects in git for Build Service
@@ -49,27 +46,26 @@ files:
49
46
  homepage: http://github.org/openSUSE/packaging_tasks
50
47
  licenses:
51
48
  - LGPL v2.1
49
+ metadata: {}
52
50
  post_install_message:
53
51
  rdoc_options: []
54
52
  require_paths:
55
53
  - lib
56
54
  required_ruby_version: !ruby/object:Gem::Requirement
57
- none: false
58
55
  requirements:
59
- - - ! '>='
56
+ - - '>='
60
57
  - !ruby/object:Gem::Version
61
58
  version: '0'
62
59
  required_rubygems_version: !ruby/object:Gem::Requirement
63
- none: false
64
60
  requirements:
65
- - - ! '>='
61
+ - - '>='
66
62
  - !ruby/object:Gem::Version
67
63
  version: '0'
68
64
  requirements: []
69
65
  rubyforge_project:
70
- rubygems_version: 1.8.23
66
+ rubygems_version: 2.0.3
71
67
  signing_key:
72
- specification_version: 3
68
+ specification_version: 4
73
69
  summary: Rake tasks providing tasks to package project in git and integration with
74
70
  build service
75
71
  test_files: []