Search Criteria
Package Details: mycorrhiza-git 1.15.1.r3.gd679eb4-3
Package Actions
Git Clone URL: | https://aur.archlinux.org/mycorrhiza-git.git (read-only, click to copy) |
---|---|
Package Base: | mycorrhiza-git |
Description: | Filesystem and git-based wiki engine written in Go using mycomarkup (latest commit) |
Upstream URL: | https://github.com/bouncepaw/mycorrhiza |
Keywords: | git mycomarkup wiki |
Licenses: | AGPL-3.0-or-later |
Conflicts: | mycorrhiza |
Provides: | mycorrhiza |
Submitter: | kseistrup |
Maintainer: | kseistrup |
Last Packager: | kseistrup |
Votes: | 1 |
Popularity: | 0.63 |
First Submitted: | 2023-08-25 13:26 (UTC) |
Last Updated: | 2025-01-06 15:46 (UTC) |
Dependencies (3)
- glibc (glibc-gitAUR, glibc-linux4AUR, glibc-eacAUR, glibc-eac-binAUR)
- git (git-gitAUR, git-glAUR) (make)
- go (go-gitAUR, gcc-go-gitAUR, gcc-go-snapshotAUR, gcc-go) (make)
Latest Comments
novenary commented on 2025-01-06 15:52 (UTC)
Yep, it builds now. The rest is pretty inconsequential to be fair.
Thank you!
kseistrup commented on 2025-01-06 15:47 (UTC)
@novenary Thanks for your comments, let's see if you can live with the newly pushed
PKGBUILD
.novenary commented on 2025-01-06 15:37 (UTC) (edited on 2025-01-06 15:40 (UTC) by novenary)
Hi!
There are a few problems with your PKGBUILD:
test -t 1
causes the build to fail when stdout is not a TTY (for example, it's been failing in aurto for me); to be honest, I'm not sure why it's even there, did you encounter an issue that warranted its introduction?&&
after mkdir is redundant: if that failed, then the error would be caught and the build would abort anyway (which is what's happening withtest -t
right now); if&&
was working as expected, non-zero status codes would be ignored which is definitely not what we want here.$arch
).go test
does is waste CPU cycles.Thanks for packaging this, looking forward to at least the first point being fixed.