diff options
author | Jeremy T. Bouse <jbouse@debian.org> | 2011-10-03 12:46:07 -0400 |
---|---|---|
committer | Jeremy T. Bouse <jbouse@debian.org> | 2013-05-25 00:14:20 -0400 |
commit | 855928238b7e877e2f70c64cc19a8af6f25d011a (patch) | |
tree | 626c8984664f17fc23590bf40770687ea4a8ce91 | |
parent | a50d5a2b40c9ebdfa7708745d1ee9d02c1e31b1b (diff) | |
download | python-paramiko-855928238b7e877e2f70c64cc19a8af6f25d011a.tar python-paramiko-855928238b7e877e2f70c64cc19a8af6f25d011a.tar.gz |
Update package to clean up lintian findings
debian/copyright: Remove reference to symlink of license
debian/control: Remove Build-Depends on quilt
debian/rules: Remove --with quilt from build
-rw-r--r-- | debian/control | 3 | ||||
-rw-r--r-- | debian/copyright | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/debian/control b/debian/control index 700195b..1a5e71d 100644 --- a/debian/control +++ b/debian/control @@ -3,8 +3,7 @@ Section: python Priority: optional Maintainer: Jeremy T. Bouse <jbouse@debian.org> Uploaders: Guido Guenther <agx@debian.org> -Build-Depends: quilt (>= 0.46-7~), - debhelper (>> 8.0.0), +Build-Depends: debhelper (>> 8.0.0), python-all (>= 2.6.6-3~), python-crypto (>= 2.1.0-2) Standards-Version: 3.9.2 diff --git a/debian/copyright b/debian/copyright index 2bdc4eb..70e821a 100644 --- a/debian/copyright +++ b/debian/copyright @@ -22,4 +22,4 @@ Copyright 2003, 2004, 2005, 2006 Robey Pointer 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. On Debian GNU/Linux systems, the complete text of the Lesser GNU General -Public License can be found in `/usr/share/common-licenses/LGPL'. +Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. diff --git a/debian/rules b/debian/rules index 999522d..00d62e3 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f %: - dh $@ --with python2,quilt + dh $@ --with python2 override_dh_auto_test: ./test.py |