Package Details: vapoursynth-plugin-adaptivegrain-git 0.2.1.24.gcde9f66-1

Git Clone URL: https://aur.archlinux.org/vapoursynth-plugin-adaptivegrain-git.git (read-only, click to copy)
Package Base: vapoursynth-plugin-adaptivegrain-git
Description: Reimplementation of the adaptive grain mask as a Vapoursynth plugin
Upstream URL: https://git.kageru.moe/kageru/adaptivegrain
Licenses: MIT
Conflicts: vapoursynth-plugin-adaptivegrain
Provides: vapoursynth-plugin-adaptivegrain
Submitter: kageru
Maintainer: kageru
Last Packager: kageru
Votes: 3
Popularity: 0.000000
First Submitted: 2020-02-26 22:05 (UTC)
Last Updated: 2020-04-11 17:02 (UTC)

Dependencies (3)

Sources (1)

Latest Comments

1 2 Next › Last »

dreieck commented on 2023-02-14 16:39 (UTC)

  • Can you use $CARGO_HOME to make rust download the stuff it downloads somewhere below ${srcdir}, and not cluttering the home directory of the build user?
  • Can you move all rust-specific download steps from build() into prepare()?

Thanks for maintaining!,
regards.

kageru commented on 2022-07-09 19:44 (UTC)

upstream is back online

clockwerk commented on 2022-07-09 02:37 (UTC)

adaptivegrain is missing, hope the maintainer fix

deko commented on 2020-05-16 18:04 (UTC)

   Compiling adaptivegrain-rs v0.2.2 (/path/to/vapoursynth-plugin-adaptivegrain-git/src/adaptivegrain)
error[E0554]: `#![feature]` may not be used on the stable release channel
 --> src/lib.rs:1:1
  |
1 | #![feature(test)]
  | ^^^^^^^^^^^^^^^^^

error: aborting due to previous error

For more information about this error, try `rustc --explain E0554`.
error: could not compile `adaptivegrain-rs`.

To learn more, run the command again with --verbose.

jholmer commented on 2020-04-04 15:01 (UTC)

Thanks, that did seem to fix it.

kageru commented on 2020-04-03 20:30 (UTC)

I think keeping --locked is preferable because it leads to reproducible builds. The issue here was that I didn’t properly fix the dependencies in Cargo.toml. Some were missing the minor version which caused them to be updated freely.

I changed that and pushed a new version. Can you try again?

jholmer commented on 2020-04-03 12:21 (UTC) (edited on 2020-04-03 12:23 (UTC) by jholmer)

I am consistently receiving the following error on trying to update or clean install this package:

error: the lock file /home/soichiro/.cache/yay/vapoursynth-plugin-adaptivegrain-git/src/adaptivegrain/Cargo.lock needs to be updated but --locked was passed to prevent this

Guessing the --locked flag should be removed from the command in PKGBUILD?

sl1pkn07 commented on 2020-02-27 09:35 (UTC)

done for me

kageru commented on 2020-02-27 08:55 (UTC)

I changed the makedep from rustup to cargo. The default provider for cargo is rust which does not require additional toolchain configuration. If this still fails on your system, either perform the rust setup steps as described in the wiki, or manually replace rustup with rust, whichever works better for your use case.

kageru commented on 2020-02-27 07:07 (UTC)

It seems like the build fails if you’ve never built any rust projects on the system (thus not having a default toolchain set). I don’t see other PKGBUILDS configuring this for the user, so I’ll ask around how other maintainers address this.

In the meantime, the toolchain has to be set manually as described in https://wiki.archlinux.org/index.php/Rust#Rustup