Depend on a new enough setuptools to preserve data file access modes.
This commit is contained in:
parent
a2e5470426
commit
24e1196507
2 changed files with 8 additions and 1 deletions
2
debian/control.in
vendored
2
debian/control.in
vendored
|
@ -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
|
||||||
|
|
7
setup.py
7
setup.py
|
@ -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',
|
||||||
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue