[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2011-10-14 Thread Corey O'Brien
Corey O'Brien added the comment: Building py2exe with VS2010 I had this same issue and the /MANIFEST fix mentioned here fixed the problem. I also think that this issue should be re-opened. -- nosy: +coreypobrien ___ Python tracker

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2011-10-12 Thread David Schnur
David Schnur added the comment: I haven't commented since opening this issue, but I've been following along. Regarding Marc-Andre's latest comment, I think whether to embed a manifest or not is a separate issue. The current behavior is to embed a manifest, and so it should ensure that the f

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2011-10-12 Thread Sébastien Sablé
Sébastien Sablé added the comment: I got this problem again this morning while compiling pywin32. This problem is not specific to me, anyone using Visual Studio 2010 to compile Python is experiencing the same issue: http://nukeit.org/compile-python-2-7-packages-with-visual-studio-2010-express

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2011-09-08 Thread Sébastien Sablé
Sébastien Sablé added the comment: I encountered the same problem while compiling the psutil package. I used Python 3.2.2 that I compiled myself using Visual Studio 2010 SP1 in Debug mode by following the PCBuild/readme.txt documentation. I could not compile psutil until I added in setup.py:

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2011-04-04 Thread Santoso Wijaya
Santoso Wijaya added the comment: Another workaround is by adding the linker argument to Extension() as extra_link_args: extra_link_args=['/MANIFEST'] -- ___ Python tracker ___

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2011-04-04 Thread Santoso Wijaya
Santoso Wijaya added the comment: And also with an extension module I'm trying to build with Python-2.7.1 AMD64. Schnur's suggestion fixes it. -- nosy: +santa4nt ___ Python tracker

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2011-01-23 Thread Gregory Czajkowski
Gregory Czajkowski added the comment: Also happening with python2.6 and building pyzmq-2.0.10 using easy_install. dschnur's suggestion fixes it. -- nosy: +gcflymoto ___ Python tracker _

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2010-11-01 Thread David Joy
David Joy added the comment: Hi Marc, Well, I fried my original server install trying to trace this. My new fresh install can still reproduce the problem with mysql-python, but I can't recreate the issue with PyOpenSSL anymore. Grabbing packages at random from PyPi hasn't given me a single

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2010-10-29 Thread Marc-Andre Lemburg
Changes by Marc-Andre Lemburg : Removed file: http://bugs.python.org/file13126/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2010-10-29 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Hi David, since both you and Pavel are building mysql-python and using setuptools (which applies a lot of hacks on stock distutils), could you please also try some other package from PyPI in that same configuration and preferably one which doesn't rely on s

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2010-10-29 Thread David Joy
David Joy added the comment: Hi All, I just built mysql-python against CPython2.7 MSVC2008 Express Edition and Server 2003 R2. All were freshly built on a clean Server 2003 install. This exact issue occurred building with pip 0.8.1 on top of distribute 0.6.14: C:\Program Files\Microsoft SD

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2009-02-17 Thread Pavel Repin
Pavel Repin added the comment: Marc-Andre, I can also repro this on Vista machine with the same Python & MSVS configuration. This is the build error stemming from missing manifest file (unnecessary details elided; note the absence of /MANIFEST option): C:\src\MySQL-python-1.2.2>python setup.py -

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2009-02-17 Thread Pavel Repin
Pavel Repin added the comment: Hi Marc,I am pretty sure it helped on my particular configuration. I was trying to compile MySQL-python-1.2.2.tar.gz package from source and it was failing in mt.exe step because the manifest file was not there. I didn't do anything special on my machine. I have 3

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2009-02-17 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: On 2009-02-17 20:22, Pavel Repin wrote: > Pavel Repin added the comment: > > I'd like to point out that on some configurations (at least mine), you > really need to specify /MANIFEST option to the linker, even though MSDN > documentation seems to imply t

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2009-02-17 Thread Pavel Repin
Pavel Repin added the comment: I'd like to point out that on some configurations (at least mine), you really need to specify /MANIFEST option to the linker, even though MSDN documentation seems to imply that /MANIFEST behavior is ON by default. My config: beta version of Windows 7 ActivePython

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2008-11-25 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: Closing it as "invalid" then. -- resolution: -> invalid status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2008-11-25 Thread David Schnur
David Schnur <[EMAIL PROTECTED]> added the comment: I looked at this some more (I'm not super familiar with the use of manifests) and I think I figured it out. For somewhat complicated reasons, I'm compiling with /MT rather than /MD. Although link normally produces a manifest, since it's unnece

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2008-11-25 Thread Marc-Andre Lemburg
Marc-Andre Lemburg <[EMAIL PROTECTED]> added the comment: This is why we don't see the problem: http://msdn.microsoft.com/en-us/library/f2c0w594.aspx """ The default is /MANIFEST. """ So it appears that you must have disabled this default somehow. ___ Pytho

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2008-11-25 Thread Marc-Andre Lemburg
Marc-Andre Lemburg <[EMAIL PROTECTED]> added the comment: On 2008-11-25 21:16, David Schnur wrote: > New submission from David Schnur <[EMAIL PROTECTED]>: > > This is my first time submitting an issue; sorry if I am doing this > wrong. While attempting to build/install PyOpenSSL on Windows / M

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2008-11-25 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: Since issue4120, the compilation tools precisely chose to *not* embed manifests in .pyd extensions. This probably means that the "mt.exe" step should be skipped by distutils. -- assignee: -> loewis nosy: +amaury.forgeotdarc,

[issue4431] Distutils MSVC doesn't create manifest file (with fix)

2008-11-25 Thread David Schnur
New submission from David Schnur <[EMAIL PROTECTED]>: This is my first time submitting an issue; sorry if I am doing this wrong. While attempting to build/install PyOpenSSL on Windows / MSVC, the mt.exe step failed because it could not find the manifest file that it was attempting to embed in