You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(33) |
Dec
(20) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(7) |
Feb
(44) |
Mar
(51) |
Apr
(43) |
May
(43) |
Jun
(36) |
Jul
(61) |
Aug
(44) |
Sep
(25) |
Oct
(82) |
Nov
(97) |
Dec
(47) |
2005 |
Jan
(77) |
Feb
(143) |
Mar
(42) |
Apr
(31) |
May
(93) |
Jun
(93) |
Jul
(35) |
Aug
(78) |
Sep
(56) |
Oct
(44) |
Nov
(72) |
Dec
(75) |
2006 |
Jan
(116) |
Feb
(99) |
Mar
(181) |
Apr
(171) |
May
(112) |
Jun
(86) |
Jul
(91) |
Aug
(111) |
Sep
(77) |
Oct
(72) |
Nov
(57) |
Dec
(51) |
2007 |
Jan
(64) |
Feb
(116) |
Mar
(70) |
Apr
(74) |
May
(53) |
Jun
(40) |
Jul
(519) |
Aug
(151) |
Sep
(132) |
Oct
(74) |
Nov
(282) |
Dec
(190) |
2008 |
Jan
(141) |
Feb
(67) |
Mar
(69) |
Apr
(96) |
May
(227) |
Jun
(404) |
Jul
(399) |
Aug
(96) |
Sep
(120) |
Oct
(205) |
Nov
(126) |
Dec
(261) |
2009 |
Jan
(136) |
Feb
(136) |
Mar
(119) |
Apr
(124) |
May
(155) |
Jun
(98) |
Jul
(136) |
Aug
(292) |
Sep
(174) |
Oct
(126) |
Nov
(126) |
Dec
(79) |
2010 |
Jan
(109) |
Feb
(83) |
Mar
(139) |
Apr
(91) |
May
(79) |
Jun
(164) |
Jul
(184) |
Aug
(146) |
Sep
(163) |
Oct
(128) |
Nov
(70) |
Dec
(73) |
2011 |
Jan
(235) |
Feb
(165) |
Mar
(147) |
Apr
(86) |
May
(74) |
Jun
(118) |
Jul
(65) |
Aug
(75) |
Sep
(162) |
Oct
(94) |
Nov
(48) |
Dec
(44) |
2012 |
Jan
(49) |
Feb
(40) |
Mar
(88) |
Apr
(35) |
May
(52) |
Jun
(69) |
Jul
(90) |
Aug
(123) |
Sep
(112) |
Oct
(120) |
Nov
(105) |
Dec
(116) |
2013 |
Jan
(76) |
Feb
(26) |
Mar
(78) |
Apr
(43) |
May
(61) |
Jun
(53) |
Jul
(147) |
Aug
(85) |
Sep
(83) |
Oct
(122) |
Nov
(18) |
Dec
(27) |
2014 |
Jan
(58) |
Feb
(25) |
Mar
(49) |
Apr
(17) |
May
(29) |
Jun
(39) |
Jul
(53) |
Aug
(52) |
Sep
(35) |
Oct
(47) |
Nov
(110) |
Dec
(27) |
2015 |
Jan
(50) |
Feb
(93) |
Mar
(96) |
Apr
(30) |
May
(55) |
Jun
(83) |
Jul
(44) |
Aug
(8) |
Sep
(5) |
Oct
|
Nov
(1) |
Dec
(1) |
2016 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(3) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
|
2017 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
(7) |
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
|
2
|
3
|
4
(3) |
5
(9) |
6
(3) |
7
(3) |
8
(4) |
9
(7) |
10
(2) |
11
(10) |
12
|
13
(1) |
14
(3) |
15
(1) |
16
|
17
|
18
(3) |
19
(9) |
20
(24) |
21
(8) |
22
(21) |
23
(2) |
24
(1) |
25
(4) |
26
(3) |
27
(6) |
28
(18) |
29
(7) |
30
(3) |
31
|
|
|
|
|
|
|
On Thu, May 28, 2009 at 3:32 PM, Reinier Heeres <re...@he...> wrote: > Hi all, > > While trying to work on some docs for mplot3d I ran into trouble > building them. I started with the stock ubuntu sphinx (0.5.2), but > that ran into errors. Following the documentation suggestion I tried > the repository at http://svn.python.org/projects/doctools/trunk > sphinx, but that seems to be deprecated (and also didn't work for me). > Apparently the new location is a mercurial repo at > http://bitbucket.org/birkenfeld/sphinx/ and that's a version that did > the trick for me. > Hey Reiner, I just did an svn up and noticed the new examples for mplot3d -- thanks for adding these. May I suggest you rename them? Having file names like contour, when mpl has a module contour, can lead to subtle import bugs. We try and avoid these by doing fully qualified imports inside mpl like 'import matplotlib.contour as contour' but to keep things clear and simple I like to post fix '_demo' or something like that on examples when the same is potentially ambiguous. Some something like contour3d_demo.py, scatter3d_demo.py, etc, would be preferable to me to clearly disambiguate the modules and examples, with judicious use of 3d to make it clear what the examples are. Thanks, JDH
On Thu, May 28, 2009 at 3:32 PM, Reinier Heeres <re...@he...> wrote: > Hi all, > > While trying to work on some docs for mplot3d I ran into trouble > building them. I started with the stock ubuntu sphinx (0.5.2), but > that ran into errors. Following the documentation suggestion I tried > the repository at http://svn.python.org/projects/doctools/trunk > sphinx, but that seems to be deprecated (and also didn't work for me). > Apparently the new location is a mercurial repo at > http://bitbucket.org/birkenfeld/sphinx/ and that's a version that did > the trick for me. > > My guess is people knew this already, but shall I update the docs with > this new repo? It will be easier for new people to get the docs built. By all means the current docs should be updated with anything that makes it easier for new users. I often forget this stuff in the intervals between when I have to set up new development stations, so having easy step-by-step instructions with command lines to paste into the shell is a definite plus JDH
Reinier Heeres wrote: > Hi all, > > While trying to work on some docs for mplot3d I ran into trouble > building them. I started with the stock ubuntu sphinx (0.5.2), but > that ran into errors. Following the documentation suggestion I tried > the repository at http://svn.python.org/projects/doctools/trunk > sphinx, but that seems to be deprecated (and also didn't work for me). > Apparently the new location is a mercurial repo at > http://bitbucket.org/birkenfeld/sphinx/ and that's a version that did > the trick for me. > > My guess is people knew this already, but shall I update the docs with > this new repo? It will be easier for new people to get the docs built. Yes, please do. Eric
Hi all, While trying to work on some docs for mplot3d I ran into trouble building them. I started with the stock ubuntu sphinx (0.5.2), but that ran into errors. Following the documentation suggestion I tried the repository at http://svn.python.org/projects/doctools/trunk sphinx, but that seems to be deprecated (and also didn't work for me). Apparently the new location is a mercurial repo at http://bitbucket.org/birkenfeld/sphinx/ and that's a version that did the trick for me. My guess is people knew this already, but shall I update the docs with this new repo? It will be easier for new people to get the docs built. Regards, -- Reinier Heeres Bleijenburg 64 2511 VD Den Haag The Netherlands Tel: +31 6 10852639
On Thu, May 28, 2009 at 10:01 AM, John Hunter <jd...@gm...> wrote: > On Thu, May 28, 2009 at 9:57 AM, Charlie Moad <cw...@gm...> wrote: > >> I'll have to check my home computer tonight. I never saw your note >> about libpng either. Again, I'll poke a little more tonight once I >> get home to my machine and update you. > > The debugger indicates the dreaded mscvrt is still in the binaries, > despite your monkey patch. The only reference to that file in > distutils cygwincompiler is:: > > # cygwin and mingw32 need different sets of libraries > if self.gcc_version == "2.91.57": > # cygwin shouldn't need msvcrt, but without the dlls will crash > # (gcc version 2.91.57) -- perhaps something about initialization > self.dll_libraries=["msvcrt"] > self.warn( > "Consider upgrading to a newer version of gcc") > else: > # Include the appropriate MSVC runtime library if Python was built > # with MSVC 7.0 or later. > self.dll_libraries = get_msvcr() > > we shouldn't be matching that version string, and your monkey patch > *should* be overriding get_msvcr, but it is still getting in there. > Try in the matplotlib-0.98.6svn dir:: > > > grep -ri mscvrt . > > I get the following listing:: > > Binary file ./build/lib.win32-2.6/matplotlib/backends/_backend_agg.pyd matches > Binary file ./build/lib.win32-2.6/matplotlib/backends/_tkagg.pyd matches > Binary file ./build/lib.win32-2.6/matplotlib/ft2font.pyd matches > Binary file ./build/lib.win32-2.6/matplotlib/nxutils.pyd matches > Binary file ./build/lib.win32-2.6/matplotlib/ttconv.pyd matches > Binary file ./build/lib.win32-2.6/matplotlib/_cntr.pyd matches > Binary file ./build/lib.win32-2.6/matplotlib/_delaunay.pyd matches > Binary file ./build/lib.win32-2.6/matplotlib/_image.pyd matches > Binary file ./build/lib.win32-2.6/matplotlib/_path.pyd matches > Binary file ./build/lib.win32-2.6/matplotlib/_png.pyd matches > Binary file ./build/lib.win32-2.6/matplotlib/_windowing.pyd matches Hmm, not sure if this msvcrt is a red-herring or not. We may be getting it by virtue of linking with numpy. If I run the same grep on the numpy install from the 1.3.0 numpy binary, I get Binary file ./core/multiarray.pyd matches Binary file ./core/scalarmath.pyd matches Binary file ./core/umath.pyd matches Binary file ./core/umath_tests.pyd matches Binary file ./core/_dotblas.pyd matches Binary file ./core/_sort.pyd matches ./distutils/mingw32ccompiler.py: # with MSVC >= 7.0 (MinGW standard is msvcrt) ./distutils/mingw32ccompiler.py: import msvcrt ./distutils/mingw32ccompiler.py: if hasattr(msvcrt, "CRT_ASSEMBLY_VERSION"): ./distutils/mingw32ccompiler.py: _MSVCRVER_TO_FULLVER['90'] = msvcrt.CRT_ASSEMBLY_VERSION ./distutils/mingw32ccompiler.py: log.warn('Cannot import msvcrt: using manifest will not be possible') ./distutils/mingw32ccompiler.py: raise ValueError("Version %d,%d of MSVCRT not supported yet" \ Binary file ./distutils/mingw32ccompiler.pyc matches Binary file ./distutils/mingw32ccompiler.pyo matches Binary file ./fft/fftpack_lite.pyd matches Binary file ./lib/_compiled_base.pyd matches Binary file ./linalg/lapack_lite.pyd matches Binary file ./numarray/_capi.pyd matches ./numpy.out:./distutils/mingw32ccompiler.py: # with MSVC >= 7.0 (MinGW standard is msvcrt) ./numpy.out:./distutils/mingw32ccompiler.py: import msvcrt ./numpy.out:./distutils/mingw32ccompiler.py: if hasattr(msvcrt, "CRT_ASSEMBLY_VERSION"): ./numpy.out:./distutils/mingw32ccompiler.py: _MSVCRVER_TO_FULLVER['90'] = msvcrt.CRT_ASSEMBLY_VERSION ./numpy.out:./distutils/mingw32ccompiler.py: log.warn('Cannot import msvcrt: using manifest will not be possible') ./numpy.out:./distutils/mingw32ccompiler.py: raise ValueError("Version %d,%d of MSVCRT not supported yet" \ Binary file ./random/mtrand.pyd matches Sometimes these missing dlls are not the true cause of the segfault.... JDH
On Thu, May 28, 2009 at 9:57 AM, Charlie Moad <cw...@gm...> wrote: > I'll have to check my home computer tonight. I never saw your note > about libpng either. Again, I'll poke a little more tonight once I > get home to my machine and update you. The debugger indicates the dreaded mscvrt is still in the binaries, despite your monkey patch. The only reference to that file in distutils cygwincompiler is:: # cygwin and mingw32 need different sets of libraries if self.gcc_version == "2.91.57": # cygwin shouldn't need msvcrt, but without the dlls will crash # (gcc version 2.91.57) -- perhaps something about initialization self.dll_libraries=["msvcrt"] self.warn( "Consider upgrading to a newer version of gcc") else: # Include the appropriate MSVC runtime library if Python was built # with MSVC 7.0 or later. self.dll_libraries = get_msvcr() we shouldn't be matching that version string, and your monkey patch *should* be overriding get_msvcr, but it is still getting in there. Try in the matplotlib-0.98.6svn dir:: > grep -ri mscvrt . I get the following listing:: Binary file ./build/lib.win32-2.6/matplotlib/backends/_backend_agg.pyd matches Binary file ./build/lib.win32-2.6/matplotlib/backends/_tkagg.pyd matches Binary file ./build/lib.win32-2.6/matplotlib/ft2font.pyd matches Binary file ./build/lib.win32-2.6/matplotlib/nxutils.pyd matches Binary file ./build/lib.win32-2.6/matplotlib/ttconv.pyd matches Binary file ./build/lib.win32-2.6/matplotlib/_cntr.pyd matches Binary file ./build/lib.win32-2.6/matplotlib/_delaunay.pyd matches Binary file ./build/lib.win32-2.6/matplotlib/_image.pyd matches Binary file ./build/lib.win32-2.6/matplotlib/_path.pyd matches Binary file ./build/lib.win32-2.6/matplotlib/_png.pyd matches Binary file ./build/lib.win32-2.6/matplotlib/_windowing.pyd matches JDH
On Thu, May 28, 2009 at 10:52 AM, John Hunter <jd...@gm...> wrote: > On Thu, May 28, 2009 at 9:37 AM, Charlie Moad <cw...@gm...> wrote: > >> I think setuptools should be a requirement in the same way numpy is. >> >> The latest "ez_setup.py" script has 2.6 included. >> http://peak.telecommunity.com/dist/ez_setup.py >> >> You should be able to do the normal, "python ez_setup.py" > > OK, I got the thing to build and updated the README with instructions > for dummies like me. I tested the install and we are still getting > the libpng triggered segfault. I removed the win32 binaries from the > website yesterday since they showed the same problem. So now we have > to drill into this problem. Do you recall what version of libpng you > used for the 98.5.2 builds. I may try regressing and see if that > helps. I'll have to check my home computer tonight. I never saw your note about libpng either. Again, I'll poke a little more tonight once I get home to my machine and update you. - Charlie
On Thu, May 28, 2009 at 9:37 AM, Charlie Moad <cw...@gm...> wrote: > I think setuptools should be a requirement in the same way numpy is. > > The latest "ez_setup.py" script has 2.6 included. > http://peak.telecommunity.com/dist/ez_setup.py > > You should be able to do the normal, "python ez_setup.py" OK, I got the thing to build and updated the README with instructions for dummies like me. I tested the install and we are still getting the libpng triggered segfault. I removed the win32 binaries from the website yesterday since they showed the same problem. So now we have to drill into this problem. Do you recall what version of libpng you used for the 98.5.2 builds. I may try regressing and see if that helps. JDH
On Thu, May 28, 2009 at 10:34 AM, John Hunter <jd...@gm...> wrote: > On Thu, May 28, 2009 at 9:25 AM, John Hunter <jd...@gm...> wrote: >> On Thu, May 28, 2009 at 9:06 AM, John Hunter <jd...@gm...> wrote: >>> On Thu, May 28, 2009 at 8:57 AM, Charlie Moad <cw...@gm...> wrote: >>>> Another note. I ran into problems when trying to create the build in >>>> a directory that had spaces. (e.g. C:\Documents and Settings\....). >>>> Try running everything in a top level dir. >>> >>> That's not it -- I avoid spaces like the plague. >>> >>> I am now getting a "cannot exec 'cc1plus'" error when I try and build >>> mpl itself (zlib, png, freetype and tcltl built fine). I can do:: >>> >>> > gcc --version >>> >>> but not:: >>> >>> > g++ --version >>> >>> Did you install something extra for g++ -- I installed mingw 5.1.4, >>> MSYS and wget as instructed....) >> >> Never mind -- just reran the mingw-5.1.4.exe installer and it prompted >> me for additional compilers. I selected g++ and now I have it > > Now I am hitting a missing setuptools import from setupwinegg.py. > Apparently python2.6 doesn't come with setuptools on windows (Is this > expected? It surprised me, I thought setuptools was supposed to be a > standard....) > > Anyhow, a quick google takes me to > > http://www.python-forum.org/pythonforum/viewtopic.php?f=15&t=10175 > > which suggests > > 1. Download setuptools-0.6c9.tar.gz > 2. Download setuptools-0.6c9-py2.6.egg to a folder(directory) outside > your Windows Python installation folder > 3. Use 7-zip to extract ez_setup.py in the same folder as > setuptools-0.6c9-py2.6.egg > 4. Go to the corresponding dos prompt and run python ez_setup.py > setuptools-0.6c9-py2.6.egg from the command prompt > 5. Ensure that your PATH includes the appropriate C:\Python2X\Scripts directory > > Is this really the path of least resistance? Whatever happened to the > easy in ez_setup.... I think setuptools should be a requirement in the same way numpy is. The latest "ez_setup.py" script has 2.6 included. http://peak.telecommunity.com/dist/ez_setup.py You should be able to do the normal, "python ez_setup.py"
On Thu, May 28, 2009 at 10:25 AM, John Hunter <jd...@gm...> wrote: > On Thu, May 28, 2009 at 9:06 AM, John Hunter <jd...@gm...> wrote: >> On Thu, May 28, 2009 at 8:57 AM, Charlie Moad <cw...@gm...> wrote: >>> Another note. I ran into problems when trying to create the build in >>> a directory that had spaces. (e.g. C:\Documents and Settings\....). >>> Try running everything in a top level dir. >> >> That's not it -- I avoid spaces like the plague. >> >> I am now getting a "cannot exec 'cc1plus'" error when I try and build >> mpl itself (zlib, png, freetype and tcltl built fine). I can do:: >> >> > gcc --version >> >> but not:: >> >> > g++ --version >> >> Did you install something extra for g++ -- I installed mingw 5.1.4, >> MSYS and wget as instructed....) > > Never mind -- just reran the mingw-5.1.4.exe installer and it prompted > me for additional compilers. I selected g++ and now I have it You found it. That's probably worth adding to the readme as well as the "spaces in build path" issue. I think I did add some comments after testing, btw.
On Thu, May 28, 2009 at 9:25 AM, John Hunter <jd...@gm...> wrote: > On Thu, May 28, 2009 at 9:06 AM, John Hunter <jd...@gm...> wrote: >> On Thu, May 28, 2009 at 8:57 AM, Charlie Moad <cw...@gm...> wrote: >>> Another note. I ran into problems when trying to create the build in >>> a directory that had spaces. (e.g. C:\Documents and Settings\....). >>> Try running everything in a top level dir. >> >> That's not it -- I avoid spaces like the plague. >> >> I am now getting a "cannot exec 'cc1plus'" error when I try and build >> mpl itself (zlib, png, freetype and tcltl built fine). I can do:: >> >> > gcc --version >> >> but not:: >> >> > g++ --version >> >> Did you install something extra for g++ -- I installed mingw 5.1.4, >> MSYS and wget as instructed....) > > Never mind -- just reran the mingw-5.1.4.exe installer and it prompted > me for additional compilers. I selected g++ and now I have it Now I am hitting a missing setuptools import from setupwinegg.py. Apparently python2.6 doesn't come with setuptools on windows (Is this expected? It surprised me, I thought setuptools was supposed to be a standard....) Anyhow, a quick google takes me to http://www.python-forum.org/pythonforum/viewtopic.php?f=15&t=10175 which suggests 1. Download setuptools-0.6c9.tar.gz 2. Download setuptools-0.6c9-py2.6.egg to a folder(directory) outside your Windows Python installation folder 3. Use 7-zip to extract ez_setup.py in the same folder as setuptools-0.6c9-py2.6.egg 4. Go to the corresponding dos prompt and run python ez_setup.py setuptools-0.6c9-py2.6.egg from the command prompt 5. Ensure that your PATH includes the appropriate C:\Python2X\Scripts directory Is this really the path of least resistance? Whatever happened to the easy in ez_setup.... JDH
On Thu, May 28, 2009 at 9:06 AM, John Hunter <jd...@gm...> wrote: > On Thu, May 28, 2009 at 8:57 AM, Charlie Moad <cw...@gm...> wrote: >> Another note. I ran into problems when trying to create the build in >> a directory that had spaces. (e.g. C:\Documents and Settings\....). >> Try running everything in a top level dir. > > That's not it -- I avoid spaces like the plague. > > I am now getting a "cannot exec 'cc1plus'" error when I try and build > mpl itself (zlib, png, freetype and tcltl built fine). I can do:: > > > gcc --version > > but not:: > > > g++ --version > > Did you install something extra for g++ -- I installed mingw 5.1.4, > MSYS and wget as instructed....) Never mind -- just reran the mingw-5.1.4.exe installer and it prompted me for additional compilers. I selected g++ and now I have it JDH
On Wed, May 27, 2009 at 11:08 PM, Charlie Moad <cw...@gm...> wrote: > I've spent the last couple of days writing the win32 equivalent > of John's osx release scripts for MinGW. It patches distutils at > runtime to exclude the msvcr link, hence we should no longer need to > modify distutils. I have tested it on Python 2.6 and it should work > on 2.4 and 2.5 as well. It's too late for me to test those right now, > but I trust they should work. Instructions can be found in > release/win32/README.txt. It required removing a link to "gw32" in > "setupext.py" so it only works trunk sdists. All interested, please > give it a try. I'm in the process of testing this -- one problem I encountered was some trailing spaces after the version numbers and before the comments which broke the build. nfortunately some of the compiler error messages were fairly cryptic (c compiler cannot create executables) which sent me down some false trails before I figured it out from the libpng config.log. I've committed the fix (first use of tortoisesvn -- woohoo). My sdist command in mingw is creating zip files by default -- any way to force it to make the tar.gz that the build script is expecting ? I can hack around this by creating my own tarball..... JDH
On Thu, May 28, 2009 at 8:57 AM, Charlie Moad <cw...@gm...> wrote: > Another note. I ran into problems when trying to create the build in > a directory that had spaces. (e.g. C:\Documents and Settings\....). > Try running everything in a top level dir. That's not it -- I avoid spaces like the plague. I am now getting a "cannot exec 'cc1plus'" error when I try and build mpl itself (zlib, png, freetype and tcltl built fine). I can do:: > gcc --version but not:: > g++ --version Did you install something extra for g++ -- I installed mingw 5.1.4, MSYS and wget as instructed....)
On Thu, May 28, 2009 at 8:56 AM, Charlie Moad <cw...@gm...> wrote: > It's strange that I didn't run into spacing issues. > > sdist --formats=gztar Did you maybe add the comments after you had built the dependencies, so that branch wasn't executed when you compiled? Thanks for the sdist flag -- I'll update the README. I forgot to say -- thanks a lot for doing this. It will be a tremendous boon for windows users (and us) and should help us plug win32 into the buildbot down the road. BTW, have you tested these builds with the png save error I CCd you on earlier? I'll test when I finish the build... JDH
Another note. I ran into problems when trying to create the build in a directory that had spaces. (e.g. C:\Documents and Settings\....). Try running everything in a top level dir. - Charlie On Thu, May 28, 2009 at 9:56 AM, Charlie Moad <cw...@gm...> wrote: > It's strange that I didn't run into spacing issues. > > sdist --formats=gztar > > - Charlie > > On Thu, May 28, 2009 at 9:47 AM, John Hunter <jd...@gm...> wrote: >> On Wed, May 27, 2009 at 11:08 PM, Charlie Moad <cw...@gm...> wrote: >>> I've spent the last couple of days writing the win32 equivalent >>> of John's osx release scripts for MinGW. It patches distutils at >>> runtime to exclude the msvcr link, hence we should no longer need to >>> modify distutils. I have tested it on Python 2.6 and it should work >>> on 2.4 and 2.5 as well. It's too late for me to test those right now, >>> but I trust they should work. Instructions can be found in >>> release/win32/README.txt. It required removing a link to "gw32" in >>> "setupext.py" so it only works trunk sdists. All interested, please >>> give it a try. >> >> I'm in the process of testing this -- one problem I encountered was >> some trailing spaces after the version numbers and before the comments >> which broke the build. nfortunately some of the compiler error >> messages were fairly cryptic (c compiler cannot create executables) >> which sent me down some false trails before I figured it out from the >> libpng config.log. I've committed the fix (first use of tortoisesvn >> -- woohoo). >> >> My sdist command in mingw is creating zip files by default -- any way >> to force it to make the tar.gz that the build script is expecting ? I >> can hack around this by creating my own tarball..... >> >> JDH >> >
It's strange that I didn't run into spacing issues. sdist --formats=gztar - Charlie On Thu, May 28, 2009 at 9:47 AM, John Hunter <jd...@gm...> wrote: > On Wed, May 27, 2009 at 11:08 PM, Charlie Moad <cw...@gm...> wrote: >> I've spent the last couple of days writing the win32 equivalent >> of John's osx release scripts for MinGW. It patches distutils at >> runtime to exclude the msvcr link, hence we should no longer need to >> modify distutils. I have tested it on Python 2.6 and it should work >> on 2.4 and 2.5 as well. It's too late for me to test those right now, >> but I trust they should work. Instructions can be found in >> release/win32/README.txt. It required removing a link to "gw32" in >> "setupext.py" so it only works trunk sdists. All interested, please >> give it a try. > > I'm in the process of testing this -- one problem I encountered was > some trailing spaces after the version numbers and before the comments > which broke the build. nfortunately some of the compiler error > messages were fairly cryptic (c compiler cannot create executables) > which sent me down some false trails before I figured it out from the > libpng config.log. I've committed the fix (first use of tortoisesvn > -- woohoo). > > My sdist command in mingw is creating zip files by default -- any way > to force it to make the tar.gz that the build script is expecting ? I > can hack around this by creating my own tarball..... > > JDH >
I've spent the last couple of days writing the win32 equivalent of John's osx release scripts for MinGW. It patches distutils at runtime to exclude the msvcr link, hence we should no longer need to modify distutils. I have tested it on Python 2.6 and it should work on 2.4 and 2.5 as well. It's too late for me to test those right now, but I trust they should work. Instructions can be found in release/win32/README.txt. It required removing a link to "gw32" in "setupext.py" so it only works trunk sdists. All interested, please give it a try. - Charlie