Merge "Use sphinx warning-is-error"
This commit is contained in:
commit
f1d53f2e31
2
.gitignore
vendored
2
.gitignore
vendored
@ -19,3 +19,5 @@ build
|
|||||||
AUTHORS
|
AUTHORS
|
||||||
ChangeLog
|
ChangeLog
|
||||||
bin/diskimage_builder
|
bin/diskimage_builder
|
||||||
|
*.bak
|
||||||
|
*.orig
|
||||||
|
@ -13,7 +13,6 @@ There are two ways to configure apt-sources:
|
|||||||
|
|
||||||
* ``DIB_DISTRIBUTION_MIRROR``: the mirror to use (default:
|
* ``DIB_DISTRIBUTION_MIRROR``: the mirror to use (default:
|
||||||
`<http://ftp.us.debian.org/debian>`__)
|
`<http://ftp.us.debian.org/debian>`__)
|
||||||
|
|
||||||
* ``DIB_DEBIAN_COMPONENTS``: (default: ``main``) a comma
|
* ``DIB_DEBIAN_COMPONENTS``: (default: ``main``) a comma
|
||||||
separated list of components. For Debian this can be
|
separated list of components. For Debian this can be
|
||||||
e.g. ``main,contrib,non-free``.
|
e.g. ``main,contrib,non-free``.
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
======
|
======
|
||||||
debian
|
debian
|
||||||
======
|
======
|
||||||
Create an image based on Debian. We default to unstable but DIB_RELEASE
|
|
||||||
is mapped to any series of Debian.
|
Create an image based on Debian. We default to unstable but
|
||||||
|
``DIB_RELEASE`` is mapped to any series of Debian.
|
||||||
|
|
||||||
Note that the default Debian series is `unstable`, and the default
|
Note that the default Debian series is `unstable`, and the default
|
||||||
mirrors for Debian can be problematic for `unstable`. Because apt does
|
mirrors for Debian can be problematic for `unstable`. Because apt does
|
||||||
|
7
diskimage_builder/elements/dib-run-parts/README.rst
Normal file
7
diskimage_builder/elements/dib-run-parts/README.rst
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
=============
|
||||||
|
dib-run-parts
|
||||||
|
=============
|
||||||
|
|
||||||
|
Install ``dib-run-parts`` into the chroot environment
|
||||||
|
|
||||||
|
|
9
diskimage_builder/elements/ubuntu-signed/README.rst
Normal file
9
diskimage_builder/elements/ubuntu-signed/README.rst
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
=============
|
||||||
|
ubuntu-signed
|
||||||
|
=============
|
||||||
|
|
||||||
|
The ``ubuntu-signed`` element installs ``linux-signed-image-generic``
|
||||||
|
that provides signed kernel that can be used for deploy in UEFI secure
|
||||||
|
boot mode.
|
||||||
|
|
||||||
|
.. element_deps::
|
@ -29,13 +29,14 @@ import os
|
|||||||
all_elements = _find_all_elements(get_path("elements"))
|
all_elements = _find_all_elements(get_path("elements"))
|
||||||
|
|
||||||
|
|
||||||
def append_dependency_list(lines, title, element, deps):
|
def make_dep_list(title, deps):
|
||||||
if not deps:
|
lines = []
|
||||||
return
|
|
||||||
lines.append(title)
|
lines.append(title)
|
||||||
lines.append("+" * len(title))
|
lines.append("+" * len(title))
|
||||||
for dep in deps:
|
for dep in deps:
|
||||||
lines.append("* :doc:`../%s/README`\n" % dep)
|
lines.append("* :doc:`../%s/README`" % dep)
|
||||||
|
lines.append('') # careful to end with a blank line
|
||||||
|
return lines
|
||||||
|
|
||||||
|
|
||||||
class ElementDepsDirective(Directive):
|
class ElementDepsDirective(Directive):
|
||||||
@ -56,11 +57,13 @@ class ElementDepsDirective(Directive):
|
|||||||
# This should not fail -- sphinx would be finding an element
|
# This should not fail -- sphinx would be finding an element
|
||||||
# that dib doesn't know about?
|
# that dib doesn't know about?
|
||||||
element = all_elements[element_name]
|
element = all_elements[element_name]
|
||||||
|
if element.depends:
|
||||||
append_dependency_list(lines, "Uses", element, element.depends)
|
lines.extend(make_dep_list("Uses", element.depends))
|
||||||
append_dependency_list(lines, "Used by", element, element.r_depends)
|
if element.r_depends:
|
||||||
|
lines.extend(make_dep_list("Used by", element.r_depends))
|
||||||
|
|
||||||
self.state_machine.insert_input(lines, source)
|
self.state_machine.insert_input(lines, source)
|
||||||
|
|
||||||
return []
|
return []
|
||||||
|
|
||||||
|
|
||||||
|
@ -238,7 +238,8 @@ size
|
|||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
::
|
.. code-block:: yaml
|
||||||
|
|
||||||
- partitioning:
|
- partitioning:
|
||||||
base: image0
|
base: image0
|
||||||
label: mbr
|
label: mbr
|
||||||
|
@ -19,6 +19,7 @@ classifier =
|
|||||||
all_files = 1
|
all_files = 1
|
||||||
build-dir = doc/build
|
build-dir = doc/build
|
||||||
source-dir = doc/source
|
source-dir = doc/source
|
||||||
|
warning-is-error = 1
|
||||||
|
|
||||||
[files]
|
[files]
|
||||||
packages =
|
packages =
|
||||||
@ -36,10 +37,6 @@ keywords = _ gettext ngettext l_ lazy_gettext
|
|||||||
mapping_file = babel.cfg
|
mapping_file = babel.cfg
|
||||||
output_file = diskimage_builder/locale/diskimage_builder.pot
|
output_file = diskimage_builder/locale/diskimage_builder.pot
|
||||||
|
|
||||||
[pbr]
|
|
||||||
# TODO(jaegerandi): Set to True once pbr 1.11.0 is out.
|
|
||||||
warnerrors = False
|
|
||||||
|
|
||||||
[update_catalog]
|
[update_catalog]
|
||||||
domain = diskimage_builder
|
domain = diskimage_builder
|
||||||
output_dir = diskimage_builder/locale
|
output_dir = diskimage_builder/locale
|
||||||
|
Loading…
Reference in New Issue
Block a user