diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-11-15 15:56:13 +0100 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-11-15 15:56:13 +0100 |
commit | 566815597c3ebf327c8c84932f48c3649304c4e5 (patch) | |
tree | 39c29948f2b18d2c4d4b1d8b372c3fc7e30227ed /debian | |
parent | 3ff282ffef9f010bca780f506e525924f64c1f24 (diff) | |
download | pylint-git-566815597c3ebf327c8c84932f48c3649304c4e5.tar.gz |
prepare 0.22.0pylint-version-0.22.0
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 8 |
3 files changed, 11 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog index c39a6e6ee..da8c86bd3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pylint (0.22.0-1) unstable; urgency=low + + * new upstream release + + -- Émile Anclin <emile.anclin@logilab.fr> Mon, 15 Nov 2010 15:54:44 +0100 + pylint (0.21.4-1) unstable; urgency=low * new upstream release diff --git a/debian/control b/debian/control index 7c631851f..9a0bbaa37 100644 --- a/debian/control +++ b/debian/control @@ -13,7 +13,7 @@ Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/pylint/trunk/ Package: pylint Architecture: all -Depends: ${python:Depends}, ${misc:Depends}, python-logilab-common (>= 0.52.1), python-logilab-astng (>= 0.20.4) +Depends: ${python:Depends}, ${misc:Depends}, python-logilab-common (>= 0.53.0), python-logilab-astng (>= 0.21.0) Recommends: python-tk XB-Python-Version: ${python:Versions} Conflicts: python2.2-pylint, python2.3-pylint, python2.4-pylint, pylint-common, pylint-test diff --git a/debian/rules b/debian/rules index e68116e51..7eac66e23 100755 --- a/debian/rules +++ b/debian/rules @@ -42,11 +42,11 @@ install: build rm -rf debian/pylint/usr/lib/python*/*-packages/pylint/test # fixes shebangs - for exec in pylint pylint-gui symilar ; do \ - if head -1 debian/pylint/usr/bin/$$exec | grep "^#! */usr/bin" | grep "python" >/dev/null ; then \ - sed -i "s@^#! */usr/bin/env \+python\$$@#!/usr/bin/python@" debian/pylint/usr/bin/$$exec; \ + for exec_file in pylint pylint-gui symilar epylint pyreverse ; do \ + if head -1 debian/pylint/usr/bin/$$exec_file | grep "^#! */usr/bin" | grep "python" >/dev/null ; then \ + sed -i "s@^#! */usr/bin/env \+python\$$@#!/usr/bin/python@" debian/pylint/usr/bin/$$exec_file; \ fi ; \ - chmod a+x debian/pylint/usr/bin/$$exec; \ + chmod a+x debian/pylint/usr/bin/$$exec_file; \ done install -m 644 elisp/pylint.el debian/pylint/usr/share/emacs/site-lisp/pylint/ |