13910: Fixes arvados gem dependency on arvados-cli & arvados-login-sync
[arvados.git] / services / login-sync / arvados-login-sync.gemspec
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 if not File.exists?('/usr/bin/git') then
6   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"
7   exit
8 end
9
10 git_latest_tag = `git describe --abbrev=0`
11 git_latest_tag = git_latest_tag.encode('utf-8').strip
12 git_timestamp, git_hash = `git log -n1 --first-parent --format=%ct:%H .`.chomp.split(":")
13 git_timestamp = Time.at(git_timestamp.to_i).utc
14
15 Gem::Specification.new do |s|
16   s.name        = 'arvados-login-sync'
17   s.version     = "#{git_latest_tag}.#{git_timestamp.strftime('%Y%m%d%H%M%S')}"
18   s.date        = git_timestamp.strftime("%Y-%m-%d")
19   s.summary     = "Set up local login accounts for Arvados users"
20   s.description = "Creates and updates local login accounts for Arvados users. Built from git commit #{git_hash}"
21   s.authors     = ["Arvados Authors"]
22   s.email       = 'gem-dev@curoverse.com'
23   s.licenses    = ['GNU Affero General Public License, version 3.0']
24   s.files       = ["bin/arvados-login-sync", "agpl-3.0.txt"]
25   s.executables << "arvados-login-sync"
26   s.required_ruby_version = '>= 2.1.0'
27   s.add_runtime_dependency 'arvados', '~> 1.1.0', '>= 1.1.4'
28   s.homepage    =
29     'https://arvados.org'
30 end