Hello community,

here is the log from the commit of package tumbleweed-cli for openSUSE:Factory 
checked in at 2018-10-22 11:25:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tumbleweed-cli (Old)
 and      /work/SRC/openSUSE:Factory/.tumbleweed-cli.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tumbleweed-cli"

Mon Oct 22 11:25:01 2018 rev:5 rq:643271 version:0.3.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/tumbleweed-cli/tumbleweed-cli.changes    
2018-09-19 14:33:16.295307259 +0200
+++ /work/SRC/openSUSE:Factory/.tumbleweed-cli.new/tumbleweed-cli.changes       
2018-10-22 11:25:04.203052593 +0200
@@ -1,0 +2,8 @@
+Fri Oct 19 20:26:31 UTC 2018 - [email protected]
+
+- Update to version 0.3.1:
+  * Issue notice of official hosting and migration if target is available.
+  * completion.bash: include revert command for flag completion.
+  * README: include details about Tumbleweed snapshot review tool.
+
+-------------------------------------------------------------------

Old:
----
  tumbleweed-cli-0.3.0.tar.xz

New:
----
  tumbleweed-cli-0.3.1.tar.xz

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

Other differences:
------------------
++++++ tumbleweed-cli.spec ++++++
--- /var/tmp/diff_new_pack.2fhOv6/_old  2018-10-22 11:25:05.287051521 +0200
+++ /var/tmp/diff_new_pack.2fhOv6/_new  2018-10-22 11:25:05.291051516 +0200
@@ -12,12 +12,12 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:           tumbleweed-cli
-Version:        0.3.0
+Version:        0.3.1
 Release:        0
 Summary:        Command line interface for interacting with tumbleweed 
snapshots
 License:        GPL-2.0-only

++++++ _service ++++++
--- /var/tmp/diff_new_pack.2fhOv6/_old  2018-10-22 11:25:05.311051497 +0200
+++ /var/tmp/diff_new_pack.2fhOv6/_new  2018-10-22 11:25:05.311051497 +0200
@@ -1,7 +1,7 @@
 <services>
   <service name="tar_scm" mode="disabled">
     <param name="versionformat">@PARENT_TAG@</param>
-    <param name="revision">refs/tags/0.3.0</param>
+    <param name="revision">refs/tags/0.3.1</param>
     <param name="url">https://github.com/boombatower/tumbleweed-cli.git</param>
     <param name="scm">git</param>
     <param name="changesgenerate">enable</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.2fhOv6/_old  2018-10-22 11:25:05.331051478 +0200
+++ /var/tmp/diff_new_pack.2fhOv6/_new  2018-10-22 11:25:05.331051478 +0200
@@ -1,6 +1,6 @@
 <servicedata>
   <service name="tar_scm">
     <param name="url">https://github.com/boombatower/tumbleweed-cli.git</param>
-    <param 
name="changesrevision">9fc01ee664fa20bf4712e702afa872760d2433f1</param>
+    <param 
name="changesrevision">84796cf3168905ae78fad2aa080efad2ee3ff9b8</param>
   </service>
 </servicedata>

++++++ tumbleweed-cli-0.3.0.tar.xz -> tumbleweed-cli-0.3.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tumbleweed-cli-0.3.0/README.md 
new/tumbleweed-cli-0.3.1/README.md
--- old/tumbleweed-cli-0.3.0/README.md  2018-09-12 05:23:12.000000000 +0200
+++ new/tumbleweed-cli-0.3.1/README.md  2018-10-19 22:20:10.000000000 +0200
@@ -63,3 +63,7 @@
 
 The repo URLs are effectively the only part of the `libzypp` configuration that
 is being changed. This keeps the workflow changes to a minimum.
+
+## Review
+
+For information, feedback, and predictive scoring of Tumbleweed snapshots to 
aid in choosing which snapshot to pick visit 
http://review.tumbleweed.boombatower.com/ which is produced by 
[boombatower/tumbleweed-review](https://github.com/boombatower/tumbleweed-review).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tumbleweed-cli-0.3.0/tumbleweed 
new/tumbleweed-cli-0.3.1/tumbleweed
--- old/tumbleweed-cli-0.3.0/tumbleweed 2018-09-12 05:23:12.000000000 +0200
+++ new/tumbleweed-cli-0.3.1/tumbleweed 2018-10-19 22:20:10.000000000 +0200
@@ -217,6 +217,14 @@
     MIGRATED=1
     URL="$URL_POST_MIGRATE"
   fi
+
+  # Issue notice of official hosting and migration if target is available.
+  if [ $MIGRATED -eq 0 ] && \
+    curl --silent "$URL_POST_MIGRATE/list" | grep -Fx "$(tumbleweed_target)" > 
/dev/null ; then
+    echo "NOTICE: Official snapshot hosting is now available. The unofficial 
hosting is" >&2
+    echo "        deprecated and will be discontinued at a future date. 
Consider" >&2
+    echo "        migrating to the official hosting via \`tumbleweed 
migrate\`." >&2
+  fi
 }
 
 tumbleweed_migrate()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tumbleweed-cli-0.3.0/tumbleweed-completion.bash 
new/tumbleweed-cli-0.3.1/tumbleweed-completion.bash
--- old/tumbleweed-cli-0.3.0/tumbleweed-completion.bash 2018-09-12 
05:23:12.000000000 +0200
+++ new/tumbleweed-cli-0.3.1/tumbleweed-completion.bash 2018-10-19 
22:20:10.000000000 +0200
@@ -8,7 +8,8 @@
       "${COMP_WORDS[1]}" == "init" ||
       "${COMP_WORDS[1]}" == "switch" ||
       "${COMP_WORDS[1]}" == "update" ||
-      "${COMP_WORDS[1]}" == "upgrade" ) ]] ; then
+      "${COMP_WORDS[1]}" == "upgrade" ||
+      "${COMP_WORDS[1]}" == "revert" ) ]] ; then
 
     local flags=("--force" "--install")
     for word in ${COMP_WORDS[@]:2} ; do


Reply via email to