This package downloads larger amount of stuff during the build()
-function. This should not happen. Please move it to the source
-array, and only if not possible to the prepare()
-function.
Thanks!
Git Clone URL: | https://aur.archlinux.org/gcsf.git (read-only, click to copy) |
---|---|
Package Base: | gcsf |
Description: | a FUSE file system based on Google Drive (Written by Rust) |
Upstream URL: | https://github.com/harababurel/gcsf |
Keywords: | google-drive |
Licenses: | MIT |
Conflicts: | gcsf |
Provides: | gcsf |
Submitter: | axionl |
Maintainer: | axionl (lilac) |
Last Packager: | axionl |
Votes: | 2 |
Popularity: | 0.000000 |
First Submitted: | 2018-07-04 05:05 (UTC) |
Last Updated: | 2020-09-13 08:46 (UTC) |
This package downloads larger amount of stuff during the build()
-function. This should not happen. Please move it to the source
-array, and only if not possible to the prepare()
-function.
Thanks!
Thanks!
gcsf-git installed without problems. However upon login, the redirect after authorizing renders an ERR_CONNECTION_REFUSED. Opened an issue over att Github on that.
@jwallden There is another problem at the moment. The openssl v1.1.1
on the latest commit and the stable release will build failed without the openssl v0.9.x
. If you wanna use it, you can try the gcsf-git
or download the old one from the archlinuxcn
mirrors.
@jwallden Thanks, the rustfmt write-mode was replaced by --check
and --emit
.
Getting the following: ==> Making package: gcsf 0.1.17-3 (Mon 08 Oct 2018 09:47:32 PM CEST) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> WARNING: Using existing $srcdir/ tree ==> Starting build()... Unrecognized option: 'write-mode' ==> ERROR: A failure occurred in build(). Aborting...
Found this https://github.com/rust-lang-nursery/rustfmt/issues/2714 Looked in the PKGBUILD and saw: cargo fmt --all -- --write-mode=diff
Should that maybe be something like: cargo fmt --all -- --diff ?
rustup
is just the toolchain installer. From the saying, the toolchain has been installed, you can use rustup component list
to get the toolchain list.
You should make sure that the toolchain was successfully installed and add the ~/.cargo/bin
to your $PATH
environment variable if you didn't change the default settings.
# example
echo 'export PATH="$HOME/.cargo/bin:$PATH"' >> ~/.xprofile
source .xprofile
Hi, build fails for me saying:
error: toolchain 'nightly-x86_64-unknown-linux-gnu' does not have the binary `cargo-fmt`
I tried:
$ rustup component add cargo-fmt
and got
error: toolchain 'nightly-x86_64-unknown-linux-gnu' does not contain component 'cargo-fmt' for target 'x86_64-unknown-linux-gnu'
Pinned Comments
axionl commented on 2018-07-25 08:23 (UTC) (edited on 2018-07-25 08:31 (UTC) by axionl)
rustup
is just the toolchain installer. From the saying, the toolchain has been installed, you can userustup component list
to get the toolchain list.You should make sure that the toolchain was successfully installed and add the
~/.cargo/bin
to your$PATH
environment variable if you didn't change the default settings.