Depend on a new enough setuptools to preserve data file access modes.

This commit is contained in:
Tommi Virtanen 2007-11-15 21:11:59 +02:00
parent a2e5470426
commit 24e1196507
2 changed files with 8 additions and 1 deletions

2
debian/control.in vendored
View file

@ -3,7 +3,7 @@ Section: admin
Priority: optional Priority: optional
Maintainer: Tommi Virtanen <tv@debian.org> Maintainer: Tommi Virtanen <tv@debian.org>
Standards-Version: 3.7.2 Standards-Version: 3.7.2
Build-Depends: @cdbs@ Build-Depends: @cdbs@, python-setuptools (>= 0.6c5)
Package: gitosis Package: gitosis
Section: admin Section: admin

View file

@ -56,5 +56,12 @@ arbitrary commands.
# templates need to be a real directory, for git init # templates need to be a real directory, for git init
zip_safe=False, 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',
],
) )