Package Details: hledger-web-bin 1.34-1

Git Clone URL: https://aur.archlinux.org/hledger-bin.git (read-only, click to copy)
Package Base: hledger-bin
Description: Web-based user interface for the hledger accounting system
Upstream URL: http://hledger.org
Keywords: hledger ledger
Licenses: GPL
Conflicts: hledger-web
Provides: hledger-web
Submitter: ccat3z
Maintainer: dude
Last Packager: dude
Votes: 5
Popularity: 0.000060
First Submitted: 2020-08-22 05:39 (UTC)
Last Updated: 2024-06-14 21:46 (UTC)

Latest Comments

1 2 3 Next › Last »

gesh commented on 2024-07-09 14:40 (UTC) (edited on 2024-07-09 14:43 (UTC) by gesh)

Please add the bash completion:

diff --git a/PKGBUILD b/PKGBUILD
index f0818d5..0a9d6ff 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -11,10 +11,10 @@ depends=('gmp' 'ncurses5-compat-libs')
 makedepends=('coreutils')
 source=(
     hledger-${pkgver}.tar.gz::https://github.com/simonmichael/hledger/releases/download/${pkgver}/hledger-linux-x64.tar.gz
+    https://raw.githubusercontent.com/simonmichael/hledger/master/hledger/shell-completion/hledger-completion.bash
 )
-sha256sums=(
-    bbeef13b7cea31e5896cfcc5b2563b96187673bddc29f243815814a44f25a139
-)
+sha256sums=('bbeef13b7cea31e5896cfcc5b2563b96187673bddc29f243815814a44f25a139'
+            '662abb7f39b9582315a6d014012fdff56664e8cf6b2665f1d96ae3285930d4ce')

 prepare() {
     cd $srcdir
@@ -28,6 +28,8 @@ package_hledger-bin() {
     depends+=(glibc)

     install -Dm 755 ./hledger "$pkgdir/usr/bin/hledger"
+    install -Dm 644 hledger-completion.bash \
+        "$pkgdir/usr/share/bash-completion/completions/hledger"
 }

 package_hledger-ui-bin() {

behonest commented on 2022-03-05 09:10 (UTC)

Please update 1.25: https://github.com/simonmichael/hledger/releases/tag/1.25

ccat3z commented on 2022-01-15 16:07 (UTC)

@tuh8888 Fixed, thanks.

tuh8888 commented on 2022-01-13 19:10 (UTC)

Fails to download because download URL is incorrect. Current: https://github.com/simonmichael/hledger/releases/download/hledger-1.24.1/hledger-linux-x64.zip Should be: https://github.com/simonmichael/hledger/releases/download/1.24.1/hledger-linux-x64.zip

ccat3z commented on 2021-05-31 05:50 (UTC)

@behonest It should work on non-English systems now.

behonest commented on 2021-05-20 08:44 (UTC)

Solved this issue by using en locale.

If ru_RU LANG:

==> Запускается prepare()...
Patch hledger
./patch-ncurses5.sh: строка 30: 0x00002d34 + : синтаксическая ошибка: ожидается операнд (неверный маркер «+ »)

To solve just use 'en' LANG:

LANG=en makepkg -si

dude commented on 2021-05-14 00:56 (UTC)

Thanks for fixing that so quickly

samhh commented on 2021-05-13 14:28 (UTC)

The updated package works after clearing my cache, thanks both!

ccat3z commented on 2021-05-13 14:11 (UTC)

@samhh Fixed in 1.21-3. xxd was replaced by od in package coreutils.

ccat3z commented on 2021-05-13 13:21 (UTC)

@dude @samhh Since xxd is part of vim, adding xxd-standalone to makedepends may cause problems for vim users. I am trying to replace xxd with a similar tool (like hexdump).