author | Da Risk <da_risk@geekorum.com> |
Sat, 06 Nov 2021 22:02:10 -0400 | |
changeset 246 | cf933138cb10 |
parent 83 | 0f0a8a3c7276 |
permissions | -rw-r--r-- |
72 | 1 |
# Copyright 1999-2012 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
|
3 |
# $Header: $ |
|
4 |
||
82
daeb8fa81015
update reviewboard deps and use distutils-r1 eclass
Da Risk <da_risk@geekorum.com>
parents:
81
diff
changeset
|
5 |
EAPI=5 |
72 | 6 |
|
82
daeb8fa81015
update reviewboard deps and use distutils-r1 eclass
Da Risk <da_risk@geekorum.com>
parents:
81
diff
changeset
|
7 |
PYTHON_COMPAT=( python2_6 python2_7 ) |
72 | 8 |
SUPPORT_PYTHON_ABIS="1" |
9 |
RESTRICT_PYTHON_ABIS="3.*" |
|
10 |
||
82
daeb8fa81015
update reviewboard deps and use distutils-r1 eclass
Da Risk <da_risk@geekorum.com>
parents:
81
diff
changeset
|
11 |
inherit distutils-r1 versionator |
72 | 12 |
|
13 |
MY_PN=ReviewBoard |
|
14 |
MY_PV=$(replace_version_separator '_' '') # only needed for beta release |
|
15 |
MY_P=${MY_PN}-${MY_PV} |
|
16 |
||
17 |
DESCRIPTION="A web-based tool for tracking of pending code changes to help code reviews" |
|
18 |
HOMEPAGE="http://www.reviewboard.org/" |
|
19 |
SRC_URI="http://downloads.${PN}.org/releases/${MY_PN}/$(get_version_component_range 1-2)/${MY_P}.tar.gz" |
|
20 |
||
21 |
LICENSE="MIT" |
|
22 |
SLOT="0" |
|
23 |
KEYWORDS="~amd64 ~x86" |
|
24 |
IUSE="" |
|
25 |
||
26 |
RDEPEND="dev-python/django-evolution |
|
27 |
dev-python/flup |
|
28 |
dev-python/imaging |
|
83
0f0a8a3c7276
update reviewboard dependencies again....
Da Risk <da_risk@geekorum.com>
parents:
82
diff
changeset
|
29 |
>=dev-python/paramiko-1.9.0 |
0f0a8a3c7276
update reviewboard dependencies again....
Da Risk <da_risk@geekorum.com>
parents:
82
diff
changeset
|
30 |
>=dev-python/pygments-1.5 |
72 | 31 |
dev-python/pytz |
32 |
dev-python/recaptcha-client |
|
80
3ad1a98111ee
Add one more dependency to reviewboard
Da Risk <da_risk@geekorum.com>
parents:
73
diff
changeset
|
33 |
dev-python/docutils |
82
daeb8fa81015
update reviewboard deps and use distutils-r1 eclass
Da Risk <da_risk@geekorum.com>
parents:
81
diff
changeset
|
34 |
>=dev-python/pytz-2012h |
72 | 35 |
dev-python/python-memcached |
73
bca42935fab0
Update reviewboard dependencies in ebuild
Da Risk <da_risk@geekorum.com>
parents:
72
diff
changeset
|
36 |
dev-python/python-dateutil:python-2 |
bca42935fab0
Update reviewboard dependencies in ebuild
Da Risk <da_risk@geekorum.com>
parents:
72
diff
changeset
|
37 |
dev-python/feedparser |
72 | 38 |
=dev-python/django-pipeline-1.2.24 |
39 |
dev-python/django-extensions |
|
40 |
>=dev-python/Djblets-0.7.11 |
|
83
0f0a8a3c7276
update reviewboard dependencies again....
Da Risk <da_risk@geekorum.com>
parents:
82
diff
changeset
|
41 |
>=dev-python/markdown-2.2.1 |
0f0a8a3c7276
update reviewboard dependencies again....
Da Risk <da_risk@geekorum.com>
parents:
82
diff
changeset
|
42 |
>=dev-python/mimeparse-0.1.3 |
72 | 43 |
dev-python/jsmin |
44 |
|| ( =dev-python/django-1.4.5[sqlite] |
|
45 |
=dev-python/django-1.4.5[mysql] |
|
46 |
=dev-python/django-1.4.5[postgres] ) |
|
47 |
|| ( ( www-apache/mod_wsgi www-servers/apache ) virtual/httpd-fastcgi )" |
|
48 |
||
49 |
S=${WORKDIR}/${MY_P} |
|
50 |
||
51 |
pkg_postinst() { |
|
52 |
elog "You must install any VCS tool you wish ${PN} to support." |
|
53 |
elog "dev-util/cvs, dev-vcs/git, dev-vcs/mercurial or dev-util/subversion." |
|
54 |
elog |
|
55 |
elog "Enable the mysql, postgres or sqlite USEflag on dev-python/django" |
|
56 |
elog "to use the corresponding database backend." |
|
57 |
elog |
|
58 |
elog "For speed and responsiveness, consider installing net-misc/memcached" |
|
59 |
elog "and dev-python/python-memcached" |
|
73
bca42935fab0
Update reviewboard dependencies in ebuild
Da Risk <da_risk@geekorum.com>
parents:
72
diff
changeset
|
60 |
elog "You should install dev-util/RBTools to get the post-review binary" |
72 | 61 |
} |