1cead2
#%global commit0 bdbb4da0979fbdc079cf98410cdb31cf799e83b3
1cead2
#%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
1cead2
1cead2
Name:           nvme-cli
3d4fdc
Version:        1.6
020d52
Release:        4%{?dist}
1cead2
Summary:        NVMe management command line interface
1cead2
1cead2
License:        GPLv2+
1cead2
URL:            https://github.com/linux-nvme/nvme-cli
1cead2
#Source0:        https://github.com/linux-nvme/%{name}/archive/%{commit0}.tar.gz
1cead2
Source0:        https://github.com/linux-nvme/%{name}/archive/v%{version}.tar.gz
1cead2
020d52
Patch0:         0001-nvme-discover-Retry-discovery-log-if-the-generation-.patch
020d52
Patch1:         0002-nvme-ioctl-retrieve-log-pages-in-4k-chunks.patch
020d52
Patch2:         0003-nvme-discover-Re-check-generation-counter-after-log-.patch
020d52
Patch3:         0004-nvme-cli-report-subsystem-reset-not-supported-by-con.patch
020d52
Patch4:         0005-nvme-list-fix-nvme-list-output-if-identify-failed-on.patch
020d52
Patch5:         0006-nvme-rem-first-perror-on-subsystem-reset-failure-.patch
020d52
1cead2
BuildRequires:	libuuid-devel
3d4fdc
BuildRequires:	gcc
1cead2
1cead2
%description
1cead2
nvme-cli provides NVM-Express user space tooling for Linux.
1cead2
1cead2
%prep
1cead2
#%setup -qn %{name}-%{commit0}
1cead2
%setup
020d52
%patch0 -p1
020d52
%patch1 -p1
020d52
%patch2 -p1
020d52
%patch3 -p1
020d52
%patch4 -p1
020d52
%patch5 -p1
1cead2
1cead2
%build
3d4fdc
make PREFIX=/usr CFLAGS="%{optflags} -std=c99" LDFLAGS="%{__global_ldflags}" %{?_smp_mflags}
1cead2
1cead2
1cead2
%install
1cead2
%make_install PREFIX=/usr
1cead2
1cead2
1cead2
%files
1cead2
%license LICENSE
1cead2
%doc README.md
1cead2
%{_sbindir}/nvme
1cead2
%{_mandir}/man1/nvme*.gz
1cead2
%{_datadir}/bash_completion.d/nvme
1cead2
020d52
%clean
020d52
rm -rf $RPM_BUILD_ROOT
020d52
020d52
%post
020d52
if [ $1 = 1 ]; then # 1 : This package is being installed for the first time
020d52
	if [ ! -f /etc/nvme/hostnqn ]; then
020d52
		install -D /dev/null /etc/nvme/hostnqn
020d52
		echo $(nvme gen-hostnqn) > /etc/nvme/hostnqn
020d52
		chmod 644 /etc/nvme/hostnqn
020d52
        fi
020d52
        if [ ! -f /etc/nvme/hostid ]; then
020d52
                uuidgen > /etc/nvme/hostid
020d52
        fi
020d52
fi
020d52
020d52
%preun
020d52
if [ -d /etc/nvme ]; then
020d52
	rm -f /etc/nvme/hostnqn
020d52
	rm -f /etc/nvme/hostid
020d52
	if [ ! -n "`ls -A /etc/nvme`" ]; then
020d52
		rm -rf /etc/nvme
020d52
	fi
020d52
fi
1cead2
1cead2
%changelog
020d52
* Tue Oct 16 2018 dmilburn@redhat.com - 1.6-2
020d52
- Pull in upstream fixes
020d52
3d4fdc
* Tue Jul 24 2018 luto@kernel.org - 1.6-1
3d4fdc
- Update to 1.6
3d4fdc
3d4fdc
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-5
3d4fdc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
3d4fdc
3d4fdc
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-4
3d4fdc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
3d4fdc
1cead2
* Wed Nov 22 2017 luto@kernel.org - 1.4-1
1cead2
- Update to 1.4
1cead2
1cead2
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-3
1cead2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
1cead2
1cead2
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-2
1cead2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
1cead2
1cead2
* Mon May 22 2017 luto@kernel.org - 1.3-1
1cead2
- Update to 1.3
1cead2
1cead2
* Wed Apr 19 2017 luto@kernel.org - 1.2-2
1cead2
- Update to 1.2
1cead2
- 1.2-1 never existed
1cead2
1cead2
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-2
1cead2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
1cead2
1cead2
* Wed Feb 01 2017 luto@kernel.org - 1.1-1
1cead2
- Update to 1.1
1cead2
1cead2
* Sun Nov 20 2016 luto@kernel.org - 1.0-1
1cead2
- Update to 1.0
1cead2
1cead2
* Mon Oct 31 2016 luto@kernel.org - 0.9-1
1cead2
- Update to 0.9
1cead2
1cead2
* Thu Jun 30 2016 luto@kernel.org - 0.8-1
1cead2
- Update to 0.8
1cead2
1cead2
* Tue May 31 2016 luto@kernel.org - 0.7-1
1cead2
- Update to 0.7
1cead2
1cead2
* Fri Mar 18 2016 luto@kernel.org - 0.5-1
1cead2
- Update to 0.5
1cead2
1cead2
* Sun Mar 06 2016 luto@kernel.org - 0.4-1
1cead2
- Update to 0.4
1cead2
1cead2
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.2-3.20160112gitbdbb4da
1cead2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
1cead2
1cead2
* Wed Jan 20 2016 luto@kernel.org - 0.2-2.20160112gitbdbb4da
1cead2
- Update to new upstream commit, fixing #49.  "nvme list" now works.
1cead2
1cead2
* Wed Jan 13 2016 luto@kernel.org - 0.2-1.20160112gitde3e0f1
1cead2
- Initial import.