aboutsummaryrefslogtreecommitdiff
path: root/scripts/rhodecode-setup
diff options
context:
space:
mode:
authorMilo Casagrande <milo@ubuntu.com>2013-01-22 18:42:00 +0100
committerMilo Casagrande <milo@ubuntu.com>2013-01-22 18:42:00 +0100
commitf71c9b96e6b513baf84bbb1d2295eace0a351c74 (patch)
tree73b70345c9ced3ee6b95db5d1bec6e555fa1524d /scripts/rhodecode-setup
parent6dc67978fc92f1e105103a08fe7d55cf7150326b (diff)
Fixed dependencies, corrected user argument.
Diffstat (limited to 'scripts/rhodecode-setup')
-rw-r--r--scripts/rhodecode-setup12
1 files changed, 3 insertions, 9 deletions
diff --git a/scripts/rhodecode-setup b/scripts/rhodecode-setup
index 6a3bf83..a4d28a6 100644
--- a/scripts/rhodecode-setup
+++ b/scripts/rhodecode-setup
@@ -13,10 +13,10 @@ REQUIRED_PACKAGES = ["python-pip", "python-webob", "python-bcrypt",
"python-mock", "python-babel", "python-dateutil",
"python-markdown", "python-webhelpers", "python-docutils",
"python-formencode", "python-pylons", "python-dev",
- "python-pastescript", "python-psycopg2",
+ "python-pastescript", "python-psycopg2", "python-nose",
"build-essential", "apache2"]
# Packages required for celery integration.
-CELERY_REQUIRED_PACKAGES = ["python-celery", "rabbitmq-server"]
+CELERY_REQUIRED_PACKAGES = ["rabbitmq-server"]
# Packages for the backend to use.
SQLITE_DB = "sqlite"
@@ -27,12 +27,6 @@ DB_NAME = "rhodecode"
# Packages to be installed via PIP.
PIP_PACKAGES = {
"mercurial": "2.4.1",
- "beaker": "1.6.4",
- "sqlalchemy": "0.7.9",
- "mako": "0.7.3",
- "pygments": "1.5",
- "whoosh": "2.4.0",
- "simplejson": "2.5.2",
"waitress": "0.8.1",
}
@@ -401,7 +395,7 @@ def install_rhodecode(work_dir, user=None):
cmd_args = ["python", "setup.py", "install"]
if user:
- cmd_args.append("--user %s" % user)
+ cmd_args.append("--user")
execute_command(cmd_args, work_dir=work_dir)