chouhoulis has quit [Remote host closed the connection]
chouhoulis has joined #bundler
jyaworski has joined #bundler
chouhoulis has quit [Remote host closed the connection]
djbkd has joined #bundler
EduardoBautista has joined #bundler
jyaworski has quit [Read error: Connection reset by peer]
jyaworski has joined #bundler
EduardoBautista has left #bundler [#bundler]
chouhoulis has joined #bundler
chouhoulis has quit [Remote host closed the connection]
chouhoulis has joined #bundler
_djbkd has joined #bundler
Anders__ has joined #bundler
Anders__ has quit [Quit: Page closed]
robbyoconnor has quit [Ping timeout: 276 seconds]
btmike has joined #bundler
<btmike>
any sles geeks here? I'm running into some issues trying to install foreman-proxy on sles 11.3 via git/bundler.
<btmike>
*crickets*
_djbkd has quit [Remote host closed the connection]
<btmike>
I'm just gonna rattle off the problem, maybe someone else can answer. Here's what I'm getting:
<btmike>
L055-LDAP-1V:/usr/share/foreman-proxy # bundle install Don't run Bundler as root. Bundler can ask for sudo if it is needed, and installing your bundle as root will break this application for all non-root users on this machine. Your Gemfile lists the gem rdoc (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfi
<btmike>
feh
<btmike>
...
<btmike>
extconf.rb:27: augeas-devel not installed (RuntimeError) To see why this extension failed to compile, please check the mkmf.log which can be found here: /usr/share/foreman-proxy/vendor/ruby/1.8/extensions/x86_64-linux/1.8/ruby-augeas-0.5.0/mkmf.log extconf failed, exit code 1 Gem files will remain installed in /usr/share/foreman-proxy/vendor/ruby/1.8/gems/ruby-augeas-0.5.0 for inspection. Results logged to /usr/share/foreman-proxy
<btmike>
thing is
<btmike>
augeas IS installed:
<btmike>
zypper shows augeas and ruby 1.8-rubygem-ruby-augeas packages installed
<btmike>
moreover this WAS working
<btmike>
but I just wanted to try to reinstall it with the --path=vendor variable
<btmike>
which of course I find out after the fact is remembered >_>
<btmike>
now it's acting like augeas isn't installed, so I'm kind of at a loss.
<indirect>
btmike: using --path means you have just explicitly told Bundler to NOT use the ruby-1.8-rubygems-ruby-augeas package
<indirect>
as far as I can tell, this is just Bundler doing what you told it to do
<btmike>
hm
<btmike>
any way I can get it back to default behavior?
<indirect>
btmike: sure, run `bundle install --system`
<btmike>
still getting an error with respect to ruby-augeas unfortunately
<btmike>
I guess I could try a zypper remove and reinstall that way
<btmike>
then rerun bundle
<indirect>
"an error" isn't really helpful for debugging purposes, could you be more specific?
<btmike>
understood; it's the same error as before:
<btmike>
extconf.rb:27: augeas-devel not installed (RuntimeError) To see why this extension failed to compile, please check the mkmf.log which can be found here: /usr/lib64/ruby/gems/1.8/extensions/x86_64-linux/1.8/ruby-augeas-0.5.0/mkmf.log extconf failed, exit code 1 Gem files will remain installed in /usr/lib64/ruby/gems/1.8/gems/ruby-augeas-0.5.0 for inspection. Results logged to /usr/lib64/ruby/gems/1.8/extensions/x86_64-linux/1.8/rub
<indirect>
I don't know where your package manager installs the augeas gem
<indirect>
but if Bundler is trying to install your bundle to the same place as the package manager has already installed the gem, it will just use the installed one instead
<indirect>
and not try to compile (which seems to be what is failing)