Package Details: limo-git r75.14713ec-1

Git Clone URL: https://aur.archlinux.org/limo-git.git (read-only, click to copy)
Package Base: limo-git
Description: A simple Qt based mod manager.
Upstream URL: https://github.com/limo-app/limo/
Keywords: limo loot
Licenses: GPL3
Submitter: OdinVex
Maintainer: OdinVex
Last Packager: OdinVex
Votes: 2
Popularity: 0.57
First Submitted: 2024-10-15 17:06 (UTC)
Last Updated: 2024-11-26 02:28 (UTC)

Latest Comments

1 2 3 Next › Last »

OdinVex commented on 2024-11-26 03:25 (UTC)

@itsjustboris, I'm aware of that. depends and makedepends will match even if whatever is used is a part of the AUR package alone until the author stabilizes their builds as well. I'll note it for when they stabilize, though.

itsjustboris commented on 2024-11-26 02:31 (UTC)

@OdinVex It's only needed to make the package. Limo itself doesn't seem to make use of imagemagick.

OdinVex commented on 2024-11-26 02:28 (UTC)

@itsjustboris, Added it as a make and depends for such gimped packages then, should fix it.

itsjustboris commented on 2024-11-26 02:24 (UTC) (edited on 2024-11-26 02:25 (UTC) by itsjustboris)

@OdinVex I believe all packages on the official repos are prepackaged. Edit: Not that you can't get the source PKGBUILDS if needed.

OdinVex commented on 2024-11-26 02:20 (UTC) (edited on 2024-11-26 02:21 (UTC) by OdinVex)

@itsjustboris, Arch provides prepackaged? ??? imagemagick can do that if it wasn't compiled dynamically and it'd be best not to use precompiled binaries.

itsjustboris commented on 2024-11-26 02:19 (UTC)

I downloaded imagemagick precompiled from the extra repo. That's why librsvg was not installed. Your PKGBUILD tells imagemagick to convert the app icon from SVG to PNG in the package() function. imagemagick can't do this without its optional librsvg dependency.

OdinVex commented on 2024-11-26 00:41 (UTC) (edited on 2024-11-26 00:50 (UTC) by OdinVex)

@itsjustboris, I don't use chroot-building because it's just a pain in the ass and time-consuming. A simple yay for me is usually my goto. As for librsvg, it appears to be a Gnome library. I don't use Gnome either and I haven't seen any libraries immediately obvious that would have a dependency on it. Certainly no direct dependency in the list at the moment. Perhaps it's a library needed by another library referenced by the dependencies.

Edit: It's imagemagick, it uses that library. It's required for imagemagick to compile. Since imagemagick is a requirement and the AUR for it requires librsvg the "depends" actually belongs in imagemagick and it is there, so I'm wondering if it has to do with how your system compiled imagemagick. With imagemagick requiring it for make (and optional for run, oddly) then it should've already been installed by imagemagick. (Eg., remember dynamic/static? If imagemagick is being compiled statically then it'll include librsvg's functionality in the final binary of imagemagick and it'll work but if imagemagick is being compiled dynamically then you'll need librsvg. Wonderful example of dynamic/static binaries. X_x)

itsjustboris commented on 2024-11-26 00:27 (UTC)

@OdinVex That's fine; I don't know much about static/dynamic executables. As for chroots, building in a clean chroot helps to prevent missing dependencies, as stated here.

OdinVex commented on 2024-11-25 23:44 (UTC)

@itsjustboris, Unable to test regarding chroot builds, I don't chroot build at all. If someone can confirm I'll add it. As for makedepends vs depends, it's staying this way until that project settles upstream regarding two libraries. One was not only made a dependency for compilation but also for running so it'd break for some otherwise if they get wishy-washy and go back to requiring. If the main developer upstream says they'll drop their way of including that unrar lib then I'll adjust but I don't have the time to determine which will need to be depended upon. Not to mention that's not entirely true (static vs dynamic, etc). I don't know what the upstream main developer is wanting to do and I try to keep packages as minimally modified regarding upstream projects so as not to tamper with their delivery.

itsjustboris commented on 2024-11-25 23:36 (UTC)

Hello again! librsvg should be added to makedepends as building in a clean chroot fails without it. Also, any packages listed under depends need not also be listed under makedepends. :)