mirror of
https://github.com/jordansissel/fpm
synced 2025-04-20 13:28:00 +02:00
The original `json` gem dependency was added in the original fpm.gemspec because, at the time, Ruby 1.8.7 was common and required an external `json` dependency for parsing JSON. Later, Ruby releases since 1.9.1 have bundled `json`[1]. Therefore, it feels safe to remove this dependency. As a bonus, the rubygems `json` gem places requirements on the minimum version of Ruby. At this time, the latest `json` gem requires Ruby >= 2.3. If the `json` gem dependency is removed, fpm will still retain the ability to process JSON while lowering the minimum required Ruby version to Ruby 1.9.x -- It's not perfect, but it's a start! :) [1] https://docs.ruby-lang.org/en/2.3.0/NEWS-1_9_1.html The idea for this change change came originally from a discussion with @edolnx in #1949 Fixes #1741, #1264, #1949
65 lines
2.0 KiB
Ruby
65 lines
2.0 KiB
Ruby
require File.join(File.dirname(__FILE__), "lib/fpm/version")
|
|
Gem::Specification.new do |spec|
|
|
files = []
|
|
dirs = %w{lib bin templates}
|
|
dirs.each do |dir|
|
|
files += Dir["#{dir}/**/*"]
|
|
end
|
|
|
|
files << "LICENSE"
|
|
files << "CONTRIBUTORS"
|
|
files << "CHANGELOG.rst"
|
|
|
|
files = files.reject { |path| path =~ /\.pyc$/ }
|
|
|
|
spec.name = "fpm"
|
|
spec.version = FPM::VERSION
|
|
spec.summary = "fpm - package building and mangling"
|
|
spec.description = "Convert directories, rpms, python eggs, rubygems, and " \
|
|
"more to rpms, debs, solaris packages and more. Win at package " \
|
|
"management without wasting pointless hours debugging bad rpm specs!"
|
|
spec.license = "MIT-like"
|
|
|
|
spec.required_ruby_version = '>= 1.9.3'
|
|
|
|
# For logging
|
|
# https://github.com/jordansissel/ruby-cabin
|
|
spec.add_dependency("cabin", ">= 0.6.0") # license: Apache 2
|
|
|
|
# For backports to older rubies
|
|
# https://github.com/marcandre/backports
|
|
spec.add_dependency("backports", ">= 2.6.2") # license: MIT
|
|
|
|
# For reading and writing rpms
|
|
spec.add_dependency("arr-pm", "~> 0.0.11") # license: Apache 2
|
|
|
|
# For command-line flag support
|
|
# https://github.com/mdub/clamp/blob/master/README.markdown
|
|
spec.add_dependency("clamp", "~> 1.0.0") # license: MIT
|
|
|
|
# For sourcing from pleaserun
|
|
spec.add_dependency("pleaserun", "~> 0.0.29") # license: Apache 2
|
|
|
|
spec.add_dependency("stud")
|
|
|
|
# In Ruby 3.0, rexml was moved to a bundled gem instead of a default one,
|
|
# so I think this needs to be added explicitly?
|
|
spec.add_dependency("rexml")
|
|
|
|
spec.add_development_dependency("rspec", "~> 3.0.0") # license: MIT (according to wikipedia)
|
|
spec.add_development_dependency("insist", "~> 1.0.0") # license: Apache 2
|
|
spec.add_development_dependency("pry")
|
|
|
|
spec.add_development_dependency("rake") # For FPM::RakeTask, #1877, #756
|
|
|
|
spec.files = files
|
|
spec.require_paths << "lib"
|
|
spec.bindir = "bin"
|
|
spec.executables << "fpm"
|
|
|
|
spec.author = "Jordan Sissel"
|
|
spec.email = "jls@semicomplete.com"
|
|
spec.homepage = "https://github.com/jordansissel/fpm"
|
|
end
|
|
|