Commit 626e3b6c27437416876b627426ea59b650d8784e

Authored by Stéphane Raimbault
1 parent ddb22003

Resolve lintian errors for debian package

Reported by Ivo De Decker
debian/changelog
@@ -2,7 +2,7 @@ libmodbus (2.9.2-1) maverick; urgency=low @@ -2,7 +2,7 @@ libmodbus (2.9.2-1) maverick; urgency=low
2 2
3 * New upstream release 3 * New upstream release
4 4
5 - -- Stéphane Raimbault <stephane.raimbault@gmail.com> Mon, Oct 4 2010 13:21:52 +0200 5 + -- Stéphane Raimbault <stephane.raimbault@gmail.com> Mon, 4 Oct 2010 13:21:52 +0200
6 6
7 libmodbus (2.0.3-1) intrepid; urgency=low 7 libmodbus (2.0.3-1) intrepid; urgency=low
8 8
debian/control
1 Source: libmodbus 1 Source: libmodbus
2 -Distribution: hardy  
3 Priority: extra 2 Priority: extra
4 Maintainer: Stéphane Raimbault <stephane.raimbault@gmail.com> 3 Maintainer: Stéphane Raimbault <stephane.raimbault@gmail.com>
5 -Standards-Version: 3.7.3 4 +Standards-Version: 3.9.1
6 Section: libs 5 Section: libs
7 -Build-Depends: debhelper (>= 5.0.37.2), 6 +Build-Depends: debhelper (>= 6),
8 cdbs (>= 0.4.43), 7 cdbs (>= 0.4.43),
9 autotools-dev, 8 autotools-dev,
  9 + libtool,
10 dpkg-dev (>= 1.13.19) 10 dpkg-dev (>= 1.13.19)
11 11
12 Package: libmodbus 12 Package: libmodbus
debian/rules
1 #!/usr/bin/make -f 1 #!/usr/bin/make -f
2 include /usr/share/cdbs/1/rules/debhelper.mk 2 include /usr/share/cdbs/1/rules/debhelper.mk
3 include /usr/share/cdbs/1/class/autotools.mk 3 include /usr/share/cdbs/1/class/autotools.mk
  4 +
  5 +makebuilddir::
  6 + ./autogen.sh
  7 +
  8 +clean::
  9 + rm -f Makefile.in
  10 + rm -f aclocal.m4
  11 + rm -f config.guess
  12 + rm -f config.h.in
  13 + rm -f config.sub
  14 + rm -f configure
  15 + rm -f depcomp
  16 + rm -f install-sh
  17 + rm -f ltmain.sh
  18 + rm -f missing
  19 + rm -f src/Makefile.in
  20 + rm -f tests/Makefile.in
  21 +