autobuild 1.9.3 → 1.9.4.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 882bb83f04ea7fd80f6818f0c28b8166f34df548
4
- data.tar.gz: 3cceefb5ba33edc1c0782f79699bb87d39411b48
3
+ metadata.gz: 82ea98168aaee99741785e76af62402113f9b866
4
+ data.tar.gz: e54a1b60d6dd28d790859c61f9e41a86872f7b52
5
5
  SHA512:
6
- metadata.gz: 60189539117b9a7489de3193ca5f0e61283f6b8a5e58eefdf436b022395e5eb1d7d49af1b8d552292a9e4ca047c46db6dbfaa9953a1d2010f828406181a8ac8b
7
- data.tar.gz: 56b028e20a9ca367b96263604b6069c18054e07ce0161184976bb5a0e7f861492b9acb364f289082f2b83c40aee5dae21e3b1bbf53cb4188746a49823718db4b
6
+ metadata.gz: faa540885d3ceef276e1dfd19bd51d4874f9b06aa53eeecdb3e9b94af7855f9bae8ffaa8f856dd045db24d4b4fbba11df449dcf97efb69f4a33a06c3cc5f1908
7
+ data.tar.gz: 39d9a71553ced999a717770915acf3e5be4c29dc212386fac777bd35cf36c62531629e9c5f418779f412beddbd57aa72d3a680c41097d9cacd1c78d666d0ec81
@@ -584,6 +584,41 @@ module Autobuild
584
584
  end
585
585
  super
586
586
  end
587
+
588
+ # For forward compatibility with autobuild 1.11+
589
+ #
590
+ # It simply calls the corresponding method on {Autobuild}
591
+ def env_add(name, *values)
592
+ Autobuild.env_add(name, *values)
593
+ end
594
+
595
+ # For forward compatibility with autobuild 1.11+
596
+ #
597
+ # It simply calls the corresponding method on {Autobuild}
598
+ def env_add_path(name, *values)
599
+ Autobuild.env_add_path(name, *values)
600
+ end
601
+
602
+ # For forward compatibility with autobuild 1.11+
603
+ #
604
+ # It simply calls the corresponding method on {Autobuild}
605
+ def env_set(name, *values)
606
+ Autobuild.env_add_path(name, *values)
607
+ end
608
+
609
+ # For forward compatibility with autobuild 1.11+
610
+ #
611
+ # It simply calls the corresponding method on {Autobuild}
612
+ def env_add_prefix(newprefix, includes = nil)
613
+ Autobuild.update_environment(newprefix, includes)
614
+ end
615
+
616
+ # For forward compatibility with autobuild 1.11+
617
+ #
618
+ # It returns ENV as the environment is global on autobuild 1.10
619
+ def resolved_env(_ignored = nil)
620
+ ENV.dup
621
+ end
587
622
  end
588
623
 
589
624
  def self.package_set(spec)
@@ -1,5 +1,5 @@
1
1
  module Autobuild
2
- VERSION = "1.9.3" unless defined? Autobuild::VERSION
2
+ VERSION = "1.9.4.rc1" unless defined? Autobuild::VERSION
3
3
  end
4
4
 
5
5
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autobuild
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.3
4
+ version: 1.9.4.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sylvain Joyeux
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-11 00:00:00.000000000 Z
11
+ date: 2016-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '3.14'
75
+ version: '3.15'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '3.14'
82
+ version: '3.15'
83
83
  description: Collection of classes to handle build systems (CMake, autotools, ...)
84
84
  and import mechanisms (tarballs, CVS, SVN, git, ...). It also offers a Rake integration
85
85
  to import and build such software packages. It is the backbone of the autoproj (http://rock-robotics.org/autoproj)
@@ -165,12 +165,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
165
165
  version: 1.9.2
166
166
  required_rubygems_version: !ruby/object:Gem::Requirement
167
167
  requirements:
168
- - - ">="
168
+ - - ">"
169
169
  - !ruby/object:Gem::Version
170
- version: '0'
170
+ version: 1.3.1
171
171
  requirements: []
172
172
  rubyforge_project:
173
- rubygems_version: 2.2.3
173
+ rubygems_version: 2.5.1
174
174
  signing_key:
175
175
  specification_version: 4
176
176
  summary: Library to handle build systems and import mechanisms