[pypy-dev] Using "rpath"

2013-05-10 Thread Armin Rigo
Hi all, I think I know how to solve the two linking issues we were discussing on irc yesterday: using the "rpath" (thanks squeaky_pl for originally pointing it out). See for example http://stackoverflow.com/a/6323222/1556290 . 1) This could let us distribute more self-contained executables by pu

Re: [pypy-dev] PyPy 2.0 - Einstein Sandwich

2013-05-10 Thread Phyo Arkar
it used to work fine before. its not problem i can build from source. On May 11, 2013 3:26 AM, "Armin Rigo" wrote: > Hi, > > On Fri, May 10, 2013 at 3:45 PM, Phyo Arkar > wrote: > > ./bin/pypy: error while loading shared libraries: libtinfo.so.5: cannot > open > > shared object file: No such fil

Re: [pypy-dev] PyPy 2.0 - Einstein Sandwich

2013-05-10 Thread Armin Rigo
Hi, On Fri, May 10, 2013 at 3:45 PM, Phyo Arkar wrote: > ./bin/pypy: error while loading shared libraries: libtinfo.so.5: cannot open > shared object file: No such file or directory The Linux binaries are provided for *32-bit Ubuntu 10.04* as well as *64-bit Ubuntu 12.04*. If you are not using

Re: [pypy-dev] [pypy-commit] cffi default: Try to preserve the exact error message

2013-05-10 Thread Philip Jenvey
Could you please switch this to Py3 compat syntax, KeyError as e? On May 10, 2013, at 7:07 AM, arigo wrote: > Author: Armin Rigo > Branch: > Changeset: r1250:452b57d57304 > Date: 2013-05-10 16:07 +0200 > http://bitbucket.org/cffi/cffi/changeset/452b57d57304/ > > Log: Try to preserve the exact

Re: [pypy-dev] PyPy 2.0 - Einstein Sandwich

2013-05-10 Thread wlavrijsen
Phyo, On Fri, 10 May 2013, Phyo Arkar wrote: just did that. got ELF header error @ /usr/lib64/libtinfo.so.5 what ELF header error? (Point being: pypy is linked with libncurses.so as well, so that library has to be correct to begin with.) Best regards, Wim -- wlavrij...@lbl.gov-

Re: [pypy-dev] PyPy 2.0 - Einstein Sandwich

2013-05-10 Thread Phyo Arkar
just did that. got ELF header error @ /usr/lib64/libtinfo.so.5 On May 10, 2013 9:32 PM, "Phyo Arkar" wrote: > Ah that's why i cannot find libtinfo.so > thanks i will try that. > On May 10, 2013 9:25 PM, wrote: > >> Phyo, >> >> On Fri, 10 May 2013, Phyo Arkar wrote: >> >>> ./bin/pypy: error while

Re: [pypy-dev] PyPy 2.0 - Einstein Sandwich

2013-05-10 Thread Phyo Arkar
Ah that's why i cannot find libtinfo.so thanks i will try that. On May 10, 2013 9:25 PM, wrote: > Phyo, > > On Fri, 10 May 2013, Phyo Arkar wrote: > >> ./bin/pypy: error while loading shared libraries: libtinfo.so.5: cannot >> open shared object file: No such file or directory >> > > not every di

Re: [pypy-dev] PyPy 2.0 - Einstein Sandwich

2013-05-10 Thread wlavrijsen
Phyo, On Fri, 10 May 2013, Phyo Arkar wrote: ./bin/pypy: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory not every distro splits up tinfo and ncurses. On SuSE, what I did was to provide a symlink libtinfo.so.5 -> libncurses.so and

Re: [pypy-dev] PyPy 2.0 - Einstein Sandwich

2013-05-10 Thread Phyo Arkar
Sabayon Linux64bit i am not sure i tested 1.9 on this laptop On May 10, 2013 8:37 PM, "Amaury Forgeot d'Arc" wrote: > > 2013/5/10 Phyo Arkar > >> Unfortunately there is a dependency on libtinfo.so : >> >> ./bin/pypy: error while loading shared libraries: libtinfo.so.5: cannot >> open shared obje

Re: [pypy-dev] PyPy 2.0 - Einstein Sandwich

2013-05-10 Thread Amaury Forgeot d'Arc
2013/5/10 Phyo Arkar > Unfortunately there is a dependency on libtinfo.so : > > ./bin/pypy: error while loading shared libraries: libtinfo.so.5: cannot > open shared object file: No such file or directory > Yes, this is certainly pulled by the _curses module. But this was also the case with pyp

Re: [pypy-dev] PyPy 2.0 - Einstein Sandwich

2013-05-10 Thread Phyo Arkar
Good news. Unfortunately there is a dependency on libtinfo.so : ./bin/pypy: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory On Fri, May 10, 2013 at 1:09 AM, Maciej Fijalkowski wrote: > We're pleased to announce PyPy 2.0. This is a

Re: [pypy-dev] SSL version?

2013-05-10 Thread Maciej Fijalkowski
On Fri, May 10, 2013 at 11:50 AM, Kura wrote: > I'd be happy to help with building for different versions of Debian or > Ubuntu. > > I myself use a version of Debian that SSL for PyPy does not work on on > almost all of my servers and tend to have to translate PyPy quite > frequently. Hi Stefano

Re: [pypy-dev] SSL version?

2013-05-10 Thread Kura
I'd be happy to help with building for different versions of Debian or Ubuntu. I myself use a version of Debian that SSL for PyPy does not work on on almost all of my servers and tend to have to translate PyPy quite frequently. On 10/05/13 07:33, Armin Rigo wrote: > Hi Dan, > > On Fri, May 10, 2

Re: [pypy-dev] x is y <=> id(x)==id(y)

2013-05-10 Thread Christian Tismer
On 06.05.13 08:54, Armin Rigo wrote: Hi Simon, On Mon, May 6, 2013 at 12:48 AM, Simon Cross wrote: I was thinking along similar signs -- we could ask for things like "x is ''" or "x is 3" to be added to PEP8 (I think any use of "is" with a constant on one or more sides is likely suspect). Tha