Hello community,

here is the log from the commit of package xprop for openSUSE:Factory checked 
in at 2019-03-12 09:49:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xprop (Old)
 and      /work/SRC/openSUSE:Factory/.xprop.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xprop"

Tue Mar 12 09:49:51 2019 rev:8 rq:683574 version:1.2.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/xprop/xprop.changes      2018-04-07 
20:49:58.437772321 +0200
+++ /work/SRC/openSUSE:Factory/.xprop.new.28833/xprop.changes   2019-03-12 
09:49:56.327579634 +0100
@@ -1,0 +2,10 @@
+Sun Mar 10 11:51:03 UTC 2019 - Stefan Dirsch <[email protected]>
+
+- Update to version 1.2.4
+  * Add missing braces around else clause in Read_Quoted()
+  * Fix -Wsign-compare warning in dsimple.c
+  * Fix typo in xprop.man
+  * Update configure.ac bug URL for gitlab migration
+  * Update README for gitlab migration
+
+-------------------------------------------------------------------

Old:
----
  xprop-1.2.3.tar.bz2

New:
----
  xprop-1.2.4.tar.bz2

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

Other differences:
------------------
++++++ xprop.spec ++++++
--- /var/tmp/diff_new_pack.hnBGhu/_old  2019-03-12 09:49:56.739579552 +0100
+++ /var/tmp/diff_new_pack.hnBGhu/_new  2019-03-12 09:49:56.739579552 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xprop
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           xprop
-Version:        1.2.3
+Version:        1.2.4
 Release:        0
 Summary:        Property displayer for X
 License:        MIT
@@ -47,7 +47,7 @@
 
 %files
 %defattr(-,root,root)
-%doc ChangeLog COPYING README
+%doc ChangeLog COPYING README.md
 %{_bindir}/xprop
 %{_mandir}/man1/xprop.1%{?ext_man}
 

++++++ xprop-1.2.3.tar.bz2 -> xprop-1.2.4.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xprop-1.2.3/ChangeLog new/xprop-1.2.4/ChangeLog
--- old/xprop-1.2.3/ChangeLog   2018-03-10 03:23:25.000000000 +0100
+++ new/xprop-1.2.4/ChangeLog   2019-03-10 05:45:03.000000000 +0100
@@ -1,3 +1,74 @@
+commit e81642bacc58388c223bc157f37c2311a7dbe070
+Author: Alan Coopersmith <[email protected]>
+Date:   Sat Mar 9 20:31:09 2019 -0800
+
+    xprop 1.2.4
+    
+    Signed-off-by: Alan Coopersmith <[email protected]>
+
+commit 0c3a8c6ae1287187b7f59a53a6f0bdaf27bf9e61
+Author: Alan Coopersmith <[email protected]>
+Date:   Sun Mar 3 14:46:22 2019 -0800
+
+    Fix -Wsign-compare warning in dsimple.c
+    
+    dsimple.c:322:13: warning: comparison between signed and unsigned integer 
expressions [-Wsign-compare]
+      for (i=0; i<nchildren; i++) {
+                 ^
+    
+    Signed-off-by: Alan Coopersmith <[email protected]>
+
+commit 1edcd36934326eafffed6056ea54e2848738ab81
+Author: pmav99 <[email protected]>
+Date:   Sat Feb 9 23:27:25 2019 +0000
+
+    Fix typo in xprop.man
+
+commit 5429792c7949ecc30ff445a1d123a6f3e28f3155
+Author: Alan Coopersmith <[email protected]>
+Date:   Wed Nov 21 17:16:58 2018 -0800
+
+    Update configure.ac bug URL for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <[email protected]>
+
+commit fa0112f9ed9f253957b467d533b2fdb351fbac93
+Author: Alan Coopersmith <[email protected]>
+Date:   Fri Nov 16 22:46:14 2018 -0800
+
+    Update README for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <[email protected]>
+
+commit 5a13b159150bea1ebda8439ed018a3975f30786b
+Author: Alan Coopersmith <[email protected]>
+Date:   Sat May 5 13:26:39 2018 -0700
+
+    Add missing braces around else clause in Read_Quoted()
+    
+    Found by gcc 7.3:
+    
+    xprop.c: In function ‘Read_Quoted’:
+    xprop.c:163:8: warning: this ‘else’ clause does not guard... 
[-Wmisleading-indentation]
+          } else
+            ^~~~
+    xprop.c:164:17: note: ...this statement, but the latter is misleadingly 
indented as if it were guarded by the ‘else’
+       ptr++[0] = c; length--;
+                     ^~~~~~
+    
+    Introduced in initial commit to X Consortium RCS in 1987:
+    
https://cgit.freedesktop.org/~alanc/xc-historical/commit/xc/programs/xprop/xprop.c?id=18ea83d7457743936e99a574b50e208f7697f096
+    
+    Actual effect is minimal - for every \-escaped newline in the DFORMAT
+    portion of a xprop formats file, xprop subtracted one byte too many
+    from the count of bytes still available in the buffer, which could lead
+    it to return an error of "Bad format file format: dformat too long." when
+    there was still room left.  Since the original buffer size was 10,000
+    bytes, and the current size is 500,000 bytes, it's unlikely anyone ever
+    hit this in real usage.
+    
+    Signed-off-by: Alan Coopersmith <[email protected]>
+
 commit ded6efa3da1ce611e4668d7766e934a239f6120c
 Author: Alan Coopersmith <[email protected]>
 Date:   Fri Mar 9 18:21:47 2018 -0800
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xprop-1.2.3/Makefile.am new/xprop-1.2.4/Makefile.am
--- old/xprop-1.2.3/Makefile.am 2018-03-10 03:23:15.000000000 +0100
+++ new/xprop-1.2.4/Makefile.am 2019-03-10 05:44:53.000000000 +0100
@@ -51,3 +51,5 @@
 lint:
        $(LINT) $(ALL_LINT_FLAGS) $(xprop_SOURCES)
 endif LINT
+
+EXTRA_DIST = README.md
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xprop-1.2.3/Makefile.in new/xprop-1.2.4/Makefile.in
--- old/xprop-1.2.3/Makefile.in 2018-03-10 03:23:19.000000000 +0100
+++ new/xprop-1.2.4/Makefile.in 2019-03-10 05:44:57.000000000 +0100
@@ -204,8 +204,8 @@
 CSCOPE = cscope
 DIST_SUBDIRS = $(SUBDIRS)
 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in COPYING \
-       ChangeLog INSTALL README compile config.guess config.sub \
-       depcomp install-sh missing
+       ChangeLog INSTALL compile config.guess config.sub depcomp \
+       install-sh missing
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 distdir = $(PACKAGE)-$(VERSION)
 top_distdir = $(distdir)
@@ -384,6 +384,7 @@
 @LINT_TRUE@ALL_LINT_FLAGS = $(LINT_FLAGS) $(DEFS) $(DEFAULT_INCLUDES) 
$(INCLUDES) \
 @LINT_TRUE@            $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS)
 
+EXTRA_DIST = README.md
 all: config.h
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xprop-1.2.3/README new/xprop-1.2.4/README
--- old/xprop-1.2.3/README      2018-03-10 03:23:15.000000000 +0100
+++ new/xprop-1.2.4/README      1970-01-01 01:00:00.000000000 +0100
@@ -1,26 +0,0 @@
-xprop is a command line tool to display and/or set window and font
-properties of an X server.
-
-All questions regarding this software should be directed at the
-Xorg mailing list:
-
-        http://lists.freedesktop.org/mailman/listinfo/xorg
-
-Please submit bug reports to the Xorg bugzilla:
-
-        https://bugs.freedesktop.org/enter_bug.cgi?product=xorg
-
-The master development code repository can be found at:
-
-        git://anongit.freedesktop.org/git/xorg/app/xprop
-
-        http://cgit.freedesktop.org/xorg/app/xprop
-
-For patch submission instructions, see:
-
-       http://www.x.org/wiki/Development/Documentation/SubmittingPatches
-
-For more information on the git code manager, see:
-
-        http://wiki.x.org/wiki/GitPage
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xprop-1.2.3/README.md new/xprop-1.2.4/README.md
--- old/xprop-1.2.3/README.md   1970-01-01 01:00:00.000000000 +0100
+++ new/xprop-1.2.4/README.md   2019-03-10 05:44:53.000000000 +0100
@@ -0,0 +1,18 @@
+xprop is a command line tool to display and/or set window and font
+properties of an X server.
+
+All questions regarding this software should be directed at the
+Xorg mailing list:
+
+  https://lists.x.org/mailman/listinfo/xorg
+
+The master development code repository can be found at:
+
+  https://gitlab.freedesktop.org/xorg/app/xprop
+
+Please submit bug reports and requests to merge patches there.
+
+For patch submission instructions, see:
+
+  https://www.x.org/wiki/Development/Documentation/SubmittingPatches
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xprop-1.2.3/configure new/xprop-1.2.4/configure
--- old/xprop-1.2.3/configure   2018-03-10 03:23:18.000000000 +0100
+++ new/xprop-1.2.4/configure   2019-03-10 05:44:56.000000000 +0100
@@ -1,8 +1,8 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for xprop 1.2.3.
+# Generated by GNU Autoconf 2.69 for xprop 1.2.4.
 #
-# Report bugs to <https://bugs.freedesktop.org/enter_bug.cgi?product=xorg>.
+# Report bugs to <https://gitlab.freedesktop.org/xorg/app/xprop/issues>.
 #
 #
 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -267,7 +267,7 @@
     $as_echo "$0: be upgraded to zsh 4.3.4 or later."
   else
     $as_echo "$0: Please tell [email protected] and
-$0: https://bugs.freedesktop.org/enter_bug.cgi?product=xorg
+$0: https://gitlab.freedesktop.org/xorg/app/xprop/issues
 $0: about your system, including any error possibly output
 $0: before this message. Then install a modern shell, or
 $0: manually run the script under such a shell if you do
@@ -581,9 +581,9 @@
 # Identity of this package.
 PACKAGE_NAME='xprop'
 PACKAGE_TARNAME='xprop'
