fpm 1.6.3 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -20,6 +20,7 @@ llasram
20
20
  sbuss
21
21
  Brett Gailey (github: dnbert)
22
22
  Daniel Haskin (github: djhaskin987)
23
+ Richard Grainger (github: liger1978)
23
24
 
24
25
  If you have contributed (bug reports, feature requests, help in IRC, blog
25
26
  posts, code, etc) and aren't listed here, please let me know if you wish to be
@@ -8,7 +8,7 @@ require "fileutils"
8
8
  require "digest"
9
9
  require 'digest/sha1'
10
10
 
11
- # Support for debian packages (.deb files)
11
+ # Support for Alpine packages (.apk files)
12
12
  #
13
13
  # This class supports both input and output of packages.
14
14
  class FPM::Package::APK< FPM::Package
@@ -49,6 +49,7 @@ class FPM::Package::CPAN < FPM::Package
49
49
 
50
50
  if File.exist?(package)
51
51
  moduledir = package
52
+ result = {}
52
53
  else
53
54
  result = search(package)
54
55
  tarball = download(result, version)
@@ -319,27 +320,28 @@ class FPM::Package::CPAN < FPM::Package
319
320
  end
320
321
  end
321
322
 
322
- metacpan_release_url = "http://api.metacpan.org/v0/release/#{author}/#{distribution}-#{self.version}"
323
+ # Search metacpan to get download URL for this version of the module
324
+ metacpan_search_url = "http://api.metacpan.org/v0/release/_search"
325
+ metacpan_search_query = '{"query":{"match_all":{}},"filter":{"term":{"release.name":"' + "#{distribution}-#{self.version}" + '"}}}'
323
326
  begin
324
- release_response = httpfetch(metacpan_release_url)
327
+ search_response = httppost(metacpan_search_url,metacpan_search_query)
325
328
  rescue Net::HTTPServerException => e
326
329
  logger.error("metacpan release query failed.", :error => e.message,
327
- :url => metacpan_release_url)
330
+ :url => metacpan_search_url)
328
331
  raise FPM::InvalidPackageConfiguration, "metacpan release query failed"
329
332
  end
330
333
 
331
- data = release_response.body
334
+ data = search_response.body
332
335
  release_metadata = JSON.parse(data)
333
- archive = release_metadata["archive"]
334
336
 
335
- # should probably be basepathed from the url
336
- tarball = File.basename(archive)
337
+ download_url = release_metadata['hits']['hits'][0]['_source']['download_url']
338
+ download_path = URI.parse(download_url).path
339
+ tarball = File.basename(download_path)
337
340
 
338
341
  url_base = "http://www.cpan.org/"
339
342
  url_base = "#{attributes[:cpan_mirror]}" if !attributes[:cpan_mirror].nil?
340
343
 
341
- #url = "http://www.cpan.org/CPAN/authors/id/#{author[0,1]}/#{author[0,2]}/#{author}/#{tarball}"
342
- url = "#{url_base}/authors/id/#{author[0,1]}/#{author[0,2]}/#{author}/#{archive}"
344
+ url = "#{url_base}#{download_path}"
343
345
  logger.debug("Fetching perl module", :url => url)
344
346
 
345
347
  begin
@@ -401,5 +403,21 @@ class FPM::Package::CPAN < FPM::Package
401
403
  end
402
404
  end
403
405
 
406
+ def httppost(url, body)
407
+ uri = URI.parse(url)
408
+ if ENV['http_proxy']
409
+ proxy = URI.parse(ENV['http_proxy'])
410
+ http = Net::HTTP.Proxy(proxy.host,proxy.port,proxy.user,proxy.password).new(uri.host, uri.port)
411
+ else
412
+ http = Net::HTTP.new(uri.host, uri.port)
413
+ end
414
+ response = http.post(uri.request_uri, body)
415
+ case response
416
+ when Net::HTTPSuccess; return response
417
+ when Net::HTTPRedirection; return httppost(response["location"])
418
+ else; response.error!
419
+ end
420
+ end
421
+
404
422
  public(:input)
405
423
  end # class FPM::Package::NPM
@@ -345,7 +345,7 @@ class FPM::Package::Deb < FPM::Package
345
345
  when "gz"
346
346
  datatar = "data.tar.gz"
347
347
  compression = "-z"
348
- when "bzip2"
348
+ when "bzip2","bz2"
349
349
  datatar = "data.tar.bz2"
350
350
  compression = "-j"
351
351
  when "xz"
@@ -12,18 +12,6 @@ class FPM::Package::FreeBSD < FPM::Package
12
12
  :after_remove => "post-deinstall",
13
13
  } unless defined?(SCRIPT_MAP)
14
14
 
15
- def self.default_abi
16
- abi_name = %x{uname -s}.chomp
17
- abi_version = %x{uname -r}.chomp.split(".")[0]
18
- abi_arch = %x{uname -m}.chomp
19
-
20
- [abi_name, abi_version, abi_arch].join(":")
21
- end
22
-
23
- option "--abi", "ABI",
24
- "Sets the FreeBSD abi pkg field to specify binary compatibility.",
25
- :default => default_abi
26
-
27
15
  option "--origin", "ABI",
28
16
  "Sets the FreeBSD 'origin' pkg field",
29
17
  :default => "fpm/<name>"
@@ -58,7 +46,7 @@ class FPM::Package::FreeBSD < FPM::Package
58
46
  pkg_version = (iteration and (iteration.to_i > 0)) ? "#{version}-#{iteration}" : "#{version}"
59
47
 
