[issue16591] RUNSHARED wrong for OSX no framework

2012-12-31 Thread Fabian Groffen
Fabian Groffen added the comment: re: single quotes - double quotes I made RUNSHARED consistent (although, as you point out, less broken) with the other RUNSHARED assignments right above. If suggest to tackle the issue of whitespace support for all RUNSHARED assignments, not just Darwin case

[issue16591] RUNSHARED wrong for OSX no framework

2012-12-31 Thread Fabian Groffen
Fabian Groffen added the comment: Which shell doesn't have $(command) support? It is not a bash-ism, but is part of the POSIX shell definition (but wasn't present in older sh implementations). Solaris' /bin/sh. -- ___ Python tracker rep

[issue16591] RUNSHARED wrong for OSX no framework

2012-12-01 Thread Fabian Groffen
New submission from Fabian Groffen: Python fails to run python.exe on OSX when a non-framework build is requested, due to wrong quoting in configure.ac. Like all other RUNSHARED, it shouldn't be quoted because then `pwd` won't be expanded, resulting in a wrong DYLD_LIBRARY_PATH when regen

[issue14662] shutil.move broken in 2.7.3 on OSX (chflags fails)

2012-04-26 Thread Fabian Groffen
Fabian Groffen grob...@gentoo.org added the comment: % echo test /var/tmp/testfile % python Python 2.7.3 (default, Apr 26 2012, 19:06:37) [GCC 4.2.1 (Gentoo 4.2.1_p5666, Apple Inc. build 5666) (dot 3)] on darwin Type help, copyright, credits or license for more information. import shutil

[issue14662] shutil.move broken in 2.7.3 on OSX (chflags fails)

2012-04-26 Thread Fabian Groffen
Fabian Groffen grob...@gentoo.org added the comment: it seems errnomodule.c has no idea of ENOTSUP, and that's not the only missing one. OSX 10.7: $ grep ^#define\sE /usr/include/sys/errno.h | awk '{print $2}' | while read line ; do grep -q ${line} Modules/errnomodule.c || echo missing: $line

[issue14662] shutil.move broken in 2.7.3 on OSX (chflags fails)

2012-04-26 Thread Fabian Groffen
Fabian Groffen grob...@gentoo.org added the comment: I don't want to go through the paperwork nonsense just for a trivial patch, hence I didn't supply one, but instead provided all the information for you guys to make the correct fix. -- ___ Python

[issue14662] shutil.move broken in 2.7.3 on OSX (chflags fails)

