Package Details: ludusavi 0.22.0-2

Git Clone URL: https://aur.archlinux.org/ludusavi.git (read-only, click to copy)
Package Base: ludusavi
Description: Backup tool for PC game saves
Upstream URL: https://github.com/mtkennerly/ludusavi
Licenses: MIT
Submitter: ragouel
Maintainer: yochananmarqos
Last Packager: yochananmarqos
Votes: 7
Popularity: 0.011537
First Submitted: 2020-08-12 21:44 (UTC)
Last Updated: 2024-03-21 17:31 (UTC)

Latest Comments

1 2 Next › Last »

yochananmarqos commented on 2023-03-18 15:27 (UTC)

I've created a binary package for those who don't want to build this from source: ludusavi-bin

yochananmarqos commented on 2023-01-31 19:45 (UTC)

@Frogboy: I can't reproduce in a clean chroot.

Frogboy commented on 2023-01-31 19:33 (UTC)

This error has been happening since forever and I try to recompile with every release to no avail.

   Compiling iced_graphics v0.5.0
error[E0658]: generic associated types are unstable
  --> ~/.cargo/registry/src/github.com-1ecc6299db9ec823/iced_graphics-0.5.0/src/image/storage.rs:12:5
   |
12 |     type State<'a>;
   |     ^^^^^^^^^^^^^^^
   |
   = note: see issue #44265 <https://github.com/rust-lang/rust/issues/44265> for more information

For more information about this error, try `rustc --explain E0658`.
error: could not compile `iced_graphics` due to previous error
warning: build failed, waiting for other jobs to finish...
==> ERROR: A failure occurred in build().
    Aborting...
 -> error making: ludusavi

yochananmarqos commented on 2022-11-12 16:13 (UTC)

@prettyvanilla: You're right, I've dropped the dependency.

prettyvanilla commented on 2022-11-12 15:48 (UTC)

The ttf-material-design-icons dependency is not necessary as the font file is statically compiled into the executable from the source tree, so there is no runtime dependency on having that font installed system-wide by any package.

yochananmarqos commented on 2022-11-06 17:52 (UTC) (edited on 2022-11-06 17:53 (UTC) by yochananmarqos)

@michaldybczak: Yes, you'll need to deal with the conflicting file on your own. The easiest way is to uninstall and reinstall.

michaldybczak commented on 2022-11-06 17:51 (UTC) (edited on 2022-11-06 17:52 (UTC) by michaldybczak)

There is a problem with the update to the current version. A new dependency was added: ttf-material-design-icons. Naturally, any AUR helper wants to install it, but it comes to an obstacle. The file the package brings already exists, because previous versions of ludusavi included it. So there is no way to clean update it. Of course, with some manual work it is possible, but I'm just saying, the usual update is not possible. By the way, why require some obscure font? This is a bad design decision.

pix3l commented on 2022-11-02 08:43 (UTC) (edited on 2022-11-02 08:43 (UTC) by pix3l)

diff --git a/PKGBUILD b/PKGBUILD
index c1561a0..d454528 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@ pkgdesc="Backup tool for PC game saves"
 arch=('x86_64')
 url="https://github.com/mtkennerly/ludusavi"
 license=('MIT')
-depends=('gcc-libs' 'libxcb' 'fontconfig')
+depends=('gcc-libs' 'libxcb' 'fontconfig' 'ttf-material-design-icons')
 makedepends=('cargo' 'git' 'libx11' 'python')
 options=('!lto')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
@@ -44,7 +44,6 @@ package() {
   install -Dm644 assets/icon.svg \
     "$pkgdir/usr/share/icons/hicolor/scalable/apps/$pkgname.svg"
   install -Dm644 "assets/$pkgname.desktop" -t "$pkgdir/usr/share/applications/"
-  install -Dm644 assets/MaterialIcons-Regular.ttf -t "$pkgdir/usr/share/fonts/TTF/"
   install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
   install -Dm644 "$srcdir/$pkgname-v$pkgver-legal.txt" \
     "$pkgdir/usr/share/licenses/$pkgname/legal.txt"

michaldybczak commented on 2021-08-20 10:53 (UTC)

Yeah, you were right @yochananmarqos, it was pamac's fault. After using yay, all is all right.

yochananmarqos commented on 2021-08-16 19:51 (UTC)

@michaldybczak: That's an issue with your AUR helper (Guessing Pamac?), not the package. Use a different helper like Yay or build it manually.