Hello community,

here is the log from the commit of package ndctl for openSUSE:Factory checked 
in at 2019-03-08 13:29:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ndctl (Old)
 and      /work/SRC/openSUSE:Factory/.ndctl.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ndctl"

Fri Mar  8 13:29:46 2019 rev:21 rq:681656 version:64.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/ndctl/ndctl.changes      2019-02-08 
13:45:57.742824736 +0100
+++ /work/SRC/openSUSE:Factory/.ndctl.new.28833/ndctl.changes   2019-03-08 
13:29:48.806979001 +0100
@@ -1,0 +2,8 @@
+Tue Mar 05 09:15:45 UTC 2019 - jthumsh...@suse.de 
+
+- Update to version 64.1 (bsc#1127799):
+  * ndctl: release v64.1
+  * ndctl: fix ndctl linking with libkeyutils
+  * ndctl: Fix building in the absence of keyutils
+
+-------------------------------------------------------------------

Old:
----
  ndctl-64.tar.gz

New:
----
  ndctl-64.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ndctl.spec ++++++
--- /var/tmp/diff_new_pack.vLBCWJ/_old  2019-03-08 13:29:50.278978744 +0100
+++ /var/tmp/diff_new_pack.vLBCWJ/_new  2019-03-08 13:29:50.302978739 +0100
@@ -20,7 +20,7 @@
 %define lname libndctl6
 %define dname libndctl-devel
 Name:           ndctl
-Version:        64
+Version:        64.1
 Release:        0
 Summary:        Manage "libnvdimm" subsystem devices (Non-volatile Memory)
 License:        GPL-2.0-only
@@ -127,6 +127,7 @@
 %dir %{_sysconfdir}/ndctl/keys
 %{_sysconfdir}/ndctl/keys/keys.readme
 %config %{_sysconfdir}/ndctl/monitor.conf
+%dir %{_sysconfdir}/modprobe.d
 %config %{_sysconfdir}/modprobe.d/nvdimm-security.conf
 %{_unitdir}/ndctl-monitor.service
 %dir %{_datadir}/bash-completion/

++++++ _service ++++++
--- /var/tmp/diff_new_pack.vLBCWJ/_old  2019-03-08 13:29:50.662978676 +0100
+++ /var/tmp/diff_new_pack.vLBCWJ/_new  2019-03-08 13:29:50.686978672 +0100
@@ -3,8 +3,8 @@
     <param name="scm">git</param>
     <param name="url">https://github.com/pmem/ndctl.git</param>
     <param name="filename">ndctl</param>
-    <param name="version">64</param>
-    <param name="revision">v64</param>
+    <param name="version">64.1</param>
+    <param name="revision">v64.1</param>
     <param name="exclude">.git</param>
     <param name="changesgenerate">enable</param>
   </service>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.vLBCWJ/_old  2019-03-08 13:29:50.906978634 +0100
+++ /var/tmp/diff_new_pack.vLBCWJ/_new  2019-03-08 13:29:50.930978630 +0100
@@ -1,4 +1,4 @@
 <servicedata>
 <service name="tar_scm">
                 <param name="url">https://github.com/pmem/ndctl.git</param>
-              <param 
name="changesrevision">f407a8b346412be03db93bd5245314ae7d07a0e5</param></service></servicedata>
\ No newline at end of file
+              <param 
name="changesrevision">c1de955b90d727602fc4cbbbd1d5df84efacab63</param></service></servicedata>
\ No newline at end of file

++++++ ndctl-64.tar.gz -> ndctl-64.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ndctl-64/git-version new/ndctl-64.1/git-version
--- old/ndctl-64/git-version    2019-02-02 03:16:14.000000000 +0100
+++ new/ndctl-64.1/git-version  2019-02-06 01:45:14.000000000 +0100
@@ -19,7 +19,7 @@
        fi
 }
 
-DEF_VER=64
+DEF_VER=64.1
 
 LF='
 '
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ndctl-64/ndctl/Makefile.am 
new/ndctl-64.1/ndctl/Makefile.am
--- old/ndctl-64/ndctl/Makefile.am      2019-02-02 03:16:14.000000000 +0100
+++ new/ndctl-64.1/ndctl/Makefile.am    2019-02-06 01:45:14.000000000 +0100
@@ -47,6 +47,10 @@
        $(KMOD_LIBS) \
        $(JSON_LIBS)
 
+if ENABLE_KEYUTILS
+ndctl_LDADD += -lkeyutils
+endif
+
 if ENABLE_TEST
 ndctl_SOURCES += ../test/libndctl.c \
                 ../test/dsm-fail.c \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ndctl-64/ndctl/lib/Makefile.am 
new/ndctl-64.1/ndctl/lib/Makefile.am
--- old/ndctl-64/ndctl/lib/Makefile.am  2019-02-02 03:16:14.000000000 +0100
+++ new/ndctl-64.1/ndctl/lib/Makefile.am        2019-02-06 01:45:14.000000000 
+0100
@@ -30,10 +30,6 @@
        $(UUID_LIBS) \
        $(KMOD_LIBS)
 
-if ENABLE_KEYUTILS
-libndctl_la_LIBADD += -lkeyutils
-endif
-
 EXTRA_DIST += libndctl.sym
 
 libndctl_la_LDFLAGS = $(AM_LDFLAGS) \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ndctl-64/ndctl/ndctl.c new/ndctl-64.1/ndctl/ndctl.c
--- old/ndctl-64/ndctl/ndctl.c  2019-02-02 03:16:14.000000000 +0100
+++ new/ndctl-64.1/ndctl/ndctl.c        2019-02-06 01:45:14.000000000 +0100
@@ -93,7 +93,9 @@
        { "remove-passphrase", { cmd_remove_passphrase } },
        { "freeze-security", { cmd_freeze_security } },
        { "sanitize-dimm", { cmd_sanitize_dimm } },
+#ifdef ENABLE_KEYUTILS
        { "load-keys", { cmd_load_keys } },
+#endif
        { "wait-overwrite", { cmd_wait_overwrite } },
        { "list", { cmd_list } },
        { "monitor", { cmd_monitor } },
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ndctl-64/ndctl/util/keys.h 
new/ndctl-64.1/ndctl/util/keys.h
--- old/ndctl-64/ndctl/util/keys.h      2019-02-02 03:16:14.000000000 +0100
+++ new/ndctl-64.1/ndctl/util/keys.h    2019-02-06 01:45:14.000000000 +0100
@@ -46,7 +46,7 @@
 }
 
 static inline int ndctl_dimm_secure_erase_key(struct ndctl_dimm *dimm,
-               enum ndctl_key_type key_type);
+               enum ndctl_key_type key_type)
 {
        return -EOPNOTSUPP;
 }


Reply via email to