[issue11824] freeze.py broken due to ABI flags

2014-03-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4e37a4a036c6 by Martin v. Löwis in branch '3.4': Issue #11824: Consider ABI tags in freeze. Patch by Meador Inge. http://hg.python.org/cpython/rev/4e37a4a036c6 New changeset 1b6fc88ae3f5 by Martin v. Löwis in branch 'default': Merge 3.4: Issue

[issue11824] freeze.py broken due to ABI flags

2014-03-30 Thread Martin v . Löwis
Martin v. Löwis added the comment: Thanks for the patch. Closing this issue as it only deals with the ABI flags; the remaining issues with freeze are dealt with elsewhere. -- nosy: +loewis resolution: - fixed status: open - closed ___ Python

[issue11824] freeze.py broken due to ABI flags

2013-01-01 Thread Meador Inge
Meador Inge added the comment: I don't think the current patch is correct. It breaks the usage of `freeze.py -p $path` since LIBDIR and LIBRARY are blindly used. Maybe something like the attached that respects -p and -P can be used instead? As for the testing, I think a reasonable solution

[issue11824] freeze.py broken due to ABI flags

2012-12-28 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11824 ___

[issue11824] freeze.py broken due to ABI flags

2012-07-23 Thread Jesús Cea Avión
Jesús Cea Avión j...@jcea.es added the comment: Ping! -- nosy: +jcea ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11824 ___ ___ Python-bugs-list

[issue11824] freeze.py broken due to ABI flags

2012-07-23 Thread Meador Inge
Changes by Meador Inge mead...@gmail.com: -- nosy: +meador.inge ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11824 ___ ___ Python-bugs-list

[issue11824] freeze.py broken due to ABI flags

2011-07-15 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Barry? Additionally, if would be nice if we got some tests for the freeze tool, otherwise I fear we will keep breaking it. -- nosy: +pitrou priority: normal - high stage: - patch review ___ Python

[issue11824] freeze.py broken due to ABI flags

2011-04-15 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +barry, eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11824 ___ ___

[issue11824] freeze.py broken due to ABI flags

2011-04-10 Thread Andreas Stührk
New submission from Andreas Stührk andy-pyt...@hammerhartes.de: The recent addition of ABI flags broke the freeze tool as it doesn't construct the paths to required files correctly any longer. The attached patch fixes the issue for me, but I'm not too sure that I used the right config values.