aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/control.in2
-rwxr-xr-xsetup.py7
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/control.in b/debian/control.in
index afd225c..fc37370 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -3,7 +3,7 @@ Section: admin
Priority: optional
Maintainer: Tommi Virtanen <tv@debian.org>
Standards-Version: 3.7.2
-Build-Depends: @cdbs@
+Build-Depends: @cdbs@, python-setuptools (>= 0.6c5)
Package: gitosis
Section: admin
diff --git a/setup.py b/setup.py
index 4e82d1d..30eb9a5 100755
--- a/setup.py
+++ b/setup.py
@@ -56,5 +56,12 @@ arbitrary commands.
# templates need to be a real directory, for git init
zip_safe=False,
+
+ install_requires=[
+ # setuptools 0.6a9 will have a non-executeable post-update
+ # hook, this will make gitosis-admin settings not update
+ # (fixed in 0.6c5, maybe earlier)
+ 'setuptools>=0.6c5',
+ ],
)