Hello community,

here is the log from the commit of package caja-dropbox for openSUSE:Factory 
checked in at 2019-05-16 22:03:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/caja-dropbox (Old)
 and      /work/SRC/openSUSE:Factory/.caja-dropbox.new.5148 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "caja-dropbox"

Thu May 16 22:03:04 2019 rev:7 rq:682546 version:1.22.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/caja-dropbox/caja-dropbox.changes        
2018-03-20 21:56:29.418041918 +0100
+++ /work/SRC/openSUSE:Factory/.caja-dropbox.new.5148/caja-dropbox.changes      
2019-05-16 22:03:15.734661406 +0200
@@ -1,0 +2,29 @@
+Tue Mar  5 15:19:33 UTC 2019 - sor.ale...@meowr.ru
+
+- Update to version 1.22.0:
+  * Python 3 update for dropbox-cli.
+  * Add Keywords entry to desktop file.
+  * Use cross-compilation-safe pkg-config macro.
+  * Remove deprecated glib2.0 API calls.
+  * Use GIR bindings instead of pygtk.
+  * Fix UnicodeWarning when exclude command is used with non-latin
+    args.
+  * Update to redesigned icons.
+  * small caja-dropbox.in fixes.
+  * Add a new "dropbox update" command.
+  * Unlink files that are going to be replaced by the unpack.
+  * Validate that Dropbox runs after downloading it.
+  * Use python-gpg instead of python-gpgme.
+  * Explicitly load using python2 interpreter.
+  * Refer to .dropbox-dist in only one place.
+  * Fixed 'exclude command raise UnicodeDecodeError'.
+  * Avoid reading or writing invalid memory addresses.
+  * Display link url on status.
+  * Update dropbox.py with shmodel, proxy, and throttle features.
+  * Fix distcheck about caja_extension_dir.
+  * Use only Python 3 during the build to complete the migration.
+  * Migrate from python2 to python3 of rst2man.py.
+  * Remove more -u modifier for dropbox-cli.
+- Rebase caja-dropbox_no-dropbox-bin.patch.
+
+-------------------------------------------------------------------

Old:
----
  caja-dropbox-1.20.0.tar.xz

New:
----
  caja-dropbox-1.22.0.tar.xz

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

Other differences:
------------------
++++++ caja-dropbox.spec ++++++
--- /var/tmp/diff_new_pack.TLR9Jn/_old  2019-05-16 22:03:17.050660579 +0200
+++ /var/tmp/diff_new_pack.TLR9Jn/_new  2019-05-16 22:03:17.098660549 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package caja-dropbox
 #
-# 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
@@ -12,18 +12,18 @@
 # 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/
 #
 
 
-%define _version 1.20
+%define _version 1.22
 Name:           caja-dropbox
-Version:        1.20.0
+Version:        1.22.0
 Release:        0
 Summary:        Dropbox client integrated into Caja
 License:        GPL-3.0-or-later
 Group:          System/GUI/Other
-Url:            https://mate-desktop.org/
+URL:            https://mate-desktop.org/
 Source:         
http://pub.mate-desktop.org/releases/%{_version}/%{name}-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE caja-dropbox_no-dropbox-bin.patch sor.ale...@meowr.ru -- 
Strip dropbox binary installation.
 Patch0:         caja-dropbox_no-dropbox-bin.patch
@@ -83,11 +83,7 @@
 %endif
 
 %files -n caja-extension-dropbox
-%if 0%{?suse_version} >= 1500
 %license COPYING
-%else
-%doc COPYING
-%endif
 %doc AUTHORS NEWS README
 %{_libdir}/caja/extensions-2.0/libcaja-dropbox.*
 

++++++ caja-dropbox-1.20.0.tar.xz -> caja-dropbox-1.22.0.tar.xz ++++++
++++ 9665 lines of diff (skipped)

++++++ caja-dropbox_no-dropbox-bin.patch ++++++
--- /var/tmp/diff_new_pack.TLR9Jn/_old  2019-05-16 22:03:17.898660046 +0200
+++ /var/tmp/diff_new_pack.TLR9Jn/_new  2019-05-16 22:03:17.914660036 +0200
@@ -1,19 +1,19 @@
 --- a/configure.ac
 +++ b/configure.ac
-@@ -30,36 +30,6 @@ fi
+@@ -26,35 +26,6 @@ PKG_PROG_PKG_CONFIG
  PKG_CHECK_MODULES(CAJA, libcaja-extension >= $CAJA_REQUIRED)
  PKG_CHECK_MODULES(GLIB, glib-2.0 >= $GLIB_REQUIRED)
  
--AC_PATH_PROG([PYTHON], [python])
+-AC_PATH_PROG([PYTHON3], [python3])
 -
--AC_PATH_PROG([RST2MAN], [rst2man], [python rst2man.py])
+-AC_PATH_PROG([RST2MAN], [rst2man], [python3 rst2man.py])
 -AC_SUBST(RST2MAN)
 -
 -# define module checking macro
--AC_DEFUN([PYTHON_CHECK_MODULE], [
--AC_MSG_CHECKING([for $1])
+-AC_DEFUN([PYTHON3_CHECK_MODULE], [
+-AC_MSG_CHECKING([for $1 on python3])
 -
--cat <<EOF | python
+-cat <<EOF | python3
 -try:
 - import $2
 -except:
@@ -30,9 +30,8 @@
 -fi
 -])
 -
--PYTHON_CHECK_MODULE(pygtk, gtk)
--PYTHON_CHECK_MODULE(gobject, gobject)
--PYTHON_CHECK_MODULE(docutils, docutils)
+-PYTHON3_CHECK_MODULE(docutils, docutils)
+-PYTHON3_CHECK_MODULE(gi, gi)
 -
  # Make dependency CFLAGS and LIBS available
  AC_SUBST(CAJA_CFLAGS)
@@ -48,12 +47,12 @@
  EXTRA_DIST = caja-dropbox.in serializeimages.py caja-dropbox.txt.in docgen.py 
rst2man.py autogen.sh
 -man_MANS = caja-dropbox.1
  
--caja-dropbox: caja-dropbox.in serializeimages.py
--      python serializeimages.py $(PACKAGE_VERSION) $(datadir)/applications < 
caja-dropbox.in > caja-dropbox
+-caja-dropbox: $(top_srcdir)/caja-dropbox.in $(top_srcdir)/serializeimages.py
+-      python3 $(top_srcdir)/serializeimages.py $(PACKAGE_VERSION) 
$(datadir)/applications < $(top_srcdir)/caja-dropbox.in > caja-dropbox
 -      chmod +x caja-dropbox
 -
--caja-dropbox.1: caja-dropbox.txt.in caja-dropbox docgen.py
--      python docgen.py $(PACKAGE_VERSION) caja-dropbox.txt.in caja-dropbox.txt
+-caja-dropbox.1: $(top_srcdir)/caja-dropbox.txt.in caja-dropbox 
$(top_srcdir)/docgen.py
+-      python3 $(top_srcdir)/docgen.py $(PACKAGE_VERSION) 
$(top_srcdir)/caja-dropbox.txt.in caja-dropbox.txt
 -      $(RST2MAN) caja-dropbox.txt > caja-dropbox.1
 -
 -SUBDIRS = data src


Reply via email to