Hi Martin,

The dev version doesn't seem to trigger the same problem (from initial experimentation). The exe created by the new version of pyinstaller (but using the same spec file) gives an error message when run but otherwise succeeds. The message is: WARNING: file already exists but should not: C:/DOCUMEN~1/GRANTP~1/LOCALS~1/Temp/_MEI1922\.\pywintypes27.dll

I'll look at that tomorrow. Perhaps the issue will go away if I build a clean spec file

Here is the one I've been using:

# -*- mode: python -*-

a = Analysis([os.path.join(HOMEPATH,'support\\_mountzlib.py'), os.path.join(HOMEPATH,'support\\useUnicode.py'), 'C:\\dev\\launch.py'],
pathex=['C:\\Python27\\pyinstaller-pyinstaller-ba163ef'])
pyz = PYZ(a.pure, level=9)
binary_includes = [('ssleay32.dll', 'C:\\Program Files\\wkhtmltopdf\\ssleay32.dll', 'BINARY'), ('libeay32.dll', 'C:\\Program Files\\wkhtmltopdf\\libeay32.dll', 'BINARY'), ('libgcc_s_dw2-1.dll', 'C:\\Program Files\\wkhtmltopdf\\libgcc_s_dw2-1.dll', 'BINARY'), ('wkhtmltopdf.exe', 'C:\\Program Files\\wkhtmltopdf\\wkhtmltopdf.exe', 'BINARY'), ('convert.exe', 'C:\\Program Files\\ImageMagick-6.7.8-Q16\\convert.exe', 'BINARY'), ('libiconv2.dll', 'C:\\Windows\\System32\\libiconv2.dll', 'BINARY'), ('pdftk.exe', 'C:\\Windows\\System32\\pdftk.exe', 'BINARY'), ('gswin32c.exe', 'C:\\Program Files\\gs\\gs9.06\\bin\\gswin32c.exe', 'BINARY'), ('gsdll32.dll', 'C:\\Program Files\\gs\\gs9.06\\bin\\gsdll32.dll', 'BINARY'),
]

exe = EXE( pyz,
          a.scripts,
          a.binaries + binary_includes,
          a.zipfiles,
          a.datas,
          exclude_binaries=False,
          name='C:\\dev\\sofastats.exe',
          icon='C:\\dev\\images\\sofa_32x32.ico',
          strip=False,
          upx=False,
          debug=False,
          console=False)
Anyway, it looks like the trojan warning was probably spurious.


All the best,
Grant



On 05/09/12 19:38, Grant Paton-Simpson wrote:
Thanks Martin,

I'll do some experiments and report back.

All the best,
Grant


On 05/09/12 19:13, Martin Zibricky wrote:
Grant Paton-Simpson píše v St 05. 09. 2012 v 14:40 +1200:
Any thoughts? I suspect it might be a false positive but obviously I
need to be careful.
I think it's definitely a false positive. I don't know how to modify the
bootloader code to make AVG happy. Could you try avg with development
version?

I think this something for avg support. They experts could tell us more
since they have access to source code.



--
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To post to this group, send email to pyinstaller@googlegroups.com.
To unsubscribe from this group, send email to 
pyinstaller+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/pyinstaller?hl=en.

Reply via email to