summaryrefslogtreecommitdiff
path: root/dev-python/aiohttp-jinja2/aiohttp-jinja2-0.15.0.ebuild
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gmail.com>2021-07-30 12:29:00 +0300
committerMichał Górny <mgorny@gentoo.org>2021-08-02 10:41:01 +0200
commit59a1fe8516852fec1679f8b5579c9c07dcad2e63 (patch)
treee1690b0f5ad2553b7b44bb5848a7859720c3a8f6 /dev-python/aiohttp-jinja2/aiohttp-jinja2-0.15.0.ebuild
parent12274c6e160e5c0937e1ef025994800a424c9a21 (diff)
downloadgentoo-59a1fe8516852fec1679f8b5579c9c07dcad2e63.tar.gz
gentoo-59a1fe8516852fec1679f8b5579c9c07dcad2e63.tar.bz2
gentoo-59a1fe8516852fec1679f8b5579c9c07dcad2e63.zip
dev-python/aiohttp-jinja2: drop 0.15.0
Signed-off-by: Arthur Zamarin <arthurzam@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/21834 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/aiohttp-jinja2/aiohttp-jinja2-0.15.0.ebuild')
-rw-r--r--dev-python/aiohttp-jinja2/aiohttp-jinja2-0.15.0.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/dev-python/aiohttp-jinja2/aiohttp-jinja2-0.15.0.ebuild b/dev-python/aiohttp-jinja2/aiohttp-jinja2-0.15.0.ebuild
deleted file mode 100644
index d06f6beff00b..000000000000
--- a/dev-python/aiohttp-jinja2/aiohttp-jinja2-0.15.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-PYTHON_COMPAT=( python3_{7,8} )
-
-inherit distutils-r1
-
-DESCRIPTION="jinja2 template renderer for aiohttp.web"
-HOMEPAGE="https://github.com/aio-libs/aiohttp-jinja2"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- >=dev-python/aiohttp-2.3.9[${PYTHON_USEDEP}]
- >=dev-python/jinja-2.10[${PYTHON_USEDEP}]
-"
-DEPEND="
- ${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
- doc? (
- >=dev-python/alabaster-0.6.2[${PYTHON_USEDEP}]
- dev-python/sphinx[${PYTHON_USEDEP}]
- )
- test? (
- >=dev-python/pytest-3.2.2[${PYTHON_USEDEP}]
- >=dev-python/pytest-aiohttp-0.3.0[${PYTHON_USEDEP}]
- )
-"
-
-DOCS=( CHANGES.txt README.rst )
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- pytest -vv tests || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
-
- distutils-r1_python_install_all
-}