60
48
  pkgdata = {
61
- "abi" => attributes[:freebsd_abi],
49
+ "arch" => architecture,
62
50
  "name" => name,
63
51
  "version" => pkg_version,
64
52
  "comment" => description,
@@ -110,6 +98,29 @@ class FPM::Package::FreeBSD < FPM::Package
110
98
  end
111
99
  end # def output
112
100
 
101
+ # Handle architecture naming conversion:
102
+ # <osname>:<osversion>:<arch>:<wordsize>[.other]
103
+ def architecture
104
+ osname = %x{uname -s}.chomp
105
+ osversion = %x{uname -r}.chomp.split('.').first
106
+
107
+ # Essentially because no testing on other platforms
108
+ arch = 'x86'
109
+
110
+ wordsize = case @architecture
111
+ when nil, 'native'
112
+ %x{getconf LONG_BIT}.chomp # 'native' is current arch
113
+ when 'amd64'
114
+ '64'
115
+ when 'i386'
116
+ '32'
117
+ else
118
+ %x{getconf LONG_BIT}.chomp # default to native, the current arch
119
+ end
120
+
121
+ return [osname, osversion, arch, wordsize].join(':')
122
+ end
123
+
113
124
  def add_path(tar, tar_path, path)
114
125
  stat = File.lstat(path)
115
126
  if stat.directory?
@@ -17,6 +17,7 @@ class FPM::Package::PleaseRun < FPM::Package
17
17
  require "pleaserun/platform/sysv"
18
18
 
19
19
  option "--name", "SERVICE_NAME", "The name of the service you are creating"
20
+ option "--chdir", "CHDIR", "The working directory used by the service"
20
21
 
21
22
  private
22
23
  def input(command)
@@ -36,6 +37,7 @@ class FPM::Package::PleaseRun < FPM::Package
36
37
  platform.program = command.first
37
38
  platform.name = attributes[:pleaserun_name]
38
39
  platform.args = command[1..-1]
40
+ platform.chdir = attributes[:pleaserun_chdir] if attributes[:pleaserun_chdir]
39
41
  platform.description = if attributes[:description_given?]
40
42
  attributes[:description]
41
43
  else
@@ -82,10 +82,10 @@ class FPM::Package::Virtualenv < FPM::Package
82
82
  python_exe = File.join(virtualenv_build_folder, "bin", "python")
83
83
 
84
84
  # Why is this hack here? It looks important, so I'll keep it in.
85
- safesystem(pip_exe, "install", "-U", "-i",
85
+ safesystem(python_exe, pip_exe, "install", "-U", "-i",
86
86
  attributes[:virtualenv_pypi],
87
87
  "pip", "distribute")
88
- safesystem(pip_exe, "uninstall", "-y", "distribute")
88
+ safesystem(python_exe, pip_exe, "uninstall", "-y", "distribute")
89
89
 
90
90
  extra_index_url_args = []
91
91
  if attributes[:virtualenv_pypi_extra_index_urls]
@@ -101,12 +101,13 @@ class FPM::Package::Virtualenv < FPM::Package
101
101
  target_args << package
102
102
  end
103
103
 
104
- pip_args = [pip_exe, "install", "-i", attributes[:virtualenv_pypi]] << extra_index_url_args << target_args
104
+ pip_args = [python_exe, pip_exe, "install", "-i", attributes[:virtualenv_pypi]] << extra_index_url_args << target_args
105
105
  safesystem(*pip_args.flatten)
106
106
 
107
107
  if ! is_requirements_file && package_version.nil?
108
- frozen = safesystemout(pip_exe, "freeze")
109
- package_version = frozen[/#{package}==[^=]+$/].split("==")[1].chomp!
108
+ frozen = safesystemout(python_exe, pip_exe, "freeze")
109
+ frozen_version = frozen[/#{package}==[^=]+$/]
110
+ package_version = frozen_version && frozen_version.split("==")[1].chomp!
110
111
  self.version ||= package_version
111
112
  end
112
113
 
@@ -1,5 +1,7 @@
1
1
  require 'rubygems/package'
2
2
 
3
+ require 'stringio'
4
+
3
5
  module FPM
4
6
  module Issues
5
7
  module TarWriter
@@ -1,3 +1,3 @@
1
1
  module FPM
2
- VERSION = "1.6.3"
2
+ VERSION = "1.7.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fpm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.3
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jordan Sissel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-15 00:00:00.000000000 Z
11
+ date: 2016-11-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -235,7 +235,7 @@ executables:
235
235
  extensions: []
236
236
  extra_rdoc_files: []
237
237
  files:
238
- - CHANGELIST
238
+ - CHANGELOG.rst
239
239
  - CONTRIBUTORS
240
240
  - LICENSE
241
241
  - bin/fpm
@@ -315,7 +315,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
315
315
  version: '0'
316
316
  requirements: []
317
317
  rubyforge_project:
318
- rubygems_version: 2.4.8
318
+ rubygems_version: 2.5.1
319
319
  signing_key:
320
320
  specification_version: 4
321
321
  summary: fpm - package building and mangling
data/CHANGELIST DELETED
@@ -1,664 +0,0 @@
1
- 1.6.3 (September 15, 2016)
2
- - Fix bug in fpm's release that accidentally included a few `.pyc` files (#1191)
3
-
4
- 1.6.2 (July 1, 2016)
5
- - Reduce `json` dependency version to avoid requiring Ruby 2.0 (#1146, #1147;
6
- patch by Matt Hoffman)
7
- - pacman: skip automatic dependencies if --no-auto-depends is given (Leo P)
8
- - rpm: Fix bug where --rpm-tag was accidentally ignored (#1134, Michal Mach)
9
- - deb: Omit certain fields from control file if (Breaks, Depends, Recommends,
10
- etc) if there are no values to put in that field. (#1113, TomyLobo)
11
- - rpm: remove trailing slash from Prefix for rpm packages (#819, luto)
12
- - virtualenv: Now supports being given a requirements.txt as the input. (Nick
13
- Griffiths)
14
-
15
- 1.6.1 (June 10, 2016)
16
- - freebsd: Only load xz support if we are doing a freebsd output. (#1132,
17
- #1090, Ketan Padegaonkar)
18
-
19
- 1.6.0 (May 25, 2016)
20
- - New source: pleaserun. This lets you create packages that will install a
21
- system service. An after-install script is used in the package to determine
22
- which service platform to target (systemd, upstart, etc). Originated from
23
- Aaron Mildenstein's work on solving this problem for Logstash. (#1119,
24
- #1112)
25
- - New target: Alpine Linux "apk" packages. (#1054, George Lester)
26
- - deb: don't append `.conf` to an upstart file if the file name already ends
27
- in `.conf`. (#1115, josegonzalez)
28
- - freebsd: fix bug where --package flag was ignored. (#1093, Paweł Tomulik)
29
- - Improvements to the fpm rake tasks (#1101, Evan Gilman)
30
-
31
- 1.5.0 (April 12, 2016)
32
- - Arch package support is now available via -s pacman and -t pacman.
33
- (#916; wonderful community effort making this happen!)
34
- - FreeBSD packages can now be built `-t freebsd`
35
- (#1073; huge community effort making this happen!)
36
- - You can now set fpm flags and arguments with the FPMOPTS environment
37
- variable (#977, mildred)
38
- - Using --exclude-file no longer causes a crash. Yay! (#982, wyaeld)
39
- - A new rake task is available for folks who want to invoke fpm from rake
40
- (#756, pstengel)
41
- - On FreeBSD, when tarring, gtar is now used. (#1008, liv3d)
42
- - virtualenv: Add --virtualenv-pypi-extra-url flag to specify additional PyPI
43
- locations to use when searching for packages (#1012, Paul Krohn)
44
- - deb: Init scripts, etc/default, and upstart files are automatically added
45
- as config files in a debian package. Disable this behavior with
46
- ---deb-auto-config-files
47
- - deb: Small changes to make lintian complain less about our resulting debs.
48
- - deb: New flag --deb-systemd lets you specify a systemd service file to include
49
- in your package. (#952, Jens Peter Schroer)
50
- - cpan: Add --[no-]cpan-cpanm-force flag to pass --force to cpanm.
51
- - rpm: File names with both spaces and symbols should now be packageable.
52
- (#946, iwonbigbro)
53
- - cpan: Now queries MetaCPAN for package info if we can't find any in the
54
- cpan archive we just downloaded. (#849, BaxterStockman)
55
- - rpm: You can now specify custom rpm tags at the command line. Be careful,
56
- as no validation is done on this before sending to rpmbuild. (#687, vStone)
57
- - cpan: Install if the package name given is a local file (#986, mdom)
58
- - sh: Metadata now available as env vars for post-install scripts (#1006, Ed Healy)
59
- - rpm: No more warning if you don't set an epoch. (#1053, Joseph Frazier)
60
-
61
-
62
- 1.4.0 (July 26, 2015)
63
- - Solaris 11 IPS packages 'p5p' now supported `-t p5p`. (Jonathan Craig)
64
- - Python Virtualenv is now supported `-t virtualenv` (#930, Simone
65
- Margaritelli and Daniel Haskin)
66
- - deb: Files in /etc are now by default marked as config files. (#877,
67
- Vincent Bernat)
68
- - `fpm --help` output now includes a list of supported package types (#896,
69
- Daniel Haskin)
70
- - cpan: --[no-]cpan-sandbox-non-core flag to make non-core module sandboxing
71
- optional during packaging (#752, Matt Sharpe)
72
- - rpm: Add --rpm-dist flag for specifically setting the target distribution
73
- of an rpm. (Adam Lamar)
74
- - rpm: Fix a crash if --before-upgrade or --after-upgrade were used. (#822,
75
- Dave Anderson)
76
- - deb: Ensure maintainer scripts have shebang lines (#836, Wesley Spikes)
77
- - deb: Fix bug in maintainer scripts where sometimes we would write an empty
78
- shell function. Empty functions aren't valid in shell. (Wesley Spikes)
79
- - Fix symlink copying bug (#863, Pete Fritchman)
80
- - python: Default to https for pypi queries (Timothy Sutton)
81
- - New flag --exclude-file for providing a file containing line-delimited
82
- exclusions (Jamie Lawrence)
83
- - python: new flag --python-disable-dependency to disable specific python
84
- dependencies (Ward Vandewege)
85
- - python: ensure we avoid wheel packages for now until fpm better supports them.
86
- (#885, Matt Callaway)
87
- - deb: Add support for installation states "abort-remove" and "abort-install"
88
- (#887, Daniel Haskin)
89
- - If PATH isn't set, and we need it, tell the user (#886, Ranjib Dey)
90
- - cpan: --[no-]cpan-test now works correctly (#853, Matt Schreiber)
91
- - deb-to-rpm: some improved support for config file knowledge passing from
92
- deb to rpm packages (Daniel Haskin)
93
-
94
- 1.3.3 (December 11, 2014)
95
- - The fpm project now uses Contributor Covenant. You can read more about this on
96
- the website: http://contributor-covenant.org/
97
- - npm: Fix bug causing all `-s npm` attempts to fail due to a missing method.
98
- This bug was introduced in 1.3.0. (#800, #806; Jordan Sissel)
99
- - rpm: fix bug in rpm input causing a crash if the input rpm did not have any triggers
100
- (#801, #802; Ted Elwartowski)
101
-
102
- 1.3.2 (November 4, 2014)
103
- - deb: conversion from another deb will automatically use any changelog found in
104
- the source deb (Jordan Sissel)
105
-
106
- 1.3.1 (November 4, 2014)
107
- - deb: fix md5sums generation such that `dpkg -V` now works (#799, Matteo Panella)
108
- - rpm: Use maximum compression when choosing xz (#797, Ashish Kulkarni)
109
-
110
- 1.3.0 (October 25, 2014)
111
- - Fixed a bunch of Ruby 1.8.7-related bugs. (Jordan Sissel)
112
- - cpan: Fix bug in author handling (#744, Leon Weidauer)
113
- - cpan: Better removal of perllocal.pod (#763, #443, #510, Mathias Lafeldt)
114
- - rpm: Use lstat calls instead of stat, so we don't follow symlinks (#765, Shrijeet Paliwal)
115
- - rpm and deb: Now supports script actions on upgrades. This adds two new flags:
116
- --before-upgrade and --after-upgrade. (#772, #661; Daniel Haskin)
117
- - rpm: Package triggers are now supported. New flags: --rpm-trigger-before-install,
118
- --rpm-trigger-after-install, --rpm-trigger-before-uninstall,
119
- --rpm-trigger-after-target-uninstall. (#626, Maxime Caumartin)
120
- - rpm: Add --rpm-init flag; similar to --deb-init. (Josh Dolitsky)
121
- - sh: Skip installation if already installed for the given version. If forced,
122
- the old installation is renamed. (#776, Chris Gerber)
123
- - deb: Allow Vendor field to be omitted now by specifying `--vendor ""` (#778, Nate Brown)
124
- - general: Add --log=level flag for setting log level. Levels are error, warn, info, debug. (Jordan SIssel)
125
- - cpan: Check for Build.PL first before Makefile.PL (#787, Daniel Jay Haskin)
126
- - dir: Don't follow symlinks when copying files (#658, Jordan Sissel)
127
- - deb: Automatically provide a 'changes' file in debs because lintian
128
- complains if they are missing. (#784, Jordan Sissel)
129
- - deb: Fix and warn for package names that have spaces (#779, Grantlyk)
130
- - npm: Automatically set the prefix to `npm prefix -g` (#758, Brady Wetherington and Jordan Sissel)
131
-
132
- 1.2.0 (July 25, 2014)
133
- - rpm: Add --rpm-verifyscript for adding a custom rpm verify script to
134
- your package. (Remi Hakim)
135
- - Allow the -p flag to target a directory for writing the output package
136
- (#656, Jordan Sissel)
137
- - Add --debug-workspace which skips any workspace cleanup to let users debug things
138
- if they break. (#720, #734; Jordan Sissel)
139
- - rpm: Add --rpm-attr for controlling attribute settings per file. This setting
140
- will likely be removed in the future once rpmbuild is no longer needed.
141
- (#719)
142
- - deb: Add --deb-meta-file to add arbitrary files to the control dir (#599, Dan Brown)
143
- - deb: Add --deb-interest and --deb-activate for adding package triggers (#595, Dan Brown)
144
- - cpan: Fix small bug in handling empty metadata fields (#712, Mathias Lafeldt)
145
- - rpm: Fix bug when specifying both --architecture and --rpm-os (#707, #716; Alan Ivey)
146
- - gem: Fix bug where --gem-version-bins is given but package has no bins (#688, Jan Vansteenkiste)
147
- - deb: Set permissions correct on the package's internals. Makes lintian happier. (Jan Vansteenkiste)
148
- - rpm: rpmbuild's _tmppath now respects --workdir (#714, Jordan Sissel)
149
- - gem/rpm: Add --rpm-verbatim-gem-dependencies to use old-style (fpm 0.4.x)
150
- rpm gem dependencies (#724, Jordan Sissel)
151
- - gem/rpm: Fix bug for gem pessimistic constraints when converting to rpm (Tom Duckering)
152
- - python: Fix small bug with pip invocations (#727, Dane Knecht)
153
-
154
- 1.1.0 (April 23, 2014)
155
- - New package type: zip, for converting to and from zip files (Jordan Sissel)
156
- - New package type: sh, a self-extracting package installation shell archive. (#651, Chris Gerber)
157
- - 'fpm --version' will now emit the version of fpm.
158
- - rpm: supports packaging fifo files (Adam Stephens)
159
- - deb: Add --deb-use-file-permissions (Adam Stephens)
160
- - cpan: Improve how fpm tries to find cpan artifacts for download (#614, Tim Nicholas)
161
- - gem: Add --gem-disable-dependency for removing one or more specific rubygem
162
- dependencies from the automatically-generated list (#598, Derek Olsen)
163
- - python: Add --python-scripts-executable for setting a custom interpreter to
164
- use for the hashbang line at the top of may python package scripts.
165
- (#628, Vladimir Rutsky)
166
- - Allow absolute paths with --directories even when --prefix is used (Vladimir Rutsky)
167
- - dir: Now correctly identifies hardlinked files and creates a package correctly
168
- with that knowledge (#365, #623, #659; Vladimir Rutsky)
169
- - rpm: Add --rpm-auto-add-exclude-directories for excluding directories
170
- from the --rpm-auto-add-directories behavior (#640, Vladimir Rutsky)
171
- - general: --config-files now accepts directories and will recursively mark any
172
- files within as config files inside the package (#642, Vladimir Rutsky)
173
- - general: If you specify a --config-files path that doesn't exist, you will
174
- now get an error. (#654, Alan Franzoni)
175
- - python: Support --python-pypi when using --python-pip (#652, David Lindquist)
176
- - deb: Tests now try to make packages ensure we don't upset lintian (#648, Sam Crang)
177
- - rpm: Fix architecture targeting (#676, Rob Kinyon)
178
- - rpm: Allow --rpm-user and --rpm-group to override the user/group even if
179
- --rpm-use-file-permissions is enabled. (#679, Jordan Sissel)
180
- - gem: Add --gem-version-bins for appending the gem version to the file name
181
- of executable scripts a rubygem may install. (Jan Vansteenkiste)
182
- - python: Attempt to provide better error messages for known issues in python
183
- environments (#664, Jordan Sissel)
184
-
185
- 1.0.2 (January 10, 2013)
186
- - rpm: No longer converts - to _ in dependency strings (#603, Bulat
187
- Shakirzyanov)
188
- - Handle Darwin/OSX tar invocations (now tries 'gnutar' and 'gtar'). (Jordan
189
- Sissel)
190
- - Process $HOME/.fpm, and $PWD/.fpm in the correct order and allow CLI flags
191
- to override fpm config file settings. (#615, Jordan Sissel)
192
- - Don't leave empty gem bin paths in packages that don't need them (#612,
193
- Jordan Sissel)
194
- - deb: Make --deb-compression=gz work correctly (#616, #617; Evan Krall,
195
- Jason Yan)
196
-
197
- 1.0.1 (December 7, 2013)
198
- - deb: Correctly handle --config-files given with a leading / (Jordan Sissel)
199
-
200
- 1.0.0 (December 5, 2013)
201
- - Config file of flags is now supported. Searches for $HOME/.fpm and
202
- $PWD/.fpm. If both exist, $HOME is loaded first so $PWD can override.
203
- (Pranay Kanwar)
204
- - pkgin: Basic support for SmartOS/pkgsrc's pkgin format. (#567, Brian Akins)
205
- - cpan: catch more cases of perllocal.pod and delete them
206
- (#510, Jordan Sissel)
207
- - cpan: Correctly support module version selection (#518, Matt Sharpe)
208
- - cpan: include builddeps in PERL5LIB when running cpan tests
209
- (#500, Matt Sharpe)
210
- - cpan: Avoid old system perl modules when doing module builds
211
- (#442, #513; Matt Sharpe)
212
- - python: safer gathering of python module dependencies.
213
- - python: better handling of unicode strings in python package metadata
214
- (#575, Bruno Renié)
215
- - cpan: Support 'http_proxy' env var. (#491, Patrick Cable)
216
- - deb: --deb-user and --deb-group both default to 'root' now
217
- (#504, Pranay Kanwar)
218
- - deb: convert '>' to '>>' in deb version constraints
219
- (#503, #439, Pranay Kanwar)
220
- - deb: Warn if epoch is set. Just so you know what's going on, since
221
- the default filename doesn't include the epoch. (#502, Pranay Kanwar)
222
- - deb,rpm: --config-files is now recursive if you give it a directory.
223
- This seems to be the most expected behavior by users.
224
- (#171, #506; Pranay Kanwar)
225
- - dir: Respect -C when using path mapping (#498, #507; Pranay Kanwar)
226
- - rpm: Add --rpm-ignore-iteration-in-dependencies to let you to depend
227
- on any release (aka iteration) of the same version of a package.
228
- (#364, #508; Pranay Kanwar)
229
- - dir: Handle copying of special files when possible
230
- (#347, #511, #539, #561; Pranay Kanwar)
231
- - rpm: Don't mistake symlinks as actual directories (#521, Nathan Huff)
232
- - npm: Choose an alternate npm registry with --npm-registry (#445, #524;
233
- Matt Sharpe)
234
- - cpan: Choose an alternate cpan server with --cpan-mirror. Additionally, you
235
- can use --cpan-mirror-only to only use this mirror for metadata queries.
236
- (#524, Matt Sharpe)
237
- - deb: Fix broken --deb-changelog flag (#543, #544; Tray Torrance)
238
- - deb: When --deb-upstart is given, automatically create an upstart-sysv
239
- symlink /etc/init.d/<name> to /lib/init/upstart-job (#545, Igor Galić)
240
- - rpm: Fix bug when generating spec file listings on files with strange
241
- characters in the names. (#547, Chris Chandler)
242
- - dir: Fix bug where the new directory mapping feature would cause you not
243
- to be able to select files with '=' in the name for packaging.
244
- (#556, #554; Pranay Kanwar)
245
- - python: Fix some unicode string issues in package metadata
246
- (#575, Bruno Renié)
247
- - gem-rpm: Now respects the --gem-package-name-prefix when generating the
248
- 'rubygem(name)' provides statement (#585, Stepan Stipl)
249
- - deb: Downcase and replace underscores with dashes in 'provides' list.
250
- (#591, Eric Connell)
251
- - deb: Fix a lintian complaint about md5sums permissions (#593, Sam Crang)
252
- - cpan: Modules with 'MYMETA' files are now supported (#573, Michael Donlon)
253
-
254
- 0.4.42 (July 23, 2013)
255
- - dir: make source=destination mappings behave the same way 'rsync -a' does
256
- with respect to source and destination paths.
257
-
258
- 0.4.41 (July 17, 2013)
259
- - cpan: handle cases where modules don't specify a license
260
- - deb: support multiple init scripts (#487, patch by Kristian Glass)
261
-
262
- 0.4.40 (July 12, 2013)
263
- - dir: supports mapping one path to another.
264
- You set mappings by using 'source=destination' syntax. For example:
265
- % fpm -s dir -t deb -n example /home/jls/.zshrc=/etc/skel/
266
- The key above is the '=' symbol. The result of the above will be a package
267
- containing only /etc/skel/.zshrc
268
- For more, see https://github.com/jordansissel/fpm/wiki/Source:-dir#mapping
269
- - python: the default scripts location is now chosen by python itself. The
270
- previous default was "/usr/bin" and was not a good default. (#480)
271
- - rpm: config files should have attributes (#484, patch by adamcstephens)
272
- - python: correctly log the python setup.py exit code (#481, patch by Derek
273
- Ludwig)
274
-
275
- 0.4.39 (June 27, 2013)
276
- - cpan: support more complex dependency specifications (reported by Mabi
277
- Knittel)
278
-
279
- 0.4.38 (June 24, 2013)
280
- - cpan: fpm's cpan code now works under ruby 1.8.7
281
- - python: fix a bug in dependency handling (#461, Pranay Kanwar)
282
- - pear: Added --pear-data-dir flag (#465, Zsolt Takács)
283
- - cpan: fix a bug with some clean up on certain 64bit systems
284
- - gem: improve detection of the gem bin install path (#476, Tray Torrance)
285
- - rpm: fix bug when calling using --rpm-use-file-permissions
286
- (#464, Rich Horwood)
287
-
288
- 0.4.37 (May 30, 2013)
289
- - deb: fix creation failures on OS X (#450, patch by Anthony Scalisi and
290
- Matthew M. Boedicker)
291
- - deb: you can now set --deb-build-depends. This is generally for extremely
292
- rare use cases. (#451, patch by torrancew)
293
- - perl: add --cpan-perl-lib-path for a custom perl library installation path
294
- (#447, patch by Brett Gailey)
295
-
296
- 0.4.36 (May 15, 2013)
297
- - pear: only do channel-discover if necessary (#438, patch by Hatt)
298
- - cpan: now supports cpan modules that use Module::Build
299
- - cpan: --no-cpan-test now skips tests for build/configure dependencies
300
- - rpm: Add --rpm-defattrfile and --rpm-defattrdir flags (#428, patch
301
- by phrawzty)
302
-
303
- 0.4.35 -- was not announced
304
-
305
- 0.4.34 (May 7, 2013)
306
- - Now supports CPAN - Perl mongers rejoice! For example:
307
- 'fpm -s cpan -t deb DBI'
308
- - deb: fixed some additional complaints by lintian (#420, patch by Pranay
309
- Kanwar)
310
- - rpm: add flags --rpm-autoreqprov, --rpm-autoreq, and --rpm-autoprov
311
- to tell rpm to enable that feature in the rpm spec. (#416, patch by Adam
312
- Stephens)
313
-
314
- 0.4.33 (April 9, 2013)
315
- - Now supports npm, the node package manager. For example:
316
- 'fpm -s npm -t deb express'
317
-
318
- 0.4.32 (April 9, 2013)
319
- - COMPATIBILITY WARNING: rpm: The default epoch is now nothing because this
320
- aligns more closely with typical rpm packages in the real world. This
321
- decision was reached in #381. If you need the previous behavior, you
322
- must now specify '--epoch 1' (#388, patch by Pranay Kanwar)
323
- - python: new flag --python-obey-requirements-txt which makes a
324
- requirements.txt file from the python package used for the package
325
- dependencies instead of the usual setup.py dependencies. The default
326
- behavior without this flag is to respect setup.py. (#384)
327
- - deb: new flag --deb-shlibs to specify the content of the 'shlibs' file
328
- in the debian package (#405, patch by Aman Gupta)
329
- - deb: fixed a few lintian errors (empty conffiles, md5sums on symlinks, etc)
330
- - Add '-f' / '--force' flag to force overwriting an existing package output
331
- path (#385, Timothy Sutton)
332
- - New flag: --no-auto-depends flag to skip any automatic dependencies
333
- that would normally be added by gem, python, deb, and rpms input packages.
334
- (#386, #374; patch by Pranay Kanwar)
335
- - gem: Use 'gem' command to download gems and read gem package information.
336
- (#389, #394, #378, #233; patches by Pranay Kanwar and Chris Roberts)
337
- - rpm: dashes are now replaced with underscores in rpm version strings
338
- (#395, #393, #399; patches by Jeff Terrace and Richard Guest)
339
- - python: Only use the first line of a license; some python packages (like
340
- 'requests') embed their full license copy into the license field. For
341
- the sake of sanity and function with most packaging systems, fpm only
342
- uses the first line of that license.
343
- - rpm: Add new 'none' option to --rpm-compression to disable compression
344
- entirely. (#398, patch by Richard Guest)
345
- - deb: Make dependencies using the '!=' operator represented as "Breaks"
346
- in the deb package (previously used "Conflicts"). (#400)
347
- - deb: Add md5sums to the debian packages which improves correctness
348
- of the package. (#403, #401; patch by Pranay Kanwar)
349
- - rpm: Convert all '!=' dependency operators to 'Conflicts'. Previously,
350
- this only applied to packages converting from python to rpm.
351
- (#404, #396; patch by Pranay Kanwar)
352
-
353
- 0.4.31 (March 21, 2013)
354
- - rpm: new flag --rpm-use-file-permissions which try to create an rpm
355
- that has file ownership/modes that exactly mirror how they are on
356
- the filesystem at package time. (#377, patch by Paul Rhodes)
357
- - general: remove empty directories only when they match the exclude
358
- pattern (#323, patch by Pranay Kanwar)
359
-
360
- 0.4.30 (March 21, 2013)
361
- - Solaris: --solaris-user and --solaris-group flags to specify
362
- the owner of files in a package. (#342, patch by Derek Olsen)
363
- - rpm: (bug fix) epoch of 0 is permitted now (#343, patch by Ben Hughes)
364
- - pear: add flags --pear-bin-dir --pear-php-bin --pear-php-dir (#358, patch
365
- by Zsolt Takács)
366
- - New 'source' type: empty. Allows you to create packages without any files
367
- in them (sometimes called 'meta packages'). Useful when you want to have
368
- one package be simply dependencies or when you want to spoof a package
369
- you don't want installed, etc. (#359, 349; patch by Pranay Kanwar)
370
- - solaris: Add --solaris-user and --solaris-group flags (#342, Patch by Derek
371
- Olsen)
372
- - gem: new flag --env-shebang; default true (disable with --no-env-shebang).
373
- Lets you disable #! (shebang) mangling done by gem installation. (#363,
374
- patch by Grier Johnson)
375
- - deb: fix bug on changelog handling (#376, patch by mbakke)
376
- - rpm: fix --rpm-rpmbuild-define (#383, patch by Eric Merritt)
377
-
378
- 0.4.29 (January 22, 2013)
379
- - Copy links literally, not what they point at (#337, patch by Dane Knecht)
380
-
381
- 0.4.28 (January 21, 2013)
382
- - Fix a dependency on the 'cabin' gem. (#344, reported by Jay Buffington)
383
-
384
- 0.4.27 (January 16, 2013)
385
- - Make all fpm output go through the logger (#329; patch by jaybuff)
386
- - New package type: osxpkg, for building packages installable on OS X. (#332,
387
- patch by Timothy Sutton)
388
- - Fix crash bug when converting rpms to something else (#316, #325; patch by
389
- rtucker-mozilla)
390
- - deb: Add --deb-field for setting a custom field in the control file.
391
- For more information on this setting, see section 5.7 "User-defined fields"
392
- of the debian policy manual:
393
- http://www.debian.org/doc/debian-policy/ch-controlfields.html#s5.7
394
- - deb: Add --deb-recommends and --deb-suggests (#285, #310; patch by Pranay
395
- Kanwar)
396
- - python to rpm: convert "!=" dependency operators in python to "Conflicts"
397
- in rpm. (#263, #312; patch by Pranay Kanwar)
398
- - python: fix bug - ignore blank lines in requirements.txt (#312, patch by
399
- Pranay Kanwar)
400
-
401
- 0.4.26 (December 27, 2012)
402
- - rpm: add --rpm-sign flag to sign packages using the 'rpmbuild --sign' flag.
403
- (#311, Patch by Pranay Kanwar)
404
- - rpm: fix flag ordering when calling rpmbuild (#309, #315, patch by Trotter
405
- Cashion)
406
- - deb: re-enable "Predepends" support (#319, #320, patch by Pranay Kanwar)
407
- - rpm: fix default 'rpm os' value (#321, 314, 309)
408
-
409
- 0.4.25 (December 7, 2012)
410
- - Added --deb-changelog and --rpm-changelog support flags. Both take a path to
411
- a changelog file. Both must be valid changelog formats for their respective
412
- package types. (#300, patch by Pranay Kanwar)
413
- - deb: Multiple "provides" are now supported. (#301, patch by Pranay Kanwar)
414
- - rpm: Added --rpm-os flag to set the OS target for the rpm. This lets you build
415
- rpms for linux on OS X and other platforms (with --rpm-os linux). (#309)
416
- - rpm: Avoid platform-dependent commands in the %install phase (#309, fixes
417
- 'cp -d' on OSX)
418
- - python: ignore comments in requirements.txt (#304, patch by Pranay Kanwar)
419
- - Fixed warning 'already initialized constant' (#274)
420
-
421
- 0.4.24 (November 30, 2012)
422
- - Don't include an empty url in rpm spec (#296, #276; patch by Pranay Kanwar)
423
- - Don't require extra parameters if you use --inputs (#278, #297; Patch by
424
- Pranay Kanwar)
425
- - python: supports requirements.txt now for dependency information.
426
- - python: supports pip now. Use '--python-pip path/to/pip' to have fpm use
427
- it instead of easy_install.
428
- - solaris: package building works again (#216, #299, patch by Pierre-Yves
429
- Ritschard)
430
-
431
- 0.4.23 (November 26, 2012)
432
- - The --directories flag is now recursive when the output package is rpm.
433
- This makes all directories under a given path as owned by the package
434
- so they'll be removed when the package is uninstalled (#245, #293, #294,
435
- patch by Justin Ellison)
436
- - Add fpm version info to '--help' output (#281)
437
- - gem to rpm: Use 'rubygem(gemname)' for dependencies (#284, patch by
438
- Jan Vansteenkiste)
439
- - Fix a bug in gem version mangling (#292, #291; patch by Pranay Kanwar)
440
- - Fix compatibility with Python 2.5 (#279, patch by Denis Bilenko)
441
-
442
- 0.4.22 (November 15, 2012)
443
- - Add --no-depends flag for creating packages with no dependencies listed
444
- (#289, patch by Brett Gailey)
445
- - Fix a bug where blank lines were present in a debian control file.
446
- (#288, patch by Andrew Bunday)
447
-
448
- 0.4.21 (November 8, 2012)
449
- - gem: remove restriction on expected gem names (#287)
450
- - add --directory flag; lets you mark a directory as being owned by a
451
- package. (#260, #245, patch by ajf8)
452
- - deb: don't include a version in the Provides field (#280)
453
- - gem: if the version is '1.1' make it imply '1.1.0' (#269, patch by
454
- Radim Marek)
455
-
456
- 0.4.20 (October 5, 2012)
457
- - python: only specify --install-{scripts,lib,data} flags to setup.py if
458
- they were given on the command line to fpm. Fixes #273.
459
-
460
- 0.4.19 (September 26, 2012)
461
- - Escape '%' characters in file names (#266, #222. Patch by John Wittkoski)
462
-
463
- 0.4.18 (September 25, 2012)
464
- - Fix regression in rpm building where the epoch in was missing in the rpm,
465
- but prior fpm versions defaulted it to 1. This caused rpms built with newer
466
- fpms to appear "older" than older rpms. Tests added to ensure this regression
467
- is caught prior to future releases! (Reported by eliklein)
468
-
469
- 0.4.17 (September 12, 2012)
470
- - Remove accidental JSON warning when using '-s python'
471
-
472
- 0.4.16 (September 6, 2012)
473
- - Fix compatibility with Ruby 1.8.7 (broken in 0.4.15)
474
-
475
- 0.4.15 (September 6, 2012)
476
- - pear: support custom channels with --pear-channel <channel> (#207)
477
- Example: fpm -s pear -t deb --pear-channel pear.drush.org drush
478
- - permit literal '\n' in --description, fpm will replace with a newline
479
- character. Example: fpm --description "line one\nline two" (#251)
480
- - improve error messaging when trying to output a package to a directory that
481
- doesn't exist (#244)
482
- - deb: convert '>' and '<' dependency operators to the correct '>>' and '<<'
483
- debian version operators (#250, patch by Thomas Meson).
484
- - deb: add --deb-priority flag (#232) for setting the debian 'priority'
485
- value for your package.
486
- - add --template-value. Used to expose arbitrary values to script templates.
487
- If you do --template-value hello=world, in your template you can do
488
- <%= hello %> to get 'world' to show up in your maintainer scripts.
489
- - python: add --python-install-data flag to set the --install-data option to
490
- setup.py (#255, patch by Thomas Meson)
491
- - Reject bad dependency flags (ones containing commas) and offer alternative.
492
- (#257)
493
- - Try to copy a file if hardlinking fails with permission problems (#253,
494
- patch by Jacek Lach)
495
- - Make --exclude, if a directory, include itself and any children, recursive.
496
- (#248)
497
-
498
- 0.4.14 (August 24, 2012)
499
- - rpm: Replace newlines with space in any license setting. (#252)
500
-
501
- 0.4.13 (August 14, 2012)
502
- - Make --exclude accept path prefixes as well. If you have a files in
503
- 'usr/share/man' in your package, you can now exclude all of a subdir
504
- by doing '--exclude usr/share/man'
505
-
506
- 0.4.12 (August 10, 2012)
507
- - Fix a major bug introduced in 0.4.11 that caused all deb packages to
508
- contain empty maintainer scripts if not otherwise specified, which made
509
- apt/dpkg quite unhappy
510
-
511
- 0.4.11 (August 7, 2012)
512
- - Fix some symlink handling to prevent links from being followed during
513
- cleanup (#228, patch by sbuss)
514
- - rpm: 'vendor' in rpm spec is now omitted if empty or nil. This fixes a bug
515
- where rpmbuild fails due to empty 'Vendor' tag if you convert rpm to rpm.
516
- - internal: remove empty directories marked by --exclude (#205, patch by
517
- jimbrowne)
518
- - dir: don't try to set utime on symlinks (#234, #240, patch by ctgswallow)
519
- - rpm: relocatable rpms now supported when using the '--prefix' flag.
520
- Example: fpm -s dir -t rpm --prefix /usr/local -n example /etc/motd
521
- (patch by jkoppe)
522
- - deb: --deb-compression flag: Support different compression methods.
523
- Default continues to be gzip.
524
- - new flag: --template-scripts. This lets you write script templates for
525
- --after-install, etc. Templates are ERB, so you can do things like
526
- '<%= name %>' to get the package name in the script, etc.
527
- - warn on command invocations that appear to have stray flags to try and
528
- help users who have complex command lines that are failling.
529
-
530
- 0.4.10 (May 25, 2012)
531
- - Fix python package support for python3 (#212, patch by Slezhuk Evgeniy)
532
- - Preserve file metadata (time, owner, etc) when copying with the dir
533
- package. (#217, patch by Marshall T. Vandegrift)
534
- - Missing executables will now error more readably in fpm.
535
- - Fix gem and python 'version' selection (#215, #204)
536
- - Dependencies using '!=' will now map to 'Conflicts' in deb packages. (#221,
537
- patch by Sven Fischer)
538
- - Allow setting default user/group for files in rpm packages (#208, patch by
539
- Jason Rogers). Note: This adds --user and --group flags to effect this.
540
- These flags may go away in the future, but if they do, they will be
541
- - In python packages set 'install-data' correctly. (#223, patch by Jamie
542
- Scheinblum)
543
-
544
- 0.4.9 (April 25, 2012)
545
- - Fix --prefix support when building gems (#213, patch by Jan Vansteenkiste)
546
-
547
- 0.4.8 (April 25, 2012)
548
- - RPM: use 'noreplace' option for config files (#194, patch by Steve Lum)
549
- - Python: Fix bug around exact dependency versions (#206, patch by Lars van
550
- de Kerkhof)
551
- - Gem->RPM: Make 'provides' "rubygem(thegemname)" instead of "rubygem-thegemname"
552
- - Fix oddity where Ruby would complain about constant redefinition (#198,
553
- patch by Marcus Vinicius Ferreira)
554
-
555
- 0.4.7 skipped.
556
-
557
- 0.4.6 (April 10, 2012)
558
- - Work around more problems in RPM with respect to file listing (#202)
559
-
560
- 0.4.5 (April 3, 2012)
561
- - Fix gem->rpm conversion where the '~>' rubygem version operator (#193,
562
- patch by antoncohen)
563
- - Escape filenames RPM install process (permits files with spaces, dollar signs, etc)
564
- (#196, reported by pspiertz)
565
-
566
- 0.4.4 (March 30, 2012)
567
- - Fix a bug in gem bin_dir handling (Calen Pennington)
568
- - The --config-files flag should work again (Brian Akins)
569
- - Fix syntax error when using --deb-pre-depends (Andrew Bennett)
570
- - Make --exclude work again (#185, #186) (Calen Pennington)
571
- - Fix file listing so that rpm packages don't declare ownership on / and
572
- /usr, etc.
573
- - make --deb-custom-control to work again (Tor Arne Vestbø)
574
- - Add --rpm-digest flag to allow selection of the rpm 'file name' digest
575
- algorithm. Default is 'md5' since it works on the most rpm systems.
576
- - Reimplement old behavior assuming "." as the input when using '-s dir' and
577
- also setting -C (#187)
578
- - Set BuildRoot on rpm to work around an rpmbuild bug(?) on CentOS 5 (#191)
579
- - Add --rpm-compression flag to allow selection of the rpm payload
580
- compression. Default is 'gzip' since it works on the most rpm systems
581
- - Specs now pass on ubuntu/32bit systems (found by travis-ci.org's test runner)
582
- - Improve default values of iteration and epoch (#190)
583
- - Make FPM::Package#files list only 'leaf' nodes (files, empty directories,
584
- symlinks, etc).
585
-
586
- 0.4.3 (March 21, 2012)
587
- - Fix bug in python packaging when invoked with a relative path to a setup.py
588
- (Reported by Thomas Meson, https://github.com/jordansissel/fpm/pull/180)
589
-
590
- 0.4.2 (March 21, 2012)
591
- - Set default temporary directory to /tmp
592
- (https://github.com/jordansissel/fpm/issues/174)
593
- - Improve symlink handling (patch by Aleix Conchillo Flaqué, pull/177))
594
- - Python package support changes (thanks to input by Luke Macken):
595
- * New flag: --python-install-bin. Sets the location for python package
596
- scripts (default: /usr/bin)
597
- * New flag: --python-install-lib. Sets the location for the python
598
- package to install libs to, default varies by system. Usually something
599
- like /usr/lib/python2.7/site-packages.
600
- * Fix up --prefix support
601
- * Improve staged package installation
602
-
603
- 0.4.1 (March 19, 2012)
604
- - Fix fpm so it works in ruby 1.8 again.
605
- Tests run, and passing:
606
- rvm 1.8.7,1.9.2,1.9.3 do bundle exec rspec
607
-
608
- 0.4.0 (March 18, 2012)
609
- - Complete rewrite of pretty much everything.
610
- * Otherwise, the 'fpm' command functionality should be the same
611
- * Please let me know if something broke!
612
- - Now has an API (see examples/api directory)
613
- - Also has a proper test suite
614
- - Updated the rpm spec generator to disable all the ways I've found rpmbuild
615
- to molest packages. This means that fpm-generated rpms will no longer
616
- strip libraries, move files around, randomly mutate jar files, etc.
617
- - Add --license and --vendor settings (via Pieter Loubser)
618
- - python support: try to name python packages sanely. Some pypi packages
619
- are literally called 'python-foo' so make sure we generate packages named
620
- 'python-foo' and not 'python-python-foo' (via Thomas Meson)
621
- - rpm support: Add --rpm-rpmbuild-define for passing a --define flag to rpmbuild
622
- (via Naresh V)
623
- - PHP pear source support (fpm -s pear ...) (via Andrew Gaffney)
624
-
625
- 0.3.10 (Oct 10, 2011)
626
- - Allow taking a list of files/inputs on stdin with '-' or with the --inputs
627
- flag. (Matt Patterson)
628
- - (python) pass -U to easy_install (Khalid Goudeaux)
629
- - (debian) quote paths in md5sum calls (Matt Patterson)
630
- - (debian) quiet stderr from dpkg --print-architecture
631
-
632
- 0.3.9 (Sep 8, 2011)
633
- - Fix bug in 'dir' source that breaks full paths
634
- - Added a bunch of tests (yaay)
635
-
636
- 0.3.8 and earlier: I have not kept this file up to date very well... Sorry :(
637
-
638
- 0.2.29 (May 20, 2011)
639
- - Add 'tar' source support. Useful for binary releases to repackage as rpms
640
- and debs. Example:
641
- fpm -s tar -t rpm -n firefox -v 4.0.1 \
642
- --prefix /opt/firefox/4.0.1 firefox-4.0.1.tar.bz2
643
-
644
- 0.2.28 (May 18, 2011)
645
- - Use --replaces as "Obsoletes" in rpms.
646
-
647
- 0.2.27 (May 18, 2011)
648
- - If present, DEBEMAIL and DEBFULLNAME environment variables will be used as
649
- the default maintainer. Previously the default was simply <$user@$hostname>
650
- https://github.com/jordansissel/fpm/issues/37
651
- - Add '--replaces' flag for specifying packages replaced by the one you are
652
- building. This only functions in .deb packages now until I find a suitable
653
- synonym in RPM.
654
- - Add --python-bin and --python-easyinstall flags. This lets you choose specific
655
- python and easy_install tools to use when building. Default is simply
656
- 'python' and 'easy_install' respectively.
657
- - Add support for ~/.fpmrc - The format of this file is the same as the flags.
658
- One flag per line. https://github.com/jordansissel/fpm/issues/38
659
- Example:
660
- --python-bin=/usr/bin/python2.7
661
- --python-easyinstall=/usr/bin/easy_install2.7
662
-
663
- 0.2.26 and earlier
664
- No changelist tracked. My bad, yo.