2012-04-24 Thread Fabian Groffen
New submission from Fabian Groffen grob...@gentoo.org: With current working dir an NFS-mounted ZFS share, and /var/tmp (OSX default) HFS+: % echo test /var/tmp/testfile % python Python 2.7.3 (default, Apr 24 2012, 19:33:45) [GCC 4.2.1 (Gentoo 4.2.1_p5666, Apple Inc. build 5666) (dot 3

[issue14662] shutil.move broken in 2.7.3 on OSX (chflags fails)

2012-04-24 Thread Fabian Groffen
Fabian Groffen grob...@gentoo.org added the comment: I presume Python 3.2+ have the same behavior? I cannot compile that or get it working normally, so I can't tell for sure. Judging from the code, I'd say yes. -- ___ Python tracker rep

[issue7305] urllib2.urlopen() segfault using SSL on Solaris

2011-02-15 Thread Fabian Groffen
Fabian Groffen grob...@gentoo.org added the comment: Sorry for the noise. My issue seems to be caused by a broken openssl. It is a specific problem with the code for sparcv9 and the T1 CPU. Python can't do much about this. -- versions: -Python 2.7

[issue7305] urllib2.urlopen() segfault using SSL on Solaris

2011-02-15 Thread Fabian Groffen
Fabian Groffen grob...@gentoo.org added the comment: I recompiled openssl with noasm flag now for sparcv9 (like I do on 32-bits compiles), and the example runs fine for me on the T1, proving Python is not to blame here. That said, if your problem only occurs with 0.9.8 isn't it then likely

[issue7305] urllib2.urlopen() segfault using SSL on Solaris

2011-02-14 Thread Fabian Groffen
Fabian Groffen grob...@gentoo.org added the comment: I can reproduce this on Solaris 10/Sparc64 only, using Python 2.7.1. My core files aren't really useful though, nothing it can point to, everything is corrupt. -- nosy: +grobian versions: +Python 2.7

[issue7305] urllib2.urlopen() segfault using SSL on Solaris

2011-02-14 Thread Fabian Groffen
Fabian Groffen grob...@gentoo.org added the comment: Perhaps I should have been a bit more clear. Python 2.6 works fine for me on Solaris 10/Sparc64 (64-bits). Python 2.7.1 also works on Solaris 10/Sparc (32-bits), but not on Sparc64 (64-bits

[issue7718] Build shared libpythonX.Y.so on IRIX

2010-03-21 Thread Fabian Groffen
Fabian Groffen grob...@gentoo.org added the comment: Is it necessary to file a new bug for the same issue, or can we reopen from here? With Stuart in the loop it looks to me the raised issues are dealt with? -- ___ Python tracker rep

[issue7713] implement ability to disable automatic search path additions

2010-01-16 Thread Fabian Groffen
New submission from Fabian Groffen grob...@gentoo.org: setup.py adds in various places hardcoded paths to locations in the filesystem that may contain libraries/includes to compile a given module or feature. While this behaviour is probably interesting for some users, it is undesirable

[issue7714] configure GCC version detection fix for Darwin

2010-01-16 Thread Fabian Groffen
New submission from Fabian Groffen grob...@gentoo.org: configure.in contains a check for the compiler in use for Darwin like this: gcc_version=`gcc -v 21 | grep version | cut -d\ -f3` This yields in a wrong answer if the output of gcc -v has version in another place as well, such as when

[issue7715] Allow use of GNU arch on Darwin

2010-01-16 Thread Fabian Groffen
New submission from Fabian Groffen grob...@gentoo.org: Configure will die on Darwin with the message Unexpected output of 'arch' on OSX when GNU arch is in use. The following patch simply adds the output as given by GNU arch to allow a successful configure run. -- components: Build

[issue7716] IPv6 detection, don't assume existence of /usr/xpg4/bin/grep

2010-01-16 Thread Fabian Groffen
New submission from Fabian Groffen grob...@gentoo.org: The solaris case implementation of the ipv6 check assumes /usr/xpg4/bin/grep is available. This gives error messages on e.g. IRIX where /etc/netconfig is available, but no /usr/xpg4/bin/grep. This is simply fixed by using $GREP which

[issue7717] Compilation fixes for IRIX

2010-01-16 Thread Fabian Groffen
New submission from Fabian Groffen grob...@gentoo.org: Patches to fix compilation issues on IRIX, on behalf of Frank Everdij and Stuart Shelton. -- components: Build files: python-2.7-irix.patch keywords: patch messages: 97896 nosy: grobian severity: normal status: open title

[issue7717] Compilation fixes for IRIX

2010-01-16 Thread Fabian Groffen
Changes by Fabian Groffen grob...@gentoo.org: Added file: http://bugs.python.org/file15916/python-2.6.4-irix.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7717

[issue7718] Build shared libpythonX.Y.so on IRIX

2010-01-16 Thread Fabian Groffen
New submission from Fabian Groffen grob...@gentoo.org: Create a libpythonX.Y.so library on IRIX. Patch on behalf of Stuart Shelton. -- components: Build files: python-2.6-irix-libpython2.6.patch keywords: patch messages: 97897 nosy: grobian severity: normal status: open title: Build

[issue7719] distutils: ignore .nfsXXXX files

2010-01-16 Thread Fabian Groffen
New submission from Fabian Groffen grob...@gentoo.org: NFS on certain platforms (most notably AIX, Solaris) use .nfsX files that appear and disappear automagically. distutils can get confused by that once a .nfsX file was earlier seen with listdir and then removed by the OS before

[issue1471934] Python libcrypt build problem on Solaris 8, 9, 10 and OpenSolaris

2010-01-16 Thread Fabian Groffen
Fabian Groffen grob...@gentoo.org added the comment: I use this patch, which just always uses crypt_i on Solaris to work around the problem. -- keywords: +patch nosy: +grobian title: Python libcrypt build problem on Solaris 8 - Python libcrypt build problem on Solaris 8, 9, 10

[issue1471934] Python libcrypt build problem on Solaris 8, 9, 10 and OpenSolaris

2010-01-16 Thread Fabian Groffen
Changes by Fabian Groffen grob...@gentoo.org: Added file: http://bugs.python.org/file15920/python-2.6.2-solaris64-crypt.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1471934

[issue7718] Build shared libpythonX.Y.so on IRIX

2010-01-16 Thread Fabian Groffen
Fabian Groffen grob...@gentoo.org added the comment: I think so. From my experience he's mainly not willing to sign up to each and every bugtracking system, which I fully understand. Do you guys need signed contracts for each and every (even single line) patch? Is it better to report

[issue7718] Build shared libpythonX.Y.so on IRIX

2010-01-16 Thread Fabian Groffen
Fabian Groffen grob...@gentoo.org added the comment: I've asked Stuart to sign up and comment on this bug to get his opinion. Sorry. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7718