Hello community, here is the log from the commit of package nvme-cli for openSUSE:Factory checked in at 2016-06-07 23:46:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/nvme-cli (Old) and /work/SRC/openSUSE:Factory/.nvme-cli.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "nvme-cli" Changes: -------- --- /work/SRC/openSUSE:Factory/nvme-cli/nvme-cli.changes 2016-04-28 16:56:55.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.nvme-cli.new/nvme-cli.changes 2016-06-07 23:46:58.000000000 +0200 @@ -1,0 +2,13 @@ +Wed Jun 1 10:21:39 UTC 2016 - [email protected] + +- Update to upstream release v0.7 + + 0001-bash-completion-Remove-shebang-line.patch + Keith writes: + Just a few minor updates and documentation fixes. There is also a new + option for passthrough commands that can be used to help detect data + over/under run. + + Tagging a stable release so we can consider features that bring in other + transports and third party extensions. + +------------------------------------------------------------------- Old: ---- v0.5.tar.gz New: ---- 0001-bash-completion-Remove-shebang-line.patch _service v0.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ nvme-cli.spec ++++++ --- /var/tmp/diff_new_pack.zGC3Gk/_old 2016-06-07 23:46:59.000000000 +0200 +++ /var/tmp/diff_new_pack.zGC3Gk/_new 2016-06-07 23:46:59.000000000 +0200 @@ -17,7 +17,7 @@ Name: nvme-cli -Version: 0.5 +Version: 0.7 Release: 0 Summary: Core nvme tools License: GPL-2.0 @@ -27,6 +27,7 @@ BuildRequires: pkgconfig(libudev) BuildRoot: %{_tmppath}/%{name}-%{version}-build ExcludeArch: s390x +Patch0: 0001-bash-completion-Remove-shebang-line.patch %description NVMe is a fast, scalable, direct attached storage interface. The nvme @@ -34,6 +35,7 @@ %prep %setup -q +%patch0 -p1 %build echo %{version} > version ++++++ 0001-bash-completion-Remove-shebang-line.patch ++++++ >From 4bd132a2581ab3146b14b736a52359d2e72cca3f Mon Sep 17 00:00:00 2001 From: Johannes Thumshirn <[email protected]> Date: Wed, 1 Jun 2016 12:12:59 +0200 Subject: [PATCH] bash completion: Remove shebang line Remove shebang line from bash completion file as rpmlint on openSUSE/SLE complains about a script ment to be sourced not executed containing a shebang line. [ 38s] nvme-cli.x86_64: W: sourced-script-with-shebang /etc/bash_completion.d/nvme /usr/bin/env [ 38s] This text file contains a shebang, but is meant to be sourced, not executed. Signed-off-by: Johannes Thumshirn <[email protected]> --- completions/bash-nvme-completion.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/completions/bash-nvme-completion.sh b/completions/bash-nvme-completion.sh index 1a8613e..6770f34 100644 --- a/completions/bash-nvme-completion.sh +++ b/completions/bash-nvme-completion.sh @@ -1,5 +1,3 @@ -#!/usr/bin/env bash - # bash tab completion for the nvme command line utility # (unfortunately, bash won't let me add descriptions to cmds) # Kelly Kaoudis kelly.n.kaoudis at intel.com, Aug. 2015 -- 2.8.2 ++++++ _service ++++++ <services> <service name="tar_scm" mode="disabled"> <param name="scm">git</param> <param name="url">https://github.com/linux-nvme/nvme-cli.git</param> <param name="subdir"></param> <param name="filename"></param> <param name="version">v0.7</param> <param name="revision">v0.7</param> </service> <!-- <service name="recompress" mode="disabled"> <param name="file">*nvme-cli*.tar</param> <param name="compression">gz</param> </service> --> </services> ++++++ v0.5.tar.gz -> v0.7.tar.gz ++++++ ++++ 2980 lines of diff (skipped)
