From: James Troup <james@nocrew.org>
Date: Fri, 7 Nov 2003 01:48:58 +0000 (+0000)
Subject: sync
X-Git-Tag: debian-r/squeeze~1847
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a89c901dd16bea80cbab72d236b3ffcb28cbbee5;p=dak.git

sync
---

diff --git a/THANKS b/THANKS
index 59412c9c..e4b1c403 100644
--- a/THANKS
+++ b/THANKS
@@ -1,5 +1,8 @@
-Special thanks go to Jason and AJ; without their patient help, none of
-this would be possible.
+The katie software is based in large part on 'dinstall' by Guy Maor.
+The original 'katie' script was pretty much a line by line
+reimplementation of the perl 'dinstall' in python.
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
 [Alphabetical Order]
 
@@ -9,6 +12,7 @@ Antti-Juhani Kaijanaho	       <ajk@debian.org>
 Ben Collins		       <bcollins@debian.org>
 Brendan O'Dea		       <bod@debian.org>
 Daniel Jacobwitz	       <dan@debian.org>
+Daniel Silverstone	       <dsilvers@debian.org>
 Drake Diedrich		       <dld@debian.org>
 Guy Maor		       <maor@debian.org>
 Jason Gunthorpe		       <jgg@debian.org>
@@ -16,4 +20,12 @@ Joey Hess		       <joeyh@debian.org>
 Mark Brown		       <broonie@debian.org>
 Martin Michlmayr	       <tbm@debian.org>
 Michael Beattie		       <mjb@debian.org>
+Randall Donald		       <rdonald@debian.org>
 Ryan Murray		       <rmurray@debian.org>
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+Special thanks go to Jason and AJ; without their patient help, none of
+this would have been possible.
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
diff --git a/jennifer b/jennifer
index a587a68e..2cc353ba 100755
--- a/jennifer
+++ b/jennifer
@@ -2,7 +2,7 @@
 
 # Checks Debian packages from Incoming
 # Copyright (C) 2000, 2001, 2002, 2003  James Troup <james@nocrew.org>
-# $Id: jennifer,v 1.42 2003-10-17 11:20:47 troup Exp $
+# $Id: jennifer,v 1.43 2003-11-07 01:48:58 troup Exp $
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -45,7 +45,7 @@ re_valid_pkg_name = re.compile(r"^[\dA-Za-z][\dA-Za-z\+\-\.]+$");
 ################################################################################
 
 # Globals
-jennifer_version = "$Revision: 1.42 $";
+jennifer_version = "$Revision: 1.43 $";
 
 Cnf = None;
 Options = None;
@@ -406,11 +406,11 @@ def check_files():
             files[file]["source"] = control.Find("Source", files[file]["package"]);
             # Get the source version
             source = files[file]["source"];
-            source_version = ""
+            source_version = "";
             if source.find("(") != -1:
-                m = utils.re_extract_src_version.match(source)
-                source = m.group(1)
-                source_version = m.group(2)
+                m = utils.re_extract_src_version.match(source);
+                source = m.group(1);
+                source_version = m.group(2);
             if not source_version:
                 source_version = files[file]["version"];
             files[file]["source package"] = source;