Changeset 2115
- Timestamp:
- 09/10/07 01:07:23 (1 year ago)
- Files:
-
- gaphor/trunk/setup.py (modified) (1 diff)
- gaphor/trunk/utils/command/build_uml.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphor/trunk/setup.py
r2114 r2115 8 8 """ 9 9 10 VERSION = '0.12. 2'10 VERSION = '0.12.3' 11 11 12 12 import os gaphor/trunk/utils/command/build_uml.py
r1238 r2115 7 7 """ 8 8 9 ##10 ## The Command11 ##12 13 9 import os.path 14 10 from distutils.core import Command 15 from distutils.command.build import build16 11 from distutils.util import byte_compile 17 12 from distutils.dep_util import newer … … 65 60 byte_compile([outfile]) 66 61 67 build.sub_commands.append(('build_uml', None))68 62 63 # Wrap setuptools' build_py command, so we're sure build_uml is performed 64 # before the build_py code. 65 66 from setuptools.command.build_py import build_py 67 68 def build_py_run(self, run=build_py.run): 69 for cmd_name in self.get_sub_commands(): 70 self.run_command(cmd_name) 71 72 run(self) 73 74 build_py.run = build_py_run 75 76 build_py.sub_commands.append(('build_uml', None)) 69 77 70 78 # vim:sw=4:et
