Your message dated Sun, 16 Mar 2008 17:17:04 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#470478: fixed in devscripts 2.10.19
has caused the Debian Bug report #470478,
regarding [debuild] Linda doesn't work here anymore
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
470478: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=470478
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: devscripts
Version: 2.10.18.1
Severity: minor
Tags: patch

Hi,

Linda has recently been removed from unstable (#469039). The attached
patch cleans up the references to linda in devscripts, most notably in
debuild.


cheers,

Thijs
Index: debian/control
===================================================================
--- debian/control      (revision 1121)
+++ debian/control      (working copy)
@@ -23,7 +23,7 @@
  debian-keyring, debian-maintainers, dupload (>=2.1) | dput,
  gnupg (>= 1.0.7), gnuplot, libcrypt-ssleay-perl, libdigest-md5-perl,
  libfile-desktopentry-perl, libsoap-lite-perl, libterm-size-perl,
- libtimedate-perl, liburi-perl, libwww-perl, lintian | linda, lsb-release,
+ libtimedate-perl, liburi-perl, libwww-perl, lintian, lsb-release,
  mailx | mailutils, man-db, mutt, patch, patchutils, ssh, strace,
  unzip, wdiff, www-browser
 Description: scripts to make the life of a Debian Package maintainer easier
@@ -46,8 +46,7 @@
     after running cvs-debuild or cvs-buildpackage [cvs-buildpackage,
     dupload | dput, ssh]
   - cvs-debuild: run cvs-buildpackage using debuild (see below) as the
-    package building program [cvs-buildpackage, fakeroot, lintian | linda,
-    gnupg]
+    package building program [cvs-buildpackage, fakeroot, lintian, gnupg]
   - dd-list: given a list of packages, pretty-print it ordered by maintainer
   - debc: display the contents of just-built .debs
   - debchange/dch: automagically add entries to debian/changelog files
@@ -69,7 +68,7 @@
   - debuild: wrapper to build a package without having to su or worry
     about how to invoke dpkg to build using fakeroot.  Also deals
     with common environment problems, umask etc. [fakeroot,
-    lintian | linda, gnupg]
+    lintian, gnupg]
   - deb-reversion: increases a binary package version number and repacks the
     archive
   - desktop2menu: produce a skeleton menu file from a freedesktop.org
Index: debian/postinst
===================================================================
--- debian/postinst     (revision 1121)
+++ debian/postinst     (working copy)
@@ -40,15 +40,6 @@
                # Added in devscripts 2.7.93:
                cat >> /etc/devscripts.conf <<EOF
 
-# debuild options added in version 2.7.93:
-# 
-# Do we run linda at the end of a full run?
-# DEBUILD_LINDA=no
-# 
-# Extra options given to linda before any command-line options
-# specified.
-# DEBUILD_LINDA_OPTS=""
-
 ##### Package-wide variables first introduced in version 2.7.93:
 # 
 # Lists of which scripts are affected by these package-wide variables
Index: scripts/debuild.pl
===================================================================
--- scripts/debuild.pl  (revision 1121)
+++ scripts/debuild.pl  (working copy)
@@ -26,16 +26,16 @@
 #   debuild [<debuild options>] binary|binary-arch|binary-indep|clean ...
 # or
 #   debuild [<debuild options>] [<dpkg-buildpackage options>]
-#            [--lintian-opts <lintian options>] [--linda-opts <linda options>]
+#            [--lintian-opts <lintian options>]
 #
 # In the first case, debuild will simply run debian/rules with the
 # given parameter.  Available options are listed in usage() below.
 #
 # In the second case, the behaviour is to run dpkg-buildpackage and
-# then to run lintian and/or linda on the resulting .changes file.
-# (Running lintian only is the default.)  Lintian and linda options
-# may be specified after --lintian-opts and --linda-opts respectively;
-# all following options will be passed only to lintian/linda.
+# then to run lintian on the resulting .changes file.
+# (Running lintian only is the default.)  Lintian options may be
+# specified after --lintian-opts; all following options will be passed
+# only to lintian.
 # 
 # As this may be running setuid, we make sure to clean out the
 # environment before we perform the build, subject to any -e etc.
@@ -109,16 +109,14 @@
 
 Second usage method:
   $progname [<debuild options>] [<dpkg-buildpackage options>]
-             [--lintian-opts <lintian options>] [--linda-opts <linda options>]
-    to run dpkg-buildpackage and then run lintian and/or linda on the
-    resulting .changes file.
+             [--lintian-opts <lintian options>]
+    to run dpkg-buildpackage and then run lintian on the resulting
+    .changes file.
 
     Additional debuild options available in this case are:
 
         --lintian           Run lintian (default)
-        --linda             Run linda
         --no-lintian        Do not run lintian
-        --no-linda          Do not run linda (default)
         --[no-]tgz-check    Do [not] check for an .orig.tar.gz before running
                             dpkg-buildpackage if we have a Debian revision
                             (Default: check) 
@@ -138,7 +136,7 @@
                             can be reset to nothing with --foo-hook=''
        --clear-hooks       Clear all hooks
 
-    For available dpkg-buildpackage and lintian/linda options, see their
+    For available dpkg-buildpackage and lintian options, see their
     respective manpages.
 
 Default settings modified by devscripts configuration files:
@@ -172,14 +170,10 @@
 my %save_vars;
 my $root_command='';
 my $run_lintian=1;
-my $run_linda=0;
 my $lintian_exists=0;
-my $linda_exists=0;
 my @dpkg_extra_opts=();
 my @lintian_extra_opts=();
 my @lintian_opts=();
-my @linda_extra_opts=();
-my @linda_opts;
 my $checkbuilddep=1;
 my $check_dirname_level = 1;
 my $check_dirname_regex = 'PACKAGE(-.*)?';
@@ -240,7 +234,6 @@
                       'DEBUILD_PRESERVE_ENV' => 'no',
                       'DEBUILD_PRESERVE_ENVVARS' => '',
                       'DEBUILD_LINTIAN' => 'yes',
-                      'DEBUILD_LINDA' => 'no',
                       'DEBUILD_ROOTCMD' => 'fakeroot',
                       'DEBUILD_TGZ_CHECK' => 'yes',
                       'DEBUILD_DPKG_BUILDPACKAGE_HOOK' => '',
@@ -258,7 +251,6 @@
     my %config_default = %config_vars;
     my $dpkg_opts_var = 'DEBUILD_DPKG_BUILDPACKAGE_OPTS';
     my $lintian_opts_var = 'DEBUILD_LINTIAN_OPTS';
-    my $linda_opts_var = 'DEBUILD_LINDA_OPTS';
 
     my $shell_cmd;
     # Set defaults
@@ -266,14 +258,14 @@
     foreach my $var (keys %config_vars) {
        $shell_cmd .= qq[$var="$config_vars{$var}";\n];
     }
