Your message dated Fri, 29 Nov 2019 15:19:13 +0000
with message-id <[email protected]>
and subject line Bug#944510: fixed in deja-dup 40.5-1
has caused the Debian Bug report #944510,
regarding deja-dup: Cannot back up to Google Drive (no pydrive packaged)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
944510: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=944510
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: deja-dup
Version: 40.1-4
Severity: normal

Dear Maintainer,

I'm the upstream maintainer of deja-dup. I noticed that due to the absence of
pydrive in Debian (RFP: https://bugs.debian.org/922076), deja-dup's default
backend (Google Drive) does not work at all.

Ideally, pydrive would be packaged and -Dpydrive_pkgs=python3-pydrive would be
specified. But until that happens, I'd appreciate Google Drive being disabled.

Better to not provide a broken option (especially a default!). Less bug reports
for me, anyway.

I've attached a patch to do disable it from the UI.


-- System Information:
Debian Release: buster/sid
  APT prefers eoan-updates
  APT policy: (500, 'eoan-updates'), (500, 'eoan-security'), (500, 'eoan')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.3.0-19-generic (SMP w/4 CPU cores)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages deja-dup depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.34.0-1
ii  duplicity                                    0.8.04-2ubuntu1
ii  libatk1.0-0                                  2.34.0-1
ii  libc6                                        2.30-0ubuntu2
ii  libglib2.0-0                                 2.62.1-1
ii  libgoa-1.0-0b                                3.34.0-1ubuntu1
ii  libgpg-error0                                1.36-7
ii  libgtk-3-0                                   3.24.12-1ubuntu1
ii  libjson-glib-1.0-0                           1.4.4-2
ii  libnautilus-extension1a                      1:3.34.1-1ubuntu1
ii  libpackagekit-glib2-18                       1.1.12-5ubuntu4
ii  libpango-1.0-0                               1.42.4-7
ii  libsecret-1-0                                0.18.8-2
ii  libsoup2.4-1                                 2.68.2-0ubuntu1

Versions of packages deja-dup recommends:
ii  gvfs-backends  1.42.1-1ubuntu1
ii  packagekit     1.1.12-5ubuntu4
ii  policykit-1    0.105-26ubuntu1

Versions of packages deja-dup suggests:
pn  python3-boto         <none>
pn  python3-cloudfiles   <none>
pn  python3-swiftclient  <none>
diff --git a/deja-dup/widgets/ConfigLocation.vala 
b/deja-dup/widgets/ConfigLocation.vala
index a3313af9..ff67cba8 100644
--- a/deja-dup/widgets/ConfigLocation.vala
+++ b/deja-dup/widgets/ConfigLocation.vala
@@ -192,7 +192,7 @@ public class ConfigLocation : ConfigWidget
                      new ConfigLocationS3(label_sizes, all_settings[S3_ROOT])) 
|
         insert_cloud("gcs", _("Google Cloud Storage"), show_deprecated, 
"deja-dup-cloud",
                      new ConfigLocationGCS(label_sizes, 
all_settings[GCS_ROOT])) |
-        insert_cloud("google", _("Google Drive"), true, 
"deja-dup-google-drive",
+        insert_cloud("google", _("Google Drive"), false, 
"deja-dup-google-drive",
                      new ConfigLocationGoogle(label_sizes, 
all_settings[GOOGLE_ROOT])) |
         insert_cloud("rackspace", _("Rackspace Cloud Files"), show_deprecated, 
"deja-dup-cloud",
                      new ConfigLocationRackspace(label_sizes, 
all_settings[RACKSPACE_ROOT])) |
diff --git a/libdeja/BackendAuto.vala b/libdeja/BackendAuto.vala
index 588622a0..e15e2cb1 100644
--- a/libdeja/BackendAuto.vala
+++ b/libdeja/BackendAuto.vala
@@ -55,7 +55,7 @@ public class BackendAuto : Backend
     // 3) Google Drive via GNOME Online Accounts
     // 4) Google Drive (relying on packagekit support to install dependencies)
     var settings = get_settings();
-    settings.set_string(BACKEND_KEY, "google");
+    settings.set_string(BACKEND_KEY, "local");
   }
 }
 

