Changeset 43

Show
Ignore:
Timestamp:
Mon Sep 12 04:33:09 2005
Author:
giovannibajo
Message:

Switch to GPL license (with exception)

Files:

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 #