Re: [Python-Dev] Where's Greg Ward ?
[CCed to distutils, since it matters there] Tim Peters wrote:
[MAL]
He seems to be offline and the people on the distutils list have some patches and other things which would be nice to have in distutils for 2.1.
Greg's somewhere near the end of the process of moving from Virginia to Canada; I expect he'll become visible again Real Soon.
Great :)
I suppose we could simply check in the patches, but we still want to get his OK on things before applying patches to the distutils tree.
The distutils SIG could elect a Shadow Dictator in his place; if everyone agrees to vote for Andrew, you save the effort of counting votes <wink>.
Ok, let's agree to vote for Andrew :) Andrew, is that OK with you ? -- Marc-Andre Lemburg ______________________________________________________________________ Company: http://www.egenix.com/ Consulting: http://www.lemburg.com/ Python Pages: http://www.lemburg.com/python/
"M" == M <mal@lemburg.com> writes:
>> The distutils SIG could elect a Shadow Dictator in his place; >> if everyone agrees to vote for Andrew, you save the effort of >> counting votes <wink>. M> Ok, let's agree to vote for Andrew :) M> Andrew, is that OK with you ? He's got my vote. I've been experiencing some weird problems with the distutils installation of pybsddb3 out of the current Python cvs tree. It'd be nice if the outstanding distutils patches are integrated before I dive in. I don't see anything relevant in patches or bugs, but I don't know if there are other repositories of distutils fixes (like the archives?). -Barry
On Mon, Jan 15, 2001 at 08:15:28AM -0500, Barry A. Warsaw wrote:
tree. It'd be nice if the outstanding distutils patches are integrated before I dive in. I don't see anything relevant in patches or bugs, but I don't know if there are other repositories of distutils fixes (like the archives?).
There are a few patches buried in the back archives, but I don't know of any outstanding bugfixes, so please report whatever problem you're seeing. Oh, and Barry, did the issue holding up your patch for adding shar support (#102313) ever get resolved? --amk
"AK" == Andrew Kuchling <akuchlin@mems-exchange.org> writes:
AK> There are a few patches buried in the back archives, but I AK> don't know of any outstanding bugfixes, so please report AK> whatever problem you're seeing. Okay, will do. AK> Oh, and Barry, did the issue holding up your patch for adding AK> shar support (#102313) ever get resolved? No, but I'll try to take another poke at it. -Barry
[Redirecting this discussion to the Distutils-SIG] On Mon, Jan 15, 2001 at 10:51:40AM +0100, M.-A. Lemburg wrote:
Tim Peters wrote:
Greg's somewhere near the end of the process of moving from Virginia to Canada; I expect he'll become visible again Real Soon.
To add to this, he apparently has a (very slow) ISP connection again, since he sent an e-mail to the internal MEMS Exchange developer list, but he sent only a single message, so I assume he's not attempting to claw through his e-mail backlog just yet.
Andrew, is that OK with you ?
I suppose so. I've tagged the current Lib/distutils tree with the tag "pre_amk", so Greg can readily determine what's been changed, and will begin looking at the various patches. --amk
While attempting to build an RPM using distutils on Python 2.0, rpm complained about duplicate files. The following patch fixed that problem: --- /usr/local/src/Python2.0/Lib/distutils/command/install.py Wed Dec 20 04:02:59 2000 +++ /usr/local/lib/python2.0/distutils/command/install.py Tue Jan 16 06:31:31 2001 @@ -529,7 +529,8 @@ outputs = [] for cmd_name in self.get_sub_commands(): cmd = self.get_finalized_command(cmd_name) - outputs.extend(cmd.get_outputs()) + for out in cmd.get_outputs(): + out not in outputs and outputs.append(out) return outputs -- Jeremy Kloth Consultant jeremy.kloth@fourthought.com (303)583-9900 x 105 Fourthought, Inc. http://www.fourthought.com Software-engineering, knowledge-management, XML, CORBA, Linux, Python
On Tue, Jan 16, 2001 at 06:47:28AM -0700, Jeremy J Kloth wrote:
While attempting to build an RPM using distutils on Python 2.0, rpm complained about duplicate files. The following patch fixed that problem:
I've applied a modified version of this patch, using an 'if' statement instead of the short-circuit evaluation. Thanks! --amk
participants (4)
-
Andrew Kuchling
-
Barry A. Warsaw
-
Jeremy J Kloth
-
M.-A. Lemburg