-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtuxmake.spec
More file actions
87 lines (66 loc) · 2.46 KB
/
tuxmake.spec
File metadata and controls
87 lines (66 loc) · 2.46 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
Name: tuxmake
Version: 1.40.0
Release: 0%{?dist}
Summary: Thin wrapper to build Linux kernels
License: Expat
URL: https://tuxmake.org
Source0: %{pypi_source}
BuildRequires: gcc
BuildRequires: git
BuildRequires: make
BuildRequires: perl-JSON-PP
BuildRequires: python3-devel
BuildRequires: python3-flit
BuildRequires: python3-pip
BuildRequires: python3-pytest
BuildRequires: python3-pytest-cov
BuildRequires: python3-pytest-mock
BuildRequires: wget
BuildArch: noarch
Requires: python3 >= 3.6
Requires: perl-JSON-PP
Recommends: socat
%global debug_package %{nil}
%description
TuxMake is a command line tool and Python library that provides portable and
repeatable Linux kernel builds across a variety of architectures, toolchains,
kernel configurations, and make targets.
%prep
%setup -q
%build
export FLIT_NO_NETWORK=1
make man
make bash_completion
%check
python3 -m pytest test/
%install
mkdir -p %{buildroot}/usr/share/tuxmake/
cp -r run tuxmake %{buildroot}/usr/share/tuxmake/
mkdir -p %{buildroot}/usr/bin
ln -sf ../share/tuxmake/run %{buildroot}/usr/bin/tuxmake
mkdir -p %{buildroot}%{_mandir}/man1
install -m 644 tuxmake.1 %{buildroot}%{_mandir}/man1/
mkdir -p %{buildroot}/usr/share/bash-completion/completions/
install -m 644 bash_completion/tuxmake %{buildroot}/usr/share/bash-completion/completions/
%files
/usr/share/tuxmake
%{_bindir}/tuxmake
%{_mandir}/man1/tuxmake.1*
/usr/share/bash-completion/completions/tuxmake
%doc README.md
%license LICENSE
%changelog
* Fri Apr 24 2026 Anders Roxell <anders.roxell@linaro.org> - 1.40.0-1
- Release 1.40.0. See: https://github.com/kernelci/tuxmake/releases/tag/v1.40.0
* Mon Apr 13 2026 Anders Roxell <anders.roxell@linaro.org> - 1.39.0-1
- Release 1.39.0. See: https://github.com/kernelci/tuxmake/releases/tag/v1.39.0
* Wed Apr 08 2026 Anders Roxell <anders.roxell@linaro.org> - 1.38.0-1
- Release 1.38.0. See: https://github.com/kernelci/tuxmake/releases/tag/v1.38.0
* Thu Apr 02 2026 Anders Roxell <anders.roxell@linaro.org> - 1.37.0-1
- Release 1.37.0. See: https://github.com/kernelci/tuxmake/releases/tag/v1.37.0
* Wed Feb 18 2026 Anders Roxell <anders.roxell@linaro.org> - 1.36.0-1
- Release 1.36.0. See: https://github.com/kernelci/tuxmake/releases/tag/v1.36.0
* Tue Feb 10 2026 Anders Roxell <anders.roxell@linaro.org> - 1.35.0-1
- Release 1.35.0. See: https://github.com/kernelci/tuxmake/releases/tag/v1.35.0
* Wed Dec 23 2020 Antonio Terceiro <antonio.terceiro@linaro.org> - 0.12.0-1
- Initial version of the package