7446c32197
It has always been a weird thing that dib is a python package, but is totally driven by the disk-image-create script. It creates this strange division that is hard to explain. This moves disk-image-create to a regular python entry-point Currently, this simply exec()s the original disk-image-create script. However, we now have a (private) interface between disk-image-create written in python and the driver shell script. Here's some things we could do, for example: * Argument parsing is generally nicer in Python, and then end result is mostly just setting environment variables to flag different things in the shell script. I could see us moving the argument-parsing into diskimage_builder.disk_image_create:main() and just setting things in os.environ before the exec()). * I7092e1845942f249175933d67ab121188f3511fd sets IMAGE_ELEMENT_YAML in disk-image-create by calling-back to element-info. We can just call element_dependencies.find_all_elements() in here an export is to os.environ before disk-image-create starts. * remove need for ramdisk-image-create symlink by just exporting IS_RAMDISK based on sys.argv[1] value * you could even unit test some of this :) Change-Id: I69ca3d26fede0506a6353c077c69f735c8d84d28
59 lines
1.5 KiB
INI
59 lines
1.5 KiB
INI
[metadata]
|
|
name = diskimage-builder
|
|
summary = Golden Disk Image builder.
|
|
description-file =
|
|
README.rst
|
|
author = HP Cloud Services
|
|
author_email = openstack-dev@lists.openstack.org
|
|
license: Apache License (2.0)
|
|
home-page = https://git.openstack.org/cgit/openstack/diskimage-builder
|
|
classifier =
|
|
Development Status :: 3 - Alpha
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python :: 2.7
|
|
Environment :: Console
|
|
|
|
[build_sphinx]
|
|
all_files = 1
|
|
build-dir = doc/build
|
|
source-dir = doc/source
|
|
|
|
[files]
|
|
packages =
|
|
diskimage_builder
|
|
|
|
# ramdisk-image-create is a symlink which becomes a
|
|
# real file on install; see lp bug #1212482
|
|
scripts =
|
|
bin/dib-lint
|
|
data_files =
|
|
share/diskimage-builder/scripts = scripts/*
|
|
|
|
[extract_messages]
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
mapping_file = babel.cfg
|
|
output_file = diskimage_builder/locale/diskimage_builder.pot
|
|
|
|
[pbr]
|
|
warnerrors = True
|
|
|
|
[update_catalog]
|
|
domain = diskimage_builder
|
|
output_dir = diskimage_builder/locale
|
|
input_file = diskimage_builder/locale/diskimage_builder.pot
|
|
|
|
[compile_catalog]
|
|
directory = diskimage_builder/locale
|
|
domain = diskimage_builder
|
|
|
|
[wheel]
|
|
universal = 1
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
element-info = diskimage_builder.element_dependencies:main
|
|
dib-block-device = diskimage_builder.block_device:main
|
|
disk-image-create = diskimage_builder.disk_image_create:main
|
|
ramdisk-image-create = diskimage_builder.disk_image_create:main
|