If they don't put it back soon, I'll upload it to github, as it's GPL.
Search Criteria
Package Details: dropbox-cli 2024.04.17-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/dropbox-cli.git (read-only, click to copy) |
---|---|
Package Base: | dropbox-cli |
Description: | Command line interface for Dropbox |
Upstream URL: | https://www.dropbox.com |
Keywords: | dropbox |
Licenses: | GPL-3.0-or-later |
Submitter: | msquared |
Maintainer: | Muflone |
Last Packager: | Muflone |
Votes: | 474 |
Popularity: | 1.16 |
First Submitted: | 2010-02-04 14:03 (UTC) |
Last Updated: | 2024-04-21 22:34 (UTC) |
Dependencies (5)
- dropboxAUR
- python-gobject
- gdk-pixbuf2 (gdk-pixbuf2-gitAUR) (make)
- gtk3 (gtk3-no_deadkeys_underlineAUR, gtk3-classicAUR, gtk3-classic-xfceAUR, gtk3-patched-filechooser-icon-viewAUR) (optional) – Dropbox update GUI
- python-gpgme (python-gpgme-gitAUR) (optional) – verify binary signature
Required by (0)
Sources (2)
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 .. 16 Next › Last »
klusark commented on 2017-06-22 05:01 (UTC)
klusark commented on 2017-06-22 04:59 (UTC)
@rosslaird, seeing the same thing. Interestingly, all the source links on their page now 404. I'd guess it's a mistake...
rosslaird commented on 2017-06-22 03:58 (UTC)
Currently getting this:
ERROR: Failure while downloading https://linux.dropbox.com/packages/dropbox.py
Loading the above URL directly from the browser yields a 404, so I'm guessing the file has been moved.
klusark commented on 2017-05-26 23:04 (UTC)
@twa022, I'd rather not make functional changes to the script.
twa022 commented on 2017-05-26 22:38 (UTC)
Could you change the patch to this (https://pastebin.com/ij2Ddtt3)
--- dropbox.py 2011-04-04 20:32:01.000000000 +0200
+++ dropbox.py 2011-04-28 22:55:17.976623103 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python2
#
# Copyright 2008 Evenflow, Inc.
#
@@ -610,6 +610,10 @@
def start_dropbox():
db_path = os.path.expanduser(u"~/.dropbox-dist/dropboxd").encode(sys.getfilesystemencoding())
+ if not os.path.exists(db_path):
+ db_path = u"/usr/local/bin/dropbox"
+ if not os.path.exists(db_path):
+ db_path = u"/usr/bin/dropbox"
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
so that /usr/local/bin takes precedence over /usr/bin. (Have dropbox script in /usr/local/bin to export QT_STYLE_OVERRIDE to get proper theming)
Thanks!
robt commented on 2017-02-01 10:24 (UTC)
Thanks, build now works again.
robt commented on 2017-01-29 07:20 (UTC)
The package build is failing with a validation error because dropbox.py has been updated.
<deleted-account> commented on 2016-10-06 16:16 (UTC)
Does anyone is getting this message?
```
Traceback (most recent call last):
File "/usr/bin/dropbox-cli", line 826, in <module>
@alias('stat')
File "/usr/bin/dropbox-cli", line 705, in command
meth.__doc__ += u"\nAliases: %s" % ",".join(meth_aliases)
TypeError: unsupported operand type(s) for +=: 'NoneType' and 'unicode'
```
kaslusimoes commented on 2015-11-03 14:06 (UTC)
@bluesheep, @Jones:
Try cleaning you build directories. It should work by now
jonas.vautherin commented on 2015-11-02 16:13 (UTC)
Same for me: "dropbox.py did not pass the validity check"
Pinned Comments
Muflone commented on 2024-04-21 22:26 (UTC)
Since version 2024.04.17-1 dropbox-cli is built from the nautilus-dropbox source as currently the dropbox.py source file is not aligned with the latest release in https://linux.dropbox.com/packages/