Skip to content
Commits on Source (5)
caja-dropbox (1.20.0-4) unstable; urgency=medium
* debian/control:
+ Bump versioned B-D to libcaja-extension-dev (>= 1.17.1).
+ Bump Standards-Version: to 4.3.0. No changes needed.
* debian/patches:
+ Drop 2003_fake_xdg_current_desktop.patch. (Closes: #893163).
+ Fix grammar issue in 1004_add-http-proxy-option.patch's comment header.
* debian/{control,compat}:
+ Drop compat file. Switch to debhelper-compat notation in control
file. Bump to DH compat level version 12.
* debian/upstream/metadata:
+ Add file. Comply with DEP-12.
-- Mike Gabriel <sunweaver@debian.org> Sat, 02 Feb 2019 17:00:13 +0100
caja-dropbox (1.20.0-3) unstable; urgency=medium
* debian/control:
......
......@@ -7,7 +7,7 @@ Uploaders: Mike Gabriel <sunweaver@debian.org>,
Stefano Karapetsas <stefano@karapetsas.com>,
Vangelis Mouhtsis <vangelis@gnugr.org>,
Martin Wimpress <code@flexion.org>,
Build-Depends: debhelper (>= 11~),
Build-Depends: debhelper-compat (= 12),
dh-python,
dpkg-dev (>= 1.16.1.1),
libcaja-extension-dev (>= 1.17.1),
......
Description: Add command-line option to set the HTTP proxy
This option will be used to properly fix the the Debian bug
This option will be used to properly fix the Debian bug
#651065.
Author: Raphaël Hertzog <hertzog@debian.org>
Origin: vendor
......
Description: Coerce XDG_CURRENT_DESKTOP to "Unity". (LP: #1559249)
Author: Martin Wimpress <martin.wimpress@ubuntu.com>
Abstract:
This works around broken dropbox binary that will not correctly
activate the tray icon or indicator icon. This patch works around
that issue by coercing XDG_CURRENT_DESKTOP to report as
"Unity".
.
This patch is valid for Debian and Ubuntu.
--- a/caja-dropbox.in 2017-03-28 02:00:33.223411568 +0100
+++ b/caja-dropbox.in 2017-03-28 02:03:34.637407866 +0100
@@ -728,8 +728,13 @@
if os.access(db_path, os.X_OK):
f = open("/dev/null", "w")
# we don't reap the child because we're gonna die anyway, let init do it
+
+ # Fix indicator icon and menu. (LP: #1559249)
+ new_env = os.environ.copy()
+ new_env['XDG_CURRENT_DESKTOP'] = 'Unity'
+
a = subprocess.Popen([db_path], preexec_fn=os.setsid, cwd=os.path.expanduser("~"),
- stderr=sys.stderr, stdout=f, close_fds=True)
+ stderr=sys.stderr, stdout=f, close_fds=True, env=new_env)
# in seconds
interval = 0.5
......@@ -11,4 +11,3 @@
# Patches below are not really upstreamable
2001_non-interactive-update.patch
2002_use-dpkg-to-select-platform.patch
2003_fake_xdg_current_desktop.patch
Name: Caja Dropbox
Bug-Database: https://github.com/mate-desktop/caja-dropbox/issues
Bug-Submit: https://github.com/mate-desktop/caja-dropbox/issues/new
Contact: martin@mate-desktop.org
Donation: http://mate-desktop.org/donate/
Repository: https://github.com/mate-desktop/caja-dropbox
Repository-Browse: https://github.com/mate-desktop/caja-dropbox
Security-Contact: security@mate-desktop.org