/
githubmirror
/
libmodulemd
Обзор
Документация
Войти
/
githubmirror
/
libmodulemd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
modulemd/include/modulemd-2.0/modulemd-buildopts.h
201 строка
5 KB
Merlin Mathesius
Add support for new ModulemdBuildopts arches attribute
13 дек 2019, 21:03
13 дек 2019, 21:03
c54a0ff
Код
Авторство
О чём код?
/* * This file is part of libmodulemd * Copyright (C) 2018 Red Hat, Inc. * * Fedora-License-Identifier: MIT * SPDX-2.0-License-Identifier: MIT * SPDX-3.0-License-Identifier: MIT * * This program is free software. * For more information on the license, see COPYING. * For more information on free software, see <https://www.gnu.org/philosophy/free-sw.en.html>. */ #pragma once #include <glib-object.h> G_BEGIN_DECLS /** * SECTION: modulemd-buildopts * @title: Modulemd.Buildopts * @stability: stable * @short_description: Provides hints to the build-system on how to build this module. */ #define MODULEMD_TYPE_BUILDOPTS (modulemd_buildopts_get_type ()) G_DECLARE_FINAL_TYPE ( ModulemdBuildopts, modulemd_buildopts, MODULEMD, BUILDOPTS, GObject) /** * modulemd_buildopts_new: * * Returns: (transfer full): A newly-allocated #ModulemdBuildopts object. This * object must be freed with g_object_unref(). * * Since: 2.0 */ ModulemdBuildopts * modulemd_buildopts_new (void); /** * modulemd_buildopts_equals: * @self_1: A #ModulemdBuildopts object. * @self_2: A #ModulemdBuildopts object. * * Check for equality for two #ModulemdBuildopts objects. * * Returns: TRUE if both objects are equal, FALSE otherwise. * * Since: 2.2 */ gboolean modulemd_buildopts_equals (ModulemdBuildopts *self_1, ModulemdBuildopts *self_2); /** * modulemd_buildopts_copy: * @self: This #ModulemdBuildopts object. * * Create a copy of this #ModulemdBuildopts object. * * Returns: (transfer full): A newly-allocated #ModulemdBuildopts object that * is a copy of @self. * * Since: 2.0 */ ModulemdBuildopts * modulemd_buildopts_copy (ModulemdBuildopts *self); /** * modulemd_buildopts_set_rpm_macros: * @self: This #ModulemdBuildopts object. * @rpm_macros: A string containing RPM build macros in the form that they * would appear in an RPM macros file on-disk. * * Since: 2.0 */ void modulemd_buildopts_set_rpm_macros (ModulemdBuildopts *self, const gchar *rpm_macros); /** * modulemd_buildopts_get_rpm_macros: * @self: This #ModulemdBuildopts object. * * Returns: (transfer none): A string containing RPM build macros in the form * that they would appear in an RPM macros file on-disk. * * Since: 2.0 */ const gchar * modulemd_buildopts_get_rpm_macros (ModulemdBuildopts *self); /** * modulemd_buildopts_add_rpm_to_whitelist: * @self: This #ModulemdBuildopts object. * @rpm: An RPM name to add to the whitelist. * * Since: 2.0 */ void modulemd_buildopts_add_rpm_to_whitelist (ModulemdBuildopts *self, const gchar *rpm); /** * modulemd_buildopts_remove_rpm_from_whitelist: * @self: This #ModulemdBuildopts object. * @rpm: An RPM name to remove from the whitelist. * * Since: 2.0 */ void modulemd_buildopts_remove_rpm_from_whitelist (ModulemdBuildopts *self, const gchar *rpm); /** * modulemd_buildopts_clear_rpm_whitelist: * @self: This #ModulemdBuildopts object. * * Remove all RPMs from the whitelist. * * Since: 2.5 */ void modulemd_buildopts_clear_rpm_whitelist (ModulemdBuildopts *self); /** * modulemd_buildopts_get_rpm_whitelist_as_strv: (rename-to modulemd_buildopts_get_rpm_whitelist) * @self: This #ModulemdBuildopts object. * * Returns: (transfer full): An ordered #GStrv list of all RPMs in the whitelist. * * Since: 2.0 */ GStrv modulemd_buildopts_get_rpm_whitelist_as_strv (ModulemdBuildopts *self); /** * modulemd_buildopts_add_arch: * @self: This #ModulemdBuildopts object. * @arch: An architecture for which to build this module. * * Restrict the list of architectures for which to build this module. It may be * called any number of times to indicate support on additional architectures. * Use modulemd_buildopts_clear_arches() to return to "all architectures". * * Since: 2.9 */ void modulemd_buildopts_add_arch (ModulemdBuildopts *self, const gchar *arch); /** * modulemd_buildopts_remove_arch: * @self: This #ModulemdBuildopts object. * @arch: An architecture to remove from the list of architectures for which to * build this module. * * Since: 2.9 */ void modulemd_buildopts_remove_arch (ModulemdBuildopts *self, const gchar *arch); /** * modulemd_buildopts_clear_arches: * @self: This #ModulemdBuildopts object. * * Indicate that this module should be built for all architectures. * * Since: 2.9 */ void modulemd_buildopts_clear_arches (ModulemdBuildopts *self); /** * modulemd_buildopts_get_arches_as_strv: (rename-to modulemd_buildopts_get_arches) * @self: This #ModulemdBuildopts object. * * Returns: (transfer full): A #GStrv list of architectures for which this * module should be built. If empty, this module should be built for all * architectures. * * Since: 2.9 */ GStrv modulemd_buildopts_get_arches_as_strv (ModulemdBuildopts *self); G_END_DECLS