Compare commits
10 Commits
6eaa7037cb
...
9620ea6821
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9620ea6821 | ||
|
|
55cf72e2d8 | ||
|
|
629d4e93ce | ||
|
|
266df6d4c8 | ||
|
|
21697e5821 | ||
|
|
3f93b14b26 | ||
|
|
6677304640 | ||
|
|
0e6064b092 | ||
|
|
8cd0b2779b | ||
|
|
e9062b2867 |
BIN
boom-0.9.tar.gz
BIN
boom-0.9.tar.gz
Binary file not shown.
BIN
boom-1.3.tar.gz
Normal file
BIN
boom-1.3.tar.gz
Normal file
Binary file not shown.
@ -1,33 +1,25 @@
|
||||
Name: boom-boot
|
||||
Version: 0.9
|
||||
Release: 5
|
||||
Version: 1.3
|
||||
Release: 3
|
||||
Summary: libraries and files for helping boot loger entries
|
||||
License: GPLv2
|
||||
License: GPL-2.0-only
|
||||
URL: https://github.com/bmr-cymru/boom
|
||||
Source0: https://github.com/bmr-cymru/boom/archive/%{version}/boom-%{version}.tar.gz
|
||||
Source0: https://github.com/snapshotmanager/boom/archive/%{version}/boom-%{version}.tar.gz
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: python2-setuptools python3-setuptools python2-devel python3-devel python2-sphinx python3-sphinx
|
||||
BuildRequires: python3-setuptools python3-devel python3-sphinx
|
||||
|
||||
Patch9000: fix-compile-error-about-sphinx-build.patch
|
||||
|
||||
Requires: python3-boom %{name}-conf
|
||||
|
||||
%package -n python2-boom
|
||||
Summary: libraries and files for helping boot loger entries
|
||||
%{?python_provide:%python_provide python2-boom}
|
||||
Requires: python2
|
||||
Recommends: lvm2 %{name}-conf
|
||||
|
||||
%package -n python3-boom
|
||||
Summary: libraries and files for helping boot loger entries
|
||||
%{?python_provide:%python_provide python3-boom}
|
||||
Requires: python3
|
||||
Recommends: lvm2 %{name}-conf
|
||||
|
||||
# The python3-boom and no boom only here to tell boom package in fedora and
|
||||
# boom package in copr apart
|
||||
Conflicts: boom
|
||||
|
||||
%package conf
|
||||
@ -44,16 +36,6 @@ Boom requires a BLS-compatible boot loader to run:
|
||||
systemd-boot project or Grub2 with BLS patch (Red Hat Grub2 build
|
||||
(This support is included in both Red Hat Enterprise Linux 7 and Fedora).
|
||||
|
||||
%description -n python2-boom
|
||||
In Linux systems, there is a boot manager that support BootLoader Specification
|
||||
for boot entry configuration, that is Boom.
|
||||
|
||||
Boom requires a BLS-compatible boot loader to run:
|
||||
systemd-boot project or Grub2 with BLS patch (Red Hat Grub2 build
|
||||
(This support is included in both Red Hat Enterprise Linux 7 and Fedora).
|
||||
|
||||
This package contains python2 boom module
|
||||
|
||||
%description -n python3-boom
|
||||
In Linux systems, there is a boot manager that support BootLoader Specification
|
||||
for boot entry configuration, that is Boom.
|
||||
@ -99,11 +81,9 @@ rm doc/_build/html/.buildinfo
|
||||
mv doc/_build/html doc/html
|
||||
rm -r doc/_build
|
||||
|
||||
%py2_build
|
||||
%py3_build
|
||||
|
||||
%install
|
||||
%py2_install
|
||||
%py3_install
|
||||
|
||||
# Install Grub2 integration scripts
|
||||
@ -115,8 +95,11 @@ install -m 644 etc/default/boom ${RPM_BUILD_ROOT}/etc/default
|
||||
# Make configuration directories
|
||||
# mode 0700 - in line with /boot/grub2 directory:
|
||||
install -d -m 700 ${RPM_BUILD_ROOT}/boot/boom/profiles
|
||||
install -d -m 700 ${RPM_BUILD_ROOT}/boot/boom/hosts
|
||||
install -d -m 700 ${RPM_BUILD_ROOT}/boot/loader/entries
|
||||
install -d -m 700 ${RPM_BUILD_ROOT}/boot/boom/cache
|
||||
install -m 644 examples/boom.conf ${RPM_BUILD_ROOT}/boot/boom
|
||||
install -m 644 examples/profiles/*.profile ${RPM_BUILD_ROOT}/boot/boom/profiles
|
||||
|
||||
mkdir -p ${RPM_BUILD_ROOT}/%{_mandir}/man8
|
||||
mkdir -p ${RPM_BUILD_ROOT}/%{_mandir}/man5
|
||||
@ -135,10 +118,6 @@ rm doc/Makefile doc/conf.py
|
||||
%{_bindir}/boom
|
||||
%doc %{_mandir}/man*/boom.*
|
||||
|
||||
%files -n python2-boom
|
||||
%license COPYING
|
||||
%{python2_sitelib}/*
|
||||
|
||||
%files -n python3-boom
|
||||
%license COPYING
|
||||
%{python3_sitelib}/*
|
||||
@ -147,6 +126,9 @@ rm doc/Makefile doc/conf.py
|
||||
%license COPYING
|
||||
%dir /boot/boom
|
||||
%config(noreplace) /boot/boom/boom.conf
|
||||
%config(noreplace) /boot/boom/profiles/*
|
||||
%dir /boot/boom/hosts
|
||||
%dir /boot/boom/cache
|
||||
%dir /boot/boom/profiles
|
||||
%dir /boot/loader/entries
|
||||
|
||||
@ -163,5 +145,20 @@ rm doc/Makefile doc/conf.py
|
||||
%doc README.md
|
||||
|
||||
%changelog
|
||||
* Wed Dec 6 2023 liyanan <liyanan61@h-partners.com> - 1.3-3
|
||||
- Add cache and hosts directories
|
||||
|
||||
* Tue Nov 22 2022 Ge Wang <wangge20@h-partners.com> - 1.3-2
|
||||
- Bring source file into correspondence with described in spec file
|
||||
|
||||
* Wed Jun 15 2022 SimpleUpdate Robot <tc@openeuler.org> - 1.3-1
|
||||
- Upgrade to version 1.3
|
||||
|
||||
* Thu Dec 17 2020 xinghe <xinghe1@huawei.com> - 0.9-7
|
||||
- remove useless comments
|
||||
|
||||
* Sat Aug 8 2020 shixuantong <shixuantong@huawei.com> - 0.9-6
|
||||
- remove python2 support
|
||||
|
||||
* Wed Feb 12 2020 openEuler Buildteam <buildteam@openeuler.org> - 0.9-5
|
||||
- Package init
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user