diff options
author | agronholm <none@none> | 2009-10-20 01:56:50 +0300 |
---|---|---|
committer | agronholm <none@none> | 2009-10-20 01:56:50 +0300 |
commit | b2c722a3a23d81a02ec0bd58b91c26e7b9b2fedf (patch) | |
tree | 65d128ef2d0ce45838f6d72eb33cdde1d1306171 | |
parent | 7572da337f94c328f00100dc55f494c9d811f4bd (diff) | |
parent | e6e0e5add9321df50c5da9ee2f1650740024c8ed (diff) | |
download | external_python_setuptools-b2c722a3a23d81a02ec0bd58b91c26e7b9b2fedf.tar.gz external_python_setuptools-b2c722a3a23d81a02ec0bd58b91c26e7b9b2fedf.tar.bz2 external_python_setuptools-b2c722a3a23d81a02ec0bd58b91c26e7b9b2fedf.zip |
Merge with aadeea4644ffb5e0ba24865151dd9315fb961cf1
--HG--
branch : distribute
extra : rebase_source : 71d476c0c54e5cb49de8308f658983f6343bb2d3
-rwxr-xr-x | launcher.c | 25 | ||||
-rwxr-xr-x | setup.py | 36 | ||||
-rw-r--r-- | setuptools/cli-32.exe | bin | 65536 -> 0 bytes | |||
-rw-r--r-- | setuptools/cli-64.exe | bin | 74240 -> 0 bytes | |||
-rw-r--r-- | setuptools/cli.exe | bin | 0 -> 7168 bytes | |||
-rwxr-xr-x | setuptools/command/easy_install.py | 5 | ||||
-rw-r--r-- | setuptools/gui-32.exe | bin | 65536 -> 0 bytes | |||
-rw-r--r-- | setuptools/gui-64.exe | bin | 74240 -> 0 bytes | |||
-rw-r--r-- | setuptools/gui.exe | bin | 0 -> 7168 bytes |
9 files changed, 11 insertions, 55 deletions
@@ -25,9 +25,8 @@ #include <stdlib.h> #include <stdio.h> -#include <process.h> +#include <unistd.h> #include <fcntl.h> -#include "tchar.h" #include "windows.h" int fail(char *format, char *data) { @@ -82,17 +81,18 @@ char *quoted(char *data) { char *loadable_exe(char *exename) { - HINSTANCE hPython; /* DLL handle for python executable */ + /* HINSTANCE hPython; DLL handle for python executable */ char *result; - hPython = LoadLibraryEx(exename, NULL, LOAD_WITH_ALTERED_SEARCH_PATH); - if (!hPython) return NULL; + /* hPython = LoadLibraryEx(exename, NULL, LOAD_WITH_ALTERED_SEARCH_PATH); + if (!hPython) return NULL; */ /* Return the absolute filename for spawnv */ result = calloc(MAX_PATH, sizeof(char)); - if (result) GetModuleFileName(hPython, result, MAX_PATH); + strncpy(result, exename, MAX_PATH); + /*if (result) GetModuleFileName(hPython, result, MAX_PATH); - FreeLibrary(hPython); + FreeLibrary(hPython); */ return result; } @@ -237,18 +237,11 @@ int run(int argc, char **argv, int is_gui) { } /* We *do* need to wait for a CLI to finish, so use spawn */ - return _spawnv(_P_WAIT, ptr, (const char * const *)(newargs)); + return spawnv(P_WAIT, ptr, (const char * const *)(newargs)); } -/* + int WINAPI WinMain(HINSTANCE hI, HINSTANCE hP, LPSTR lpCmd, int nShow) { return run(__argc, __argv, GUI); } -*/ - -int _tmain(int argc, _TCHAR* argv[]) -{ - return run(argc, argv, GUI); -} - @@ -2,7 +2,6 @@ """Distutils setup file, used to install or test 'setuptools'""" import sys import os -import platform src_root = None if sys.version_info >= (3,): @@ -40,42 +39,8 @@ SETUP_COMMANDS = d['__all__'] VERSION = "0.6.7" from setuptools import setup, find_packages -from setuptools.command.build_py import build_py as _build_py scripts = [] -# specific command that is used to generate windows .exe files -class build_py(_build_py): - def build_package_data(self): - """Copy data files into build directory""" - lastdir = None - is_64 = platform.architecture()[0] == '64bit' - - for package, src_dir, build_dir, filenames in self.data_files: - for filename in filenames: - target = os.path.join(build_dir, filename) - self.mkpath(os.path.dirname(target)) - srcfile = os.path.join(src_dir, filename) - outf, copied = self.copy_file(srcfile, target) - - # creating cli.exe and gui.exe - if filename in ('gui-32.exe', 'cli-32.exe') and not is_64: - exe_target = os.path.join(build_dir, filename.replace('-32.exe', '.exe')) - self.copy_file(srcfile, exe_target) - - if filename in ('gui-64.exe', 'cli-64.exe') and is_64: - exe_target = os.path.join(build_dir, filename.replace('-64.exe', '.exe')) - self.copy_file(srcfile, exe_target) - - srcfile = os.path.abspath(srcfile) - - # avoid a bootstrapping issue with easy_install -U (when the - # previous version doesn't have convert_2to3_doctests) - if not hasattr(self.distribution, 'convert_2to3_doctests'): - return - - if copied and srcfile in self.distribution.convert_2to3_doctests: - self.__doctests_2to3.append(outf) - # if we are installing Distribute using "python setup.py install" # we need to get setuptools out of the way def _easy_install_marker(): @@ -182,7 +147,6 @@ dist = setup( Topic :: System :: Systems Administration Topic :: Utilities""".splitlines() if f.strip()], scripts = scripts, - cmdclass = {'build_py': build_py} ) if _being_installed(): diff --git a/setuptools/cli-32.exe b/setuptools/cli-32.exe Binary files differdeleted file mode 100644 index dd63bbfc..00000000 --- a/setuptools/cli-32.exe +++ /dev/null diff --git a/setuptools/cli-64.exe b/setuptools/cli-64.exe Binary files differdeleted file mode 100644 index cc7ced50..00000000 --- a/setuptools/cli-64.exe +++ /dev/null diff --git a/setuptools/cli.exe b/setuptools/cli.exe Binary files differnew file mode 100644 index 00000000..8906ff77 --- /dev/null +++ b/setuptools/cli.exe diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 4b03e185..195139c7 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1603,14 +1603,13 @@ def get_script_args(dist, executable=sys_executable, wininst=False): ")\n" ) % locals() if sys.platform=='win32' or wininst: - word_size = [32, 64]['amd64' in sys.version.lower()] # On Windows/wininst, add a .py extension and an .exe launcher if group=='gui_scripts': - ext, launcher = '-script.pyw', 'gui-%d.exe' % word_size + ext, launcher = '-script.pyw', 'gui.exe' old = ['.pyw'] new_header = re.sub('(?i)python.exe','pythonw.exe',header) else: - ext, launcher = '-script.py', 'cli-%d.exe' % word_size + ext, launcher = '-script.py', 'cli.exe' old = ['.py','.pyc','.pyo'] new_header = re.sub('(?i)pythonw.exe','python.exe',header) diff --git a/setuptools/gui-32.exe b/setuptools/gui-32.exe Binary files differdeleted file mode 100644 index 71838207..00000000 --- a/setuptools/gui-32.exe +++ /dev/null diff --git a/setuptools/gui-64.exe b/setuptools/gui-64.exe Binary files differdeleted file mode 100644 index 7fbfb889..00000000 --- a/setuptools/gui-64.exe +++ /dev/null diff --git a/setuptools/gui.exe b/setuptools/gui.exe Binary files differnew file mode 100644 index 00000000..474838d5 --- /dev/null +++ b/setuptools/gui.exe |