Hello community,

here is the log from the commit of package vit for openSUSE:Factory checked in 
at 2017-12-23 12:21:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/vit (Old)
 and      /work/SRC/openSUSE:Factory/.vit.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "vit"

Sat Dec 23 12:21:19 2017 rev:2 rq:559529 version:1.3~20171222.g2d6ec2c

Changes:
--------
--- /work/SRC/openSUSE:Factory/vit/vit.changes  2017-12-19 10:51:35.153340509 
+0100
+++ /work/SRC/openSUSE:Factory/.vit.new/vit.changes     2017-12-23 
12:21:41.745119681 +0100
@@ -1,0 +2,6 @@
+Sat Dec 23 05:28:22 UTC 2017 - 9@cirno.systems
+
+- Update to snapshot 1.3~20171222.g2d6ec2c
+  * Allow tag lists to be separated by commas
+
+-------------------------------------------------------------------

Old:
----
  vit-1.3~20170802.gd72d6e0.tar.xz

New:
----
  vit-1.3~20171222.g2d6ec2c.tar.xz

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

Other differences:
------------------
++++++ vit.spec ++++++
--- /var/tmp/diff_new_pack.n2wT9t/_old  2017-12-23 12:21:42.173098813 +0100
+++ /var/tmp/diff_new_pack.n2wT9t/_new  2017-12-23 12:21:42.173098813 +0100
@@ -17,12 +17,12 @@
 
 
 Name:           vit
-Version:        1.3~20170802.gd72d6e0
+Version:        1.3~20171222.g2d6ec2c
 Release:        0
 Summary:        Curses-based front end to Taskwarrior
 License:        GPL-3.0
 Group:          Productivity/Office/Organizers
-URL:            https://tasktools.org/
+Url:            https://tasktools.org/
 Source0:        %{name}-%{version}.tar.xz
 BuildRequires:  taskwarrior
 BuildRequires:  perl(Curses)

++++++ vit-1.3~20170802.gd72d6e0.tar.xz -> vit-1.3~20171222.g2d6ec2c.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vit-1.3~20170802.gd72d6e0/AUTHORS 
new/vit-1.3~20171222.g2d6ec2c/AUTHORS
--- old/vit-1.3~20170802.gd72d6e0/AUTHORS       2017-08-02 20:59:31.000000000 
+0200
+++ new/vit-1.3~20171222.g2d6ec2c/AUTHORS       2017-12-23 04:30:48.000000000 
+0100
@@ -1,4 +1,4 @@
-The development of Vit was made possible by the significant
+The development of VIT was made possible by the significant
 contributions of the following people:
 
   Scott Kostyshak    (Maintainer and Contributing Author)
@@ -6,7 +6,7 @@
   Paul Beckingham    (Advisor)
   David J Patrick    (Designer)
 
-The following submitted code, packages or analysis, and deserve special thanks:
+The following submitted code or analysis, and deserve special thanks:
 
   Bryce Harrington
   Nemo Inis
@@ -30,3 +30,4 @@
   Jean-Philippe Rutault
   Jason Woofenden
   Benedikt Morbach
+  Alick Zhao
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vit-1.3~20170802.gd72d6e0/LICENSE 
new/vit-1.3~20171222.g2d6ec2c/LICENSE
--- old/vit-1.3~20170802.gd72d6e0/LICENSE       2017-08-02 20:59:31.000000000 
+0200
+++ new/vit-1.3~20171222.g2d6ec2c/LICENSE       2017-12-23 04:30:48.000000000 
+0100
@@ -1,16 +1,16 @@
 
-Vit is free software: you can redistribute it and/or modify it under
+VIT is free software: you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation, either version 3 of the License, or (at your option)
 any later version.
 
-Vit is distributed in the hope that it will be useful, but WITHOUT
+VIT is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 for more details.
 
 You should have received a copy of the GNU General Public License along
-with Vit.  If not, see <http://www.gnu.org/licenses/>.
+with VIT.  If not, see <http://www.gnu.org/licenses/>.
 
 Copyright 2012 - 2013, Steve Rader
 Copyright 2013 - 2016, Scott Kostyshak
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vit-1.3~20170802.gd72d6e0/cmds.pl 
new/vit-1.3~20171222.g2d6ec2c/cmds.pl
--- old/vit-1.3~20170802.gd72d6e0/cmds.pl       2017-08-02 20:59:31.000000000 
+0200
+++ new/vit-1.3~20171222.g2d6ec2c/cmds.pl       2017-12-23 04:30:48.000000000 
+0100
@@ -288,11 +288,13 @@
     return;
   }
 
-  # multiple tags can be specified separated by spaces
-  # keep track of the current modifier (default:+) and use it for subsequent 
tags
+  # multiple tags can be input separated by a combination of spaces and commas
+  # note that this input format precludes inputting a comma as part of a tag
+  #
+  # keep track of current modifier (default:+) and use it for subsequent tags
   # so "+a b c" means "+a +b +c" and "+a -b c" means "+a -b -c"
   my $mod='+';
-  foreach my $t (split(/\s+/,$tags)) {
+  foreach my $t (split(/,?\s+|,/,$tags)) {
     next if $t =~ m/^\s*$/;
 
     # check if a + or - was specified
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vit-1.3~20170802.gd72d6e0/vit.1 
new/vit-1.3~20171222.g2d6ec2c/vit.1
--- old/vit-1.3~20170802.gd72d6e0/vit.1 2017-08-02 20:59:31.000000000 +0200
+++ new/vit-1.3~20171222.g2d6ec2c/vit.1 2017-12-23 04:30:48.000000000 +0100
@@ -107,7 +107,7 @@
 
 .TP
 The official code repository is
-<https://git.tasktools.org/scm/ex/vit.git>
+<https://git.tasktools.org/EX/vit.git>
 
 .TP
 You can contact the project by emailing
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vit-1.3~20170802.gd72d6e0/vitrc.5 
new/vit-1.3~20171222.g2d6ec2c/vitrc.5
--- old/vit-1.3~20170802.gd72d6e0/vitrc.5       2017-08-02 20:59:31.000000000 
+0200
+++ new/vit-1.3~20171222.g2d6ec2c/vitrc.5       2017-12-23 04:30:48.000000000 
+0100
@@ -137,7 +137,7 @@
 
 .TP
 The official code repository at
-<https://git.tasktools.org/scm/ex/vit.git>
+<https://git.tasktools.org/EX/vit.git>
 
 .TP
 You can contact the project by emailing


Reply via email to