From 137bec6fba761fb27362987bd09a27432b9ebabe Mon Sep 17 00:00:00 2001 From: Wynn Wolf Arbor Date: Tue, 12 Jan 2021 18:06:32 +0100 Subject: app-office/fava: Drop support for python 3.7, add 3.9 Package-Manager: Portage-3.0.12, Repoman-3.0.2 --- app-office/fava/Manifest | 2 +- app-office/fava/fava-1.17-r1.ebuild | 42 +++++++++++++++++++++++++++++++++++++ app-office/fava/fava-1.17.ebuild | 42 ------------------------------------- 3 files changed, 43 insertions(+), 43 deletions(-) create mode 100644 app-office/fava/fava-1.17-r1.ebuild delete mode 100644 app-office/fava/fava-1.17.ebuild diff --git a/app-office/fava/Manifest b/app-office/fava/Manifest index 88d31a6..137c750 100644 --- a/app-office/fava/Manifest +++ b/app-office/fava/Manifest @@ -1,3 +1,3 @@ DIST fava-1.17.tar.gz 1510012 BLAKE2B a293daecb1c7f2ae5161acbafcf78d625876ed0adbf078aab1dae7840bf6f84ea509d2cf66ed502c523af0cdb4c061a8a332d9cbe2c27894fa5ff4f6e3b33a95 SHA512 050e612c65736da034861cf764dce71625c1e7d5f228d37f69a70205d3aea30c43ed0e2eab94ae60f05129f826a13ac321a5935eed092250976dda809ab7eacb -EBUILD fava-1.17.ebuild 1318 BLAKE2B cca64ad6857d15ab45b28d7a484e12b08db9a5e5a995b0ce64cbad030e6f8d9a57e694ffbcb2a5639b24ec711db56022f4346146eab8ec0e02827e1b22b4fdef SHA512 9568980fc99eac82545b4d39b2a9a4baab76a2c34b414b4155baffcc2f1d5da233cccab2a00e50c7404949668954a8c9c51fdd591ae2eb33a49481114e589052 +EBUILD fava-1.17-r1.ebuild 1318 BLAKE2B ad52317b5b6ca5f1ec709d4c37eac4458da87d8e5bf2e4d0ef934c36f63f27980eb829f28bb7d8c27a7513922d037260b5229a03b802e85ee049a28ad55a8725 SHA512 b90882c982aad957a62b04247077204243c9c5cdae3dbcf6d08a2713dc4691a94178b9d1549545a0ef0dbbcde5388e17405d9061af32439de1d2dffef978ed93 MISC metadata.xml 219 BLAKE2B 4017e2b1f6b36f72c186cfeb0955be57076a02d087acfd6caf9b9ec56509b5299be8d40dddaffd04433bb290f6dd35c94c59ac02a4f1ad7e63b13648e465e594 SHA512 555d3bce3f8cd9b4d78f59f494c326d7893f12c1907c1eb92107595886fc4a5e89b8b9fda7f434e021a9eede5dfd6d0c1dfee721c268ccad3d6a1865a92204e0 diff --git a/app-office/fava/fava-1.17-r1.ebuild b/app-office/fava/fava-1.17-r1.ebuild new file mode 100644 index 0000000..3df1675 --- /dev/null +++ b/app-office/fava/fava-1.17-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{8,9} ) +DISTUTILS_USE_SETUPTOOLS="rdepend" + +inherit distutils-r1 elisp-common + +DESCRIPTION="Web interface for the accounting tool Beancount" +HOMEPAGE="https://beancount.github.io/fava/ https://pypi.org/project/fava/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 x86" + +RDEPEND=" + >=app-office/beancount-2.3.0[${PYTHON_USEDEP}] + >=dev-python/Babel-2.6.0[${PYTHON_USEDEP}] + dev-python/cheroot[${PYTHON_USEDEP}] + >=dev-python/flask-babel-1.0.0[${PYTHON_USEDEP}] + >=dev-python/flask-0.10.1[${PYTHON_USEDEP}] + >=dev-python/jinja-2.10[${PYTHON_USEDEP}] + dev-python/click[${PYTHON_USEDEP}] + >=dev-python/markdown2-2.3.0[${PYTHON_USEDEP}] + dev-python/ply[${PYTHON_USEDEP}] + >=dev-python/simplejson-2.3.0[${PYTHON_USEDEP}] + >=dev-python/werkzeug-0.15.0[${PYTHON_USEDEP}] + " +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + # test_static_url presumes and requires the existence of these two files. + # They need only to exist in order for the code to determine the mtime + # value. + mkdir -p fava/static/{javascript,css} || die + touch fava/static/javascript/main.ts || die + touch fava/static/css/style.css || die + + py.test -v || die +} diff --git a/app-office/fava/fava-1.17.ebuild b/app-office/fava/fava-1.17.ebuild deleted file mode 100644 index a318569..0000000 --- a/app-office/fava/fava-1.17.ebuild +++ /dev/null @@ -1,42 +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="Web interface for the accounting tool Beancount" -HOMEPAGE="https://beancount.github.io/fava/ https://pypi.org/project/fava/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND=" - >=app-office/beancount-2.3.0[${PYTHON_USEDEP}] - >=dev-python/Babel-2.6.0[${PYTHON_USEDEP}] - dev-python/cheroot[${PYTHON_USEDEP}] - >=dev-python/flask-babel-1.0.0[${PYTHON_USEDEP}] - >=dev-python/flask-0.10.1[${PYTHON_USEDEP}] - >=dev-python/jinja-2.10[${PYTHON_USEDEP}] - dev-python/click[${PYTHON_USEDEP}] - >=dev-python/markdown2-2.3.0[${PYTHON_USEDEP}] - dev-python/ply[${PYTHON_USEDEP}] - >=dev-python/simplejson-2.3.0[${PYTHON_USEDEP}] - >=dev-python/werkzeug-0.15.0[${PYTHON_USEDEP}] - " -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -python_test() { - # test_static_url presumes and requires the existence of these two files. - # They need only to exist in order for the code to determine the mtime - # value. - mkdir -p fava/static/{javascript,css} || die - touch fava/static/javascript/main.ts || die - touch fava/static/css/style.css || die - - py.test -v || die -} -- cgit v1.2.3-2-gb3c3