megacoffee.net Gentoo overlay - legacy mirror
We have moved to Git. This repository is only provided for compatibility with old installations. Learn how to migrate your installation here.
comparison dev-vcs/rhodecode/rhodecode-1.3.6.ebuild @ 12:c3acf66affe4
adding everything related to rhodecode; most likely got some transitive dependencies in rhodecode ebuild, needs cleaning
author | Daniel Neugebauer <dneuge@energiequant.de> |
---|---|
date | Tue, 24 Jul 2012 23:20:53 +0200 |
parents | |
children | 7d56754e9644 |
comparison
equal
deleted
inserted
replaced
11:60c9e5c6cdce | 12:c3acf66affe4 |
---|---|
1 # Copyright 1999-2012 Gentoo Foundation | |
2 # Distributed under the terms of the GNU General Public License v2 | |
3 | |
4 EAPI="2" | |
5 PYTHON_DEPEND="2" | |
6 SUPPORT_PYTHON_ABIS="1" | |
7 | |
8 inherit distutils | |
9 #inherit mercurial | |
10 | |
11 DESCRIPTION="a web-based frontend and middleware to Mercurial repositories" | |
12 HOMEPAGE="http://rhodecode.org/" | |
13 | |
14 #SRC_URI="https://rhodecode.org/rhodecode/archive/edfff9f37916389144d3a3644d0a7d7adfd79b11.zip?subrepos=true" | |
15 SRC_URI="https://rhodecode.org/rhodecode/archive/edfff9f37916389144d3a3644d0a7d7adfd79b11.zip" | |
16 | |
17 # removed from DEPEND for errors on emerge | |
18 # >=dev-python/python-dateutil-1.5 | |
19 # !>=dev-python/python-dateutil-2.0 | |
20 # >=dev-python/kombu-1.1.2 | |
21 # !>=dev-python/kombu-2.0.0 | |
22 | |
23 | |
24 DEPEND=">=dev-vcs/mercurial-2.2.1 | |
25 !>=dev-vcs/mercurial-2.3 | |
26 dev-python/pastescript | |
27 | |
28 =dev-python/pylons-1.0 | |
29 =dev-python/beaker-1.6.3 | |
30 =dev-python/webhelpers-1.3 | |
31 =dev-python/formencode-1.2.4 | |
32 =dev-python/sqlalchemy-0.7.6 | |
33 =dev-python/mako-0.7.0 | |
34 >=dev-python/pygments-1.4 | |
35 >=dev-python/whoosh-2.4.0 | |
36 !>=dev-python/whoosh-2.5 | |
37 dev-python/Babel | |
38 =dev-python/python-dateutil-1.5 | |
39 >=dev-python/dulwich-0.8.5 | |
40 !>=dev-python/dulwich-0.9.0 | |
41 =dev-python/webob-1.0.8 | |
42 =dev-python/markdown-2.1.1 | |
43 =dev-python/docutils-0.8.1 | |
44 =dev-python/simplejson-2.5.2 | |
45 | |
46 >=dev-python/pyparsing-1.5.0 | |
47 !>=dev-python/pyparsing-2.0.0 | |
48 | |
49 dev-python/py-bcrypt | |
50 =dev-python/celery-2.2.10 | |
51 !>=dev-python/celery-3 | |
52 =dev-python/kombu-1.5.1 | |
53 >=dev-python/anyjson-0.3.1 | |
54 >=dev-python/amqplib-1.0 | |
55 " | |
56 | |
57 LICENSE="AGPL-3" | |
58 SLOT="0" | |
59 KEYWORDS="~amd64 ~x86" | |
60 IUSE="" | |
61 | |
62 RESTRICT_PYTHON_ABIS="3.*" | |
63 | |
64 ACTUALDIR="rhodecode-edfff9f37916" | |
65 | |
66 distutils_src_compile_pre_hook() { | |
67 cd ${ACTUALDIR} | |
68 } | |
69 | |
70 distutils_src_install_pre_hook() { | |
71 cd ${ACTUALDIR} | |
72 } | |
73 | |
74 pkg_postinst() { | |
75 einfo "You need to setup RhodeCode according to the instructions at:" | |
76 einfo " http://packages.python.org/RhodeCode/setup.html" | |
77 } |