autobuild 1.2.11 → 1.2.12

Sign up to get free protection for your applications and to get access to all the features.
data/Changes.txt CHANGED
@@ -1,3 +1,6 @@
1
+ == Version 1.2.12
2
+ * reconfigure orogen packages if orogen itself is newer
3
+
1
4
  == Version 1.2.11
2
5
  * fix small issues with CMake
3
6
  - CMake 2.6 can convert option values between what the user provides (for
data/lib/autobuild.rb CHANGED
@@ -3,6 +3,6 @@ require 'autobuild/reporting'
3
3
  require 'autobuild/package'
4
4
 
5
5
  module Autobuild
6
- VERSION = "1.2.11" unless defined? Autobuild::VERSION
6
+ VERSION = "1.2.12" unless defined? Autobuild::VERSION
7
7
  end
8
8
 
@@ -17,6 +17,10 @@ module Autobuild
17
17
 
18
18
  @orogen_file ||= "#{File.basename(name)}.orogen"
19
19
 
20
+ # Find out where orogen is, and make sure the configurestamp depend
21
+ # on it
22
+ orogen_root = File.join(`orogen --base-dir`.chomp, 'orogen')
23
+ file genstamp => Autobuild.source_tree(orogen_root)
20
24
  file configurestamp => genstamp
21
25
  file genstamp => File.join(srcdir, orogen_file) do
22
26
  regen
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autobuild
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.11
4
+ version: 1.2.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sylvain Joyeux