suspicious-source: add *.hh to list of excluded files + minor format and typo corrections

This commit is contained in:
Cesare Tirabassi 2007-10-21 11:16:39 +02:00
parent 8c05599644
commit 3d1f471e99
3 changed files with 22 additions and 13 deletions

8
debian/changelog vendored
View File

@ -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 <norsetto@ubuntu.com> Sun, 21 Oct 2007 10:49:26 +0200
ubuntu-dev-tools (0.19) gutsy; urgency=low
[ Siegfried-Angel Gevatter Pujals (RainCT) ]

View File

@ -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

View File

@ -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"