easyfpm 0.2.0.pre → 0.2.1.pre

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -339,7 +339,7 @@ class EASYFPM::Packaging
339
339
  if labelconf.has_key? "pkg-suffix"
340
340
  #We have to rename the package
341
341
  case labelconf["pkg-type"]
342
- when "rpm", "deb"
342
+ when "rpm"
343
343
  #Suffix has to be fixed before arch and extension
344
344
  newpathmatch = /^(.+)(\.[^.]+\.[^.]+)$/.match(path)
345
345
  newpath=newpathmatch[1]+labelconf["pkg-suffix"]+newpathmatch[2]
@@ -1,4 +1,4 @@
1
1
  #EASYFPM Module version
2
2
  module EASYFPM
3
- VERSION = "1.0-dev"
3
+ VERSION = "0.2.1-dev"
4
4
  end
metadata CHANGED
@@ -1,75 +1,80 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: easyfpm
3
- version: !ruby/object:Gem::Version
4
- version: 0.2.0.pre
5
- prerelease: 6
3
+ version: !ruby/object:Gem::Version
4
+ hash: 961915984
5
+ prerelease: true
6
+ segments:
7
+ - 0
8
+ - 2
9
+ - 1
10
+ - pre
11
+ version: 0.2.1.pre
6
12
  platform: ruby
7
- authors:
13
+ authors:
8
14
  - Erwan SEITE
9
15
  autorequire:
10
16
  bindir: bin
11
17
  cert_chain: []
12
- date: 2014-06-11 00:00:00.000000000 Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
18
+
19
+ date: 2014-06-13 00:00:00 +02:00
20
+ default_executable:
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
15
23
  name: ptools
16
- requirement: !ruby/object:Gem::Requirement
17
- none: false
18
- requirements:
19
- - - ! '>='
20
- - !ruby/object:Gem::Version
21
- version: 1.2.4
22
- type: :runtime
23
24
  prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
25
+ requirement: &id001 !ruby/object:Gem::Requirement
25
26
  none: false
26
- requirements:
27
- - - ! '>='
28
- - !ruby/object:Gem::Version
27
+ requirements:
28
+ - - ">="
29
+ - !ruby/object:Gem::Version
30
+ hash: 23
31
+ segments:
32
+ - 1
33
+ - 2
34
+ - 4
29
35
  version: 1.2.4
30
- - !ruby/object:Gem::Dependency
31
- name: fpm
32
- requirement: !ruby/object:Gem::Requirement
33
- none: false
34
- requirements:
35
- - - ! '>='
36
- - !ruby/object:Gem::Version
37
- version: 1.1.0
38
36
  type: :runtime
37
+ version_requirements: *id001
38
+ - !ruby/object:Gem::Dependency
39
+ name: fpm
39
40
  prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
41
+ requirement: &id002 !ruby/object:Gem::Requirement
41
42
  none: false
42
- requirements:
43
- - - ! '>='
44
- - !ruby/object:Gem::Version
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ hash: 19
47
+ segments:
48
+ - 1
49
+ - 1
50
+ - 0
45
51
  version: 1.1.0
46
- - !ruby/object:Gem::Dependency
47
- name: unixconfigstyle
48
- requirement: !ruby/object:Gem::Requirement
49
- none: false
50
- requirements:
51
- - - ! '>='
52
- - !ruby/object:Gem::Version
53
- version: 1.0.0
54
52
  type: :runtime
53
+ version_requirements: *id002
54
+ - !ruby/object:Gem::Dependency
55
+ name: unixconfigstyle
55
56
  prerelease: false
56
- version_requirements: !ruby/object:Gem::Requirement
57
+ requirement: &id003 !ruby/object:Gem::Requirement
57
58
  none: false
58
- requirements:
59
- - - ! '>='
60
- - !ruby/object:Gem::Version
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ hash: 23
63
+ segments:
64
+ - 1
65
+ - 0
66
+ - 0
61
67
  version: 1.0.0
