Hi, I'm new to Shoes (Ruby) and this list and I have a little problem: I'm learning Ruby and getting close to the chapter about Shoes in: "Beginning Ruby (Cooper, Peter, 2009)". However I don't succeed in installing Shoes on my machine (running Archlinux). First I tried installing Shoes through AUR (en) (http://aur.archlinux.org/packages.php?ID=15462) but that didn't succeed so I asked the people from the "AUR Issues" forum (https://bbs.archlinux.org/viewtopic.php?id=108835). This did bring me a little bit further, but still no running Shoes. So I downloaded shoes (shoes2.run) from http://shoes.heroku.com/downloads and tried it, but I didn't came very far either after reading the installation instructions which only are given for the major distro's: build]$ chmod +x shoes2.run build]$ ./shoes2.run Verifying archive integrity... All good. Uncompressing Shoes ...8< 8< /tmp/selfgz47428492/shoes-bin: error while loading shared libraries: libgssapi_krb5.so.2: cannot open shared object file: No such file or directory. I had some previous dependency problems (libssl) and I installed the missing packages. But with libgssapi_krb5.so.2 I'm stuck. I think in Arch libgssapi is provided in the arch repositories through libgssglue 0.1-2 which I *have* installed. So, thats why I'm here. In short: "Can someone help me installing shoes on Archlinux". If I have to give some more details, I will gladly do so. Thanks, Carlo
On Thu, Nov 25, 2010 at 10:47 AM, Carlo van Rijswijk < carlovanrijswijk@hetnet.nl> wrote: > Hi, > > I'm new to Shoes (Ruby) and this list and I have a little problem: I'm > learning Ruby and getting close to the chapter about Shoes in: > "Beginning Ruby (Cooper, Peter, 2009)". However I don't succeed in > installing Shoes on my machine (running Archlinux). > As a former Arch user, I'll help :) Used it for about 2 years, still love it, but I have a Mac now. > > First I tried installing Shoes through AUR (en) > (http://aur.archlinux.org/packages.php?ID=15462) but that didn't > succeed so I asked the people from the "AUR Issues" forum > (https://bbs.archlinux.org/viewtopic.php?id=108835). This did bring me > a little bit further, but still no running Shoes. > Shoes on AUR is hopelessly out of date. > > So I downloaded shoes (shoes2.run) from > http://shoes.heroku.com/downloads and tried it, but I didn't came > very far either after reading the installation instructions which only > are given for the major distro's: > > build]$ chmod +x shoes2.run > build]$ ./shoes2.run > Verifying archive integrity... All good. > Uncompressing Shoes ...8< 8< > /tmp/selfgz47428492/shoes-bin: error while loading shared libraries: > libgssapi_krb5.so.2: cannot open shared object file: No such file or > directory. > > I had some previous dependency problems (libssl) and I installed > the missing packages. But with libgssapi_krb5.so.2 I'm stuck. I think in > Arch libgssapi is provided in the arch repositories through libgssglue > 0.1-2 which I *have* installed. > The .run (even the new one as Zachary mentioned) doesn't work too well on Arch from personal experience. Arch puts things in different places than Ubuntu (the .run is made for a Debian-like setup) and so the binaries won't work. You'll have to compile from source. > > So, thats why I'm here. In short: "Can someone help me installing shoes > on Archlinux". If I have to give some more details, I will gladly do so. > > Thanks, > > Carlo > -- ~devyn
Hi Devyn, Thank you for ansewering. I don't mind building from source but building instructions only are given for Debian, Fedora and Ubuntu. I don't know how to build shoes on Arch. Devyn Cairns wrote on the subject: "Re: [shoes] Shoes on Archlinux" >On Thu, Nov 25, 2010 at 10:47 AM, Carlo van Rijswijk < >carlovanrijswijk@hetnet.nl> wrote: > >> Hi, >> >> I'm new to Shoes (Ruby) and this list and I have a little problem: >> I'm learning Ruby and getting close to the chapter about Shoes in: >> "Beginning Ruby (Cooper, Peter, 2009)". However I don't succeed in >> installing Shoes on my machine (running Archlinux). >> > >As a former Arch user, I'll help :) Used it for about 2 years, still >love it, but I have a Mac now. > > >> >> First I tried installing Shoes through AUR (en) >> (http://aur.archlinux.org/packages.php?ID=15462) but that didn't >> succeed so I asked the people from the "AUR Issues" forum >> (https://bbs.archlinux.org/viewtopic.php?id=108835). This did bring >> me a little bit further, but still no running Shoes. >> > >Shoes on AUR is hopelessly out of date. > > >> >> So I downloaded shoes (shoes2.run) from >> http://shoes.heroku.com/downloads and tried it, but I didn't came >> very far either after reading the installation instructions which >> only are given for the major distro's: >> >> build]$ chmod +x shoes2.run >> build]$ ./shoes2.run >> Verifying archive integrity... All good. >> Uncompressing Shoes ...8< 8< >> /tmp/selfgz47428492/shoes-bin: error while loading shared libraries: >> libgssapi_krb5.so.2: cannot open shared object file: No such file or >> directory. >> >> I had some previous dependency problems (libssl) and I installed >> the missing packages. But with libgssapi_krb5.so.2 I'm stuck. I >> think in Arch libgssapi is provided in the arch repositories through >> libgssglue 0.1-2 which I *have* installed. >> > >The .run (even the new one as Zachary mentioned) doesn't work too well >on Arch from personal experience. Arch puts things in different places >than Ubuntu (the .run is made for a Debian-like setup) and so the >binaries won't work. You'll have to compile from source. > > >> >> So, thats why I'm here. In short: "Can someone help me installing >> shoes on Archlinux". If I have to give some more details, I will >> gladly do so. >> >> Thanks, >> >> Carlo >> > > > >-- > ~devyn
the ubuntu instructtions (apt-get install) is just a list of packages/libraries to install. Arch Linux may well have most of them with the same names or slight differences available in it's packaging system (AUR?) Just get what seems likely to work and build in the top shoes directory with a make. Any missing libraries will result in compile errors or link errors with enough of an error message clue to find and install the missing stuff. Might be easy, might take a few hours. On Thu, 2010-11-25 at 23:46 +0100, Carlo van Rijswijk wrote: > Hi Devyn, > > Thank you for ansewering. I don't mind building from source but > building instructions only are given for Debian, Fedora and Ubuntu. I > don't know how to build shoes on Arch. > > Devyn Cairns wrote on the subject: "Re: [shoes] Shoes on Archlinux" > > >On Thu, Nov 25, 2010 at 10:47 AM, Carlo van Rijswijk < > >carlovanrijswijk@hetnet.nl> wrote: > > > >> Hi, > >> > >> I'm new to Shoes (Ruby) and this list and I have a little problem: > >> I'm learning Ruby and getting close to the chapter about Shoes in: > >> "Beginning Ruby (Cooper, Peter, 2009)". However I don't succeed in > >> installing Shoes on my machine (running Archlinux). > >> > > > >As a former Arch user, I'll help :) Used it for about 2 years, still > >love it, but I have a Mac now. > > > > > >> > >> First I tried installing Shoes through AUR (en) > >> (http://aur.archlinux.org/packages.php?ID=15462) but that didn't > >> succeed so I asked the people from the "AUR Issues" forum > >> (https://bbs.archlinux.org/viewtopic.php?id=108835). This did bring > >> me a little bit further, but still no running Shoes. > >> > > > >Shoes on AUR is hopelessly out of date. > > > > > >> > >> So I downloaded shoes (shoes2.run) from > >> http://shoes.heroku.com/downloads and tried it, but I didn't came > >> very far either after reading the installation instructions which > >> only are given for the major distro's: > >> > >> build]$ chmod +x shoes2.run > >> build]$ ./shoes2.run > >> Verifying archive integrity... All good. > >> Uncompressing Shoes ...8< 8< > >> /tmp/selfgz47428492/shoes-bin: error while loading shared libraries: > >> libgssapi_krb5.so.2: cannot open shared object file: No such file or > >> directory. > >> > >> I had some previous dependency problems (libssl) and I installed > >> the missing packages. But with libgssapi_krb5.so.2 I'm stuck. I > >> think in Arch libgssapi is provided in the arch repositories through > >> libgssglue 0.1-2 which I *have* installed. > >> > > > >The .run (even the new one as Zachary mentioned) doesn't work too well > >on Arch from personal experience. Arch puts things in different places > >than Ubuntu (the .run is made for a Debian-like setup) and so the > >binaries won't work. You'll have to compile from source. > > > > > >> > >> So, thats why I'm here. In short: "Can someone help me installing > >> shoes on Archlinux". If I have to give some more details, I will > >> gladly do so. > >> > >> Thanks, > >> > >> Carlo > >> > > > > > > > >-- > > ~devyn
On Thu, Nov 25, 2010 at 2:58 PM, Cecil Coupe <ccoupe@cableone.net> wrote: > the ubuntu instructtions (apt-get install) is just a list of > packages/libraries to install. Arch Linux may well have most of them > with the same names or slight differences available in it's packaging > system (AUR?) > It does. Some of them are on AUR, and some are available directly through pacman as binaries. > > Just get what seems likely to work and build in the top shoes directory > with a make. Any missing libraries will result in compile errors or link > errors with enough of an error message clue to find and install the > missing stuff. Might be easy, might take a few hours. > I've built Shoes successfully several times on Arch. An hour or so and you should be able to figure it out. I can't remember how I did it anymore, sorry; 'twas around a year ago. > > On Thu, 2010-11-25 at 23:46 +0100, Carlo van Rijswijk wrote: > > Hi Devyn, > > > > Thank you for ansewering. I don't mind building from source but > > building instructions only are given for Debian, Fedora and Ubuntu. I > > don't know how to build shoes on Arch. > > > > Devyn Cairns wrote on the subject: "Re: [shoes] Shoes on Archlinux" > > > > >On Thu, Nov 25, 2010 at 10:47 AM, Carlo van Rijswijk < > > >carlovanrijswijk@hetnet.nl> wrote: > > > > > >> Hi, > > >> > > >> I'm new to Shoes (Ruby) and this list and I have a little problem: > > >> I'm learning Ruby and getting close to the chapter about Shoes in: > > >> "Beginning Ruby (Cooper, Peter, 2009)". However I don't succeed in > > >> installing Shoes on my machine (running Archlinux). > > >> > > > > > >As a former Arch user, I'll help :) Used it for about 2 years, still > > >love it, but I have a Mac now. > > > > > > > > >> > > >> First I tried installing Shoes through AUR (en) > > >> (http://aur.archlinux.org/packages.php?ID=15462) but that didn't > > >> succeed so I asked the people from the "AUR Issues" forum > > >> (https://bbs.archlinux.org/viewtopic.php?id=108835). This did bring > > >> me a little bit further, but still no running Shoes. > > >> > > > > > >Shoes on AUR is hopelessly out of date. > > > > > > > > >> > > >> So I downloaded shoes (shoes2.run) from > > >> http://shoes.heroku.com/downloads and tried it, but I didn't came > > >> very far either after reading the installation instructions which > > >> only are given for the major distro's: > > >> > > >> build]$ chmod +x shoes2.run > > >> build]$ ./shoes2.run > > >> Verifying archive integrity... All good. > > >> Uncompressing Shoes ...8< 8< > > >> /tmp/selfgz47428492/shoes-bin: error while loading shared libraries: > > >> libgssapi_krb5.so.2: cannot open shared object file: No such file or > > >> directory. > > >> > > >> I had some previous dependency problems (libssl) and I installed > > >> the missing packages. But with libgssapi_krb5.so.2 I'm stuck. I > > >> think in Arch libgssapi is provided in the arch repositories through > > >> libgssglue 0.1-2 which I *have* installed. > > >> > > > > > >The .run (even the new one as Zachary mentioned) doesn't work too well > > >on Arch from personal experience. Arch puts things in different places > > >than Ubuntu (the .run is made for a Debian-like setup) and so the > > >binaries won't work. You'll have to compile from source. > > > > > > > > >> > > >> So, thats why I'm here. In short: "Can someone help me installing > > >> shoes on Archlinux". If I have to give some more details, I will > > >> gladly do so. > > >> > > >> Thanks, > > >> > > >> Carlo > > >> > > > > > > > > > > > >-- > > > ~devyn > > > -- ~devyn
Hi Cecil, Thanks, I will dive into that in a while (thanks also Devyn). For now I'm able to run shoes from the "shoes3.run" file (thanks Zachery). I tested it and it seems to work. What I had to do first: * installed libjpeg6 from AUR (thanks spiralofhope) * installed libkrb53 from AUR And there it was "Welcome to SHOES" in all it's nice colors. Wonderful, thank you all. Back to studying now. Carlo Cecil Coupe wrote on the subject: "Re: [shoes] Shoes on Archlinux" >the ubuntu instructtions (apt-get install) is just a list of >packages/libraries to install. Arch Linux may well have most of them >with the same names or slight differences available in it's packaging >system (AUR?) > >Just get what seems likely to work and build in the top shoes directory >with a make. Any missing libraries will result in compile errors or >link errors with enough of an error message clue to find and install >the missing stuff. Might be easy, might take a few hours. > >On Thu, 2010-11-25 at 23:46 +0100, Carlo van Rijswijk wrote: >> Hi Devyn, >> >> Thank you for ansewering. I don't mind building from source but >> building instructions only are given for Debian, Fedora and Ubuntu. I >> don't know how to build shoes on Arch. >> >> Devyn Cairns wrote on the subject: "Re: [shoes] Shoes on Archlinux" >> >> >On Thu, Nov 25, 2010 at 10:47 AM, Carlo van Rijswijk < >> >carlovanrijswijk@hetnet.nl> wrote: >> > >> >> Hi, >> >> >> >> I'm new to Shoes (Ruby) and this list and I have a little problem: >> >> I'm learning Ruby and getting close to the chapter about Shoes in: >> >> "Beginning Ruby (Cooper, Peter, 2009)". However I don't succeed in >> >> installing Shoes on my machine (running Archlinux). >> >> >> > >> >As a former Arch user, I'll help :) Used it for about 2 years, still >> >love it, but I have a Mac now. >> > >> > >> >> >> >> First I tried installing Shoes through AUR (en) >> >> (http://aur.archlinux.org/packages.php?ID=15462) but that didn't >> >> succeed so I asked the people from the "AUR Issues" forum >> >> (https://bbs.archlinux.org/viewtopic.php?id=108835). This did >> >> bring me a little bit further, but still no running Shoes. >> >> >> > >> >Shoes on AUR is hopelessly out of date. >> > >> > >> >> >> >> So I downloaded shoes (shoes2.run) from >> >> http://shoes.heroku.com/downloads and tried it, but I didn't came >> >> very far either after reading the installation instructions which >> >> only are given for the major distro's: >> >> >> >> build]$ chmod +x shoes2.run >> >> build]$ ./shoes2.run >> >> Verifying archive integrity... All good. >> >> Uncompressing Shoes ...8< 8< >> >> /tmp/selfgz47428492/shoes-bin: error while loading shared >> >> libraries: libgssapi_krb5.so.2: cannot open shared object file: >> >> No such file or directory. >> >> >> >> I had some previous dependency problems (libssl) and I installed >> >> the missing packages. But with libgssapi_krb5.so.2 I'm stuck. I >> >> think in Arch libgssapi is provided in the arch repositories >> >> through libgssglue 0.1-2 which I *have* installed. >> >> >> > >> >The .run (even the new one as Zachary mentioned) doesn't work too >> >well on Arch from personal experience. Arch puts things in >> >different places than Ubuntu (the .run is made for a Debian-like >> >setup) and so the binaries won't work. You'll have to compile from >> >source. >> > >> > >> >> >> >> So, thats why I'm here. In short: "Can someone help me installing >> >> shoes on Archlinux". If I have to give some more details, I will >> >> gladly do so. >> >> >> >> Thanks, >> >> >> >> Carlo >> >> >> > >> > >> > >> >-- >> > ~devyn > >
Hi, I just found out that I *can* install the "shoes-git 20101126-1" package from AUR (http://aur.archlinux.org/packages.php?O=0&K=shoes&do_Search=Go). While the packages "shoes 2-1" and "shoes-policeman 2.0.r1168[0]}-2" didn't work for me (see #7 in https://bbs.archlinux.org/viewtopic.php?pid=857984#p857984) this one does! $ slurpy -d shoes-git $ cd shoes-git/ $ makepkg # pacman -U shoes-git-20101126-1-any.pkg.tar.xz Thank you all (too) very much for helping. Carlo Carlo van Rijswijk wrote on the subject: "Re: [shoes] Shoes on Archlinux [SOLVED]" >Hi Cecil, > >Thanks, I will dive into that in a while (thanks also Devyn). >For now I'm able to run shoes from the "shoes3.run" file (thanks >Zachery). I tested it and it seems to work. What I had to do first: > >* installed libjpeg6 from AUR (thanks spiralofhope) >* installed libkrb53 from AUR > >And there it was "Welcome to SHOES" in all it's nice colors. Wonderful, >thank you all. Back to studying now. > >Carlo > >Cecil Coupe wrote on the subject: "Re: [shoes] Shoes on Archlinux" > >>the ubuntu instructtions (apt-get install) is just a list of >>packages/libraries to install. Arch Linux may well have most of them >>with the same names or slight differences available in it's packaging >>system (AUR?) >> >>Just get what seems likely to work and build in the top shoes >>directory with a make. Any missing libraries will result in compile >>errors or link errors with enough of an error message clue to find >>and install the missing stuff. Might be easy, might take a few hours. >> >>On Thu, 2010-11-25 at 23:46 +0100, Carlo van Rijswijk wrote: >>> Hi Devyn, >>> >>> Thank you for ansewering. I don't mind building from source but >>> building instructions only are given for Debian, Fedora and Ubuntu. >>> I don't know how to build shoes on Arch. >>> >>> Devyn Cairns wrote on the subject: "Re: [shoes] Shoes on Archlinux" >>> >>> >On Thu, Nov 25, 2010 at 10:47 AM, Carlo van Rijswijk < >>> >carlovanrijswijk@hetnet.nl> wrote: >>> > >>> >> Hi, >>> >> >>> >> I'm new to Shoes (Ruby) and this list and I have a little >>> >> problem: I'm learning Ruby and getting close to the chapter >>> >> about Shoes in: "Beginning Ruby (Cooper, Peter, 2009)". However >>> >> I don't succeed in installing Shoes on my machine (running >>> >> Archlinux). >>> >> >>> > >>> >As a former Arch user, I'll help :) Used it for about 2 years, >>> >still love it, but I have a Mac now. >>> > >>> > >>> >> >>> >> First I tried installing Shoes through AUR (en) >>> >> (http://aur.archlinux.org/packages.php?ID=15462) but that didn't >>> >> succeed so I asked the people from the "AUR Issues" forum >>> >> (https://bbs.archlinux.org/viewtopic.php?id=108835). This did >>> >> bring me a little bit further, but still no running Shoes. >>> >> >>> > >>> >Shoes on AUR is hopelessly out of date. >>> > >>> > >>> >> >>> >> So I downloaded shoes (shoes2.run) from >>> >> http://shoes.heroku.com/downloads and tried it, but I didn't came >>> >> very far either after reading the installation instructions which >>> >> only are given for the major distro's: >>> >> >>> >> build]$ chmod +x shoes2.run >>> >> build]$ ./shoes2.run >>> >> Verifying archive integrity... All good. >>> >> Uncompressing Shoes ...8< 8< >>> >> /tmp/selfgz47428492/shoes-bin: error while loading shared >>> >> libraries: libgssapi_krb5.so.2: cannot open shared object file: >>> >> No such file or directory. >>> >> >>> >> I had some previous dependency problems (libssl) and I installed >>> >> the missing packages. But with libgssapi_krb5.so.2 I'm stuck. I >>> >> think in Arch libgssapi is provided in the arch repositories >>> >> through libgssglue 0.1-2 which I *have* installed. >>> >> >>> > >>> >The .run (even the new one as Zachary mentioned) doesn't work too >>> >well on Arch from personal experience. Arch puts things in >>> >different places than Ubuntu (the .run is made for a Debian-like >>> >setup) and so the binaries won't work. You'll have to compile from >>> >source. >>> > >>> > >>> >> >>> >> So, thats why I'm here. In short: "Can someone help me installing >>> >> shoes on Archlinux". If I have to give some more details, I will >>> >> gladly do so. >>> >> >>> >> Thanks, >>> >> >>> >> Carlo >>> >> >>> > >>> > >>> > >>> >-- >>> > ~devyn >> >>
Hello Carlo, Please try the latest release of shoes, version 3, here: https://github.com/downloads/shoes/shoes/shoes3.run.sh Thanks! On Thu, Nov 25, 2010 at 1:47 PM, Carlo van Rijswijk < carlovanrijswijk@hetnet.nl> wrote: > Hi, > > I'm new to Shoes (Ruby) and this list and I have a little problem: I'm > learning Ruby and getting close to the chapter about Shoes in: > "Beginning Ruby (Cooper, Peter, 2009)". However I don't succeed in > installing Shoes on my machine (running Archlinux). > > First I tried installing Shoes through AUR (en) > (http://aur.archlinux.org/packages.php?ID=15462) but that didn't > succeed so I asked the people from the "AUR Issues" forum > (https://bbs.archlinux.org/viewtopic.php?id=108835). This did bring me > a little bit further, but still no running Shoes. > > So I downloaded shoes (shoes2.run) from > http://shoes.heroku.com/downloads and tried it, but I didn't came > very far either after reading the installation instructions which only > are given for the major distro's: > > build]$ chmod +x shoes2.run > build]$ ./shoes2.run > Verifying archive integrity... All good. > Uncompressing Shoes ...8< 8< > /tmp/selfgz47428492/shoes-bin: error while loading shared libraries: > libgssapi_krb5.so.2: cannot open shared object file: No such file or > directory. > > I had some previous dependency problems (libssl) and I installed > the missing packages. But with libgssapi_krb5.so.2 I'm stuck. I think in > Arch libgssapi is provided in the arch repositories through libgssglue > 0.1-2 which I *have* installed. > > So, thats why I'm here. In short: "Can someone help me installing shoes > on Archlinux". If I have to give some more details, I will gladly do so. > > Thanks, > > Carlo > -- Zachary Scott
Hi Zachary, Thanks, but it's the same as with shoes2.run, I get all kinds of dependency errors. With shoes3.run it is for example "error while loading shared libraries: libjpeg.so.62: cannot open shared object file: No such file or directory". I have Libjpeg installed (libjpeg 8.0.2-1 [installed]). I think downgrading doesn't solve the problem because of all the other errors. Zachary Scott wrote on the subject: "Re: [shoes] Shoes on Archlinux" >Hello Carlo, > >Please try the latest release of shoes, version 3, here: >https://github.com/downloads/shoes/shoes/shoes3.run.sh > >Thanks! > >On Thu, Nov 25, 2010 at 1:47 PM, Carlo van Rijswijk < >carlovanrijswijk@hetnet.nl> wrote: > >> Hi, >> >> I'm new to Shoes (Ruby) and this list and I have a little problem: >> I'm learning Ruby and getting close to the chapter about Shoes in: >> "Beginning Ruby (Cooper, Peter, 2009)". However I don't succeed in >> installing Shoes on my machine (running Archlinux). >> >> First I tried installing Shoes through AUR (en) >> (http://aur.archlinux.org/packages.php?ID=15462) but that didn't >> succeed so I asked the people from the "AUR Issues" forum >> (https://bbs.archlinux.org/viewtopic.php?id=108835). This did bring >> me a little bit further, but still no running Shoes. >> >> So I downloaded shoes (shoes2.run) from >> http://shoes.heroku.com/downloads and tried it, but I didn't came >> very far either after reading the installation instructions which >> only are given for the major distro's: >> >> build]$ chmod +x shoes2.run >> build]$ ./shoes2.run >> Verifying archive integrity... All good. >> Uncompressing Shoes ...8< 8< >> /tmp/selfgz47428492/shoes-bin: error while loading shared libraries: >> libgssapi_krb5.so.2: cannot open shared object file: No such file or >> directory. >> >> I had some previous dependency problems (libssl) and I installed >> the missing packages. But with libgssapi_krb5.so.2 I'm stuck. I >> think in Arch libgssapi is provided in the arch repositories through >> libgssglue 0.1-2 which I *have* installed. >> >> So, thats why I'm here. In short: "Can someone help me installing >> shoes on Archlinux". If I have to give some more details, I will >> gladly do so. >> >> Thanks, >> >> Carlo >> > > > >-- >Zachary Scott
On Thu, 25 Nov 2010 23:44:03 +0100 Carlo van Rijswijk <carlovanrijswijk@hetnet.nl> wrote: > I have Libjpeg installed (libjpeg 8.0.2-1 [installed]). Just a shot in the dark, but wouldn't you need the libjpeg-devel package? -- http://spiralofhope.com