Package Details: beancount 2.3.6-1

Git Clone URL: https://aur.archlinux.org/beancount.git (read-only, click to copy)
Package Base: beancount
Description: Double-Entry Accounting from Text Files
Upstream URL: http://furius.ca/beancount/
Keywords: accounting beancount double-entry
Licenses: GPL
Conflicts: beancount-hg
Submitter: wzyboy
Maintainer: wzyboy
Last Packager: wzyboy
Votes: 23
Popularity: 0.089208
First Submitted: 2016-05-16 08:03 (UTC)
Last Updated: 2023-12-17 22:53 (UTC)

Latest Comments

1 2 Next › Last »

antage commented on 2023-05-12 09:31 (UTC) (edited on 2023-05-12 09:31 (UTC) by antage)

Please, add python-setuptools in dependencies. The package can't be installed without python-setuptools:

Traceback (most recent call last):
  File "/home/xxx/.cache/rua/build/beancount/src/beancount-2.3.5/setup.py", line 18, in <module>
    from setuptools import setup, find_packages, Extension
ModuleNotFoundError: No module named 'setuptools'

turbine commented on 2021-06-30 03:56 (UTC)

In order for this to build, I changed python-magic-ahupp (an AUR packge) to python-magic from the Community repo and the build and installation were successful. I have not tested whether the functionality provided by this module works. In any case, the "Installing Beancount" document lists this as an optional dependency, which the PKGBULD should probably also reflect.

Otherwise, this is really nice.

wzyboy commented on 2020-12-08 17:10 (UTC)

@yadunut After upgrading to Python 3.9, use pacman -Qo /usr/lib/python3.8 to find out what needs to be rebuilt. Python upgrades its minor version every a few years so don't panic, you do not need to do this often.

Or, the package maintainer (me) can trigger a rebuild by bumping the pkgrel :)

yadunut commented on 2020-12-08 16:20 (UTC)

@wzyboy how do I manually rebuild every python package? Is there a easy way to do it?

wzyboy commented on 2020-12-06 07:26 (UTC)

@yadunut You need to rebuild every Python package after upgrading Python. For official packages, this has already been done. For AUR packages, you have to do it yourself.

yadunut commented on 2020-12-06 04:58 (UTC)

Upgrading to python 3.9 broke this package. Changing to beancount-git works

wzyboy commented on 2020-06-12 05:52 (UTC)

@sugar Done.

suger commented on 2020-06-12 05:47 (UTC)

Would you mind adding armv7h to the supported architectures? It builds and works perfectly fine.

suger commented on 2020-06-12 05:46 (UTC)

@avanc beancount-mode is now (and has been for a while, I think) a major mode, so you can't have it and org-mode at the same time. You need to use outline-minor-mode

(add-hook 'beancount-mode-hook #'outline-minor-mode)

avanc commented on 2019-12-11 09:28 (UTC)

I'm not able to get beancount emcas mode and orgmode running at the same time. I tried to add the following to ~/.emacs:

(add-to-list 'load-path "/usr/elisp/") (require 'beancount) (add-to-list 'auto-mode-alist '("\.beancount\'" . beancount-mode))

And my beancount file starts with: ;; -- mode: org; mode: beancount; coding: utf-8; fill-column: 400; --

However, org mode is not applied. If I remove ~/.emacs ordmode works as expected, but not beancount.