X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/7c7b9ab80e1b33a108c55a23b3dfe793a73ecc95..d506da189ae39bbf86f53e7cd9cda0db45a54695:/services/login-sync/arvados-login-sync.gemspec diff --git a/services/login-sync/arvados-login-sync.gemspec b/services/login-sync/arvados-login-sync.gemspec index 2a91eed71c..008f13d8b8 100644 --- a/services/login-sync/arvados-login-sync.gemspec +++ b/services/login-sync/arvados-login-sync.gemspec @@ -13,7 +13,12 @@ begin ENV["GIT_DIR"] = File.expand_path "#{__dir__}/../../.git" ENV["GIT_WORK_TREE"] = File.expand_path "#{__dir__}/../.." git_timestamp, git_hash = `git log -n1 --first-parent --format=%ct:%H #{__dir__}`.chomp.split(":") - version = `#{__dir__}/../../build/version-at-commit.sh #{git_hash}`.encode('utf-8').strip + if ENV["ARVADOS_BUILDING_VERSION"] + version = ENV["ARVADOS_BUILDING_VERSION"] + else + version = `#{__dir__}/../../build/version-at-commit.sh #{git_hash}`.encode('utf-8').strip + end + version = version.sub("~dev", ".dev").sub("~rc", ".rc") git_timestamp = Time.at(git_timestamp.to_i).utc ensure ENV["GIT_DIR"] = git_dir @@ -27,17 +32,19 @@ Gem::Specification.new do |s| s.summary = "Set up local login accounts for Arvados users" s.description = "Creates and updates local login accounts for Arvados users. Built from git commit #{git_hash}" s.authors = ["Arvados Authors"] - s.email = 'gem-dev@curoverse.com' + s.email = 'packaging@arvados.org' s.licenses = ['AGPL-3.0'] s.files = ["bin/arvados-login-sync", "agpl-3.0.txt"] s.executables << "arvados-login-sync" - s.required_ruby_version = '>= 2.1.0' - s.add_runtime_dependency 'arvados', '~> 1.3.0', '>= 1.3.0' - # arvados-google-api-client 0.8.7.2 is incompatible with faraday 0.16.2 - s.add_dependency('faraday', '< 0.16') - # arvados-google-api-client (and thus arvados) gems - # depend on signet, but signet 0.12 is incompatible with ruby 2.3. - s.add_dependency('signet', '< 0.12') + s.required_ruby_version = '>= 2.5.0' + # The minimum version's 'a' suffix is necessary to enable bundler + # to consider 'pre-release' versions. See: + # https://github.com/rubygems/bundler/issues/4340 + s.add_runtime_dependency 'arvados', '~> 2.8.a' + s.add_runtime_dependency 'launchy', '< 2.5' + # arvados fork of google-api-client gem with old API and new + # compatibility fixes, built from ../../sdk/ruby-google-api-client/ + s.add_runtime_dependency('arvados-google-api-client', '>= 0.8.7.5', '< 0.8.9') s.homepage = 'https://arvados.org' end