autoproj 1.9.5.rc1 → 1.9.5.rc2

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.
@@ -2014,12 +2014,14 @@ module Autoproj
2014
2014
  end
2015
2015
 
2016
2016
  File.open(filename, "w") do |io|
2017
- io.write <<-EOF
2018
- if test -n "$AUTOPROJ_CURRENT_ROOT" && test "$AUTOPROJ_CURRENT_ROOT" != "#{Autoproj.root_dir}"; then
2019
- echo "the env.sh from $AUTOPROJ_CURRENT_ROOT is already loaded. Start a new shell before sourcing this one"
2020
- return
2021
- fi
2022
- EOF
2017
+ if Autobuild.env_inherit
2018
+ io.write <<-EOF
2019
+ if test -n "$AUTOPROJ_CURRENT_ROOT" && test "$AUTOPROJ_CURRENT_ROOT" != "#{Autoproj.root_dir}"; then
2020
+ echo "the env.sh from $AUTOPROJ_CURRENT_ROOT is already loaded. Start a new shell before sourcing this one"
2021
+ return
2022
+ fi
2023
+ EOF
2024
+ end
2023
2025
  Autobuild.export_env_sh(io)
2024
2026
  end
2025
2027
  end
@@ -2080,46 +2082,85 @@ end
2080
2082
 
2081
2083
  DEFS = <<EODEFS
2082
2084
  ---
2083
- ruby20: ignore
2084
2085
  pip:
2085
2086
  debian,ubuntu: python-pip
2087
+ cvs:
2088
+ fedora: cvs
2089
+ darwin: cvs
2090
+ debian,ubuntu: cvs
2086
2091
  lsb_release:
2092
+ fedora: redhat-lsb
2093
+ arch: ignore
2087
2094
  gentoo: sys-apps/lsb-release
2088
2095
  darwin: ignore
2089
- fedora: redhat-lsb
2090
2096
  debian,ubuntu: lsb-release
2091
- arch: ignore
2097
+ cmake:
2098
+ fedora: cmake
2099
+ arch: cmake
2100
+ gentoo: dev-util/cmake
2101
+ darwin: cmake
2102
+ debian,ubuntu: cmake
2103
+ autobuild: gem
2104
+ none: ignore
2105
+ archive:
2106
+ fedora:
2107
+ - tar
2108
+ - unzip
2109
+ arch:
2110
+ - tar
2111
+ - unzip
2112
+ gentoo:
2113
+ - app-arch/tar
2114
+ - app-arch/unzip
2115
+ darwin:
2116
+ - gnutar
2117
+ - unzip
2118
+ debian,ubuntu:
2119
+ - tar
2120
+ - unzip
2121
+ autotools:
2122
+ fedora:
2123
+ - automake
2124
+ - autoconf
2125
+ arch: automake autoconf
2126
+ gentoo:
2127
+ - sys-devel/automake:1.9
2128
+ - sys-devel/autoconf
2129
+ darwin:
2130
+ - automake
2131
+ - autoconf
2132
+ debian,ubuntu:
2133
+ - automake1.9
2134
+ - autoconf
2092
2135
  svn:
2136
+ fedora: subversion
2137
+ arch: subversion
2093
2138
  gentoo: dev-util/subversion
2094
2139
  darwin: subversion
2095
- fedora: subversion
2096
2140
  debian,ubuntu: subversion
2097
- arch: subversion
2141
+ ruby20: ignore
2098
2142
  autoproj: gem
2099
2143
  build-essential:
2144
+ fedora: ignore
2145
+ arch: ignore
2100
2146
  gentoo: ignore
2101
2147
  darwin: ignore
2102
- fedora: ignore
2103
2148
  debian,ubuntu: build-essential
2104
- arch: ignore
2105
- cmake:
2106
- gentoo: dev-util/cmake
2107
- darwin: cmake
2108
- fedora: cmake
2109
- debian,ubuntu: cmake
2110
- arch: cmake
2111
2149
  ruby19:
2150
+ fedora:
2151
+ "17":
2152
+ - ruby
2153
+ - rubygems
2154
+ arch:
2155
+ - ruby
2156
+ - rake
2112
2157
  gentoo:
2113
2158
  - dev-lang/ruby:1.9
2114
2159
  - rake
2160
+ default: nonexistent
2115
2161
  darwin:
2116
2162
  - ruby19
2117
2163
  - rake
