24 lines
749 B
Bash
24 lines
749 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/APScheduler/APScheduler-3.0.1.ebuild,v 1.1 2015/01/03 06:27:25 floppym Exp $
|
|
|
|
EAPI=5
|
|
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="In-process task scheduler with Cron-like capabilities"
|
|
HOMEPAGE="https://bitbucket.org/agronholm/apscheduler"
|
|
SRC_URI="mirror://pypi/A/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
>=dev-python/six-1.4.0[${PYTHON_USEDEP}]
|
|
dev-python/tzlocal[${PYTHON_USEDEP}]
|
|
virtual/python-futures[${PYTHON_USEDEP}]"
|
|
DEPEND="${RDEPEND}"
|