fpm 0.4.15 → 0.4.16

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELIST CHANGED
@@ -1,3 +1,6 @@
1
+ 0.4.16 (September 6, 2012)
2
+ - Fix compatibility with Ruby 1.8.7 (broken in 0.4.15)
3
+
1
4
  0.4.15 (September 6, 2012)
2
5
  - pear: support custom channels with --pear-channel <channel> (#207)
3
6
  Example: fpm -s pear -t deb --pear-channel pear.drush.org drush
@@ -18,6 +21,8 @@
18
21
  (#257)
19
22
  - Try to copy a file if hardlinking fails with permission problems (#253,
20
23
  patch by Jacek Lach)
24
+ - Make --exclude, if a directory, include itself and any children, recursive.
25
+ (#248)
21
26
 
22
27
  0.4.14 (August 24, 2012)
23
28
  - rpm: Replace newlines with space in any license setting. (#252)
@@ -268,7 +268,9 @@ class FPM::Package::Deb < FPM::Package
268
268
  if !attributes[:deb_group].nil?
269
269
  tar_flags += [ "--group", attributes[:deb_group] ]
270
270
  end
271
- safesystem(tar_cmd, "-C", staging_path, compression, *tar_flags, "-cf", datatar, ".")
271
+
272
+ args = [ tar_cmd, "-C", staging_path, compression ] + tar_flags + [ "-cf", datatar, "." ]
273
+ safesystem(*args)
272
274
 
273
275
  # pack up the .deb, which is just an 'ar' archive with 3 files
274
276
  # the 'debian-binary' file has to be first
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fpm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.15
4
+ version: 0.4.16
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -149,31 +149,33 @@ executables:
149
149
  extensions: []
150
150
  extra_rdoc_files: []
151
151
  files:
152
- - lib/fpm/command.rb
153
- - lib/fpm/namespace.rb
154
- - lib/fpm/package.rb
155
152
  - lib/fpm/errors.rb
156
- - lib/fpm/package/gem.rb
157
- - lib/fpm/package/dir.rb
153
+ - lib/fpm/util.rb
154
+ - lib/fpm/command.rb
158
155
  - lib/fpm/package/pyfpm/get_metadata.py
156
+ - lib/fpm/package/pyfpm/__init__.pyc
157
+ - lib/fpm/package/pyfpm/get_metadata.pyc
159
158
  - lib/fpm/package/pyfpm/__init__.py
160
- - lib/fpm/package/npm.rb
161
- - lib/fpm/package/pear.rb
162
- - lib/fpm/package/deb.rb
163
159
  - lib/fpm/package/python.rb
164
160
  - lib/fpm/package/rpm.rb
165
- - lib/fpm/package/puppet.rb
161
+ - lib/fpm/package/npm.rb
162
+ - lib/fpm/package/deb.rb
163
+ - lib/fpm/package/gem.rb
166
164
  - lib/fpm/package/tar.rb
165
+ - lib/fpm/package/pear.rb
166
+ - lib/fpm/package/dir.rb
167
+ - lib/fpm/package/puppet.rb
167
168
  - lib/fpm/package/solaris.rb
168
- - lib/fpm/util.rb
169
+ - lib/fpm/package.rb
170
+ - lib/fpm/namespace.rb
169
171
  - lib/fpm.rb
170
172
  - bin/fpm-npm
171
173
  - bin/fpm
172
- - templates/deb.erb
173
- - templates/rpm.erb
174
- - templates/solaris.erb
175
174
  - templates/puppet/package/remove.pp.erb
176
175
  - templates/puppet/package.pp.erb
176
+ - templates/deb.erb
177
+ - templates/solaris.erb
178
+ - templates/rpm.erb
177
179
  - LICENSE
178
180
  - CONTRIBUTORS
179
181
  - CHANGELIST
@@ -203,3 +205,4 @@ signing_key:
203
205
  specification_version: 3
204
206
  summary: fpm - package building and mangling
205
207
  test_files: []
208
+ has_rdoc: