chef-boneyard / em-winrm

DEPRECATED: EventMachine based, asynchronous parallel client for Windows Remote Management (WinRM).
Apache License 2.0
12 stars 25 forks source link

KNIFE-394: Update required eventmachine version #6

Closed KwadroNaut closed 10 years ago

KwadroNaut commented 11 years ago

eventmachine 1.0.0.beta.3 is very old and on a current machine fails to install on a ruby 1.9.2p320 environment. Therefore, it makes most sense to file a bug here to update its requirements (and test) rather than filing a bug against something that has dropped it's beta status.

grossadamm commented 11 years ago

Ran into the same issue, a simple update to the gemspec should solve this.

Change s.add_dependency "eventmachine", "= 1.0.0.beta.3" to be much less particular. For those that need a quick fix to keep moving sudo gem install em-winrm -- --with-cflags=\"-O2 -pipe -march=native -w\"

kanzure commented 11 years ago

Any chance of this bump happening? There is a problem with installing libraries like windows-fromscratch and veewee downstream of this in ruby 1.9.3-p448 on Debian wheezy.

jjhuff commented 11 years ago

Just ran into this while trying to install knife-ec2 on Ubuntu 13.10. Ugh. Thanks for the workaround!

styk-tv commented 11 years ago

Confirming gem install knife-ec2 problem on Ubuntu 13.10 (update/upgrade as of nov14) due to eventmachine 1.0.0.beta.3 dependency. Thanks for the workaround!

gdahlm commented 10 years ago

This is a huge blocker for any modern chef install. At a minimum it would be nice to remove the depends on knife-ec2 if updating is impossible.

gabmontes commented 10 years ago

@grossadamm Thanks for the workaround! I was finally able to install knife-ec2 on Ubuntu 13.10. Hope the underlying issue is fixed soon.

btm commented 10 years ago

I'm planning on fixing this issue this week and making a release, I left a comment on #11. The way github issues and pull requests seem to share numbers still confuses me.

btm commented 10 years ago

em-winrm v0.5.5 has been released with an updated dependency for eventmachine of "~> 1.0.0".

gabmontes commented 10 years ago

@btm Thanks!!!