Index: trunk/pybal/debian/control |
— | — | @@ -7,7 +7,7 @@ |
8 | 8 | |
9 | 9 | Package: pybal |
10 | 10 | Architecture: all |
11 | | -Depends: ${shlibs:Depends}, ${misc:Depends}, ipvsadm, python-twisted |
| 11 | +Depends: ${shlibs:Depends}, ${misc:Depends}, ipvsadm, python (>= 2.5), python-twisted |
12 | 12 | Description: Wikimedia LVS monitor |
13 | 13 | PyBal is an LVS load balancer monitor. It checks the status of |
14 | 14 | backend servers through various methods (monitors) and alters |
Index: trunk/pybal/debian/changelog |
— | — | @@ -1,3 +1,10 @@ |
| 2 | +pybal (0.1+r20262-2) feisty; urgency=low |
| 3 | + |
| 4 | + * Build for Feisty and hard depend on python >= 2.5 to prevent being |
| 5 | + installed on Edgy |
| 6 | + |
| 7 | + -- Mark Bergsma <mark@wikimedia.org> Thu, 14 Jun 2007 19:54:38 +0000 |
| 8 | + |
2 | 9 | pybal (0.1+r20262) edgy; urgency=low |
3 | 10 | |
4 | 11 | * Update to r20262 |
Index: trunk/pybal/main.py |
— | — | @@ -1,4 +1,4 @@ |
2 | | -#!/usr/bin/python |
| 2 | +#!/usr/bin/python2.5 |
3 | 3 | |
4 | 4 | """ |
5 | 5 | PyBal |
— | — | @@ -10,4 +10,4 @@ |
11 | 11 | from pybal import pybal |
12 | 12 | |
13 | 13 | if __name__ == '__main__': |
14 | | - pybal.main() |
\ No newline at end of file |
| 14 | + pybal.main() |