Search Criteria
Package Details: rustledger-bean-compat 0.12.0-1
Package Actions
| Git Clone URL: | https://aur.archlinux.org/rustledger.git (read-only, click to copy) |
|---|---|
| Package Base: | rustledger |
| Description: | Beancount-compatible bean-* commands for rustledger (drop-in replacement) |
| Upstream URL: | https://github.com/rustledger/rustledger |
| Licenses: | GPL-3.0-only |
| Conflicts: | beancount |
| Provides: | beancount |
| Submitter: | robcohen |
| Maintainer: | robcohen |
| Last Packager: | robcohen |
| Votes: | 0 |
| Popularity: | 0.000000 |
| First Submitted: | 2026-01-14 15:02 (UTC) |
| Last Updated: | 2026-04-13 15:08 (UTC) |
Dependencies (2)
- rustledgerAUR (rustledger-binAUR)
- cargo (rust-beta-binAUR, rustup-gitAUR, rust-gitAUR, rust, rustup) (make)
Required by (16)
- beancount-cryptoassets (requires beancount)
- beancount-ethereum-importer (requires beancount)
- beancount-exchangerates (requires beancount)
- beancount-language-server (requires beancount)
- beancount-language-server-git (requires beancount)
- beancount-reds-plugins (requires beancount)
- beangrow-git (requires beancount)
- beangulp (requires beancount)
- beanprice (requires beancount)
- beanprice-git (requires beancount)
- beanquery (requires beancount)
- beanquery-git (requires beancount)
- fava (requires beancount)
- fava-git (requires beancount)
- python-beancount-china-importers (requires beancount)
- python-beancount-import-git (requires beancount)
Latest Comments
robcohen commented on 2026-02-18 17:38 (UTC) (edited on 2026-02-18 17:48 (UTC) by robcohen)
Thanks for the detailed feedback @alerque, and I apologize for the frustration this has caused.
You're right that the recent releases have had packaging issues that should have been caught before pushing to AUR. I've taken steps to prevent this going forward:
Immediate fixes (PR #404, merging today):
CFLAGS+=' -ffat-lto-objects' for ring crate LTO compatibility
Fixed host-tuple to use actual host triple from rustc
CI gate added:
I've added an AUR workflow that tests the PKGBUILD in an Arch Linux Docker container before any release PR can merge. It runs makepkg, validates with namcap, and tests installation. This means broken packages can no longer reach AUR.
Regarding your Feb 15 feedback:
I'll push these PKGBUILD improvements once the current fix is verified.
I understand the trust has been damaged. The CI gate should help. You can see it at .github/workflows/aur.yml in the repo. Future releases will be tested against Arch before they reach AUR.
Also to be clear, the regressions are not caused by "the bot", yes some regressions were reintroduced but 'the bot' is just the CI (the CI has no LLM built in), my changes are made seperately and committed. I fixed the issues you addressed, and I was hoping those changes would persist when moving the process to CI, but they did not. That's my oversight, but also it's my first time setting up CI for AUR, and I noticed there's absolutely zero guidance or official actions for this, which is intentional by the Arch commmunity. It is not surprising that some garbage gets committed when CI scripts are being developed/tested. Apparently some effort is being made to rectify this in https://gitlab.archlinux.org/archlinux/rfcs/-/merge_requests/63 for official packages, but it's hard to parse exactly what they're talking about.
alerque commented on 2026-02-18 07:22 (UTC) (edited on 2026-02-18 07:22 (UTC) by alerque)
WARNING: This upstream is just vibe coding stuff and letting an LLM throw spagetti at the wall and see what sticks. I gave them a whole bunch of specifics to fix, and most of them got implemented... but now the bot is busy undoing those fixes and adding new breakages. The last three commits as of this commit time are COMPLETELY bogus.
alerque commented on 2026-02-15 20:28 (UTC)
A few comments of packaging (from an Arch Linux package maintainer):
depends=(glibc libgcc)makedepends=(cargo)is correct in this case.provides=(rledger). I know that is a binary in the package, but that is not what the provides= declaration is for at all. No other packages should depend on it by it's binary name, they will always use the actual package (base) name.prepare(){}function that preloads the Cargo cache with just the packages needed for the target arch (cargo fetch --locked --target host-tuple) will save quite a bit of downloads and enable offline builds. Then change --locked to --frozen in the other cargo invocations so they don't check the network.conflicts=(beancount)and/orprovides=(beancount)? If they are drop in replacements for that package they should. But...