39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
PYTHON_COMPAT=( python{2_7,3_{4,5}} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A Session and Caching library with WSGI Middleware"
|
|
HOMEPAGE="https://github.com/bbangert/beaker https://pypi.python.org/pypi/Beaker"
|
|
# pypi tarball lacks tests
|
|
SRC_URI="https://github.com/bbangert/beaker/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
|
|
IUSE="test"
|
|
|
|
RDEPEND="virtual/python-funcsigs[${PYTHON_USEDEP}]"
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
|
test? (
|
|
${RDEPEND}
|
|
$(python_gen_impl_dep sqlite)
|
|
dev-python/mock[${PYTHON_USEDEP}]
|
|
dev-python/nose[${PYTHON_USEDEP}]
|
|
dev-python/pycrypto[${PYTHON_USEDEP}]
|
|
dev-python/sqlalchemy[${PYTHON_USEDEP}]
|
|
dev-python/webtest[${PYTHON_USEDEP}]
|
|
)"
|
|
|
|
python_test() {
|
|
esetup.py test
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "beaker also has optional support for packages"
|
|
elog "pycrypto and pycryptopp"
|
|
}
|