X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/cc952178056bf6d29471f6986306fb673dcf394a..d08871688722c5303b56e5a76456aec7d10e770b:/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 605e8540ee..f580d529d8 100644 --- a/services/login-sync/arvados-login-sync.gemspec +++ b/services/login-sync/arvados-login-sync.gemspec @@ -2,19 +2,18 @@ # # SPDX-License-Identifier: AGPL-3.0 -if not File.exists?('/usr/bin/git') then +if not File.exist?('/usr/bin/git') then STDERR.puts "\nGit binary not found, aborting. Please install git and run gem build from a checked out copy of the git repository.\n\n" exit end -git_latest_tag = `git tag -l |sort -V -r |head -n1` -git_latest_tag = git_latest_tag.encode('utf-8').strip +version = `#{__dir__}/../../build/version-at-commit.sh HEAD`.encode('utf-8').strip git_timestamp, git_hash = `git log -n1 --first-parent --format=%ct:%H .`.chomp.split(":") git_timestamp = Time.at(git_timestamp.to_i).utc Gem::Specification.new do |s| s.name = 'arvados-login-sync' - s.version = "#{git_latest_tag}.#{git_timestamp.strftime('%Y%m%d%H%M%S')}" + s.version = version s.date = git_timestamp.strftime("%Y-%m-%d") 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}" @@ -24,7 +23,9 @@ Gem::Specification.new do |s| 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.2.0', '>= 1.2.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') s.homepage = 'https://arvados.org' end