Search Criteria
Package Details: git-spice-bin 0.15.2-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/git-spice-bin.git (read-only, click to copy) |
---|---|
Package Base: | git-spice-bin |
Description: | A tool for stacking Git branches. |
Upstream URL: | https://abhinav.github.io/git-spice/ |
Licenses: | GPL-3.0-or-later |
Conflicts: | ghostscript, git-spice |
Provides: | git-spice |
Submitter: | abhinav |
Maintainer: | abhinav |
Last Packager: | abhinav |
Votes: | 0 |
Popularity: | 0.000000 |
First Submitted: | 2024-07-22 02:30 (UTC) |
Last Updated: | 2025-07-08 02:39 (UTC) |
Latest Comments
abhinav commented on 2024-07-23 12:36 (UTC)
Thanks for reporting, @Panaetius. Pushed a new package release with the issue fixed, and added 'ghostscript' to conflicting packages.
Panaetius commented on 2024-07-23 08:30 (UTC) (edited on 2024-07-23 08:33 (UTC) by Panaetius)
This currently fails with "install: cannot stat './git-spice': No such file or directory" because the executable in the source tarball is calles
gs
, notgit-spice
, but the PKGBUILD tries to install it usinginstall -Dm755 "./git-spice" "${pkgdir}/usr/bin/gs"
.that line should be
install -Dm755 "./gs" "${pkgdir}/usr/bin/gs"
or the tarball should be modifiedanother issue is that
/usr/bin/gs
conflicts with the https://archlinux.org/packages/extra/x86_64/ghostscript/ executable, so installation will fail on systems that have ghostscript installed