Re: [Python-Dev] [python-committers] Do we need to sign Windows files with GnuPG?

2015-04-16 Thread Martin v. Löwis
Am 05.04.15 um 06:43 schrieb Steve Dower: Now I just have to find the time to learn how to use it... I always sign with Kleopatra on Windows. It's really simple: just drag all files you want to sign onto it, configure detached signatures, and it will place the signature next to the original

Re: [Python-Dev] [python-committers] Do we need to sign Windows files with GnuPG?

2015-04-16 Thread Martin v. Löwis
Am 04.04.15 um 21:54 schrieb M.-A. Lemburg: FWIW: The PSF mostly uses StartSSL nowadays and they also support code signing certificates. Given that this option is a lot cheaper than Verisign, I think we should switch, unless there are significant reasons not to. We should revisit this in 2017.

Re: [Python-Dev] Not being able to compile: make: *** [Programs/_freeze_importlib] Error 1

2015-04-16 Thread R. David Murray
On Thu, 16 Apr 2015 18:09:01 -0300, Facundo Batista facundobati...@gmail.com wrote: Full trace here: http://linkode.org/TgkzZw90JUaoodvYzU7zX6 Before going into a deep debug, I thought about sending a mail to see if anybode else hit this issue, if it's a common problem, if there's a

[Python-Dev] Not being able to compile: make: *** [Programs/_freeze_importlib] Error 1

2015-04-16 Thread Facundo Batista
Hello! It's been a while since I compiled python and run the test suite. Now that I'm starting to work in a patch, wanted to do that as a sanity check, and even ./configure finishing ok, make fails :/ (I'm on Ubuntu Trusty, all packages updated, all dependencies theorically installed). Full

Re: [Python-Dev] Python3 Stable ABI

2015-04-16 Thread Martin v. Löwis
Am 13.04.15 um 23:28 schrieb Zachary Ware: In issue23903, I've created a script that will produce PC/python3.def by scraping the header files in Include. See my comment in the issue. Having a script to check is good; having it generate the def file automatically is bad. It's typically the

Re: [Python-Dev] [python-committers] Do we need to sign Windows files with GnuPG?

2015-04-16 Thread M.-A. Lemburg
On 16.04.2015 21:34, Martin v. Löwis wrote: Am 04.04.15 um 21:54 schrieb M.-A. Lemburg: FWIW: The PSF mostly uses StartSSL nowadays and they also support code signing certificates. Given that this option is a lot cheaper than Verisign, I think we should switch, unless there are significant

[Python-Dev] How to behave regarding commiting

2015-04-16 Thread Facundo Batista
Hola! I'm asking this because quite some time passed since I was active in the development of our beloved language. I'm trying to not break any new rule not known by me. I opened a bug recently [0], somebody else proposed a patch that I like. However, that patch has no test. I will do a test

Re: [Python-Dev] How to behave regarding commiting

2015-04-16 Thread Berker Peksağ
On Fri, Apr 17, 2015 at 4:32 AM, Facundo Batista facundobati...@gmail.com wrote: Hola! I'm asking this because quite some time passed since I was active in the development of our beloved language. I'm trying to not break any new rule not known by me. I opened a bug recently [0], somebody

Re: [Python-Dev] Not being able to compile: make: *** [Programs/_freeze_importlib] Error 1

2015-04-16 Thread Facundo Batista
On Thu, Apr 16, 2015 at 6:34 PM, R. David Murray rdmur...@bitdance.com wrote: Most likely you just need to run 'make touch' so that it doesn't try to rebuild stuff it doesn't need to (because we check in those particular build artifacts, like the frozen importlib). make touch didn't fix it,