diff --git a/debian/changelog b/debian/changelog index 8501b82..172df88 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +ubuntu-dev-tools (0.20) UNRELEASED; urgency=low + + * suspicious-source: add *.hh to list of excluded files + * suspicious-source: format excluded file list to fit 80 chars limit + * suspicious-source: corrected typos in script and manual page + + -- Cesare Tirabassi Sun, 21 Oct 2007 10:49:26 +0200 + ubuntu-dev-tools (0.19) gutsy; urgency=low [ Siegfried-Angel Gevatter Pujals (RainCT) ] diff --git a/doc/suspicious-source.1 b/doc/suspicious-source.1 index a773b15..b8f46ca 100644 --- a/doc/suspicious-source.1 +++ b/doc/suspicious-source.1 @@ -2,20 +2,20 @@ .\" Author: Siegfried-Angel Gevatter Pujals .\" Contact details: siggi.gevatter@gmail.com .\" -.TH SUSPICIOUS\-SOURCE 1 "Setember 14, 2007" +.TH SUSPICIOUS\-SOURCE 1 "September 14, 2007" .\" .SH NAME -suspicious\-source \- search for files that are not the GPL's "prefered form of modification" +suspicious\-source \- search for files that are not the GPL's "preferred form of modification" .\" .SH SYNOPSIS \fBsuspicious\-source\fP .\" .SH DESCRIPTION -\fBsuspicious\-source\fP is a little script that outputs a list of files which are not common source files. -This should be run in the root of a source tree to find files which might not be the "prefered form of modification" +\fBsuspicious\-source\fP is a script that outputs a list of files which are not common source files. +This should be run in the root of a source tree to find files which might not be the "preferred form of modification" that the GPL and other licenses require. .PP -Neither the files inside version control system directories (like ".bzr/" or "CVS/"), nor those inside "Debian/" are +Neither the files inside version control system directories (like ".bzr/" or "CVS/"), nor those inside "debian/" are considered. .\" .SH AUTHORS diff --git a/suspicious-source b/suspicious-source index 82d2b45..17715e2 100755 --- a/suspicious-source +++ b/suspicious-source @@ -4,15 +4,16 @@ # License: GPLv3 or later # # This script outputs a list of files which are not common source files. This -# should be run in the root of a source tree to find files which might not be -# the "prefered form of modification" that the GPL and other licenses require. +# should be run in the root of a source tree to find files which might not be +# the "preferred form of modification" that the GPL and other licenses require. -FILES="*.h *.c *.cc *.cpp *.py *.sh *.txt *.text *.3 *.m4 *.xml *.html *.php *.php3 *.php4 \ - *.class *.form *.module *.cfg *.conf *.config *.odt *.odp *.tex *.sla *.scd \ - Makefile Makefile.am Makefile.in configure configure.ac *.diff *.debdiff *.patch *.dpatch \ - config.sub config.guess depcomp *.docbook *.desktop *.menu \ - AUTHORS INSTALL NEWS README TODO COPYING LICENSE ChangeLog \ - *.ui *.glade *.gladep *.po *.pot *.ts *.pro *.svg *.png *.bmp *.gif *.xpm" +FILES="*.h *.c *.cc *.cpp *.py *.sh *.txt *.text *.3 *.m4 *.xml *.html *.php \ + *.php3 *.php4 *.class *.form *.module *.cfg *.conf *.config *.odt \ + *.odp *.tex *.sla *.scd Makefile Makefile.am Makefile.in configure \ + configure.ac *.diff *.debdiff *.patch *.dpatch config.sub config.guess + depcomp *.docbook *.desktop *.menu AUTHORS INSTALL NEWS README TODO \ + COPYING LICENSE ChangeLog *.ui *.glade *.gladep *.po *.pot *.ts *.pro \ + *.svg *.png *.bmp *.gif *.xpm *.hh" IGNORE=".bzr CVS .svn debian"