diff options
author | julien zhang <zhang.jun3g@zte.com.cn> | 2017-09-10 14:37:28 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-09-10 14:37:28 +0000 |
commit | c35d60c9f1c4116962e56f72c95d1e6348025128 (patch) | |
tree | 66e5e529179a12c941595782ff51161ebae9e104 /tosca2heat/heat-translator/setup.py | |
parent | a9c84f32f5611880d2f566262a87fece4e76aad6 (diff) | |
parent | 41da4cef96c039b39eaaa86ba4d922885f319d81 (diff) |
Merge "Refactor heat-translator setup.py"
Diffstat (limited to 'tosca2heat/heat-translator/setup.py')
-rw-r--r-- | tosca2heat/heat-translator/setup.py | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/tosca2heat/heat-translator/setup.py b/tosca2heat/heat-translator/setup.py index 566d844..bf9aa00 100644 --- a/tosca2heat/heat-translator/setup.py +++ b/tosca2heat/heat-translator/setup.py @@ -14,8 +14,13 @@ # limitations under the License. # THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT +import os import setuptools +from distutils.command.install_data import install_data +from setuptools.command.build_py import build_py +from setuptools.command.install import install + # In python < 2.7.4, a lazy loading of package `pbr` will break # setuptools if some other modules registered functions in `atexit`. # solution from: http://bugs.python.org/issue15881#msg170215 @@ -24,6 +29,48 @@ try: except ImportError: pass + +class HeatTranslator_build_py(build_py): + """Override build_py to call customized build.""" + + def run(self): + print(" === Before nfv heat translator build === ") + # self.run_command('xxx') + super(HeatTranslator_build_py, self).run() + print(" === After nfv heat heat translator build === ") + + +class HeatTranslator_install(install): + """Override install to call customized install.""" + + def run(self): + print(" === Before nfv heat translator install === ") + # Make sure uninstall toscaparser from openstack + os.system("pip uninstall -y heat-translator") + + super(HeatTranslator_install, self).run(self) + # Custom stuff here + # distutils.command.install actually has some nice helper methods + # and interfaces. I strongly suggest reading the docstrings. + print(" === After nfv heat translator install === ") + + +class HeatTranslator_post_install(install_data): + """Override install_data to call customized install_data.""" + + def run(self): + print(" === Before nfv heat translator post install data === ") + # Call parent + super(HeatTranslator_post_install, self).run(self) + # Execute commands + print(" === After nfv heat translator post install data ===") + + setuptools.setup( setup_requires=['pbr>=2.0.0'], + cmdclass={ + "build_py": HeatTranslator_build_py, + "install_data": HeatTranslator_install, + "post_install": HeatTranslator_post_install, + }, pbr=True) |