2118
- default: nonexistent
2119
- fedora:
2120
- "17":
2121
- - ruby
2122
- - rubygems
2123
2164
  ubuntu:
2124
2165
  - ruby1.9.1
2125
2166
  - ruby1.9.1-dev
@@ -2133,21 +2174,18 @@ ruby19:
2133
2174
  - rubygems1.9.1
2134
2175
  - rake
2135
2176
  - rubygems-integration
2136
- arch:
2137
- - ruby
2138
- - rake
2139
2177
  ruby18:
2178
+ fedora:
2179
+ "15,16":
2180
+ - ruby
2181
+ - rubygems
2140
2182
  gentoo:
2141
2183
  - dev-lang/ruby:1.8
2142
2184
  - rake
2185
+ default: nonexistent
2143
2186
  darwin:
2144
2187
  - ruby
2145
2188
  - rb-rake
2146
- default: nonexistent
2147
- fedora:
2148
- "15,16":
2149
- - ruby
2150
- - rubygems
2151
2189
  debian,ubuntu:
2152
2190
  - ruby1.8-dev
2153
2191
  - ruby1.8
@@ -2155,51 +2193,15 @@ ruby18:
2155
2193
  - ri1.8
2156
2194
  - libopenssl-ruby1.8
2157
2195
  - rake
2158
- autobuild: gem
2159
- cvs:
2160
- darwin: cvs
2161
- fedora: cvs
2162
- debian,ubuntu: cvs
2163
- archive:
2164
- gentoo:
2165
- - app-arch/tar
2166
- - app-arch/unzip
2167
- darwin:
2168
- - gnutar
2169
- - unzip
2170
- fedora:
2171
- - tar
2172
- - unzip
2173
- debian,ubuntu:
2174
- - tar
2175
- - unzip
2176
- arch:
2177
- - tar
2178
- - unzip
2179
- none: ignore
2180
- autotools:
2181
- gentoo:
2182
- - sys-devel/automake:1.9
2183
- - sys-devel/autoconf
2184
- darwin:
2185
- - automake
2186
- - autoconf
2187
- fedora:
2188
- - automake
2189
- - autoconf
2190
- debian,ubuntu:
2191
- - automake1.9
2192
- - autoconf
2193
- arch: automake autoconf
2194
2196
  git:
2197
+ fedora: git
2198
+ arch: git
2195
2199
  gentoo: dev-vcs/git
2196
2200
  darwin: git-core
2197
- fedora: git
2198
2201
  ubuntu: git-core
2199
2202
  debian:
2200
2203
  lenny: git
2201
2204
  default: git-core
2202
- arch: git
2203
2205
 
2204
2206
  EODEFS
2205
2207
 
@@ -189,12 +189,14 @@ module Autoproj
189
189
  end
190
190
 
191
191
  File.open(filename, "w") do |io|
192
- io.write <<-EOF
193
- if test -n "$AUTOPROJ_CURRENT_ROOT" && test "$AUTOPROJ_CURRENT_ROOT" != "#{Autoproj.root_dir}"; then
194
- echo "the env.sh from $AUTOPROJ_CURRENT_ROOT is already loaded. Start a new shell before sourcing this one"
195
- return
196
- fi
197
- EOF
192
+ if Autobuild.env_inherit
193
+ io.write <<-EOF
194
+ if test -n "$AUTOPROJ_CURRENT_ROOT" && test "$AUTOPROJ_CURRENT_ROOT" != "#{Autoproj.root_dir}"; then
195
+ echo "the env.sh from $AUTOPROJ_CURRENT_ROOT is already loaded. Start a new shell before sourcing this one"
196
+ return
197
+ fi
198
+ EOF
199
+ end
198
200
  Autobuild.export_env_sh(io)
199
201
  end
200
202
  end
@@ -1,3 +1,3 @@
1
1
  module Autoproj
2
- VERSION = "1.9.5.rc1"
2
+ VERSION = "1.9.5.rc2"
3
3
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autoproj
3
3
  version: !ruby/object:Gem::Version
4
- hash: 1083816473
4
+ hash: -3341178882
5
5
  prerelease: 6
6
6
  segments:
7
7
  - 1
8
8
  - 9
9
9
  - 5
10
10
  - rc
11
- - 1
12
- version: 1.9.5.rc1
11
+ - 2
12
+ version: 1.9.5.rc2
13
13
  platform: ruby
14
14
  authors:
15
15
  - Rock Core Developers