d4b218
#%global commit0 bdbb4da0979fbdc079cf98410cdb31cf799e83b3
d4b218
#%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
d4b218
d4b218
Name:           nvme-cli
d4b218
Version:        1.8.1
d4b218
Release:        3%{?dist}
d4b218
Summary:        NVMe management command line interface
d4b218
d4b218
License:        GPLv2+
d4b218
URL:            https://github.com/linux-nvme/nvme-cli
d4b218
#Source0:        https://github.com/linux-nvme/%{name}/archive/%{commit0}.tar.gz
d4b218
Source0:        https://github.com/linux-nvme/%{name}/archive/v%{version}.tar.gz
d4b218
d4b218
Patch0:         nvme-cli-fix-typo-removing-dup-are-patch
d4b218
Patch1:         nvme-cli-regen-docs-patch
d4b218
Patch2:         nvme-ioctl-fix-double-free-in-a-loop-of-get-property-patch 
d4b218
Patch3:         nvme-ioctl-fix-wrong-ret-case-of-get-prop-patch
d4b218
d4b218
BuildRequires:	libuuid-devel
d4b218
BuildRequires:	gcc
d4b218
d4b218
%description
d4b218
nvme-cli provides NVM-Express user space tooling for Linux.
d4b218
d4b218
%prep
d4b218
#%setup -qn %{name}-%{commit0}
d4b218
%setup
d4b218
%patch0 -p1
d4b218
%patch1 -p1
d4b218
%patch2 -p1
d4b218
%patch3 -p1
d4b218
d4b218
%build
d4b218
# NB: the -I. part works around a bug fixed up stream by commit 254bcd6b2343
d4b218
# ("Fix CFLAGS parameter").  Rather than patching the fix in, I just added
d4b218
# an extra -I.  In the next release, we should be able to drop this hack.
d4b218
make PREFIX=/usr CFLAGS="%{optflags} -std=c99 -I." LDFLAGS="%{__global_ldflags}" %{?_smp_mflags}
d4b218
d4b218
d4b218
%install
d4b218
%make_install PREFIX=/usr
d4b218
mkdir -p %{buildroot}%{_sysconfdir}/nvme
d4b218
d4b218
d4b218
%files
d4b218
%license LICENSE
d4b218
%doc README.md
d4b218
%{_sbindir}/nvme
d4b218
%{_mandir}/man1/nvme*.gz
d4b218
%{_datadir}/bash-completion/completions/nvme
d4b218
%{_datadir}/zsh/site-functions/_nvme
d4b218
%dir %{_sysconfdir}/nvme
d4b218
d4b218
%clean
d4b218
rm -rf $RPM_BUILD_ROOT
d4b218
d4b218
%post
d4b218
if [ $1 = 1 ]; then # 1 : This package is being installed for the first time
d4b218
	if [ ! -f /etc/nvme/hostnqn ]; then
d4b218
		install -D /dev/null /etc/nvme/hostnqn
d4b218
		echo $(nvme gen-hostnqn) > /etc/nvme/hostnqn
d4b218
		chmod 644 /etc/nvme/hostnqn
d4b218
        fi
d4b218
        if [ ! -f /etc/nvme/hostid ]; then
d4b218
                uuidgen > /etc/nvme/hostid
d4b218
        fi
d4b218
fi
d4b218
d4b218
%preun
d4b218
if [ -d /etc/nvme ]; then
d4b218
	rm -f /etc/nvme/hostnqn
d4b218
	rm -f /etc/nvme/hostid
d4b218
	if [ ! -n "`ls -A /etc/nvme`" ]; then
d4b218
		rm -rf /etc/nvme
d4b218
	fi
d4b218
fi
d4b218
d4b218
%changelog
d4b218
* Tue May 08 2019 dmilburn@redhat.com - 1.8.1-3
d4b218
- Fix show_regs over RDMA with get_prop fix.
d4b218
d4b218
* Mon Apr 29 2019 dmilburn@redhat.com - 1.8.1-2
d4b218
- Fix show_regs with upstream ioctl fix.
d4b218
d4b218
* Mon Apr 15 2019 luto@kernel.org - 1.8.1-1
d4b218
- Update to 1.8.1-1.
d4b218
- Remove a build hack.
d4b218
d4b218
* Sun Feb 24 2019 luto@kernel.org - 1.7-2
d4b218
- Create /etc/nvme
d4b218
d4b218
* Sun Feb 24 2019 luto@kernel.org - 1.7-1
d4b218
- Bump to 1.7
d4b218
- Clean up some trivial rpmlint complaints
d4b218
d4b218
* Tue Oct 16 2018 dmilburn@redhat.com - 1.6-2
d4b218
- Pull in upstream fixes
d4b218
d4b218
* Tue Jul 24 2018 luto@kernel.org - 1.6-1
d4b218
- Update to 1.6
d4b218
d4b218
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-5
d4b218
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
d4b218
d4b218
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-4
d4b218
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
d4b218
d4b218
* Wed Nov 22 2017 luto@kernel.org - 1.4-1
d4b218
- Update to 1.4
d4b218
d4b218
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-3
d4b218
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
d4b218
d4b218
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-2
d4b218
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
d4b218
d4b218
* Mon May 22 2017 luto@kernel.org - 1.3-1
d4b218
- Update to 1.3
d4b218
d4b218
* Wed Apr 19 2017 luto@kernel.org - 1.2-2
d4b218
- Update to 1.2
d4b218
- 1.2-1 never existed
d4b218
d4b218
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-2
d4b218
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
d4b218
d4b218
* Wed Feb 01 2017 luto@kernel.org - 1.1-1
d4b218
- Update to 1.1
d4b218
d4b218
* Sun Nov 20 2016 luto@kernel.org - 1.0-1
d4b218
- Update to 1.0
d4b218
d4b218
* Mon Oct 31 2016 luto@kernel.org - 0.9-1
d4b218
- Update to 0.9
d4b218
d4b218
* Thu Jun 30 2016 luto@kernel.org - 0.8-1
d4b218
- Update to 0.8
d4b218
d4b218
* Tue May 31 2016 luto@kernel.org - 0.7-1
d4b218
- Update to 0.7
d4b218
d4b218
* Fri Mar 18 2016 luto@kernel.org - 0.5-1
d4b218
- Update to 0.5
d4b218
d4b218
* Sun Mar 06 2016 luto@kernel.org - 0.4-1
d4b218
- Update to 0.4
d4b218
d4b218
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.2-3.20160112gitbdbb4da
d4b218
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d4b218
d4b218
* Wed Jan 20 2016 luto@kernel.org - 0.2-2.20160112gitbdbb4da
d4b218
- Update to new upstream commit, fixing #49.  "nvme list" now works.
d4b218
d4b218
* Wed Jan 13 2016 luto@kernel.org - 0.2-1.20160112gitde3e0f1
d4b218
- Initial import.