--- End Message ---
--- Begin Message ---
Source: deja-dup
Source-Version: 40.5-1

We believe that the bug you reported is fixed in the latest version of
deja-dup, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sebastien Bacher <[email protected]> (supplier of updated deja-dup package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Fri, 29 Nov 2019 15:47:52 +0100
Source: deja-dup
Binary: deja-dup
Architecture: source
Version: 40.5-1
Distribution: unstable
Urgency: medium
Maintainer: Debian GNOME Maintainers 
<[email protected]>
Changed-By: Sebastien Bacher <[email protected]>
Description:
 deja-dup   - Backup utility
Closes: 944510
Changes:
 deja-dup (40.5-1) unstable; urgency=medium
 .
   * New upstream release
   * Remove patch included in the new version
   * debian/patches/disable-google-drive.patch:
     - disable the Google Drive backend and default to local for backups,
       the option requires pydrive which isn't available in Debian yet.
       Thanks Mike Terry for the patch. (Closes: #944510)
Checksums-Sha1:
 e0b8e1654a9bcecc68189d6f56facd10e8ef4180 2351 deja-dup_40.5-1.dsc
 00c6db0237dcc19ae2112b0c55ae9bd39f157eb5 1307389 deja-dup_40.5.orig.tar.bz2
 fbc7b6e030d85db923d5a95b022f8a48692008f5 8076 deja-dup_40.5-1.debian.tar.xz
Checksums-Sha256:
 5c0a105e2e1caf1c8b908c5e95a2dff060a6cf54ced7037b59b182a4dd5305c1 2351 
deja-dup_40.5-1.dsc
 b60d8cc5f024cf0cdea12bbb7ef62f2b304dc6b3ef87d337aae92afbb535f8ca 1307389 
deja-dup_40.5.orig.tar.bz2
 ebda22753afc846f09f6bea8db12d6a657e89f23d31eab4141b3d33329cdf43b 8076 
deja-dup_40.5-1.debian.tar.xz
Files:
 1b60453ea935486f20e3596a647264af 2351 utils optional deja-dup_40.5-1.dsc
 fb954d058295fe0c7dcaf27b4530686e 1307389 utils optional 
deja-dup_40.5.orig.tar.bz2
 f411dbc3a1fcab874f74fa44cff09291 8076 utils optional 
deja-dup_40.5-1.debian.tar.xz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCAAGBQJd4TMJAAoJED69RJA+2wSWlNgP/1YKk9rdiU/ZEwCYzjFgo61T
JAIQp9/4eQzuruzkTnVo5a7L+q3pKlmFJtFk5VwDlpjxAvYSwfDZNFHpFLZd6Z53
Q33oOIam4bzPQhiFDkahU0rWpYRl60FgW1DO4YxnMdhoA14vWDChGIIMW6RKGnYt
Tauk++JxCqqa5UsgCJxBrgGCQ8KS6NB36tKSWtcouxnHf5NL9BxVL/alQhCxKvdb
3TONyCEgL09Gnsdke7CYQErkQUB6Q3zyylXRjLGBRb2AuAbKym4PEfDADz33fK1K
86zat3qWlr/V83MOC4fZCvJTOfY0hFjzjqTVymRqpzhrJMwuntxN86msNKMfcmm+
omZ1+wnUVoXiKFMSrEBbkbNMQcmsusA3tqJs6NXPbWn7cXi2+N6mz30ZMduNl3gB
0WKLTWTTobRMSTOjvRZIzgx4QIuhxAPLMASbNcLhXTZ+A3lcbWAKDPeBWQBsdOEJ
8qLEenWRCpvG5UL/w29rZeVlAhoAXsgU1GhWGQRIb5g+3dZT5QMCEFQtpOEtJoXb
DmkU/WLMqvOwP5syZtLe1nMqoK+ZUc94BFeGfO7oY4ZUg5PVysK4E7Yl7ZVoK3NI
Stj0xAzLL/nJWNUKogwiH/6Ub74RrLG5nmDapF3POTZedZuowu0fFuEr+F/ThBcu
o8G6TErUmo2r47HRTim0
=mtGR
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to