-    foreach my $var ($dpkg_opts_var, $lintian_opts_var, $linda_opts_var) {
+    foreach my $var ($dpkg_opts_var, $lintian_opts_var) {
        $shell_cmd .= "$var='';\n";
     }
     $shell_cmd .= 'for file in ' . join(" ",@config_files) . "; do\n";
     $shell_cmd .= '[ -f $file ] && . $file; done;' . "\n";
     # Read back values
     foreach my $var (keys %config_vars) { $shell_cmd .= "echo \$$var;\n" }
-    foreach my $var ($dpkg_opts_var, $lintian_opts_var, $linda_opts_var) {
+    foreach my $var ($dpkg_opts_var, $lintian_opts_var) {
        $shell_cmd .= "eval set -- \$$var;\n";
        $shell_cmd .= "echo \">>> $var BEGIN <<<\";\n";
        $shell_cmd .= 'while [ $# -gt 0 ]; do echo $1; shift; done;' . "\n";
@@ -293,8 +285,6 @@
        or $config_vars{'DEBUILD_PRESERVE_ENV'}='no';
     $config_vars{'DEBUILD_LINTIAN'} =~ /^(yes|no)$/
        or $config_vars{'DEBUILD_LINTIAN'}='yes';
-    $config_vars{'DEBUILD_LINDA'} =~ /^(yes|no)$/
-       or $config_vars{'DEBUILD_LINDA'}='no';
     $config_vars{'DEVSCRIPTS_CHECK_DIRNAME_LEVEL'} =~ /^[012]$/
        or $config_vars{'DEVSCRIPTS_CHECK_DIRNAME_LEVEL'}=1;
     $config_vars{'DEBUILD_TGZ_CHECK'} =~ /^(yes|no)$/
@@ -324,7 +314,6 @@
        @[EMAIL PROTECTED] = (1) x scalar @preserve_vars;
     }
     $run_lintian = $config_vars{'DEBUILD_LINTIAN'} eq 'no' ? 0 : 1;
-    $run_linda = $config_vars{'DEBUILD_LINDA'} eq 'yes' ? 1 : 0;
     $root_command = $config_vars{'DEBUILD_ROOTCMD'};
     $tgz_check = $config_vars{'DEBUILD_TGZ_CHECK'} eq 'yes' ? 1 : 0;
     $check_dirname_level = $config_vars{'DEVSCRIPTS_CHECK_DIRNAME_LEVEL'};
@@ -364,20 +353,6 @@
        $modified_conf_msg .= "  $lintian_opts_var='" . join(" ", 
@lintian_extra_opts) . "'\n";
     }
 
-    if (shift @othervars ne ">>> $linda_opts_var BEGIN <<<") {
-       fatal "internal error: linda opts list missing proper header";
-    }
-    while (($_ = shift @othervars) ne ">>> $linda_opts_var END <<<"
-          and @othervars) {
-       push @linda_extra_opts, $_;
-    }
-    if (! @othervars) {
-       fatal "internal error: linda opts list missing proper trailer";
-    }
-    if (@linda_extra_opts) {
-       $modified_conf_msg .= "  $linda_opts_var='" . join(" ", 
@linda_extra_opts) . "'\n";
-    }
-
     # And what is left should be any ENV settings
     foreach my $envvar (@othervars) {
        $envvar =~ /^DEBUILD_SET_ENVVAR_([^=]*)=(.*)$/ or next;
@@ -496,8 +471,6 @@
        }
        $arg eq '--no-lintian' and $run_lintian=0, next;
        $arg eq '--lintian' and $run_lintian=1, next;
-       $arg eq '--no-linda' and $run_linda=0, next;
-       $arg eq '--linda' and $run_linda=1, next;
        if ($arg eq '--rootcmd') {
            unless (defined ($root_command = shift)) {
                fatal "--rootcmd requires an argument,\nrun $progname --help 
for usage information";
@@ -708,7 +681,7 @@
 }
 
 if ($command_version eq 'dpkg') {
-    # We're going to emulate dpkg-buildpackage and possibly lintian/linda.
+    # We're going to emulate dpkg-buildpackage and possibly lintian.
     # This will allow us to run hooks.
     # However, if dpkg-cross is installed (as evidenced by the presence
     # of /usr/bin/dpkg-cross), then we call the "real" dpkg-buildpackage,
@@ -733,15 +706,11 @@
 
     # Our first task is to parse the command line options.
 
-    # And before we get too excited, does lintian/linda even exist?
+    # And before we get too excited, does lintian even exist?
     if ($run_lintian) {
        system("command -v lintian >/dev/null 2>&1") == 0
            and $lintian_exists=1;
     }
-    if ($run_linda) {
-       system("command -v linda >/dev/null 2>&1") == 0
-           and $linda_exists=1;
-    }
 
     # dpkg-buildpackage variables explicitly initialised in dpkg-buildpackage
     my $signsource=1;
@@ -860,7 +829,7 @@
        if (/^-M/ and $dpkg_cross) { push(@dpkg_opts, $_), next; }
 
        # these non-dpkg-buildpackage options make us stop
-       if ($_ eq '-L' or $_ eq '--lintian' or /^--(lintian|linda)-opts$/) {
+       if ($_ eq '-L' or $_ eq '--lintian' or /^--lintian-opts$/) {
            unshift @ARGV, $_;
            last;
        }
@@ -871,8 +840,8 @@
        fatal "cannot combine dpkg-buildpackage options $sourceonly and 
$binaryonly";
     }
 
-    # Pick up lintian/linda options if necessary
-    if (($run_lintian || $run_linda) && @ARGV) {
+    # Pick up lintian options if necessary
+    if ($run_lintian && @ARGV) {
        # Check that option is sensible
     LIN_OPTS:
        while (@ARGV) {
@@ -888,26 +857,13 @@
                        "$whichlin option given but not running lintian!";
                }
                while ($_=shift) {
-                   if (/^--(lintian|linda)-opts$/) {
+                   if (/^--lintian-opts$/) {
                        unshift @ARGV, $_;
                        next LIN_OPTS;
                    }
                    push @lintian_opts, $_;
                }
            }
-           elsif ($whichlin eq '--linda-opts') {
-               if (! $run_linda) {
-                   push @warnings,
-                       "$whichlin option given but not running linda!";
-               }
-               while ($_=shift) {
-                   if (/^--(lintian|linda)-opts$/) {
-                       unshift @ARGV, $_;
-                       next LIN_OPTS;
-                   }
-                   push @linda_opts, $_;
-               }
-           }
        }
     }
 
@@ -1163,8 +1119,7 @@
        chdir '..' or fatal "can't chdir: $!";
     } # end of debuild dpkg-buildpackage emulation
 
-    run_hook('lintian', (($run_lintian && $lintian_exists) ||
-                        ($run_linda && $linda_exists)) );
+    run_hook('lintian', $run_lintian && $lintian_exists);
     
     if ($run_lintian && $lintian_exists) {
        $<=$>=$uid;  # Give up on root privileges if we can
@@ -1174,14 +1129,6 @@
        system('lintian', @lintian_extra_opts, @lintian_opts, $changes);
        print "Finished running lintian.\n";
     }
-    if ($run_linda && $linda_exists) {
-       $<=$>=$uid;  # Give up on root privileges if we can
-       $(=$)=$gid;
-       print "Now running linda...\n";
-       # The remaining items in @ARGV, if any, are linda options
-       system('linda', @linda_extra_opts, @linda_opts, $changes);
-       print "Finished running linda.\n";
-    }
 
     # They've insisted.  Who knows why?!
     if (($signchanges or $signsource) and $usepause) {
Index: scripts/cvs-debuild.1
===================================================================
--- scripts/cvs-debuild.1       (revision 1121)
+++ scripts/cvs-debuild.1       (working copy)
@@ -4,7 +4,6 @@
 .SH SYNOPSIS
 \fBcvs-debuild\fR [\fIdebuild options\fR] [\fIcvs-buildpackage options\fR]
 [\fB\-\-lintian-opts\fR \fIlintian options\fR]
-[\fB\-\-linda-opts\fR \fIlinda options\fR]
 .SH DESCRIPTION
 \fBcvs-debuild\fR is a wrapper around \fBcvs-buildpackage\fR to run it
 with \fBdebuild\fR as the package-building program.  (This cannot
@@ -12,8 +11,8 @@
 \fBcvs-buildpackage\fR, as it does not know how to handle all of the
 special \fBdebuild\fR options.)
 .PP
-The program simply stashes the \fBdebuild\fR, \fBlintian\fR and
-\fBlinda\fR options, and passes them to \fBdebuild\fR when it is
+The program simply stashes the \fBdebuild\fR and \fBlintian\fR
+options, and passes them to \fBdebuild\fR when it is
 called by \fBcvs-buildpackage\fR.  All of the standard \fBdebuild\fR
 options may be used (as listed below), but note that the root command
 specified by any \fB\-\-rootcmd\fR or \fB\-r\fR command-line option
@@ -32,8 +31,8 @@
 more information about the behaviour of each.
 .SH "OPTIONS"
 The following are the \fBdebuild\fR options recognised by
-\fBcvs-debuild\fR.  All \fBcvs-buildpackage\fR, \fBlintian\fR and
-\fBlinda\fR options are simply passed to the appropriate program.  For
+\fBcvs-debuild\fR.  All \fBcvs-buildpackage\fR and \fBlintian\fR
+options are simply passed to the appropriate program.  For
 explanations of the meanings of these variables, see
 \fBdebuild\fR(1).
 .TP
@@ -49,16 +48,13 @@
 .TP
 .B \-\-lintian, \-\-no\-lintian
 .TP
-.B \-\-linda, \-\-no\-linda
-.TP
 \fB\-\-ignore-dirname\fR, \fB\-\-check-dirname\fR
 These should not be needed, but it is provided nevertheless.
 .SH "SEE ALSO"
 .BR cvs-buildpackage (1),
 .BR debuild (1),
-.BR dpkg-buildpackage (1),
-.BR lintian (1)
+.BR dpkg-buildpackage (1)
 and
-.BR linda (1).
+.BR lintian (1).
 .SH AUTHOR
 This program was written by Julian Gilbey <[EMAIL PROTECTED]>.
Index: scripts/cvs-debuild.pl
===================================================================
--- scripts/cvs-debuild.pl      (revision 1121)
+++ scripts/cvs-debuild.pl      (working copy)
@@ -24,7 +24,7 @@
 # program is:
 #
 # cvs-debuild [<debuild options>] [<cvs-buildpackage options>]
-#           [--lintian-opts <lintian options>] [--linda-opts <linda options>]
+#           [--lintian-opts <lintian options>]
 # 
 # cvs-debuild will run cvs-buildpackage, using debuild as the
 # package-building program, passing the debuild and lintian options to
@@ -47,13 +47,12 @@
 {
     print <<"EOF";
   $progname [<debuild options>] [<cvs-buildpackage options>]
-             [--lintian-opts <lintian options>] [--linda-opts <linda options>]
+             [--lintian-opts <lintian options>]
   to run cvs-buildpackage using debuild as the package building program
 
   Accepted debuild options, see debuild(1) or debuild --help for more info:
     --no-conf, --noconf
     --lintian, --no-lintian
-    --linda, --no-linda
     --rootcmd=<gain-root-command>, -r<gain-root-command>
     --preserve-envvar=<envvar>, -e<envvar>
     --set-envvar=<envvar>=<value>, -e<envvar>=<value>
@@ -63,7 +62,7 @@
 
     --help            display this message
     --version         show version and copyright information
-  All cvs-buildpackage options are accepted, as are all lintian/linda options
+  All cvs-buildpackage options are accepted, as are all lintian options.
 
   Note that any cvs-buildpackage options (command line or configuration file)
   for setting a root command will override any debuild configuration file
@@ -94,7 +93,7 @@
 }
 
 # We start by parsing the command line to collect debuild and
-# {lintian,linda} options.  We stash them away in temporary files,
+# lintian options.  We stash them away in temporary files,
 # which we will pass to debuild.
 
 my (@debuild_opts, @cvs_opts, @lin_opts);
@@ -117,7 +116,7 @@
        }
 
        # other debuild options are stashed
-       if ($arg =~ /^--(no-?conf|(no-?)?(lintian|linda))$/) {
+       if ($arg =~ /^--(no-?conf|(no-?)?lintian)$/) {
            push @debuild_opts, $arg;
            next;
        }
Index: scripts/debuild.1
===================================================================
--- scripts/debuild.1   (revision 1121)
+++ scripts/debuild.1   (working copy)
@@ -4,26 +4,24 @@
 .SH SYNOPSIS
 \fBdebuild\fR [\fIdebuild options\fR] [\fIdpkg-buildpackage options\fR]
 [\fB\-\-lintian-opts\fR \fIlintian options\fR]
-[\fB\-\-linda-opts\fR \fIlinda options\fR]
 .br
 \fBdebuild\fR [\fIdebuild options\fR]
 \fBbinary\fR|\fBbinary-arch\fR|\fBbinary-indep\fR|\fBclean\fR ...
 .SH DESCRIPTION
 \fBdebuild\fR creates all the files necessary for uploading a Debian
 package.  It first runs \fBdpkg-buildpackage\fR, then runs
-\fBlintian\fR and/or \fBlinda\fR on the \fI.changes\fR file created
-(assuming that \fBlintian\fR and/or \fBlinda\fR is installed), and
+\fBlintian\fR on the \fI.changes\fR file created
+(assuming that \fBlintian\fR is installed), and
 finally signs the \fI.changes\fR and/or \fI.dsc\fR files as
 appropriate (using \fBdebsign\fR(1) to do this instead of
 \fBdpkg-buildpackage\fR(1) itself; all relevant key-signing options
 are passed on).  Parameters can be passed to \fBdpkg-buildpackage\fR,
-\fBlintian\fR and \fBlinda\fR, where the parameters to the latter are
-indicated with the \fB\-\-lintian-opts\fR and \fB\-\-linda-opts\fR
-options respectively.  The allowable options in this case are
+and \fBlintian\fR, where the parameters to the latter are
+indicated with the \fB\-\-lintian-opts\fR options.
+The allowable options in this case are
 \fB\-\-lintian\fR and \fB\-\-no-lintian\fR to force or skip the
-\fBlintian\fR step, respectively, and similarly \fB\-\-linda\fR and
-\fB\-\-no-linda\fR for \fBlinda\fR.  The default is to run
-\fBlintian\fR but not \fBlinda\fR.  There are also various options
+\fBlintian\fR step, respectively. The default is to run
+\fBlintian\fR.  There are also various options
 available for setting and preserving environment variables, as
 described below in the Environment Variables section.  In this method
 of running \fBdebuild\fR, we also save a build log to the
@@ -175,11 +173,11 @@
 default.)
 .TP
 lintian-hook
-Run (once) before calling lintian and/or linda.  (Run even if we are
+Run (once) before calling lintian.  (Run even if we are
 not calling either.)
 .TP
 signing-hook
-Run after calling lintian and/or linda before any signing takes place.
+Run after calling lintian before any signing takes place.
 (Run even if we are not signing anything.)
 .TP
 post-dpkg-buildpackage-hook
@@ -239,13 +237,6 @@
 .B \-\-no\-lintian
 Do not run \fBlintian\fR after \fBdpkg-buildpackage\fR.
 .TP
-.B \-\-linda
-Run \fBlinda\fR after \fBdpkg-buildpackage\fR.
-.TP
-.B \-\-no\-linda
-Do not run \fBlinda\fR after \fBdpkg-buildpackage\fR.  This is the
-default behaviour.
-.TP
 .B \-\-no\-tgz\-check
 Even if we're running \fBdpkg-buildpackage\fR and the version number
 has a Debian revision, do not check that the .orig.tar.gz file or .orig
@@ -341,16 +332,6 @@
 the usage of this variable is as described for the
 \fBDEBUILD_DPKG_BUILDPACKAGE_OPTS\fR variable.
 .TP
-.B DEBUILD_LINDA
-Should we run \fBlinda\fR?  If this is set to \fIyes\fR, then
-\fBlinda\fR will be run.
-.TP
-.B DEBUILD_LINDA_OPTS
-These are options which should be passed to the invocation of
-\fBlinda\fR.  They are given before any command-line options, and
-the usage of this variable is as described for the
-\fBDEBUILD_DPKG_BUILDPACKAGE_OPTS\fR variable.
-.TP
 .BR DEVSCRIPTS_CHECK_DIRNAME_LEVEL ", " DEVSCRIPTS_CHECK_DIRNAME_REGEX
 See the above section "Directory name checking" for an explanation of
 these variables.  Note that these are package-wide configuration
@@ -371,11 +352,11 @@
 .PP
 Change the "\-b" to "\-S" to build only a source package.
 .PP
-An example using both \fBlintian\fR and \fBlinda\fR to check the
-resulting packages, and also passing options to them both:
+An example using \fBlintian\fR to check the
+resulting packages and passing options to it:
 .IP
 .nf
-debuild \-\-linda \-i \-tc \-\-lintian-opts \-i \-\-linda-opts \-i
+debuild \-\-lintian-opts \-i
 .fi
 .PP
 Note the order of options here: the \fBdebuild\fR options come first,
@@ -406,7 +387,6 @@
 .BR debsign (1),
 .BR fakeroot (1),
 .BR lintian (1),
-.BR linda (1),
 .BR chmod (1),
 .BR dpkg-statoverride (8),
 .BR su (1),
Index: README
===================================================================
--- README      (revision 1121)
+++ README      (working copy)
@@ -44,7 +44,7 @@
   around debrelease which allows it to be called from the CVS working
   directory.
 
-- cvs-debuild [cvs-buildpackage, fakeroot, lintian | linda, gnupg]: A
+- cvs-debuild [cvs-buildpackage, fakeroot, lintian, gnupg]: A
   wrapper for cvs-buildpackage to use debuild as its package building
   program.
 
@@ -111,7 +111,7 @@
   This script is capable of automatically downloading the .changes and
   .dsc files from a remote machine.
 
-- debuild [fakeroot, lintian | linda, gnupg]: A wrapper for building a
+- debuild [fakeroot, lintian, gnupg]: A wrapper for building a
   package (i.e., dpkg-buildpackage) to avoid problems with
   insufficient permissions and wrong paths etc.  Debuild will set up
   the proper environment for building a package.  Debuild will use the
Index: conf.default.in
===================================================================
--- conf.default.in     (revision 1121)
+++ conf.default.in     (working copy)
@@ -271,17 +271,10 @@
 # Do we run lintian at the end of a full run?
 # DEBUILD_LINTIAN=yes
 # 
-# Do we run linda at the end of a full run?
-# DEBUILD_LINDA=no
-# 
 # Extra options given to lintian before any command-line options
 # specified.
 # DEBUILD_LINTIAN_OPTS=""
 # 
-# Extra options given to linda before any command-line options
-# specified.
-# DEBUILD_LINDA_OPTS=""
-# 
 # Hooks; see the manpage for details of these
 # DEBUILD_DPKG_BUILDPACKAGE_HOOK=""
 # DEBUILD_CLEAN_HOOK=""

--- End Message ---
--- Begin Message ---
Source: devscripts
Source-Version: 2.10.19

We believe that the bug you reported is fixed in the latest version of
devscripts, which is due to be installed in the Debian FTP archive:

devscripts_2.10.19.dsc
  to pool/main/d/devscripts/devscripts_2.10.19.dsc
devscripts_2.10.19.tar.gz
  to pool/main/d/devscripts/devscripts_2.10.19.tar.gz
devscripts_2.10.19_amd64.deb
  to pool/main/d/devscripts/devscripts_2.10.19_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Adam D. Barratt <[EMAIL PROTECTED]> (supplier of updated devscripts package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sun, 16 Mar 2008 17:00:34 +0000
Source: devscripts
Binary: devscripts
Architecture: source amd64
Version: 2.10.19
Distribution: unstable
Urgency: low
Maintainer: Devscripts Devel Team <[email protected]>
Changed-By: Adam D. Barratt <[EMAIL PROTECTED]>
Description: 
 devscripts - scripts to make the life of a Debian Package maintainer easier
Closes: 381159 402531 457235 458130 464641 468761 469023 469050 469207 469238 
469663 470025 470069 470366 470478 470696 470809 470999 471001 471059 471088
Changes: 
 devscripts (2.10.19) unstable; urgency=low
 .
   * debsign: Correctly handle signing an automatically located .changes
     file if none was passed on the command line (Closes: #468761)
   * debchange:
     + Apply a more elegant fix for the bugfix in 2.10.18.
       Thanks to gregor herrmann for pointing the obvious solution out.
     + Don't complain about the package version changing from native to
       non-native if --nmu or --security was used
     + Fix an unescaped hyphen in the manpage
     + If starting a changelog stanza for a new maintainer upload with
       the distribution set to UNRELEASED, check whether the previous
       stanza is also UNRELEASED and, if so, merge them (assuming the
       "changelog" release heuristic is in use) (Closes: #458130)
     + Add non-maintainer uploads (including security and QA uploads),
       backports and the use of local version strings to the list of
       cases where debchange doesn't have to guess the user's intentions
     + Add an --allow-lower-version option which is similar to
       --force-bad-version but allows a regular expression to be specified
       which the new version must match. Based on a patch by Frank Küster
       (Closes: #381159)
     + Modify the version-handling code to generate NMU versions of the
       form X+nmu1 for Debian-native packages
   * checkbashisms:
     + Use Getopt::Long for option parsing
     + Add an option to force checking of scripts that would normally be
       skipped (Closes: #469023)
     + Clarify in the manpage that some issues detected by the script may
       be XSIisms etc rather than strictly bash-specific features
     + Add checks for suspend, caller, complete/compgen, declare/typeset,
       disown, builtin, set -[BHT], alias -p, unalias -a, local with
       options or an assigned value and $BASH(_*). Thanks to Raphael
       Geissert for the patch (Closes: #469050)
     + Modify each of the simple shell variable tests (e.g. $RANDOM) to
       also match ${variable}
     + Identify and ignore multi-line quoted text (Closes: #464641)
     + Reorder a couple of checks so that ". foo $HOSTNAME" is detected as
       source passing arguments rather than misuse of $HOSTNAME
     + Fix a potential false positive on "2>& 1"
     + Fix an unescaped hyphen in the manpage
     + Add a check for function names containing characters other than
       alphanumerics and underscore
     + Modify the "read without variable" test to also catch options other
       than -r. Thanks Luca Capello (Closes: #470696)
     + Add an option to allow flagging of lines which do not contain bashisms
       but which may contain other useful information - for example, checking
       whether $BASH is set before using bashisms or $RANDOM being used as a
       local variable rather than the bash built-in variable (Closes: #470999)
     + Add a check for "VAR+=foo" (Closes: #471001)
     + Also detect <<< inside a quoted string (Closes: #471059)
     + Improve comment detection and removal to not remove "s/#/foo/"
   * bts:
     + Allow the sendmail command to begin with a ~ (Closes: #469207)
     + Don't treat "userblah" as an alias for "users" in "select"
   * debcommit:
     + Set $SVKDIFF before calling "svk diff" (Closes: #469238)
     + If there are uncommitted changes to the changelog when --release is
       used, use them as the commit message. Otherwise use the message passed
       with --message or "releasing version X.Y" as currently
       (Closes: #470366)
     + Format commit messages in a more useful manner for git and hg. The
       first change found is unfolded and used as the summary line. If more
       than one change was found then an editor is spawned so that the message
       can be fine-tuned if required (Closes: #402531)
   * deb[ci]:
     + Allow either package names or filenames to be passed on the
       command line (Closes: #469663)
     + Fix reference to dpkg-deb(8) (should be section 1) and an unescaped
       hyphen in the manpage
   * annotate-output.1, cvs-debi.1, dd-list.1, debuild.1, dpkg-depcheck.1,
     dpkg-genbuilddeps.1, nmudiff.1, plotchangelog.1, uscan.1,
     devscripts.conf.5: Fix unescaped hyphens
   * nmudiff: Fix --nomutt's To: handling. Thanks Thomas Viehmann
     (Closes: #470069)
   * Debbugs.pm:
     + Turn on "use strict" and "use warnings" which got lost when moving
       the code from bts
     + Don't attempt to iterate the result of usertags() in select if
       it's empty (Closes: #470025)
     + Skip arguments to select() that contain valid keys but not values
     + Print a warning about unrecognised keys passed to select()
     + Add on_fault handlers to SOAP calls so we can return useful error
       messages
   * debuild:
     + Add working -j / DEB_BUILD_OPTS=parallel support
       (Finally closes: #457235)
     + Remove linda support. Thanks Thijs Kinkhorst (Closes: #470478)
   * debcheckout: Add launchpad.net/foo to the list of recognised
     Launchpad repository formats for authenticated mode. Thanks Martin
     Pitt
   * cvs-debuild: Remove linda support. Thanks Thijs Kinkhorst.
   * Packaging changes:
     + debian/control, README, conf.default.in: Remove references to linda
     + Add a NEWS file to alert dget users to the change in 2.10.17 to unpack
       source packages by default (Closes: #470809)
   * grep-excuses: Fix reference to bjorn.haxx.se in help output to refer to
     release.d.o/migration
   * debpkg: Fix reference to dpkg(8) in the manpage
   * pts-subscribe: Don't complain about mail and/or at not being available
     if --help / --version were used. Also don't complain about at unless an
     unsubscription mail needs generating. (Closes: #471088)
Files: 
 0e70b1198575d83aa693b19c02be88ae 1224 devel optional devscripts_2.10.19.dsc
 6a375367aedf07d9b2a14ca0e1740526 525805 devel optional 
devscripts_2.10.19.tar.gz
 cbe36931790187b37fa33053be0d2c27 457436 devel optional 
devscripts_2.10.19_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFH3VL0okcE1TReOoURAnyvAJoCjgtHmKgsasi4YDWZGEw0VX3adgCeIs9l
RRgbRIi1Gwg2AIOX2Rj+TV4=
=Xatm
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to