62
- description: ! " Simplify packaging with fpm by using config files.\n The aim is
63
- to have 1 config file to create many packages for one script module (deb, rpm).\n
64
- \ For the moment, the source MUST be a directory, but this tool can manage a changelog
65
- format and also mapping files if the module tree is different from the targeted
66
- (deployment) tree.\n"
68
+ type: :runtime
69
+ version_requirements: *id003
70
+ description: " Simplify packaging with fpm by using config files.\n The aim is to have 1 config file to create many packages for one script module (deb, rpm).\n For the moment, the source MUST be a directory, but this tool can manage a changelog format and also mapping files if the module tree is different from the targeted (deployment) tree.\n"
67
71
  email: wanix.fr@gmail.com
68
- executables:
72
+ executables:
69
73
  - easyfpm
70
74
  - easyfpm-translatecl
71
75
  extensions: []
72
- extra_rdoc_files:
76
+
77
+ extra_rdoc_files:
73
78
  - README.md
74
79
  - LICENSE
75
80
  - THANKS
@@ -80,16 +85,16 @@ extra_rdoc_files:
80
85
  - doc/samples/install_scripts/post-delete.sh
81
86
  - doc/samples/install_scripts/pre-delete.sh
82
87
  - doc/samples/install_scripts/pre-install.sh
83
- files:
88
+ files:
84
89
  - lib/easyfpm.rb
85
- - lib/easyfpm/version.rb
86
- - lib/easyfpm/commandline.rb
87
- - lib/easyfpm/mapping.rb
88
90
  - lib/easyfpm/exceptions.rb
89
- - lib/easyfpm/configuration.rb
90
- - lib/easyfpm/packaging.rb
91
91
  - lib/easyfpm/pkgchangelog.rb
92
+ - lib/easyfpm/packaging.rb
92
93
  - lib/easyfpm/namespace.rb
94
+ - lib/easyfpm/mapping.rb
95
+ - lib/easyfpm/version.rb
96
+ - lib/easyfpm/commandline.rb
97
+ - lib/easyfpm/configuration.rb
93
98
  - README.md
94
99
  - LICENSE
95
100
  - THANKS
@@ -102,29 +107,43 @@ files:
102
107
  - doc/samples/install_scripts/pre-install.sh
103
108
  - bin/easyfpm
104
109
  - bin/easyfpm-translatecl
110
+ has_rdoc: true
105
111
  homepage: https://github.com/wanix/easyfpm
106
- licenses:
112
+ licenses:
107
113
  - GPLv2
108
114
  post_install_message:
109
115
  rdoc_options: []
110
- require_paths:
116
+
117
+ require_paths:
111
118
  - lib
112
- required_ruby_version: !ruby/object:Gem::Requirement
119
+ required_ruby_version: !ruby/object:Gem::Requirement
113
120
  none: false
114
- requirements:
115
- - - ! '>='
116
- - !ruby/object:Gem::Version
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ hash: 49
125
+ segments:
126
+ - 1
127
+ - 9
128
+ - 1
117
129
  version: 1.9.1
118
- required_rubygems_version: !ruby/object:Gem::Requirement
130
+ required_rubygems_version: !ruby/object:Gem::Requirement
119
131
  none: false
120
- requirements:
121
- - - ! '>'
122
- - !ruby/object:Gem::Version
132
+ requirements:
133
+ - - ">"
134
+ - !ruby/object:Gem::Version
135
+ hash: 25
136
+ segments:
137
+ - 1
138
+ - 3
139
+ - 1
123
140
  version: 1.3.1
124
141
  requirements: []
142
+
125
143
  rubyforge_project:
126
- rubygems_version: 1.8.23
144
+ rubygems_version: 1.3.7
127
145
  signing_key:
128
146
  specification_version: 3
129
147
  summary: Wrapper for fpm
130
148
  test_files: []
149
+