Search Criteria
Package Details: ffsend 0.2.68-1
Git Clone URL: | https://aur.archlinux.org/ffsend.git (read-only, click to copy) |
---|---|
Package Base: | ffsend |
Description: | Easily and securely share files from the command line. A Firefox Send client. |
Upstream URL: | https://gitlab.com/timvisee/ffsend |
Keywords: | firefox send |
Licenses: | |
Provides: | |
Submitter: | timvisee |
Maintainer: | timvisee |
Last Packager: | timvisee |
Votes: | 7 |
Popularity: | 0.002946 |
First Submitted: | 2019-03-27 17:09 |
Last Updated: | 2020-10-16 13:22 |
Dependencies (7)
- ca-certificates (ca-certificates-utils)
- cargo (cargo-standalone-git, cargo-nightly-bin, cargo-git, rust-bin, rustup-git, rust-nightly-bin, rust-wasm, rust, rustup) (make)
- cmake (cmake-git) (make)
- openssl>=1.0 (libressl-git, openssl-purify, openssl-zlib, openssl-git, openssl-weak-ciphers, openssl-hardened) (make)
- rust>=1.39 (rust-i586-git, rust-git, rust-mrustc, rust-bin, rustup-git, rust-nightly, rust-nightly-bin, rust-wasm, rustup) (make)
- bash-completion (bash-completion-git) (optional) – support auto completion for bash
- xclip (wl-clipboard-x11, xclip-git) (optional) – clipboard support
Latest Comments
mqs commented on 2019-12-28 23:33
if you're using rustup, you can try to patch in a
rust-toolchain
file[1] which contains your preferred toolchain(e.g. stable-1.40.0) and rustup will make sure to use it. I just don't know if you can make that a range... A workaround here would be to update that patch accordingly with each version to match the current stable branch or else to just pin it to 1.32.[1] https://doc.rust-lang.org/nightly/edition-guide/rust-2018/rustup-for-managing-rust-versions.html
Flubbadub commented on 2019-04-09 09:58
Yeah, no problem, I suspected it's something like that. As I say it's not too important because I am using the -bin package for now. Thanks for your efforts anyway!
timvisee commented on 2019-04-05 13:01
@Flubbadub Good question. The problem with
rustup
is that you can't properly specify what Rust version must be used (like what is possible when usingrust>=1.32
). Because of this, therust>=1.32
dependency is set, which is not compatible with therustup
package.I did try to detect the installed Rust version when used through
rustup
when installing the package, to warn the user if they're using an outdated Rust version. But that didn't work so well. I might give it another try soon. If that works, therust
dependency can be removed, allowing you to use eitherrust
orrustup
ascargo
provider which solves your issue (if that makes sense).Flubbadub commented on 2019-04-05 09:34
Is it possible to make this work with rustup? Currently it tries to make me install rust in order to build it even though rustup provides rust. I think this is due to the version of rust being specified - it works if I just remove the version constraint. I did wonder if this was an issue with the AUR helper program I use but I also tried building with makepkg directly and that has the same issue.
For now I am just using ffsend-bin so no worries if this is difficult/not possible. I had a quick look and couldn't find a decent way.