2022-11-01 16:05:47 +00:00
|
|
|
# RHEL 8 compatibility
|
|
|
|
%{!?version_no_tilde: %define version_no_tilde %{shrink:%(echo '%{version}' | tr '~' '-')}}
|
|
|
|
|
2016-01-21 18:26:38 +00:00
|
|
|
Name: nvme-cli
|
2023-04-03 14:15:39 +00:00
|
|
|
Version: 2.4
|
2023-02-01 11:08:41 +00:00
|
|
|
Release: 1%{?dist}
|
2016-01-21 18:26:38 +00:00
|
|
|
Summary: NVMe management command line interface
|
|
|
|
|
2022-07-15 17:32:46 +00:00
|
|
|
License: GPLv2
|
2016-01-21 18:26:38 +00:00
|
|
|
URL: https://github.com/linux-nvme/nvme-cli
|
2022-03-04 13:37:03 +00:00
|
|
|
Source0: %{url}/archive/v%{version_no_tilde}/%{name}-%{version_no_tilde}.tar.gz
|
2016-01-21 18:26:38 +00:00
|
|
|
|
2023-02-01 11:08:41 +00:00
|
|
|
BuildRequires: meson >= 0.50.0
|
2022-03-04 13:37:03 +00:00
|
|
|
BuildRequires: gcc gcc-c++
|
2020-03-19 21:49:27 +00:00
|
|
|
BuildRequires: systemd-devel
|
2022-08-19 15:15:32 +00:00
|
|
|
BuildRequires: systemd-rpm-macros
|
2022-03-04 13:37:03 +00:00
|
|
|
BuildRequires: zlib-devel
|
|
|
|
BuildRequires: openssl-devel
|
|
|
|
|
2023-04-03 14:15:39 +00:00
|
|
|
BuildRequires: libnvme-devel >= 1.4
|
2022-11-01 16:05:47 +00:00
|
|
|
BuildRequires: json-c-devel >= 0.13
|
|
|
|
|
|
|
|
%if (0%{?rhel} == 0)
|
2022-03-04 13:37:03 +00:00
|
|
|
BuildRequires: python3-nose2
|
|
|
|
BuildRequires: python3-mypy
|
|
|
|
BuildRequires: python3-flake8
|
|
|
|
BuildRequires: python3-autopep8
|
|
|
|
BuildRequires: python3-isort
|
2022-11-01 16:05:47 +00:00
|
|
|
%endif
|
2022-03-04 13:37:03 +00:00
|
|
|
BuildRequires: asciidoc
|
|
|
|
BuildRequires: xmlto
|
|
|
|
|
2022-08-05 15:25:01 +00:00
|
|
|
Requires: util-linux
|
2017-04-19 20:57:43 +00:00
|
|
|
|
2016-01-21 18:26:38 +00:00
|
|
|
%description
|
|
|
|
nvme-cli provides NVM-Express user space tooling for Linux.
|
|
|
|
|
|
|
|
%prep
|
2022-03-04 13:37:03 +00:00
|
|
|
%autosetup -p1 -n %{name}-%{version_no_tilde}
|
2016-01-21 18:26:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
2022-03-04 13:37:03 +00:00
|
|
|
%meson -Dudevrulesdir=%{_udevrulesdir} -Dsystemddir=%{_unitdir} -Ddocs=all -Ddocs-build=true -Dhtmldir=%{_pkgdocdir}
|
|
|
|
%meson_build
|
2016-01-21 18:26:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2022-03-04 13:37:03 +00:00
|
|
|
%meson_install
|
2022-11-01 13:40:37 +00:00
|
|
|
%{__install} -pm 644 README.md %{buildroot}%{_pkgdocdir}
|
2019-10-02 21:06:24 +00:00
|
|
|
|
|
|
|
# hostid and hostnqn are supposed to be unique per machine. We obviously
|
|
|
|
# can't package them.
|
2022-07-15 17:32:46 +00:00
|
|
|
# nvme-stas ships the stas-config@.service that will take care
|
|
|
|
# of generating these files if missing. See rhbz 2065886#c19
|
2019-10-02 17:38:47 +00:00
|
|
|
rm -f %{buildroot}%{_sysconfdir}/nvme/hostid
|
|
|
|
rm -f %{buildroot}%{_sysconfdir}/nvme/hostnqn
|
2016-01-21 18:26:38 +00:00
|
|
|
|
2019-10-02 21:06:24 +00:00
|
|
|
# Do not install the dracut rule yet. See rhbz 1742764
|
|
|
|
rm -f %{buildroot}/usr/lib/dracut/dracut.conf.d/70-nvmf-autoconnect.conf
|
|
|
|
|
2022-03-04 13:37:03 +00:00
|
|
|
# Move html docs into the right place
|
|
|
|
mv %{buildroot}%{_pkgdocdir}/nvme %{buildroot}%{_pkgdocdir}/html
|
|
|
|
rm -rf %{buildroot}%{_pkgdocdir}/nvme
|
|
|
|
|
2016-01-21 18:26:38 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%license LICENSE
|
2022-03-04 13:37:03 +00:00
|
|
|
%doc %{_pkgdocdir}
|
2016-01-21 18:26:38 +00:00
|
|
|
%{_sbindir}/nvme
|
|
|
|
%{_mandir}/man1/nvme*.gz
|
2019-02-24 05:04:01 +00:00
|
|
|
%{_datadir}/bash-completion/completions/nvme
|
2019-02-24 05:11:24 +00:00
|
|
|
%{_datadir}/zsh/site-functions/_nvme
|
2019-02-24 06:35:16 +00:00
|
|
|
%dir %{_sysconfdir}/nvme
|
2019-10-02 17:38:47 +00:00
|
|
|
%{_sysconfdir}/nvme/discovery.conf
|
|
|
|
%{_unitdir}/nvmefc-boot-connections.service
|
2020-04-25 18:21:01 +00:00
|
|
|
%{_unitdir}/nvmf-autoconnect.service
|
2019-10-02 17:38:47 +00:00
|
|
|
%{_unitdir}/nvmf-connect.target
|
|
|
|
%{_unitdir}/nvmf-connect@.service
|
|
|
|
%{_udevrulesdir}/70-nvmf-autoconnect.rules
|
2020-03-19 21:46:28 +00:00
|
|
|
%{_udevrulesdir}/71-nvmf-iopolicy-netapp.rules
|
2019-10-02 21:06:24 +00:00
|
|
|
# Do not install the dracut rule yet. See rhbz 1742764
|
|
|
|
# /usr/lib/dracut/dracut.conf.d/70-nvmf-autoconnect.conf
|
2016-01-21 18:26:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2023-04-03 14:15:39 +00:00
|
|
|
* Mon Apr 03 2023 Tomas Bzatek <tbzatek@redhat.com> - 2.4-1
|
|
|
|
- Update to 2.4
|
|
|
|
|
2023-02-01 11:08:41 +00:00
|
|
|
* Wed Feb 01 2023 Tomas Bzatek <tbzatek@redhat.com> - 2.3-1
|
|
|
|
- Update to 2.3
|
|
|
|
|
2023-01-19 21:55:29 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-11-04 16:31:58 +00:00
|
|
|
* Fri Nov 04 2022 Tomas Bzatek <tbzatek@redhat.com> - 2.2.1-1
|
|
|
|
- Update to 2.2.1
|
|
|
|
|
2022-11-01 13:40:37 +00:00
|
|
|
* Tue Nov 01 2022 Tomas Bzatek <tbzatek@redhat.com> - 2.2-1
|
|
|
|
- Update to 2.2
|
|
|
|
|
2022-08-19 14:28:47 +00:00
|
|
|
* Fri Aug 19 2022 Tomas Bzatek <tbzatek@redhat.com> - 2.1.2-1
|
|
|
|
- Update to 2.1.2
|
|
|
|
|
2022-08-05 15:25:01 +00:00
|
|
|
* Fri Aug 05 2022 Tomas Bzatek <tbzatek@redhat.com> - 2.1.1-1
|
|
|
|
- Update to 2.1.1
|
|
|
|
|
2022-07-22 00:58:36 +00:00
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.1~rc0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-07-15 17:32:46 +00:00
|
|
|
* Fri Jul 15 2022 Tomas Bzatek <tbzatek@redhat.com> - 2.1~rc0-1
|
|
|
|
- Update to 2.1-rc0
|
|
|
|
- Drop the hostnqn generate scriptlet (#2065886)
|
|
|
|
|
2022-04-11 12:22:07 +00:00
|
|
|
* Mon Apr 11 2022 Tomas Bzatek <tbzatek@redhat.com> - 2.0-1
|
|
|
|
- Update to 2.0
|
|
|
|
|
2022-04-04 15:30:20 +00:00
|
|
|
* Mon Apr 04 2022 Tomas Bzatek <tbzatek@redhat.com> - 2.0~rc8-1
|
|
|
|
- Update to 2.0-rc8
|
|
|
|
- Added scriptlet to generate /etc/nvme/hostnqn and hostid files (#2065886)
|
|
|
|
|
2022-03-15 15:23:19 +00:00
|
|
|
* Tue Mar 15 2022 Tomas Bzatek <tbzatek@redhat.com> - 2.0~rc6-1
|
|
|
|
- Update to 2.0-rc6
|
|
|
|
|
2022-03-04 13:37:03 +00:00
|
|
|
* Fri Mar 04 2022 Tomas Bzatek <tbzatek@redhat.com> - 2.0~rc5-1
|
|
|
|
- Update to 2.0-rc5
|
|
|
|
|
2022-01-20 21:32:53 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-07-22 16:27:07 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-01-26 21:48:28 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-07-28 12:00:40 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-04-25 18:21:01 +00:00
|
|
|
* Sat Apr 25 2020 luto@kernel.org - 1.11.1-1
|
|
|
|
- Update to 1.11
|
|
|
|
|
2020-03-19 21:46:28 +00:00
|
|
|
* Thu Mar 19 2020 luto@kernel.org - 1.10.1-1
|
|
|
|
- Update to 1.10.1
|
|
|
|
|
2020-01-29 19:23:17 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.9-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-10-02 17:38:47 +00:00
|
|
|
* Wed Oct 02 2019 luto@kernel.org - 1.9-1
|
|
|
|
- Update to 1.9
|
2019-10-02 21:06:24 +00:00
|
|
|
- Certain fabric functionality may not work yet due to missing dracut
|
|
|
|
support and missing hostid and hostnqn configuration.
|
2019-10-02 17:38:47 +00:00
|
|
|
|
2019-07-25 22:42:57 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-04-15 17:53:52 +00:00
|
|
|
* Mon Apr 15 2019 luto@kernel.org - 1.8.1-1
|
|
|
|
- Update to 1.8.1-1.
|
|
|
|
- Remove a build hack.
|
|
|
|
|
2019-02-24 06:35:16 +00:00
|
|
|
* Sun Feb 24 2019 luto@kernel.org - 1.7-2
|
|
|
|
- Create /etc/nvme
|
|
|
|
|
2019-02-24 05:04:01 +00:00
|
|
|
* Sun Feb 24 2019 luto@kernel.org - 1.7-1
|
|
|
|
- Bump to 1.7
|
|
|
|
- Clean up some trivial rpmlint complaints
|
|
|
|
|
2019-02-01 16:40:50 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-24 02:49:33 +00:00
|
|
|
* Tue Jul 24 2018 luto@kernel.org - 1.6-1
|
|
|
|
- Update to 1.6
|
|
|
|
|
2018-07-13 14:37:05 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-02-08 08:39:19 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-11-22 02:53:37 +00:00
|
|
|
* Wed Nov 22 2017 luto@kernel.org - 1.4-1
|
|
|
|
- Update to 1.4
|
|
|
|
|
2017-08-03 04:10:53 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 01:22:29 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-05-22 19:56:06 +00:00
|
|
|
* Mon May 22 2017 luto@kernel.org - 1.3-1
|
|
|
|
- Update to 1.3
|
|
|
|
|
|
|
|
* Wed Apr 19 2017 luto@kernel.org - 1.2-2
|
2017-04-19 20:57:43 +00:00
|
|
|
- Update to 1.2
|
2017-05-22 19:56:06 +00:00
|
|
|
- 1.2-1 never existed
|
2017-04-19 20:57:43 +00:00
|
|
|
|
2017-02-11 00:24:55 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-02-01 18:08:51 +00:00
|
|
|
* Wed Feb 01 2017 luto@kernel.org - 1.1-1
|
|
|
|
- Update to 1.1
|
|
|
|
|
2016-11-20 02:09:22 +00:00
|
|
|
* Sun Nov 20 2016 luto@kernel.org - 1.0-1
|
|
|
|
- Update to 1.0
|
|
|
|
|
2016-10-31 21:47:56 +00:00
|
|
|
* Mon Oct 31 2016 luto@kernel.org - 0.9-1
|
|
|
|
- Update to 0.9
|
|
|
|
|
2016-06-30 18:12:45 +00:00
|
|
|
* Thu Jun 30 2016 luto@kernel.org - 0.8-1
|
|
|
|
- Update to 0.8
|
|
|
|
|
2016-05-31 17:06:32 +00:00
|
|
|
* Tue May 31 2016 luto@kernel.org - 0.7-1
|
|
|
|
- Update to 0.7
|
|
|
|
|
2016-03-18 01:51:59 +00:00
|
|
|
* Fri Mar 18 2016 luto@kernel.org - 0.5-1
|
|
|
|
- Update to 0.5
|
|
|
|
|
2016-03-06 16:29:49 +00:00
|
|
|
* Sun Mar 06 2016 luto@kernel.org - 0.4-1
|
|
|
|
- Update to 0.4
|
|
|
|
|
2016-02-04 11:00:57 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.2-3.20160112gitbdbb4da
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-21 18:26:38 +00:00
|
|
|
* Wed Jan 20 2016 luto@kernel.org - 0.2-2.20160112gitbdbb4da
|
|
|
|
- Update to new upstream commit, fixing #49. "nvme list" now works.
|
|
|
|
|
|
|
|
* Wed Jan 13 2016 luto@kernel.org - 0.2-1.20160112gitde3e0f1
|
|
|
|
- Initial import.
|