[issue10262] Add --disable-abi-flags option to `configure`

2010-11-29 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: I agree with the intent: package maintainers, or people compiling python for their own need, should have the right to choose the suffix used by extension modules. I suggest another option though, one that directly sets the SOABI used

[issue10262] Add --disable-abi-flags option to `configure`

2010-11-29 Thread Matthias Klose
Matthias Klose d...@debian.org added the comment: I still fail to see the rationale for being able to build with a different soabi name. But anyway, as long as the default is to build with the soabi name, I'm +/-0 on this option. Note that the soabi name isn't fixed but changes with other

[issue10262] Add --disable-abi-flags option to `configure`

2010-11-29 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Note that the soabi name isn't fixed but changes with other configure options. The default value, yes. But my proposal of a --soabi option would not respect this. The caller is responsible for changing the --soabi value when he adds

[issue10262] Add --disable-abi-flags option to `configure`

2010-11-29 Thread Barry A. Warsaw
Barry A. Warsaw ba...@python.org added the comment: +0 for Amaury's suggestion in msg122792. Who wants to write that patch? I'd happily review it. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10262

[issue10262] Add --disable-abi-flags option to `configure`

2010-11-27 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com added the comment: I want to eliminate ABI flags in file names. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10262 ___

[issue10262] Add --disable-abi-flags option to `configure`

2010-11-19 Thread Barry A. Warsaw
Barry A. Warsaw ba...@python.org added the comment: What specifically is the motivation for this option? Since abiflags are used in many places, most of which are hidden from the end user, why are they a problem, and what are the use cases for suppressing them? If it's to eliminate the

[issue10262] Add --disable-abi-flags option to `configure`

2010-11-15 Thread Barry A. Warsaw
Changes by Barry A. Warsaw ba...@python.org: -- assignee: - barry ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10262 ___ ___ Python-bugs-list

[issue10262] Add --disable-abi-flags option to `configure`

2010-11-15 Thread Matthias Klose
Matthias Klose d...@debian.org added the comment: I think this is not a good idea, because then you have different names for extension modules, which will be recognized by one configuration but not the other. This configure option should not change the sonames. If this option is to keep

[issue10262] Add --disable-abi-flags option to `configure`

2010-11-01 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10262 ___ ___ Python-bugs-list

[issue10262] Add --disable-abi-flags option to `configure`

2010-10-31 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: Some packagers might want to disable ABI flags. The attached patch adds --disable-abi-flags option to `configure`. -- components: Build files: python-abi-flags.patch keywords: patch messages: 120044 nosy: