Hello community,

here is the log from the commit of package mozo for openSUSE:Factory checked in 
at 2015-11-11 10:30:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mozo (Old)
 and      /work/SRC/openSUSE:Factory/.mozo.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "mozo"

Changes:
--------
--- /work/SRC/openSUSE:Factory/mozo/mozo.changes        2015-07-24 
09:59:05.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.mozo.new/mozo.changes   2015-11-11 
10:35:12.000000000 +0100
@@ -1,0 +2,8 @@
+Thu Nov  5 20:43:01 UTC 2015 - [email protected]
+
+- Update to 1.12.0:
+  * Enable startup notification.
+  * Add silent rules.
+  * Some bugfixes.
+
+-------------------------------------------------------------------

Old:
----
  mozo-1.10.1.tar.xz

New:
----
  mozo-1.12.0.tar.xz

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

Other differences:
------------------
++++++ mozo.spec ++++++
--- /var/tmp/diff_new_pack.lUgx2X/_old  2015-11-11 10:35:13.000000000 +0100
+++ /var/tmp/diff_new_pack.lUgx2X/_new  2015-11-11 10:35:13.000000000 +0100
@@ -16,9 +16,9 @@
 #
 
 
-%define _version 1.10
+%define _version 1.12
 Name:           mozo
-Version:        1.10.1
+Version:        1.12.0
 Release:        0
 Summary:        MATE Desktop menu editor
 License:        LGPL-2.1+
@@ -27,11 +27,11 @@
 Source0:        
http://pub.mate-desktop.org/releases/%{_version}/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
-BuildRequires:  mate-common
+BuildRequires:  mate-common >= %{_version}
 BuildRequires:  update-desktop-files
-BuildRequires:  pkgconfig(libmate-menu) >= 1.9.0
+BuildRequires:  pkgconfig(libmate-menu) >= %{_version}
 BuildRequires:  pkgconfig(pygobject-2.0)
-Requires:       python-mate-menus >= 1.9.0
+Requires:       python-mate-menus >= %{_version}
 Recommends:     %{name}-lang = %{version}
 Provides:       mate-menu-editor = %{version}
 Obsoletes:      mate-menu-editor < %{version}
@@ -54,7 +54,7 @@
 %install
 %make_install
 %find_lang %{name} %{?no_lang_C}
-%fdupes %{buildroot}%{python_sitelib}
+%fdupes %{buildroot}%{python_sitelib}/
 %suse_update_desktop_file %{name}
 
 %post

++++++ mozo-1.10.1.tar.xz -> mozo-1.12.0.tar.xz ++++++
++++ 1609 lines of diff (skipped)
++++    retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/mozo-1.10.1/Makefile.am new/mozo-1.12.0/Makefile.am
--- old/mozo-1.10.1/Makefile.am 2015-07-16 13:07:16.000000000 +0200
+++ new/mozo-1.12.0/Makefile.am 2015-10-06 19:24:33.000000000 +0200
@@ -12,8 +12,8 @@
 DISTCHECK_CONFIGURE_FLAGS = --disable-icon-update
 
 mozo: mozo.in
-       sed -e s!\@PYTHON\@!@PYTHON@!           \
-           -e s!\@PYOPTIONS\@!-OOt!            \
+       $(AM_V_GEN)sed -e s!\@PYTHON\@!@PYTHON@!        \
+           -e s!\@PYOPTIONS\@!-OOt!                    \
            < $< > $@
 mozo: Makefile
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/mozo-1.10.1/Mozo/MainWindow.py new/mozo-1.12.0/Mozo/MainWindow.py
--- old/mozo-1.10.1/Mozo/MainWindow.py  2015-07-23 15:06:50.000000000 +0200
+++ new/mozo-1.12.0/Mozo/MainWindow.py  2015-10-06 19:24:33.000000000 +0200
@@ -547,8 +547,10 @@
                        content_type = file_info.get_content_type()
                        if content_type == 'application/x-desktop':
                                input_stream = myfile.read()
-                               open('/tmp/mozo-dnd.desktop', 
'w').write(input_stream.read())
-                               parser = 
util.DesktopParser('/tmp/mozo-dnd.desktop')
+                               (fd, tmppath) = 
tempfile.mkstemp(prefix='mozo-dnd', suffix='.desktop')
+                                with open(fd, "w") as f:
+                                    f.write(input_stream.read())
+                               parser = util.DesktopParser(tmppath)
                                self.editor.createItem(parent, 
parser.get('Icon'), parser.get('Name', self.editor.locale), 
parser.get('Comment', self.editor.locale), parser.get('Exec'), 
parser.get('Terminal'), before, after)
                        elif content_type in ('application/x-shellscript', 
'application/x-executable'):
                                self.editor.createItem(parent, None, 
os.path.split(file_path)[1].strip(), None, file_path.replace('file://', 
'').strip(), False, before, after)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/mozo-1.10.1/Mozo/Makefile.am new/mozo-1.12.0/Mozo/Makefile.am
--- old/mozo-1.10.1/Mozo/Makefile.am    2014-02-10 17:08:57.000000000 +0100
+++ new/mozo-1.12.0/Mozo/Makefile.am    2015-10-06 19:24:33.000000000 +0200
@@ -5,7 +5,7 @@
 nodist_app_PYTHON = config.py
 
 config.py: config.py.in
-       sed                                             \
+       $(AM_V_GEN)sed                                  \
                -e s!\@prefix\@!$(prefix)!              \
                -e s!\@datadir\@!$(datadir)!            \
                -e s!\@pkgdatadir\@!$(pkgdatadir)!      \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/mozo-1.10.1/Mozo/MenuEditor.py new/mozo-1.12.0/Mozo/MenuEditor.py
--- old/mozo-1.10.1/Mozo/MenuEditor.py  2014-02-10 17:08:57.000000000 +0100
+++ new/mozo-1.12.0/Mozo/MenuEditor.py  2015-10-06 19:24:33.000000000 +0200
@@ -348,8 +348,8 @@
                self.save()
 
        def deleteItem(self, item):
-               self.__writeItem(item, hidden=True)
                self.__addUndo([item,])
+               self.__writeItem(item, hidden=True)
                self.save()
 
        def deleteMenu(self, menu):
@@ -550,7 +550,7 @@
                elif item == None and name == None:
                        raise Exception('New menu items need a name')
                else:
-                       file_id = util.getUniqueFileId(name, '.desktop')
+                       file_id = 
util.getUniqueFileId(item.get_name().replace(os.sep, '-'), '.desktop')
                        keyfile = util.DesktopParser()
                if icon:
                        keyfile.set('Icon', icon)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/mozo-1.10.1/NEWS new/mozo-1.12.0/NEWS
--- old/mozo-1.10.1/NEWS        2015-07-21 11:27:27.000000000 +0200
+++ new/mozo-1.12.0/NEWS        2015-11-04 17:39:08.000000000 +0100
@@ -1,3 +1,9 @@
+1.12.0
+
+  * Enable startup notification
+  * Add silent rules
+  * Some bugfixes
+
 1.10.1
 
   * Fix wrong highlighting while moving menu items
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/mozo-1.10.1/compile new/mozo-1.12.0/compile
--- old/mozo-1.10.1/compile     2015-07-23 15:08:57.000000000 +0200
+++ new/mozo-1.12.0/compile     2015-11-04 17:40:50.000000000 +0100
@@ -3,7 +3,7 @@
 
 scriptversion=2012-10-14.11; # UTC
 
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2013 Free Software Foundation, Inc.
 # Written by Tom Tromey <[email protected]>.
 #
 # This program is free software; you can redistribute it and/or modify
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/mozo-1.10.1/configure.ac new/mozo-1.12.0/configure.ac
--- old/mozo-1.10.1/configure.ac        2015-07-23 15:06:50.000000000 +0200
+++ new/mozo-1.12.0/configure.ac        2015-11-04 17:39:08.000000000 +0100
@@ -1,7 +1,8 @@
 dnl -*- Mode: autoconf -*-
 dnl Process this file with autoconf to produce a configure script.
 AC_PREREQ(2.53)
-AC_INIT(mozo, 1.10.1, http://www.mate-desktop.org)
+AC_INIT(mozo, 1.12.0, http://www.mate-desktop.org)
+m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
 AC_CONFIG_SRCDIR(mozo.in)
 AC_CONFIG_HEADERS([config.h])
 AM_INIT_AUTOMAKE([1.7 dist-xz no-dist-gzip check-news])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/mozo-1.10.1/data/mozo.desktop.in.in new/mozo-1.12.0/data/mozo.desktop.in.in
--- old/mozo-1.10.1/data/mozo.desktop.in.in     2015-07-16 13:07:16.000000000 
+0200
+++ new/mozo-1.12.0/data/mozo.desktop.in.in     2015-10-06 19:24:33.000000000 
+0200
@@ -4,7 +4,7 @@
 Exec=mozo
 Terminal=false
 Type=Application
-StartupNotify=false
+StartupNotify=true
 Categories=Settings;DesktopSettings;
 Keywords=application;main;menu;editor;customize;MATE;
 OnlyShowIn=MATE;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/mozo-1.10.1/missing new/mozo-1.12.0/missing
--- old/mozo-1.10.1/missing     2015-07-23 15:08:57.000000000 +0200
+++ new/mozo-1.12.0/missing     2015-11-04 17:40:50.000000000 +0100
@@ -3,7 +3,7 @@
 
 scriptversion=2013-10-28.13; # UTC
 
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2013 Free Software Foundation, Inc.
 # Originally written by Fran,cois Pinard <[email protected]>, 1996.
 
 # This program is free software; you can redistribute it and/or modify
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/mozo-1.10.1/po/Makefile.in.in new/mozo-1.12.0/po/Makefile.in.in
--- old/mozo-1.10.1/po/Makefile.in.in   2015-07-23 15:08:53.000000000 +0200
+++ new/mozo-1.12.0/po/Makefile.in.in   2015-11-04 17:40:45.000000000 +0100
@@ -33,7 +33,8 @@
 datadir = @datadir@
 datarootdir = @datarootdir@
 libdir = @libdir@
-localedir = @localedir@
+DATADIRNAME = @DATADIRNAME@
+itlocaledir = $(prefix)/$(DATADIRNAME)/locale
 subdir = po
 install_sh = @install_sh@
 # Automake >= 1.8 provides @mkdir_p@.
@@ -79,7 +80,7 @@
 
 .po.pox:
        $(MAKE) $(GETTEXT_PACKAGE).pot
-       $(MSGMERGE) $* $(GETTEXT_PACKAGE).pot -o $*.pox
+       $(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox
 
 .po.mo:
        $(INTLTOOL_V_MSGFMT)$(MSGFMT) -o $@ $<
@@ -107,7 +108,7 @@
 install-data-yes: all
        linguas="$(USE_LINGUAS)"; \
        for lang in $$linguas; do \
-         dir=$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \
+         dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \
          $(mkdir_p) $$dir; \
          if test -r $$lang.gmo; then \
            $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
@@ -141,8 +142,8 @@
 uninstall:
        linguas="$(USE_LINGUAS)"; \
        for lang in $$linguas; do \
-         rm -f 
$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
-         rm -f 
$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
+         rm -f 
$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
+         rm -f 
$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
        done
 
 check: all $(GETTEXT_PACKAGE).pot
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/mozo-1.10.1/py-compile new/mozo-1.12.0/py-compile
--- old/mozo-1.10.1/py-compile  2015-07-23 15:08:57.000000000 +0200
+++ new/mozo-1.12.0/py-compile  2015-11-04 17:40:50.000000000 +0100
@@ -3,7 +3,7 @@
 
 scriptversion=2011-06-08.12; # UTC
 
-# Copyright (C) 2000-2014 Free Software Foundation, Inc.
+# Copyright (C) 2000-2013 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by


Reply via email to