[ARVADOS] created: 5be834f3ac1bdd81f2c40514cdb5795a8585e1f6

git at public.curoverse.com git at public.curoverse.com
Fri Sep 19 12:00:31 EDT 2014


        at  5be834f3ac1bdd81f2c40514cdb5795a8585e1f6 (commit)


commit 5be834f3ac1bdd81f2c40514cdb5795a8585e1f6
Author: Tom Clegg <tom at curoverse.com>
Date:   Fri Sep 19 11:27:41 2014 -0400

    3894: gem version numbers reflect latest commit in the subdirectory
    where the gem content comes from.
    
    Even if there are more recent commits elsewhere in the source tree,
    those changes won't be reflected in the package so there's no need to
    increment the package version.
    
    In addition to avoiding the proliferation of packages with no changes
    other than the version number, this makes it possible to change an
    SDK, predict the gem version that the CI server will build, refer to
    that version in a Gemfile elsewhere in the source tree, and push both
    changes at once -- without time travel.

diff --git a/sdk/cli/arvados-cli.gemspec b/sdk/cli/arvados-cli.gemspec
index ef1fcd3..12f833c 100644
--- a/sdk/cli/arvados-cli.gemspec
+++ b/sdk/cli/arvados-cli.gemspec
@@ -5,10 +5,10 @@ end
 
 Gem::Specification.new do |s|
   s.name        = 'arvados-cli'
-  s.version     = '0.1.' + `/usr/bin/git log --pretty=format:'%ci' -n 1`[0..18].gsub(/[ \-:]/,'')
-  s.date        = `/usr/bin/git log --pretty=format:'%ci' -n 1`[0..9]
-  s.summary     = "Arvados SDK CLI"
-  s.description = "This is the Arvados SDK CLI gem, git revision " + `/usr/bin/git log --pretty=format:'%H' -n 1`
+  s.version     = '0.1.' + `git log --pretty=format:'%ci' -n 1 .`[0..18].gsub(/[ \-:]/,'')
+  s.date        = `git log --pretty=format:'%ci' -n 1 .`[0..9]
+  s.summary     = "Arvados CLI tools"
+  s.description = "Arvados command line tools, git commit " + `git log --pretty=format:'%H' -n 1 .`
   s.authors     = ["Arvados Authors"]
   s.email       = 'gem-dev at curoverse.com'
   #s.bindir      = '.'
@@ -29,5 +29,5 @@ Gem::Specification.new do |s|
   s.add_runtime_dependency 'curb', '~> 0.8'
   s.add_runtime_dependency('jwt', '>= 0.1.5', '< 1.0.0')
   s.homepage    =
-    'http://arvados.org'
+    'https://arvados.org'
 end
diff --git a/sdk/ruby/arvados.gemspec b/sdk/ruby/arvados.gemspec
index 53ab7ce..08ef71c 100644
--- a/sdk/ruby/arvados.gemspec
+++ b/sdk/ruby/arvados.gemspec
@@ -5,10 +5,10 @@ end
 
 Gem::Specification.new do |s|
   s.name        = 'arvados'
-  s.version     = '0.1.' + `/usr/bin/git log --pretty=format:'%ci' -n 1`[0..18].gsub(/[ \-:]/,'')
-  s.date        = `/usr/bin/git log --pretty=format:'%ci' -n 1`[0..9]
-  s.summary     = "Arvados SDK Ruby"
-  s.description = "This is the Arvados SDK gem, git revision " + `/usr/bin/git log --pretty=format:'%H' -n 1`
+  s.version     = '0.1.' + `git log --pretty=format:'%ci' -n 1 .`[0..18].gsub(/[ \-:]/,'')
+  s.date        = `git log --pretty=format:'%ci' -n 1 .`[0..9]
+  s.summary     = "Arvados client library"
+  s.description = "Arvados client library, git commit " + `git log --pretty=format:'%H' -n 1 .`
   s.authors     = ["Arvados Authors"]
   s.email       = 'gem-dev at curoverse.com'
   s.licenses    = ['Apache License, Version 2.0']
@@ -20,5 +20,5 @@ Gem::Specification.new do |s|
   s.add_dependency('andand')
   s.add_runtime_dependency('jwt', '>= 0.1.5', '< 1.0.0')
   s.homepage    =
-    'http://arvados.org'
+    'https://arvados.org'
 end

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list