Hello community, here is the log from the commit of package nvmetcli for openSUSE:Factory checked in at 2017-08-12 20:27:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/nvmetcli (Old) and /work/SRC/openSUSE:Factory/.nvmetcli.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "nvmetcli" Sat Aug 12 20:27:51 2017 rev:5 rq:516104 version:0.5 Changes: -------- --- /work/SRC/openSUSE:Factory/nvmetcli/nvmetcli.changes 2017-06-20 09:39:36.466730625 +0200 +++ /work/SRC/openSUSE:Factory/.nvmetcli.new/nvmetcli.changes 2017-08-12 20:28:01.397127014 +0200 @@ -1,0 +2,11 @@ +Fri Aug 11 11:27:37 UTC 2017 - [email protected] + +- Update to version v0.5: (FATE#322737) + - 0001-nvmetcli-add-support-for-NS-UUIDs.patch + * nvmetcli: add support for NS UUIDs + * nvmetcli: allow setting of serial number number + * nvmetcli: allow setting of the subsystem version + * add a make clean pass to bump-ver.sh + * bump version to v0.5 + +------------------------------------------------------------------- Old: ---- 0001-nvmetcli-add-support-for-NS-UUIDs.patch nvmetcli-v0.4.tar.gz New: ---- nvmetcli-v0.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ nvmetcli.spec ++++++ --- /var/tmp/diff_new_pack.ZjEsiM/_old 2017-08-12 20:28:03.408845089 +0200 +++ /var/tmp/diff_new_pack.ZjEsiM/_new 2017-08-12 20:28:03.432841726 +0200 @@ -17,14 +17,13 @@ Name: nvmetcli -Version: 0.4 +Version: 0.5 Release: 1%{?dist} Summary: Command line interface for the kernel NVMe nvmet License: Apache-2.0 Group: System/Management Url: http://git.infradead.org/users/hch/nvmetcli.git Source: nvmetcli-v%{version}.tar.gz -Patch1: 0001-nvmetcli-add-support-for-NS-UUIDs.patch BuildRequires: python-devel BuildRequires: python-setuptools Requires: python-configshell-fb @@ -43,7 +42,6 @@ %prep %setup -q -n nvmetcli-v%{version} -%patch1 -p1 %build python setup.py build ++++++ _service ++++++ --- /var/tmp/diff_new_pack.ZjEsiM/_old 2017-08-12 20:28:03.528828274 +0200 +++ /var/tmp/diff_new_pack.ZjEsiM/_new 2017-08-12 20:28:03.528828274 +0200 @@ -4,8 +4,8 @@ <param name="scm">git</param> <param name="url">git://git.infradead.org/users/hch/nvmetcli.git</param> <param name="filename">nvmetcli</param> - <param name="version">v0.4</param> - <param name="revision">v0.4</param> + <param name="version">v0.5</param> + <param name="revision">v0.5</param> <param name="exclude">.git</param> <param name="changesgenerate">enable</param> </service> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.ZjEsiM/_old 2017-08-12 20:28:03.644812020 +0200 +++ /var/tmp/diff_new_pack.ZjEsiM/_new 2017-08-12 20:28:03.668808657 +0200 @@ -1,4 +1,4 @@ <servicedata> <service name="tar_scm"> <param name="url">git://git.infradead.org/users/hch/nvmetcli.git</param> - <param name="changesrevision">5078207f0294ebeec5fc6e963eefa2de7d2ce3da</param></service></servicedata> \ No newline at end of file + <param name="changesrevision">389993977d5a0bfc366c8683a05553043740dfa9</param></service></servicedata> \ No newline at end of file ++++++ nvmetcli-v0.4.tar.gz -> nvmetcli-v0.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nvmetcli-v0.4/bump-ver.sh new/nvmetcli-v0.5/bump-ver.sh --- old/nvmetcli-v0.4/bump-ver.sh 2017-04-21 08:31:31.000000000 +0200 +++ new/nvmetcli-v0.5/bump-ver.sh 2017-08-10 14:46:02.000000000 +0200 @@ -14,6 +14,7 @@ exit 1 fi +make clean sed -i "s/version =.*,/version = $VER,/" setup.py git add setup.py git commit -m "bump version to v$VER" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nvmetcli-v0.4/nvmetcli new/nvmetcli-v0.5/nvmetcli --- old/nvmetcli-v0.4/nvmetcli 2017-04-21 08:31:31.000000000 +0200 +++ new/nvmetcli-v0.5/nvmetcli 2017-08-10 14:46:02.000000000 +0200 @@ -148,6 +148,8 @@ class UISubsystemNode(UINode): ui_desc_attr = { 'allow_any_host': ('string', 'Allow access by any host if set to 1'), + 'serial': ('string', 'Export serial number to hosts'), + 'version': ('string', 'Export version number to hosts'), } def __init__(self, parent, cfnode): @@ -198,6 +200,7 @@ ui_desc_device = { 'path': ('string', 'Backing device path.'), 'nguid': ('string', 'Namspace Global Unique Identifier.'), + 'uuid': ('string', 'Namespace Universally Unique Identifier.'), } def __init__(self, parent, cfnode): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nvmetcli-v0.4/setup.py new/nvmetcli-v0.5/setup.py --- old/nvmetcli-v0.4/setup.py 2017-04-21 08:31:31.000000000 +0200 +++ new/nvmetcli-v0.5/setup.py 2017-08-10 14:46:02.000000000 +0200 @@ -20,7 +20,7 @@ setup( name = 'nvmetcli', - version = 0.4, + version = 0.5, description = 'NVMe target configuration tool', license = 'Apache 2.0', maintainer = 'Christoph Hellwig',
