Source code for modulemd.buildopts

# -*- coding: utf-8 -*-


# Copyright (c) 2016, 2017  Red Hat, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
# Written by Petr Šabata <contyk@redhat.com>

from modulemd.buildopts.rpms import ModuleBuildoptsRPMs

supported_content = ( "rpms", )

[docs]class ModuleBuildopts(object): """Class representing component build options.""" def __init__(self): """Creates a new ModuleBuildopts instance.""" self.rpms = ModuleBuildoptsRPMs() def __repr__(self): return ("<ModuleBuildopts: " "rpms: {0}>").format( repr(self.rpms) ) def __bool__(self): return True if self.rpms else False __nonzero__ = __bool__ @property def rpms(self): """A ModuleBuildoptsRPMs instance representing the RPM specific module-wide build options. """ return self._rpms @rpms.setter def rpms(self, o): if not isinstance(o, ModuleBuildoptsRPMs): raise TypeError("buildopts.rpms: data type not supported") self._rpms = o