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 +4 -4
- data/lib/autobuild/package.rb +35 -0
- data/lib/autobuild/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 82ea98168aaee99741785e76af62402113f9b866
|
|
4
|
+
data.tar.gz: e54a1b60d6dd28d790859c61f9e41a86872f7b52
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: faa540885d3ceef276e1dfd19bd51d4874f9b06aa53eeecdb3e9b94af7855f9bae8ffaa8f856dd045db24d4b4fbba11df449dcf97efb69f4a33a06c3cc5f1908
|
|
7
|
+
data.tar.gz: 39d9a71553ced999a717770915acf3e5be4c29dc212386fac777bd35cf36c62531629e9c5f418779f412beddbd57aa72d3a680c41097d9cacd1c78d666d0ec81
|
data/lib/autobuild/package.rb
CHANGED
|
@@ -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)
|
data/lib/autobuild/version.rb
CHANGED
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.
|
|
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:
|
|
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.
|
|
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.
|
|
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:
|
|
170
|
+
version: 1.3.1
|
|
171
171
|
requirements: []
|
|
172
172
|
rubyforge_project:
|
|
173
|
-
rubygems_version: 2.
|
|
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
|