Compare commits
14 Commits
1.14-1mamb
...
2.14-1mamb
Author | SHA1 | Date | |
---|---|---|---|
b57a18b48d | |||
0d08f000a1 | |||
9a139dbd6d | |||
3b114bb18c | |||
60769900cb | |||
a0efc67d64 | |||
3a2228b7b1 | |||
606b9a9b34 | |||
7efb2d52d3 | |||
de0790e512 | |||
627a7bcd96 | |||
00a8cbe533 | |||
521817b594 | |||
acc1d1114a |
@ -1,40 +1,42 @@
|
||||
Name: nvme-cli
|
||||
Version: 1.14
|
||||
Version: 2.14
|
||||
Release: 1mamba
|
||||
Summary: NVM-Express user space tooling for Linux
|
||||
Group: System/Kernel and Hardware
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: https://github.com/linux-nvme/nvme-cli.git
|
||||
URL: https://github.com/linux-nvme/nvme-cli
|
||||
Source: https://github.com/linux-nvme/nvme-cli.git/v%{version}/nvme-cli-%{version}.tar.bz2
|
||||
License: GPL
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
BuildRequires: libgcc
|
||||
BuildRequires: libjson-c-devel
|
||||
BuildRequires: libsystemd-devel
|
||||
BuildRequires: libuuid-devel
|
||||
BuildRequires: libnvme-devel
|
||||
## AUTOBUILDREQ-END
|
||||
|
||||
%description
|
||||
NVM-Express user space tooling for Linux.
|
||||
|
||||
%debug_package
|
||||
# Seen in Arch Linux: this uses malloc_usable_size, which is incompatible with fortification level 3
|
||||
%define _fortify_level 2
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%make
|
||||
%meson \
|
||||
--sbindir=%{_bindir}
|
||||
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%makeinstall \
|
||||
PREFIX=%{_prefix} \
|
||||
LIBDIR=%{_libdir} \
|
||||
UDEVRULESDIR=%{_udevrulesdir} \
|
||||
DRACUTDIR=%{_prefix}/lib/dracut \
|
||||
SYSTEMDDIR=%{_systemd_util_dir}
|
||||
%meson_install
|
||||
|
||||
# Do not install the dracut rule yet. See rhbz 1742764
|
||||
rm -f %{buildroot}/usr/lib/dracut/dracut.conf.d/70-nvmf-autoconnect.conf
|
||||
|
||||
%preun
|
||||
%systemd_preun nvmf-autoconnect
|
||||
@ -55,22 +57,62 @@ NVM-Express user space tooling for Linux.
|
||||
%defattr(-,root,root)
|
||||
%dir %{_sysconfdir}/nvme
|
||||
%config(noreplace) %{_sysconfdir}/nvme/discovery.conf
|
||||
%{_sysconfdir}/nvme/hostid
|
||||
%{_sysconfdir}/nvme/hostnqn
|
||||
%{_sbindir}/nvme
|
||||
%{_prefix}/lib/dracut/dracut.conf.d/70-nvmf-autoconnect.conf
|
||||
%{_bindir}/nvme
|
||||
%{_unitdir}/nvmefc-boot-connections.service
|
||||
%{_unitdir}/nvmf-autoconnect.service
|
||||
%{_unitdir}/nvmf-connect.target
|
||||
%{_unitdir}/nvmf-connect@.service
|
||||
%{_udevrulesdir}/70-nvmf-autoconnect.rules
|
||||
%{_udevrulesdir}/71-nvmf-iopolicy-netapp.rules
|
||||
%{_unitdir}/nvmf-connect-nbft.service
|
||||
%{_udevrulesdir}/65-persistent-net-nbft.rules
|
||||
%{_udevrulesdir}/70-nvmf-*.rules
|
||||
%{_udevrulesdir}/71-nvmf-*.rules
|
||||
%{_datadir}/bash-completion/completions/nvme
|
||||
%{_datadir}/zsh/site-functions/_nvme
|
||||
%{_mandir}/man1/nvme*.1*
|
||||
%doc LICENSE
|
||||
|
||||
%changelog
|
||||
* Sun May 25 2025 Automatic Build System <autodist@openmamba.org> 2.14-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Apr 13 2025 Automatic Build System <autodist@openmamba.org> 2.13-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Mar 18 2025 Automatic Build System <autodist@openmamba.org> 2.12-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jan 13 2025 Silvan Calarco <silvan.calarco@mambasoft.it> 2.11-2mamba
|
||||
- rebuilt with fortify_level 2; don't install dracut rules file as seen in Fedora after reported boot problem
|
||||
|
||||
* Sun Nov 03 2024 Automatic Build System <autodist@openmamba.org> 2.11-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Aug 06 2024 Automatic Build System <autodist@openmamba.org> 2.10.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Aug 03 2024 Automatic Build System <autodist@openmamba.org> 2.10-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 05 2024 Automatic Build System <autodist@openmamba.org> 2.9.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Feb 15 2024 Automatic Build System <autodist@openmamba.org> 2.8-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Dec 23 2023 Automatic Build System <autodist@mambasoft.it> 2.7.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Sep 30 2023 Automatic Build System <autodist@mambasoft.it> 2.6-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Aug 21 2023 Automatic Build System <autodist@mambasoft.it> 2.5-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Nov 14 2021 Automatic Build System <autodist@mambasoft.it> 1.16-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Aug 07 2021 Automatic Build System <autodist@mambasoft.it> 1.15-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Apr 24 2021 Automatic Build System <autodist@mambasoft.it> 1.14-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
|
Reference in New Issue
Block a user