Package Details: dropbox-cli 2023.09.06-1

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: http://www.dropbox.com
Licenses: GPL
Submitter: msquared
Maintainer: frealgagu
Last Packager: frealgagu
Votes: 472
Popularity: 0.71
First Submitted: 2010-02-04 14:03 (UTC)
Last Updated: 2023-10-06 21:25 (UTC)

Pinned Comments

frealgagu commented on 2020-12-05 22:37 (UTC)

I maintain the latest built package at:

https://github.com/frealgagu/archlinux.dropbox-cli/releases/

frealgagu commented on 2018-11-30 02:43 (UTC) (edited on 2018-11-30 02:49 (UTC) by frealgagu)

@cfr42 the version in filename is in order to avoid issues once the file is downloaded, if a new version arrives makepkg does not try to re-download it if the file has the same name and it already exists. If the checksum fails then it means that there is a new version and it's necessary to change the PKGBUILD information.

Please flag it if that happens.

Latest Comments

1 2 3 4 5 6 .. 16 Next › Last »

jsimon0 commented on 2024-02-20 19:13 (UTC)

For those looking for a PKGBUILD

# Maintainer: Fredy García <frealgagu at gmail dot com>
# Contributor: Joel Teichroeb <joel@teichroeb.net>
# Contributor: Matthias Maennich < arch .at. maennich.net >
# Contributor: bruce < b_a_g99 .at. hotmail.com >
# Contributor: carstene1ns <arch carsten-teibes de>

pkgname=dropbox-cli
pkgver=2024.02.20
pkgrel=1
pkgdesc="Command line interface for Dropbox"
arch=("any")
url="http://www.${pkgname%-cli}.com"
license=("GPL")
depends=("${pkgname%-cli}" "python-gobject")
install="${pkgname}.install"
source=(
  "${pkgname}-${pkgver}.py::https://linux.${pkgname%-cli}.com/packages/${pkgname%-cli}.py"
  "${pkgname%-cli}d-fallback.patch"
)
sha256sums=(
  "33e4463fdd6f90cab355e2f6b951c90160d7a3620cca63e3a676457e01d368f0"
  "3e4f5d44c58dbeb586bb9539551ea1206e8a1e4b025ac316c42ba24c53c8f077"
)

prepare() {
  cp -L "${srcdir}/${pkgname}-${pkgver}.py" "${srcdir}/${pkgname}.py"

  # Patch to point to /opt/dropbox/dropboxd in case of local user does not exist
  patch -Np1 -i "${srcdir}/${pkgname%-cli}d-fallback.patch"
}

package() {
  install -dm755 "${pkgdir}/usr/bin"
  install -Dm755 "${srcdir}/${pkgname}.py" "${pkgdir}/usr/share/${pkgname}/${pkgname}.py"
  ln -s "/usr/share/${pkgname}/${pkgname}.py" "${pkgdir}/usr/bin/${pkgname}"
}

BoostCookie commented on 2023-10-06 09:09 (UTC)

% sha256sum dropbox-cli-2022.12.05.py
a7334c5003287d6bc94c59bfbd9a9b2e9e82047c8b35732c739f8cb4ecfeedbc  dropbox-cli-2022.12.05.py

@frealgagu, please fix it in the PKGBUILD.

paulcsiki commented on 2023-10-03 08:57 (UTC)

I have cleared the yay cache and also ran @zaiheshi's command but the validation of the .py file still fails.

TTimo commented on 2023-07-07 08:03 (UTC)

Deleting the cache directory (see @zaiheshi comment) worked for me to fix the repeated validity check errors.

lorebett commented on 2023-03-02 14:10 (UTC)

I think we're running in the validity check problem again:

dropbox-cli-2020.03.04.py ... FAILED
dropboxd-fallback.patch ... Passed

frealgagu commented on 2022-09-22 00:34 (UTC)

I think issues are caused by mirrors and DNS, they could be causing that file is not refreshed everywhere and checksums are invalid.

I maintain the latest version of package and .py here

https://github.com/frealgagu/archlinux.dropbox-cli/releases/

morngrar commented on 2022-09-01 09:14 (UTC)

@asakurahao Installed today without hitches, I waited instead of looking for a workaround.

horaciohs commented on 2022-08-29 11:36 (UTC)

I use yay and after "yay -Sc" (cache cleaning) this error ("dropbox-cli-2020.03.04.py ... FAILED") was gone.

aclunik commented on 2022-08-29 09:03 (UTC)

@frealgagu - Still getting the same error, even after cleaning the cache.

zaiheshi commented on 2022-08-28 10:42 (UTC)

@aleksozolins find aur cache in your ~/.cache and delete them. I use paru, so my solution is rm -rf ~/.cache/paru/clone/dropbox-cli, then just install it again.