Show More
@@ -1,104 +1,106 | |||||
1 | #!/usr/bin/env python |
|
1 | #!/usr/bin/env python | |
2 | # |
|
2 | # | |
3 | # This is the mercurial setup script. |
|
3 | # This is the mercurial setup script. | |
4 | # |
|
4 | # | |
5 | # './setup.py install', or |
|
5 | # './setup.py install', or | |
6 | # './setup.py --help' for more options |
|
6 | # './setup.py --help' for more options | |
7 |
|
7 | |||
8 | import sys |
|
8 | import sys | |
9 | if not hasattr(sys, 'version_info') or sys.version_info < (2, 3): |
|
9 | if not hasattr(sys, 'version_info') or sys.version_info < (2, 3): | |
10 | raise SystemExit, "Mercurial requires python 2.3 or later." |
|
10 | raise SystemExit, "Mercurial requires python 2.3 or later." | |
11 |
|
11 | |||
12 | import glob |
|
12 | import glob | |
13 | from distutils.core import setup, Extension |
|
13 | from distutils.core import setup, Extension | |
14 | from distutils.command.install_data import install_data |
|
14 | from distutils.command.install_data import install_data | |
15 |
|
15 | |||
16 | # mercurial.packagescan must be the first mercurial module imported |
|
16 | # mercurial.packagescan must be the first mercurial module imported | |
17 | import mercurial.packagescan |
|
17 | import mercurial.packagescan | |
18 | import mercurial.version |
|
18 | import mercurial.version | |
19 |
|
19 | |||
20 | # py2exe needs to be installed to work |
|
20 | # py2exe needs to be installed to work | |
21 | try: |
|
21 | try: | |
22 | import py2exe |
|
22 | import py2exe | |
23 |
|
23 | |||
24 | # Help py2exe to find win32com.shell |
|
24 | # Help py2exe to find win32com.shell | |
25 | try: |
|
25 | try: | |
26 | import modulefinder |
|
26 | import modulefinder | |
27 | import win32com |
|
27 | import win32com | |
28 | for p in win32com.__path__[1:]: # Take the path to win32comext |
|
28 | for p in win32com.__path__[1:]: # Take the path to win32comext | |
29 | modulefinder.AddPackagePath("win32com", p) |
|
29 | modulefinder.AddPackagePath("win32com", p) | |
30 | pn = "win32com.shell" |
|
30 | pn = "win32com.shell" | |
31 | __import__(pn) |
|
31 | __import__(pn) | |
32 | m = sys.modules[pn] |
|
32 | m = sys.modules[pn] | |
33 | for p in m.__path__[1:]: |
|
33 | for p in m.__path__[1:]: | |
34 | modulefinder.AddPackagePath(pn, p) |
|
34 | modulefinder.AddPackagePath(pn, p) | |
35 | except ImportError: |
|
35 | except ImportError: | |
36 | pass |
|
36 | pass | |
37 |
|
37 | |||
38 | # Due to the use of demandload py2exe is not finding the modules. |
|
38 | # Due to the use of demandload py2exe is not finding the modules. | |
39 | # packagescan.getmodules creates a list of modules included in |
|
39 | # packagescan.getmodules creates a list of modules included in | |
40 | # the mercurial package plus depdent modules. |
|
40 | # the mercurial package plus depdent modules. | |
41 | from py2exe.build_exe import py2exe as build_exe |
|
41 | from py2exe.build_exe import py2exe as build_exe | |
42 |
|
42 | |||
43 | class py2exe_for_demandload(build_exe): |
|
43 | class py2exe_for_demandload(build_exe): | |
44 | """ overwrites the py2exe command class for getting the build |
|
44 | """ overwrites the py2exe command class for getting the build | |
45 | directory and for setting the 'includes' option.""" |
|
45 | directory and for setting the 'includes' option.""" | |
46 | def initialize_options(self): |
|
46 | def initialize_options(self): | |
47 | self.build_lib = None |
|
47 | self.build_lib = None | |
48 | build_exe.initialize_options(self) |
|
48 | build_exe.initialize_options(self) | |
49 | def finalize_options(self): |
|
49 | def finalize_options(self): | |
50 | # Get the build directory, ie. where to search for modules. |
|
50 | # Get the build directory, ie. where to search for modules. | |
51 | self.set_undefined_options('build', |
|
51 | self.set_undefined_options('build', | |
52 | ('build_lib', 'build_lib')) |
|
52 | ('build_lib', 'build_lib')) | |
53 | # Sets the 'includes' option with the list of needed modules |
|
53 | # Sets the 'includes' option with the list of needed modules | |
54 | if not self.includes: |
|
54 | if not self.includes: | |
55 | self.includes = [] |
|
55 | self.includes = [] | |
56 | else: |
|
56 | else: | |
57 | self.includes = self.includes.split(',') |
|
57 | self.includes = self.includes.split(',') | |
58 | mercurial.packagescan.scan(self.build_lib,'mercurial') |
|
58 | mercurial.packagescan.scan(self.build_lib, 'mercurial') | |
59 | mercurial.packagescan.scan(self.build_lib,'mercurial.hgweb') |
|
59 | mercurial.packagescan.scan(self.build_lib, 'mercurial.hgweb') | |
60 | mercurial.packagescan.scan(self.build_lib,'hgext') |
|
60 | mercurial.packagescan.scan(self.build_lib, 'hgext') | |
61 | self.includes += mercurial.packagescan.getmodules() |
|
61 | self.includes += mercurial.packagescan.getmodules() | |
62 | build_exe.finalize_options(self) |
|
62 | build_exe.finalize_options(self) | |
63 | except ImportError: |
|
63 | except ImportError: | |
64 | py2exe_for_demandload = None |
|
64 | py2exe_for_demandload = None | |
65 |
|
65 | |||
66 |
|
66 | |||
67 | # specify version string, otherwise 'hg identify' will be used: |
|
67 | # specify version string, otherwise 'hg identify' will be used: | |
68 | version = '' |
|
68 | version = '' | |
69 |
|
69 | |||
70 | class install_package_data(install_data): |
|
70 | class install_package_data(install_data): | |
71 | def finalize_options(self): |
|
71 | def finalize_options(self): | |
72 | self.set_undefined_options('install', |
|
72 | self.set_undefined_options('install', | |
73 | ('install_lib', 'install_dir')) |
|
73 | ('install_lib', 'install_dir')) | |
74 | install_data.finalize_options(self) |
|
74 | install_data.finalize_options(self) | |
75 |
|
75 | |||
76 | mercurial.version.remember_version(version) |
|
76 | mercurial.version.remember_version(version) | |
77 | cmdclass = {'install_data': install_package_data} |
|
77 | cmdclass = {'install_data': install_package_data} | |
78 | py2exe_opts = {} |
|
78 | py2exe_opts = {} | |
79 | if py2exe_for_demandload is not None: |
|
79 | if py2exe_for_demandload is not None: | |
80 | cmdclass['py2exe'] = py2exe_for_demandload |
|
80 | cmdclass['py2exe'] = py2exe_for_demandload | |
81 | py2exe_opts['console'] = ['hg'] |
|
81 | py2exe_opts['console'] = ['hg'] | |
|
82 | ||||
82 | setup(name='mercurial', |
|
83 | setup(name='mercurial', | |
83 |
|
|
84 | version=mercurial.version.get_version(), | |
84 |
|
|
85 | author='Matt Mackall', | |
85 |
|
|
86 | author_email='mpm@selenic.com', | |
86 |
|
|
87 | url='http://selenic.com/mercurial', | |
87 |
|
|
88 | description='Scalable distributed SCM', | |
88 |
|
|
89 | license='GNU GPL', | |
89 |
|
|
90 | packages=['mercurial', 'mercurial.hgweb', 'hgext'], | |
90 |
|
|
91 | ext_modules=[Extension('mercurial.mpatch', ['mercurial/mpatch.c']), | |
91 |
|
|
92 | Extension('mercurial.bdiff', ['mercurial/bdiff.c'])], | |
92 | data_files=[('mercurial/templates', |
|
93 | data_files=[ | |
93 | ['templates/map'] + |
|
94 | ('mercurial/templates', | |
94 |
|
|
95 | ['templates/map'] + | |
95 |
|
|
96 | glob.glob('templates/map-*') + | |
96 | ('mercurial/templates/static', |
|
97 | glob.glob('templates/*.tmpl')), | |
97 |
|
|
98 | ('mercurial/templates/static', glob.glob('templates/static/*')), | |
98 | cmdclass=cmdclass, |
|
99 | ], | |
99 | scripts=['hg', 'hgmerge'], |
|
100 | cmdclass=cmdclass, | |
100 | options=dict(bdist_mpkg=dict(zipdist=True, |
|
101 | scripts=['hg', 'hgmerge'], | |
101 | license='COPYING', |
|
102 | options=dict(bdist_mpkg=dict(zipdist=True, | |
102 |
|
|
103 | license='COPYING', | |
103 |
|
|
104 | readme='contrib/macosx/Readme.html', | |
104 | **py2exe_opts) |
|
105 | welcome='contrib/macosx/Welcome.html')), | |
|
106 | **py2exe_opts) |
General Comments 0
You need to be logged in to leave comments.
Login now