Hello community,

here is the log from the commit of package skelcd-control-Kubic for 
openSUSE:Factory checked in at 2018-11-18 22:59:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/skelcd-control-Kubic (Old)
 and      /work/SRC/openSUSE:Factory/.skelcd-control-Kubic.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "skelcd-control-Kubic"

Sun Nov 18 22:59:43 2018 rev:20 rq:649011 version:20181115

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/skelcd-control-Kubic/skelcd-control-Kubic.changes    
    2018-11-01 19:06:33.662022995 +0100
+++ 
/work/SRC/openSUSE:Factory/.skelcd-control-Kubic.new/skelcd-control-Kubic.changes
   2018-11-18 23:00:31.167645898 +0100
@@ -1,0 +2,15 @@
+Wed Nov 14 15:10:11 UTC 2018 - [email protected]
+
+- Remove /cloud-init-config subvolume (bsc#1107283)
+- version 20181115
+
+-------------------------------------------------------------------
+Wed Nov 14 08:08:36 UTC 2018 - [email protected]
+
+- Use the *.opensuse.pool.ntp.org fallback when an NTP server
+  is not set in the DHCP response (bsc#1114818)
+- Use a date based versioning (the Leap schema does not make sense
+  for the Tumbleweed based Kubic)
+- version 20181114
+
+-------------------------------------------------------------------

Old:
----
  skelcd-control-Kubic-15.1.7.tar.bz2

New:
----
  skelcd-control-Kubic-20181115.tar.bz2

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

Other differences:
------------------
++++++ skelcd-control-Kubic.spec ++++++
--- /var/tmp/diff_new_pack.uH00Rr/_old  2018-11-18 23:00:33.103643730 +0100
+++ /var/tmp/diff_new_pack.uH00Rr/_new  2018-11-18 23:00:33.115643717 +0100
@@ -121,7 +121,7 @@
 
 Url:            https://github.com/yast/skelcd-control-Kubic
 AutoReqProv:    off
-Version:        15.1.7
+Version:        20181115
 Release:        0
 Summary:        The Kubic control file needed for installation
 License:        MIT

++++++ skelcd-control-Kubic-15.1.7.tar.bz2 -> 
skelcd-control-Kubic-20181115.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/skelcd-control-Kubic-15.1.7/Rakefile 
new/skelcd-control-Kubic-20181115/Rakefile
--- old/skelcd-control-Kubic-15.1.7/Rakefile    2018-10-29 08:38:03.000000000 
+0100
+++ new/skelcd-control-Kubic-20181115/Rakefile  2018-11-14 16:33:03.000000000 
+0100
@@ -4,3 +4,31 @@
   #lets ignore license check for now
   conf.skip_license_check << /.*/
 end
+
+# this package uses the date versioning in master (for openSUSE Tumbleweed),
+# replace the standard yast task implementation
+Rake::Task[:'version:bump'].clear
+namespace :version do
+  desc "Update version in the package/skelcd-control-Kubic.spec file"
+  task :bump do
+    spec_file = "package/skelcd-control-Kubic.spec"
+    spec = File.read(spec_file)
+
+    # parse the current version, it can be in <date> or <date>.<release> format
+    _, version, release = spec.match(/^\s*Version:\s*(\w+)(?:\.(\w+))?$/).to_a
+    # use the UTC time to avoid conflicts when updating from different time 
zones
+    date = Time.now.utc.strftime("%Y%m%d")
+
+    # add a release version if the package has been already updated today
+    new_version = if version == date
+      # if the release was missing it starts from 1
+      "#{date}.#{release.to_i + 1}"
+    else
+      "#{date}"
+    end
+
+    puts "Updating to #{new_version}"
+    spec.gsub!(/^\s*Version:.*$/, "Version:        #{new_version}")
+    File.write(spec_file, spec)
+  end
+end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/skelcd-control-Kubic-15.1.7/control/control.Kubic.xml 
new/skelcd-control-Kubic-20181115/control/control.Kubic.xml
--- old/skelcd-control-Kubic-15.1.7/control/control.Kubic.xml   2018-10-29 
08:38:03.000000000 +0100
+++ new/skelcd-control-Kubic-20181115/control/control.Kubic.xml 2018-11-14 
16:33:03.000000000 +0100
@@ -63,8 +63,8 @@
         <!-- FATE: #303893: Default to enabled kdump -->
         <enable_kdump config:type="boolean">true</enable_kdump>
 
-        <!-- bnc #431259 -->
-        <default_ntp_setup config:type="boolean">false</default_ntp_setup>
+        <!-- use *.opensuse.pool.ntp.org fallback when an NTP server is not 
set in the DHCP response -->
+        <default_ntp_setup config:type="boolean">true</default_ntp_setup>
 
         <!-- bnc #431158: Adjusts /etc/sysconfig/security/POLKIT_DEFAULT_PRIVS 
if set -->
         <polkit_default_privs>restrictive</polkit_default_privs>
@@ -173,9 +173,6 @@
                         <path>home</path>
                     </subvolume>
                     <subvolume>
-                        <path>cloud-init-config</path>
-                    </subvolume>
-                    <subvolume>
                         <path>opt</path>
                     </subvolume>
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/skelcd-control-Kubic-15.1.7/package/skelcd-control-Kubic.changes 
new/skelcd-control-Kubic-20181115/package/skelcd-control-Kubic.changes
--- old/skelcd-control-Kubic-15.1.7/package/skelcd-control-Kubic.changes        
2018-10-29 08:38:03.000000000 +0100
+++ new/skelcd-control-Kubic-20181115/package/skelcd-control-Kubic.changes      
2018-11-14 16:33:03.000000000 +0100
@@ -1,4 +1,19 @@
 -------------------------------------------------------------------
+Wed Nov 14 15:10:11 UTC 2018 - [email protected]
+
+- Remove /cloud-init-config subvolume (bsc#1107283)
+- version 20181115
+
+-------------------------------------------------------------------
+Wed Nov 14 08:08:36 UTC 2018 - [email protected]
+
+- Use the *.opensuse.pool.ntp.org fallback when an NTP server
+  is not set in the DHCP response (bsc#1114818)
+- Use a date based versioning (the Leap schema does not make sense
+  for the Tumbleweed based Kubic)
+- version 20181114
+
+-------------------------------------------------------------------
 Fri Oct 26 15:36:28 UTC 2018 - [email protected]
 
 - Display a new dialog when selecting the Kubeadm role
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/skelcd-control-Kubic-15.1.7/package/skelcd-control-Kubic.spec 
new/skelcd-control-Kubic-20181115/package/skelcd-control-Kubic.spec
--- old/skelcd-control-Kubic-15.1.7/package/skelcd-control-Kubic.spec   
2018-10-29 08:38:03.000000000 +0100
+++ new/skelcd-control-Kubic-20181115/package/skelcd-control-Kubic.spec 
2018-11-14 16:33:03.000000000 +0100
@@ -121,7 +121,7 @@
 
 Url:            https://github.com/yast/skelcd-control-Kubic
 AutoReqProv:    off
-Version:        15.1.7
+Version:        20181115
 Release:        0
 Summary:        The Kubic control file needed for installation
 License:        MIT


Reply via email to