blob: 3758be8b39ed22bd19b53fd7bec2b5e47df0ae33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
PYTHON_DEPEND="2:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 3.*"
DISTUTILS_SRC_TEST="setup.py"
inherit distutils eutils
MY_P="FlexGet-${PV/_beta/r}"
DESCRIPTION="A multipurpose automation tool for content like torrents, nzbs, podcasts, comics, etc."
HOMEPAGE="http://flexget.com/"
SRC_URI="http://download.flexget.com/unstable/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="dev-python/setuptools
dev-python/feedparser
>=dev-python/sqlalchemy-0.6
dev-python/pyyaml
dev-python/beautifulsoup
>=dev-python/html5lib-0.11
dev-python/PyRSS2Gen
dev-python/pynzb
dev-python/progressbar
dev-python/flask
dev-python/cherrypy"
DEPEND="${RDEPEND}
dev-python/paver
test? ( >=dev-python/nose-0.11 )"
S="${WORKDIR}/${MY_P}"
src_prepare() {
# Prevent setup from grabbing nose from pypi
sed -e /setup_requires/d -i pavement.py || die
# Remove bundled paver
rm paver-minilib.zip || die
epatch_user
distutils_src_prepare
}
pkg_postinst() {
distutils_pkg_postinst
ewarn "FlexGet's database schema may need to be updated manually."
ewarn "See http://flexget.com/wiki/UpgradeActions for more information."
}
|