summaryrefslogtreecommitdiff
blob: 1bc69552b6c4163992e37ddf2906ef004f99db51 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/turbogears/turbogears-1.0.8.ebuild,v 1.2 2009/04/01 11:49:33 patrick Exp $

PYTHON_DEPEND="2:2.4"

inherit distutils

KEYWORDS="~amd64 ~x86"

case ${PV} in
2.0_rc1)
	MY_FOLDER=2.0rc1
	MY_FILE=2.0rc1. ;; # With trailing dot, no typo
2.0)
	MY_FOLDER=2.0final
	MY_FILE=2.0 ;;
*)
	MY_FOLDER=2.0rc1
	MY_FILE=${PV/_beta/b} ;;
esac

MY_P="TurboGears2-${MY_FILE}"


DESCRIPTION="The rapid web development meta-framework you've been looking for."
HOMEPAGE="http://www.turbogears.org/"
SRC_URI="http://www.turbogears.org/2.0/downloads/${MY_FOLDER}/${MY_P}.tar.gz"


LICENSE="MIT"
SLOT="0"
IUSE="test"

# this package is not yet py2.6 ready. Keep deps at =py-2.{4,5} for now.

RDEPEND=">=dev-python/pastescript-1.6.2
	test? ( >=dev-python/nose-0.9.1
		dev-python/coverage
		>=dev-python/turbokid-1.0.4
		>=dev-python/sqlalchemy-0.5
		dev-python/jinja2
		>=dev-python/chameleon-genshi-1.0_beta4
		>=dev-python/repoze-what-1.0.5
		>=dev-python/repoze-who-testutil-1.0_rc1
	)
	>=dev-python/pylons-0.9.7
	>=dev-python/genshi-0.5.1
	>=dev-python/webflash-0.1_alpha9
	>=dev-python/toscawidgets-0.9.4
	>=dev-python/weberror-0.10.1
	>=dev-python/repoze-what-pylons-1.0_rc3
	>=dev-python/repoze-tm2-1.0_alpha4
	>=dev-python/turbojson-1.2.1"

DEPEND="${RDEPEND}
	app-arch/zip
	>=dev-python/setuptools-0.6_rc5"

S="${WORKDIR}/${MY_P}"

src_test() {
	#I had this fail if pylons is emerged: can't import turbogears config
	#pythonhead http://trac.turbogears.org/ticket/1774
	PYTHONPATH=. "${python}" setup.py test || die "tests failed"
}

pkg_postinst() {
	elog "While not directly depending on them, TurboGears works with/integrates"
	elog "the following packages:"
	elog " - dev-python/sqlalchemy (already installed when built with tests enabled)"
}