Changeset 43
- Timestamp:
- Mon Sep 12 04:33:09 2005
- Files:
-
- trunk/bindepend.py (modified) (diff)
- trunk/Makespec.py (modified) (diff)
- trunk/icon.py (modified) (diff)
- trunk/buildtests/test6x.py (modified) (diff)
- trunk/buildtests/test7x.py (modified) (diff)
- trunk/buildtests/test1.py (modified) (diff)
- trunk/buildtests/test2.py (modified) (diff)
- trunk/buildtests/test3.py (modified) (diff)
- trunk/buildtests/test4.py (modified) (diff)
- trunk/buildtests/test5.py (modified) (diff)
- trunk/buildtests/test6.py (modified) (diff)
- trunk/buildtests/test7.py (modified) (diff)
- trunk/buildtests/test8.py (modified) (diff)
- trunk/buildtests/runtests.py (modified) (diff)
- trunk/hooks/hook-pywintypes.py (modified) (diff)
- trunk/hooks/hook-DateTime.mxDateTime.py (modified) (diff)
- trunk/hooks/hook-DateTime.py (modified) (diff)
- trunk/hooks/hook-parser.py (modified) (diff)
- trunk/hooks/hook-xml.py (modified) (diff)
- trunk/hooks/hook-win32ui.py (modified) (diff)
- trunk/hooks/hook-codecs.py (modified) (diff)
- trunk/hooks/__init__.py (modified) (diff)
- trunk/hooks/hook-PIL.Image.py (modified) (diff)
- trunk/hooks/hook-encodings.py (modified) (diff)
- trunk/hooks/hook-anydbm.py (modified) (diff)
- trunk/hooks/hook-xml.dom.py (modified) (diff)
- trunk/hooks/hook-xml.dom.html.py (modified) (diff)
- trunk/hooks/hook-xml.dom.html.HTMLDocument.py (modified) (diff)
- trunk/hooks/hook-qt.py (modified) (diff)
- trunk/hooks/hook-_sre.py (modified) (diff)
- trunk/hooks/hook-xml.sax.saxexts.py (modified) (diff)
- trunk/hooks/hook-xml.sax.py (modified) (diff)
- trunk/hooks/hook-xml.dom.domreg.py (modified) (diff)
- trunk/hooks/hook-pyexpat.py (modified) (diff)
- trunk/hooks/hook-win32com.py (modified) (diff)
- trunk/hooks/hook-cStringIO.py (modified) (diff)
- trunk/hooks/hook-vtkpython.py (modified) (diff)
- trunk/hooks/hook-regex.py (modified) (diff)
- trunk/hooks/hook-cPickle.py (modified) (diff)
- trunk/hooks/hook-xml.dom.ext.py (modified) (diff)
- trunk/hooks/hook-iu.py (modified) (diff)
- trunk/hooks/hook-xml.dom.ext.reader.py (modified) (diff)
- trunk/hooks/hook-win32com.client.py (modified) (diff)
- trunk/hooks/hook-pythoncom.py (modified) (diff)
- trunk/hooks/hook-os.py (modified) (diff)
- trunk/hooks/hook-Image.py (modified) (diff)
- trunk/hooks/hook-carchive.py (modified) (diff)
- trunk/Build.py (modified) (diff)
- trunk/MakeCOMServer_old.py (modified) (diff)
- trunk/versionInfo.py (modified) (diff)
- trunk/mf.py (modified) (diff)
- trunk/MakeComServer.py (modified) (diff)
- trunk/ArchiveViewer.py (modified) (diff)
- trunk/e2etests/win32/NextID.py (modified) (diff)
- trunk/e2etests/win32/testMSOffice.py (modified) (diff)
- trunk/e2etests/win32/testcomext.py (modified) (diff)
- trunk/e2etests/common/maketests.py (modified) (diff)
- trunk/source/linux/makemakefile.py (modified) (diff)
- trunk/source/linux/parsesetup.py (modified) (diff)
- trunk/source/linux/bkfile.py (modified) (diff)
- trunk/source/linux/Make.py (modified) (diff)
- trunk/source/linux/main.c (modified) (diff)
- trunk/source/common/launch.h (modified) (diff)
- trunk/source/common/launch.c (modified) (diff)
- trunk/source/windows/dllmain.c (modified) (diff)
- trunk/source/windows/winmain.c (modified) (diff)
- trunk/source/windows/resource.h (modified) (diff)
- trunk/iu.py (modified) (diff)
- trunk/archive.py (modified) (diff)
- trunk/GrabVersion.py (modified) (diff)
- trunk/Configure.py (modified) (diff)
- trunk/carchive.py (modified) (diff)
- trunk/support/removeTK.py (modified) (diff)
- trunk/support/unpackTK.py (modified) (diff)
- trunk/support/_mountzlib.py (modified) (diff)
- trunk/support/rthooks/versioneddll.py (modified) (diff)
- trunk/support/rthooks/win32comgenpy.py (modified) (diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
trunk/bindepend.py
r15 r43 1 # copyright 1999 McMillan Enterprises, Inc. 2 # license: use as you please. No warranty. 1 #! /usr/bin/env python 2 # Find external dependencies of binary libraries. 3 # Copyright (C) 2005, Giovanni Bajo 4 # Based on previous work under copyright (c) 2002 McMillan Enterprises, Inc. 3 5 # 6 # This program is free software; you can redistribute it and/or 7 # modify it under the terms of the GNU General Public License 8 # as published by the Free Software Foundation; either version 2 9 # of the License, or (at your option) any later version. 10 # 11 # This program is distributed in the hope that it will be useful, 12 # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 # GNU General Public License for more details. 15 # 16 # You should have received a copy of the GNU General Public License 17 # along with this program; if not, write to the Free Software 18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 19 4 20 # use dumpbin.exe (if present) to find the binary 5 21 # dependencies of an extension module. -
trunk/Makespec.py
r35 r43 1 1 #! /usr/bin/env/python 2 # Automatically build spec files containing a description of the project 3 # Copyright (C) 2005, Giovanni Bajo 4 # Based on previous work under copyright (c) 2002 McMillan Enterprises, Inc. 5 # 6 # This program is free software; you can redistribute it and/or 7 # modify it under the terms of the GNU General Public License 8 # as published by the Free Software Foundation; either version 2 9 # of the License, or (at your option) any later version. 10 # 11 # This program is distributed in the hope that it will be useful, 12 # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 # GNU General Public License for more details. 15 # 16 # You should have received a copy of the GNU General Public License 17 # along with this program; if not, write to the Free Software 18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 2 19 3 20 import sys, os, string -
trunk/icon.py
r5 r43 1 #! /usr/bin/env python 2 # Copyright (C) 2005, Giovanni Bajo 3 # Based on previous work under copyright (c) 2002 McMillan Enterprises, Inc. 4 # 5 # This program is free software; you can redistribute it and/or 6 # modify it under the terms of the GNU General Public License 7 # as published by the Free Software Foundation; either version 2 8 # of the License, or (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 18 1 19 # This code is courtesy of Thomas Heller, who 2 20 # has kindly donated it to this project. -
trunk/buildtests/test6x.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 1 17 x = 1 … … -
trunk/buildtests/test7x.py
r2 r43 1 #nasty 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 2 17 18 #nasty 3 19 import time 4 20 time.sleep(5) -
trunk/buildtests/test1.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 1 17 print "test1 - hooks / strange pkg structures" 2 18 e1 = 'a_func from pkg2.a' -
trunk/buildtests/test2.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 1 17 print "test2 - version, icon, no zlib (should run same as test1)" 2 18 e1 = 'a_func from pkg2.a' -
trunk/buildtests/test3.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 1 17 print "test3 - test 'f' option (just show os.environ)" 2 18 import os, sys -
trunk/buildtests/test4.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 1 17 print "test4 - unbufferred" 2 18 print "type: 123456<enter>" -
trunk/buildtests/test5.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 1 17 print "test5 - W ignore" 2 18 import regex -
trunk/buildtests/test6.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 1 17 import sys, os 2 18 import test6x … … 12 28 print "test6x.x is now", test6x.x 13 29 14 -
trunk/buildtests/test7.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 1 17 import sys 2 18 import threading … … 7 23 print nm, test7x.x 8 24 9 t1 = threading.Thread(target=doit, args=('t1',)) 25 t1 = threading.Thread(target=doit, args=('t1',)) 9 25 t2 = threading.Thread(target=doit, args=('t2',)) 10 26 t1.start() -
trunk/buildtests/test8.py
r10 r43 1 1 #!/usr/bin/env python 2 # Copyright (C) 2005, Giovanni Bajo 3 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 4 # 5 # This program is free software; you can redistribute it and/or 6 # modify it under the terms of the GNU General Public License 7 # as published by the Free Software Foundation; either version 2 8 # of the License, or (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 2 18 import sys 3 19 -
trunk/buildtests/runtests.py
r8 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 1 17 import os, sys, glob, string 2 18 import shutil -
trunk/hooks/hook-pywintypes.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 1 17 2 18 def hook(mod): -
trunk/hooks/hook-DateTime.mxDateTime.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 1 17 attrs = [('__version__', '1.3.0')] … … -
trunk/hooks/hook-DateTime.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 1 17 hiddenimports = ['ISO', 'ARPA', 'ODMG', 'Locale', 'Feasts', 'Parser', 'NIST'] … … -
trunk/hooks/hook-parser.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 1 17 hiddenimports = ['copy_reg'] … … -
trunk/hooks/hook-xml.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 17 1 18 hiddenimports = ['xml.sax.xmlreader','xml.sax.expatreader'] 2 19 -
trunk/hooks/hook-win32ui.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 17 1 18 hiddenimports = ['cStringIO', 'traceback'] … … -
trunk/hooks/hook-codecs.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 1 17 hiddenimports = ['encodings'] … … -
trunk/hooks/__init__.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 17 1 18 # empty … … -
trunk/hooks/hook-PIL.Image.py
r2 r43 1 # hook-Image.py 2 # helper module for Gordon's Installer 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 3 17 4 18 hiddenimports = [] -
trunk/hooks/hook-encodings.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 # 4 # This program is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU General Public License 6 # as published by the Free Software Foundation; either version 2 7 # of the License, or (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 17 1 18 #encodings', 2 19 attrs = [('search_function',0)] … … 61 78 'cp1026', 62 79 'iso8859_8', 63 ]80 ] -
trunk/hooks/hook-anydbm.py
r2 r43 1 # Copyright (C) 2005, Giovanni Bajo 2 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc. 3 #
