aboutsummaryrefslogtreecommitdiffstats
path: root/app-office
diff options
context:
space:
mode:
authorWolfgang Müller2022-09-01 18:43:33 +0200
committerWolfgang Müller2022-09-01 18:43:33 +0200
commita2c5618f7dbcb442a0816545f204389cf55dfcd3 (patch)
treee83cae0ef1cc1be6525f38c41054d5a713026fe5 /app-office
parent36e734ccf2f91c844864fcd3dbc67e8e59b98df3 (diff)
downloadpramantha-a2c5618f7dbcb442a0816545f204389cf55dfcd3.tar.gz
app-office/beancount: Drop
This package now exists in the GURU overlay.
Diffstat (limited to 'app-office')
-rw-r--r--app-office/beancount/Manifest4
-rw-r--r--app-office/beancount/beancount-2.3.5.ebuild58
-rw-r--r--app-office/beancount/beancount-9999.ebuild58
-rw-r--r--app-office/beancount/metadata.xml7
4 files changed, 0 insertions, 127 deletions
diff --git a/app-office/beancount/Manifest b/app-office/beancount/Manifest
deleted file mode 100644
index ebda88c..0000000
--- a/app-office/beancount/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-DIST beancount-2.3.5.tar.gz 638463 BLAKE2B 9c2f561e7c7addc17addd598c2558ed51421c15bb2bc3a84b0e4bc8111f1baa331e3d8013fab03ff7ffc9a48010dbb425b8aa8078dc6ab6581d6c6fa78f1f9f6 SHA512 ddafcfad3b3b600b15dc6a6591a457c0dd10c46aed310502983ccd46931fcea9cb24227a302dcb798efdbc7167f6ca074e5b1cf0a02369f66fe20f386187427b
-EBUILD beancount-2.3.5.ebuild 1555 BLAKE2B 4de659511d970c373e418cb543e99e29f530076e0898c225313e86c59eb462f81428504934cc5223547b6f0f694bf4fc5eda91272b4614852a6760c8aa773bd4 SHA512 7de1de7e7993a62a682bcbd3a5feb994bce4840ddfb6f5029d4e5e2bdfa9f7ba7e8d6a304de9edcc30da9a6b0026c7ea96dcf8efdb3e3cb0510040b2af1e42bd
-EBUILD beancount-9999.ebuild 1555 BLAKE2B 4de659511d970c373e418cb543e99e29f530076e0898c225313e86c59eb462f81428504934cc5223547b6f0f694bf4fc5eda91272b4614852a6760c8aa773bd4 SHA512 7de1de7e7993a62a682bcbd3a5feb994bce4840ddfb6f5029d4e5e2bdfa9f7ba7e8d6a304de9edcc30da9a6b0026c7ea96dcf8efdb3e3cb0510040b2af1e42bd
-MISC metadata.xml 219 BLAKE2B 4017e2b1f6b36f72c186cfeb0955be57076a02d087acfd6caf9b9ec56509b5299be8d40dddaffd04433bb290f6dd35c94c59ac02a4f1ad7e63b13648e465e594 SHA512 555d3bce3f8cd9b4d78f59f494c326d7893f12c1907c1eb92107595886fc4a5e89b8b9fda7f434e021a9eede5dfd6d0c1dfee721c268ccad3d6a1865a92204e0
diff --git a/app-office/beancount/beancount-2.3.5.ebuild b/app-office/beancount/beancount-2.3.5.ebuild
deleted file mode 100644
index 8a0889d..0000000
--- a/app-office/beancount/beancount-2.3.5.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{9,10} )
-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"
-
-if [[ ${PV} == 9999* ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/beancount/beancount"
- EGIT_BRANCH="v2"
-else
- SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
- KEYWORDS="amd64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="emacs"
-
-SITEFILE="50{PN}-mode-gentoo.el"
-
-RDEPEND="
- $(python_gen_cond_dep '
- dev-python/beautifulsoup4[${PYTHON_USEDEP}]
- >=dev-python/click-7.0[${PYTHON_USEDEP}]
- >=dev-python/bottle-0.12[${PYTHON_USEDEP}]
- >=dev-python/google-api-python-client-1.8.2[${PYTHON_USEDEP}]
- >=dev-python/httplib2-0.10[${PYTHON_USEDEP}]
- >=dev-python/lxml-3.0[${PYTHON_USEDEP}]
- >=dev-python/oauth2client-4.0[${PYTHON_USEDEP}]
- >=dev-python/ply-3.4[${PYTHON_USEDEP}]
- >=dev-python/python-dateutil-2.6.0[${PYTHON_USEDEP}]
- >=dev-python/python-magic-0.4.12[${PYTHON_USEDEP}]
- >=dev-python/requests-2.0[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}]
- ')
-"
-
-python_compile_all() {
- use emacs && elisp-compile editors/emacs/beancount.el
-}
-
-python_install_all() {
- rm -rf "${ED}/usr/elisp" || die "removing 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
-}
diff --git a/app-office/beancount/beancount-9999.ebuild b/app-office/beancount/beancount-9999.ebuild
deleted file mode 100644
index 8a0889d..0000000
--- a/app-office/beancount/beancount-9999.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{9,10} )
-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"
-
-if [[ ${PV} == 9999* ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/beancount/beancount"
- EGIT_BRANCH="v2"
-else
- SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
- KEYWORDS="amd64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="emacs"
-
-SITEFILE="50{PN}-mode-gentoo.el"
-
-RDEPEND="
- $(python_gen_cond_dep '
- dev-python/beautifulsoup4[${PYTHON_USEDEP}]
- >=dev-python/click-7.0[${PYTHON_USEDEP}]
- >=dev-python/bottle-0.12[${PYTHON_USEDEP}]
- >=dev-python/google-api-python-client-1.8.2[${PYTHON_USEDEP}]
- >=dev-python/httplib2-0.10[${PYTHON_USEDEP}]
- >=dev-python/lxml-3.0[${PYTHON_USEDEP}]
- >=dev-python/oauth2client-4.0[${PYTHON_USEDEP}]
- >=dev-python/ply-3.4[${PYTHON_USEDEP}]
- >=dev-python/python-dateutil-2.6.0[${PYTHON_USEDEP}]
- >=dev-python/python-magic-0.4.12[${PYTHON_USEDEP}]
- >=dev-python/requests-2.0[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}]
- ')
-"
-
-python_compile_all() {
- use emacs && elisp-compile editors/emacs/beancount.el
-}
-
-python_install_all() {
- rm -rf "${ED}/usr/elisp" || die "removing 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
-}
diff --git a/app-office/beancount/metadata.xml b/app-office/beancount/metadata.xml
deleted file mode 100644
index c544433..0000000
--- a/app-office/beancount/metadata.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>wolf@oriole.systems</email>
- </maintainer>
-</pkgmetadata>