add ebuild for beancount

This commit is contained in:
Fredrik Eriksson 2023-03-15 17:25:29 +01:00
parent 1abf7fd94f
commit f5f3c61270
Signed by: feffe
GPG Key ID: CD5A131FADFA3968
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,2 @@
DIST beancount-2.3.5.tar.gz 1718715 BLAKE2B 2bcbf250e6947c6ea93f7c4308fac2ea03c0b5b722dc4a6eb396133880ca201235ceb8cbb2e3a6e63afe573e1b3ab8bb945444a1edc73791b73200fb4d45bd18 SHA512 a3f1343ddf54cf13ef60802de210dc89e9ae202bca802b1b4eb532588f71d51fa4b71672b4e6a1e9676135d406fd55c421b80c439fa2f5f4279e61211f558a2a
EBUILD beancount-2.3.5.ebuild 541 BLAKE2B a320717cc661493415eb8566daaff5c5ccc515b7c1d32aec3a568e87af3fd56abd58ef733f6c28f1a25ac3284ef65ddbc2fd0c67a35761b48dfa074102fb2c10 SHA512 6b43e44dee671c930bfd0b16ac43dcb160e11f7ce6c001b837ca01441b48e978262771968d4386dfc35f3546c2f8ddcfeb8d8838d5824b5d5e791ddf6435ab15

View File

@ -0,0 +1,25 @@
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10,11} )
inherit distutils-r1
DESCRIPTION="Double-Entry Accounting from Text Files"
HOMEPAGE="https://github.com/beancount/beancount"
SRC_URI="https://github.com/beancount/beancount/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
dev-python/python-dateutil
dev-python/click"
RDEPEND="${DEPEND}"
BDEPEND=""
# Because I have no idea...
RESTRICT="test"