Package Details: cgrc 2.0.6-0

Git Clone URL: https://aur.archlinux.org/cgrc.git (read-only, click to copy)
Package Base: cgrc
Description: Generic log formatter
Upstream URL: https://github.com/carlonluca/cgrc
Keywords: log terminal
Licenses: GPL
Submitter: luc4
Maintainer: luc4
Last Packager: luc4
Votes: 0
Popularity: 0.000000
First Submitted: 2022-08-17 23:23 (UTC)
Last Updated: 2026-07-12 10:50 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

luc4 commented on 2026-07-12 10:52 (UTC) (edited on 2026-07-12 10:52 (UTC) by luc4)

I could not reproduce the failure, but the change seems reasonable. Thanks.

marcelo.origoni commented on 2026-07-09 19:07 (UTC)

There's an issue with the PKGBUILD, it's trying to run git submodule update --init in a folder that is not a repo, I changed :

prepare() {
  export RUSTUP_TOOLCHAIN=stable
  git submodule update --init
  cd "$srcdir/$pkgname/cgrc-rust"
  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
}

to:

prepare() {
  export RUSTUP_TOOLCHAIN=stable
  cd "$srcdir/$pkgname"
  git submodule update --init
  cd cgrc-rust
  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
}