-PACKAGE_VERSION='1.2.3'
-PACKAGE_STRING='xprop 1.2.3'
-PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=xorg'
+PACKAGE_VERSION='1.2.4'
+PACKAGE_STRING='xprop 1.2.4'
+PACKAGE_BUGREPORT='https://gitlab.freedesktop.org/xorg/app/xprop/issues'
 PACKAGE_URL=''
 
 ac_unique_file="Makefile.am"
@@ -1314,7 +1314,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures xprop 1.2.3 to adapt to many kinds of systems.
+\`configure' configures xprop 1.2.4 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1384,7 +1384,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of xprop 1.2.3:";;
+     short | recursive ) echo "Configuration of xprop 1.2.4:";;
    esac
   cat <<\_ACEOF
 
@@ -1434,7 +1434,7 @@
 Use these variables to override the choices made by `configure' or to help
 it to find libraries and programs with nonstandard names/locations.
 
-Report bugs to <https://bugs.freedesktop.org/enter_bug.cgi?product=xorg>.
+Report bugs to <https://gitlab.freedesktop.org/xorg/app/xprop/issues>.
 _ACEOF
 ac_status=$?
 fi
@@ -1497,7 +1497,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-xprop configure 1.2.3
+xprop configure 1.2.4
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1821,9 +1821,9 @@
 $as_echo "$as_me: WARNING: $2:     section \"Present But Cannot Be Compiled\"" 
>&2;}
     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the 
compiler's result" >&5
 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
-( $as_echo "## 
---------------------------------------------------------------------- ##
-## Report this to https://bugs.freedesktop.org/enter_bug.cgi?product=xorg ##
-## ---------------------------------------------------------------------- ##"
+( $as_echo "## 
------------------------------------------------------------------- ##
+## Report this to https://gitlab.freedesktop.org/xorg/app/xprop/issues ##
+## ------------------------------------------------------------------- ##"
      ) | sed "s/^/$as_me: WARNING:     /" >&2
     ;;
 esac
@@ -1845,7 +1845,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by xprop $as_me 1.2.3, which was
+It was created by xprop $as_me 1.2.4, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2713,7 +2713,7 @@
 
 # Define the identity of the package.
  PACKAGE='xprop'
- VERSION='1.2.3'
+ VERSION='1.2.4'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -11452,7 +11452,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by xprop $as_me 1.2.3, which was
+This file was extended by xprop $as_me 1.2.4, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -11512,13 +11512,13 @@
 Configuration commands:
 $config_commands
 
-Report bugs to <https://bugs.freedesktop.org/enter_bug.cgi?product=xorg>."
+Report bugs to <https://gitlab.freedesktop.org/xorg/app/xprop/issues>."
 
 _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-xprop config.status 1.2.3
+xprop config.status 1.2.4
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xprop-1.2.3/configure.ac new/xprop-1.2.4/configure.ac
--- old/xprop-1.2.3/configure.ac        2018-03-10 03:23:15.000000000 +0100
+++ new/xprop-1.2.4/configure.ac        2019-03-10 05:44:53.000000000 +0100
@@ -22,8 +22,8 @@
 
 # Initialize Autoconf
 AC_PREREQ([2.60])
-AC_INIT([xprop], [1.2.3],
-        [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [xprop])
+AC_INIT([xprop], [1.2.4],
+        [https://gitlab.freedesktop.org/xorg/app/xprop/issues], [xprop])
 AC_CONFIG_SRCDIR([Makefile.am])
 AC_CONFIG_HEADERS([config.h])
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xprop-1.2.3/dsimple.c new/xprop-1.2.4/dsimple.c
--- old/xprop-1.2.3/dsimple.c   2018-03-10 03:23:15.000000000 +0100
+++ new/xprop-1.2.4/dsimple.c   2019-03-10 05:44:53.000000000 +0100
@@ -309,7 +309,7 @@
 {
        Window *children, dummy;
        unsigned int nchildren;
-       int i;
+       unsigned int i;
        Window w=0;
        char *window_name;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xprop-1.2.3/man/xprop.man 
new/xprop-1.2.4/man/xprop.man
--- old/xprop-1.2.3/man/xprop.man       2018-03-10 03:23:15.000000000 +0100
+++ new/xprop-1.2.4/man/xprop.man       2019-03-10 05:44:53.000000000 +0100
@@ -122,7 +122,7 @@
 Examine window properties forever, looking for property change events.
 .PP
 .TP 8
-.B "-verson"
+.B "-version"
 Print program version information and exit.
 .PP
 .TP 8
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xprop-1.2.3/xprop.c new/xprop-1.2.4/xprop.c
--- old/xprop-1.2.3/xprop.c     2018-03-10 03:23:15.000000000 +0100
+++ new/xprop-1.2.4/xprop.c     2019-03-10 05:44:53.000000000 +0100
@@ -160,8 +160,9 @@
            c = Read_Char(stream);
            if (c == '\n') {
                ptr--; length++;
-           } else
+           } else {
                ptr++[0] = c; length--;
+           }
        }
     }
     ptr++[0] = '\0';


Reply via email to