diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2006-06-23 23:01:21 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2006-06-23 23:01:21 +0200 |
commit | e0a2416389369199bad228c644e3b09a9b8418a7 (patch) | |
tree | ce6632fb35137925b1416859b675ad2755c1c7ba | |
parent | 27066a66f49048b43d502d4851d65177ee86821a (diff) |
switch to using python-support and follow recent python policy
git-svn-id: http://arthurdejong.org/svn/webcheck/webcheck@292 86f53f14-5ff3-0310-afe5-9b438ce3f40c
-rw-r--r-- | debian/control | 6 | ||||
-rw-r--r-- | debian/pycompat | 1 | ||||
-rwxr-xr-x | debian/rules | 3 |
3 files changed, 7 insertions, 3 deletions
diff --git a/debian/control b/debian/control index a426d8f..d167b7c 100644 --- a/debian/control +++ b/debian/control @@ -3,12 +3,14 @@ Section: web Priority: extra Maintainer: Arthur de Jong <adejong@debian.org> Standards-Version: 3.7.2 -Build-Depends: debhelper (>= 4) -Build-Depends-Indep: python +Build-Depends: debhelper (>= 5.0.37.2) +Build-Depends-Indep: python, python-support (>= 0.3) +XS-Python-Version: current Package: webcheck Architecture: all Depends: ${python:Depends} +XB-Python-Version: ${python:Versions} Suggests: lynx | www-browser Provides: linbot Conflicts: linbot diff --git a/debian/pycompat b/debian/pycompat new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/debian/pycompat @@ -0,0 +1 @@ +2 diff --git a/debian/rules b/debian/rules index 07737e4..f208233 100755 --- a/debian/rules +++ b/debian/rules @@ -2,7 +2,7 @@ export DH_VERBOSE=1 -PYBASE := usr/lib/python2.3/site-packages/webcheck +PYBASE := usr/share/webcheck build: @@ -27,6 +27,7 @@ install: build binary-indep: build install dh_testdir dh_testroot + dh_pysupport dh_python dh_installdocs README TODO AUTHORS NEWS dh_installman webcheck.1 |