21 lines
557 B
Bash
21 lines
557 B
Bash
|
# Copyright 1999-2017 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Id$
|
||
|
|
||
|
EAPI=5
|
||
|
PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy )
|
||
|
|
||
|
inherit distutils-r1
|
||
|
|
||
|
DESCRIPTION="Flask-Compress allows you to easily compress your Flask application's responses with gzip."
|
||
|
HOMEPAGE="https://github.com/libwilliam/flask-compress"
|
||
|
SRC_URI="https://github.com/libwilliam/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
|
||
|
LICENSE="MIT"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="amd64 x86"
|
||
|
IUSE=""
|
||
|
|
||
|
RDEPEND=">=dev-python/flask-0.9[${PYTHON_USEDEP}]"
|
||
|
DEPEND="${RDEPEND}"
|