-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkociso.spec
45 lines (34 loc) · 886 Bytes
/
mkociso.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
%global debug_package %{nil}
Name: {{{ git_dir_name }}}
Version: {{{ git_dir_version }}}
Release: 1%{?dist}
Summary: Tool to create installer ISO for OSTree based containers.
License: GPLv2+
URL: https://github.com/ublue-os/lorax-compose
VCS: {{{ git_dir_vcs }}}
Source: {{{ git_dir_pack }}}
Requires: python3-boto3
Requires: lorax
Requires: skopeo
BuildArch: noarch
BuildRequires: poetry
BuildRequires: python3-devel
BuildRequires: pyproject-rpm-macros
BuildRequires: python3-poetry
BuildRequires: python3-boto3
%generate_buildrequires
%pyproject_buildrequires
%description
Tool to create installer ISO for OSTree based containers.
%prep
{{{ git_dir_setup_macro }}}
%build
%pyproject_wheel
%install
%pyproject_install
%pyproject_save_files %name
%files -f %pyproject_files
%{_bindir}/%name
%changelog
%autochangelog
{{{ git_dir_changelog }}}