-
Notifications
You must be signed in to change notification settings - Fork 5
/
module-build.spec
55 lines (38 loc) · 1.09 KB
/
module-build.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
46
47
48
49
50
51
52
53
54
55
Name: module-build
Version: 0.2.0
Release: 1%{?dist}
Summary: Tool/library for building module streams locally
License: MIT
BuildArch: noarch
URL: https://github.com/mcurlej/module-build
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
BuildRequires: python3-devel
BuildRequires: python3-pytest
BuildRequires: python3-setuptools
BuildRequires: libmodulemd >= 2.13.0
BuildRequires: python3-gobject
BuildRequires: mock
Requires: createrepo_c
Requires: libmodulemd >= 2.13.0
Requires: mock
%description
A library and a cli tool for building module streams.
%prep
%autosetup -p1
%build
%py3_build
%install
%py3_install
%check
%pytest
%files
%doc README.md
%license LICENSE
%{python3_sitelib}/module_build/
%{python3_sitelib}/module_build-*.egg-info/
%{_bindir}/module-build
%changelog
* Tue Feb 01 2022 Martin Čurlej <[email protected]> - 0.1.0-1
- Added the ability to build stand-alone module streams ([email protected])
- Uses modular dependencies when building module streams ([email protected])
- Resuming of a failed module stream build on the component level ([email protected])