aboutsummaryrefslogtreecommitdiffstats
path: root/app-office/beancount/beancount-2.3.0.ebuild
diff options
context:
space:
mode:
authorWynn Wolf Arbor2020-07-05 19:59:52 +0200
committerWynn Wolf Arbor2020-07-05 19:59:52 +0200
commit12bb211b827ffa2969b5b2b431a64e1df5afed77 (patch)
tree5a4ba56c8405b4e9783bb7a98838618b4226bd33 /app-office/beancount/beancount-2.3.0.ebuild
parentc5a6f93be9a77f2e01bc198795cf15d4a4b8cef8 (diff)
downloadpramantha-12bb211b827ffa2969b5b2b431a64e1df5afed77.tar.gz
app-office/beancount: Bump to 2.3.0-r1
Drop pytest dependency which was included mistakenly, and update the dependency of dev-python/google-api-python-client to >= 1.8.2. Package-Manager: Portage-2.3.99, Repoman-2.3.23
Diffstat (limited to 'app-office/beancount/beancount-2.3.0.ebuild')
-rw-r--r--app-office/beancount/beancount-2.3.0.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/app-office/beancount/beancount-2.3.0.ebuild b/app-office/beancount/beancount-2.3.0.ebuild
deleted file mode 100644
index 7a95989..0000000
--- a/app-office/beancount/beancount-2.3.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7,8} )
-DISTUTILS_USE_SETUPTOOLS="rdepend"
-
-inherit distutils-r1 elisp-common
-
-DESCRIPTION="Command-line Double-Entry Accounting"
-HOMEPAGE="http://furius.ca/beancount https://pypi.org/project/beancount"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="emacs"
-
-SITEFILE="50{PN}-mode-gentoo.el"
-
-RDEPEND="
- >=dev-python/python-dateutil-2.6.0[${PYTHON_USEDEP}]
- >=dev-python/bottle-0.12[${PYTHON_USEDEP}]
- >=dev-python/ply-3.4[${PYTHON_USEDEP}]
- >=dev-python/lxml-3.0[${PYTHON_USEDEP}]
- >=dev-python/google-api-python-client-1.6.0[${PYTHON_USEDEP}]
- >=dev-python/oauth2client-4.0[${PYTHON_USEDEP}]
- >=dev-python/httplib2-0.10[${PYTHON_USEDEP}]
- >=dev-python/requests-2.0[${PYTHON_USEDEP}]
- dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
- >=dev-python/python-magic-0.4.12[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}]
- "
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-
-python_compile_all() {
- use emacs && elisp-compile editors/emacs/beancount.el
-}
-
-python_install_all() {
- rm -rf "${ED}/usr/elisp" || die "removing erroneous elisp files failed"
-
- distutils-r1_python_install_all
-
- if use emacs; then
- elisp-install ${PN} editors/emacs/beancount.el
- elisp-site-file-install "${FILESDIR}/${SITEFILE}"
- fi
-}