This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Unsupported provider

classification
Title: add support for MirBSD platform
Type: compile error Stage:
Components: Build Versions: Python 2.7
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: Nosy List: bsiegert, jcea, loewis, neologix, vstinner
Priority: normal Keywords: patch

Created on 2011-09-14 11:57 by bsiegert, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
python27-MirBSD.diff bsiegert, 2011-09-16 20:08 full patch (configure.in + selectmodule.c)
Messages (10)
msg144022 - (view) Author: Benny Siegert (bsiegert) Date: 2011-09-14 11:57
When building python-2.6 on MirBSD, building the select module (which uses the kqueue backend on this platform) fails. This is because EVFILT_TIMER is not available on the platform.

The proposed patch is for python-2.6 but should apply to tip too.

This was discovered when building the python package from NetBSD pkgsrc, so the patch is taken from there.
msg144037 - (view) Author: Charles-François Natali (neologix) * (Python committer) Date: 2011-09-14 18:48
Hello,

According to http://fxr.watson.org/fxr/ident?v=NETBSD;im=3;i=EVFILT_TIMER EVFILT_TIMER is defined on NetBSD.
As for MirBSD, with all due respect, it really looks like a niche platform, definitely not officially supported by Python.
Of course, this patch is so trivial and small that it can easily be merged, but it would be nice if MirBSD defined it in its header file instead (it's not the first problem due to kqueue-incompatibilities between on BSD platforms, see for example issue #12181 and issue #6419).
msg144039 - (view) Author: Benny Siegert (bsiegert) Date: 2011-09-14 18:57
There are actually only two things that need to be touched for supporting MirBSD: This and the Configure script. I was planning to submit the Configure patches separately, I just started with this patch as it is so trivial.
msg144043 - (view) Author: Charles-François Natali (neologix) * (Python committer) Date: 2011-09-14 19:32
Since this patch alone won't be enough to support MirBSD (and is required only for MirBSD), I suggest you to post the complete patch, and rename this issue "add support for MirBSD platform", or something along those lines.
That way, we can consider this as a feature request, and apply it in one chunk, if accepted.
However, I think that the current consensus is somewhat hostile to adding support for so-called "exotic platforms", so I can't guarantee this will be included (posting the whole patch will certainly help making a decision).
I'm adding Martin to the noisy list, he'll probably give you more insight on this.
msg144155 - (view) Author: Benny Siegert (bsiegert) Date: 2011-09-16 20:08
As requested, here is the full patch for MirBSD support. The diff was taken against version 2.7.2. It is really quite easy, you just need to handle MirBSD like OpenBSD. 

With this patch, I can successfully compile and run Python on MirBSD. Even though it is a rather exotic platform, I encourage you to take these changes, as they are quite minimal.
msg144177 - (view) Author: Charles-François Natali (neologix) * (Python committer) Date: 2011-09-17 07:51
Hello Benny,

> As requested, here is the full patch for MirBSD support. The diff was taken against version 2.7.2. It is really quite easy, you just need to handle MirBSD like OpenBSD.
> With this patch, I can successfully compile and run Python on MirBSD. Even though it is a rather exotic platform, I encourage you to take these changes, as they are quite minimal.

Indeed, it's quite short and manageable, but see
http://bugs.python.org/issue11937, especially Martin's and Terry's
comments:
"""
Guido established a policy a few years ago that we should rather not
incorporate support for every minority platform for which people
contribute patches. While I'd personally agree that an Interix port
would certainly be "fun", pragmatically, I'm -1 on having the code in
the code basis, and propose to close this issue as "won't fix".

We would certainly be happy to link to gentoo prefix from the "other
ports" page on python.org.
"""

and

"""
Markus, I agree with Martin that this patch would go against current
policy and should be closed. Rather than close it myself, I will try
to persuade you to do so.
[...]
"""

This patch is much simpler and cleaner though (OTOH, it's so simple it
shouldn't be too much work for MirBSD folks to keep this patch in
sync).
msg144250 - (view) Author: Benny Siegert (bsiegert) Date: 2011-09-18 19:14
I agree that the patch is quite small. I am regularly building new Python versions (using pkgsrc) so I can maintain the patch for future releases.
msg144254 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2011-09-18 20:59
Ok, closing this as "won't fix", them.
msg144310 - (view) Author: Benny Siegert (bsiegert) Date: 2011-09-19 20:08
Hmm, I thought I was making an argument _for_ applying the patch. As I see it, these are benefits of merging the patch:

1. Being able to compile an unmodified upstream Python on MirBSD.
2. The patches in pkgsrc become smaller.
3. Future Python versions contain the support out of the box.

The only downside is having to add a few lines to configure and selectmodule.c ...
msg144318 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2011-09-20 04:32
You said "I can maintain the patch for future releases". This sounds like a reasonable solution: you keep maintaining the patch; if you want python.org to link to your patch, we can certainly arrange that. By the "no minority platforms" policy, MirBSD is just too small to be officially supported.

Technically, I recommend to maintain the patch in a Mercurial clone, perhaps hosted on bitbucket. Then you do a merge every time python.org makes a release, and everybody can fetch the code base at any point easily.
History
Date User Action Args
2022-04-11 14:57:21adminsetgithub: 57185
2011-09-20 04:32:36loewissetmessages: + msg144318
2011-09-19 20:08:23bsiegertsetmessages: + msg144310
2011-09-18 20:59:19loewissetstatus: open -> closed
resolution: wont fix
messages: + msg144254
2011-09-18 19:14:53bsiegertsetmessages: + msg144250
2011-09-17 07:51:33neologixsetmessages: + msg144177
2011-09-16 20:08:23bsiegertsetfiles: - patch-az
2011-09-16 20:08:06bsiegertsetfiles: + python27-MirBSD.diff
versions: + Python 2.7, - Python 2.6
title: select module: only use EVFILT_TIMER if available (kqueue backend) -> add support for MirBSD platform
messages: + msg144155

components: + Build, - Extension Modules
keywords: + patch
2011-09-15 15:00:05jceasetnosy: + jcea
2011-09-14 19:52:48vstinnersetnosy: loewis, vstinner, neologix, bsiegert
2011-09-14 19:32:20neologixsetnosy: + loewis
messages: + msg144043
2011-09-14 18:57:36bsiegertsetmessages: + msg144039
2011-09-14 18:48:37neologixsetnosy: + vstinner, neologix
messages: + msg144037
2011-09-14 11:57:18bsiegertcreate