| 
									
										
										
										
											1999-03-22 14:55:25 +00:00
										 |  |  | # created 1999/03/13, Greg Ward | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __rcsid__ = "$Id$" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-05-02 21:39:13 +00:00
										 |  |  | import sys, string | 
					
						
							| 
									
										
										
										
											1999-03-22 14:55:25 +00:00
										 |  |  | from distutils.core import Command | 
					
						
							|  |  |  | from distutils.util import copy_tree | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-18 00:13:53 +00:00
										 |  |  | class install_py (Command): | 
					
						
							| 
									
										
										
										
											1999-03-22 14:55:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-01-30 18:34:15 +00:00
										 |  |  |     description = "install pure Python modules" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-18 00:25:39 +00:00
										 |  |  |     user_options = [ | 
					
						
							|  |  |  |         ('install-dir=', 'd', "directory to install to"), | 
					
						
							|  |  |  |         ('build-dir=','b', "build directory (where to install from)"), | 
					
						
							|  |  |  |         ('compile', 'c', "compile .py to .pyc"), | 
					
						
							|  |  |  |         ('optimize', 'o', "compile .py to .pyo (optimized)"), | 
					
						
							|  |  |  |         ] | 
					
						
							| 
									
										
										
										
											1999-05-02 21:39:13 +00:00
										 |  |  |                 | 
					
						
							| 
									
										
										
										
											1999-03-22 14:55:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def set_default_options (self): | 
					
						
							|  |  |  |         # let the 'install' command dictate our installation directory | 
					
						
							| 
									
										
										
										
											1999-09-29 12:38:18 +00:00
										 |  |  |         self.install_dir = None | 
					
						
							| 
									
										
										
										
											1999-03-22 14:55:25 +00:00
										 |  |  |         self.build_dir = None | 
					
						
							| 
									
										
										
										
											1999-05-02 21:39:13 +00:00
										 |  |  |         self.compile = 1 | 
					
						
							|  |  |  |         self.optimize = 1 | 
					
						
							| 
									
										
										
										
											1999-03-22 14:55:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def set_final_options (self): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-09-13 13:58:34 +00:00
										 |  |  |         # Find out from the 'build_ext' command if we were asked to build | 
					
						
							|  |  |  |         # any extensions.  If so, that means even pure-Python modules in | 
					
						
							|  |  |  |         # this distribution have to be installed to the "platlib" | 
					
						
							|  |  |  |         # directory. | 
					
						
							|  |  |  |         extensions = self.get_peer_option ('build_ext', 'extensions') | 
					
						
							|  |  |  |         if extensions: | 
					
						
							|  |  |  |             dir_option = 'install_site_platlib' | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             dir_option = 'install_site_lib' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Get all the information we need to install pure Python modules | 
					
						
							|  |  |  |         # from the umbrella 'install' command -- build (source) directory, | 
					
						
							|  |  |  |         # install (target) directory, and whether to compile .py files. | 
					
						
							| 
									
										
										
										
											1999-03-22 14:55:25 +00:00
										 |  |  |         self.set_undefined_options ('install', | 
					
						
							|  |  |  |                                     ('build_lib', 'build_dir'), | 
					
						
							| 
									
										
										
										
											1999-09-29 12:38:18 +00:00
										 |  |  |                                     (dir_option, 'install_dir'), | 
					
						
							| 
									
										
										
										
											1999-05-02 21:39:13 +00:00
										 |  |  |                                     ('compile_py', 'compile'), | 
					
						
							|  |  |  |                                     ('optimize_py', 'optimize')) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-03-22 14:55:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def run (self): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-01-30 15:07:56 +00:00
										 |  |  |         # Make sure we have "built" all pure Python modules first | 
					
						
							|  |  |  |         self.run_peer ('build_py') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-03-22 14:55:25 +00:00
										 |  |  |         # Dump entire contents of the build directory to the installation | 
					
						
							|  |  |  |         # directory (that's the beauty of having a build directory!) | 
					
						
							| 
									
										
										
										
											1999-09-29 12:38:18 +00:00
										 |  |  |         outfiles = self.copy_tree (self.build_dir, self.install_dir) | 
					
						
							| 
									
										
										
										
											1999-03-22 14:55:25 +00:00
										 |  |  |                     | 
					
						
							| 
									
										
										
										
											1999-05-02 21:39:13 +00:00
										 |  |  |         # (Optionally) compile .py to .pyc | 
					
						
							|  |  |  |         # XXX hey! we can't control whether we optimize or not; that's up | 
					
						
							|  |  |  |         # to the invocation of the current Python interpreter (at least | 
					
						
							|  |  |  |         # according to the py_compile docs).  That sucks. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if self.compile: | 
					
						
							|  |  |  |             from py_compile import compile | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             for f in outfiles: | 
					
						
							|  |  |  |                 # XXX can't assume this filename mapping! | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-08-29 18:19:37 +00:00
										 |  |  |                 # only compile the file if it is actually a .py file | 
					
						
							|  |  |  |                 if f[-3:] == '.py': | 
					
						
							|  |  |  |                     out_fn = string.replace (f, '.py', '.pyc') | 
					
						
							|  |  |  |                      | 
					
						
							|  |  |  |                     self.make_file (f, out_fn, compile, (f,), | 
					
						
							| 
									
										
										
										
											1999-10-03 21:03:26 +00:00
										 |  |  |                                     "byte-compiling %s" % f, | 
					
						
							|  |  |  |                                     "byte-compilation of %s skipped" % f) | 
					
						
							| 
									
										
										
										
											1999-08-29 18:19:37 +00:00
										 |  |  |                      | 
					
						
							| 
									
										
										
										
											1999-05-02 21:39:13 +00:00
										 |  |  |         # XXX ignore self.optimize for now, since we don't really know if | 
					
						
							|  |  |  |         # we're compiling optimally or not, and couldn't pick what to do | 
					
						
							|  |  |  |         # even if we did know.  ;-( | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-03-22 14:55:25 +00:00
										 |  |  |     # run () | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # class InstallPy |