You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/flexget/flexget-9999.ebuild

75 lines
1.6 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/flexget/flexget-9999.ebuild,v 1.29 2013/01/01 18:45:01 floppym Exp $
EAPI=5
PYTHON_COMPAT=( python2_{6,7} )
inherit distutils-r1 eutils
if [[ ${PV} != 9999 ]]; then
MY_P="FlexGet-${PV/_beta/r}"
SRC_URI="http://download.flexget.com/unstable/${MY_P}.tar.gz"
KEYWORDS="~amd64 ~x86"
else
inherit subversion
SRC_URI=""
ESVN_REPO_URI="http://svn.flexget.com/trunk"
KEYWORDS=""
fi
DESCRIPTION="Multipurpose automation tool for content like torrents, nzbs, podcasts, comics"
HOMEPAGE="http://flexget.com/"
LICENSE="MIT"
SLOT="0"
IUSE="test"
DEPEND="
>=dev-python/feedparser-5.1.2
>=dev-python/sqlalchemy-0.7
dev-python/pyyaml
dev-python/beautifulsoup:python-2
dev-python/beautifulsoup:4
dev-python/html5lib
dev-python/jinja
dev-python/PyRSS2Gen
dev-python/pynzb
dev-python/progressbar
dev-python/flask
dev-python/cherrypy
dev-python/python-dateutil
=dev-python/requests-0.14*
dev-python/setuptools
virtual/python-argparse[${PYTHON_USEDEP}]
"
RDEPEND="${DEPEND}"
DEPEND+=" test? ( dev-python/nose )"
if [[ ${PV} == 9999 ]]; then
DEPEND+=" dev-python/paver"
else
S="${WORKDIR}/${MY_P}"
fi
src_prepare() {
# Prevent setup from grabbing nose from pypi
sed -e /setup_requires/d \
-e '/SQLAlchemy/s/, <0.8//' \
-e '/BeautifulSoup/s/, <3.3//' \
-e '/beautifulsoup4/s/, <4.2//' \
-i pavement.py || die
if [[ ${PV} == 9999 ]]; then
# Generate setup.py
paver generate_setup || die
fi
distutils-r1_src_prepare
}
python_test() {
esetup.py test
}