From: David Bremner Date: Mon, 4 Aug 2008 00:23:06 +0000 (-0300) Subject: support for mbox and mh X-Git-Tag: 0.4~22 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=cc3ac4907a5fee86af3bf2907aa5d1c025c9c95f;p=ikiwiki.git support for mbox and mh --- diff --git a/IkiWiki/Plugin/mailbox.pm b/IkiWiki/Plugin/mailbox.pm index 8f501ea40..d925e42be 100644 --- a/IkiWiki/Plugin/mailbox.pm +++ b/IkiWiki/Plugin/mailbox.pm @@ -9,16 +9,20 @@ package Email::MIMEFolder; use base 'Email::Folder'; sub bless_message { return Email::MIME->new($_[1]) }; + package IkiWiki::Plugin::mailbox; +use Email::FolderType qw(folder_type); use IkiWiki 2.00; -use Email::Folder; use Email::Thread; use CGI 'escapeHTML'; use Data::Dumper; + + my %metaheaders; + sub import { #{{{ hook(type => "preprocess", id => "mailbox", call => \&preprocess); hook(type => "scan", id => "mailbox", call => \&scan); @@ -37,19 +41,19 @@ sub preprocess (@) { #{{{ my %params=@_; my $page=$params{page}; - my $type=$params{type} || 'maildir'; + my $type=$params{type} || 'Maildir'; my $path=$params{path} || error gettext("missing parameter") . " path"; # hmm, this should probably only be inserted once per page. - # note, mbox is not a directory, needs to be special cased - my $dir=bestdir($page,$params{path}) || + my $dir=bestpath($page,$params{path}) || error("could not find ".$params{path}); $params{path} = $config{srcdir} ."/" . $dir; - - return format_mailbox(path=>$dir,%params); + $params{type} = $type; + + return format_mailbox(%params); } # }}} @@ -58,9 +62,11 @@ sub preprocess (@) { #{{{ ### parameters sub format_mailbox(@){ my %params=@_; - my $path=$params{path} || error("path parameter mandatory"); + my $path=$params{path} || error gettext("missing parameter "). 'path'; + my $type=$params{type} || error gettext("missing paramater ")."type"; - my $folder=Email::MIMEFolder->new($path) || error("mailbox could not be opened"); + debug('type='.$type); + my $folder=Email::MIMEFolder->new($path,reader=>'Email::Folder::'.$type) || error("mailbox could not be opened"); my $threader=new Email::Thread($folder->messages); $threader->thread(); @@ -78,7 +84,7 @@ sub format_thread(@){ if ($thread->message) { $output .= format_message(message=>$thread->message); } else { - $output .= sprintf gettext("Message %s not available"), $thread; + $output .= sprintf gettext("Message %s not available"), $thread->messageid; } if ($thread->child){ @@ -109,7 +115,7 @@ sub format_message(@){ my $message=$params{message} || error gettext("missing parameter"). "message"; - my $keep_headers=$params{headers} || qr/^(subject|from|date)/i; + my $keep_headers=$params{headers} || qr/^(subject|from|date)[:]?$/i; my $template= template("email.tmpl") || error gettext("missing template"); @@ -141,10 +147,10 @@ sub format_body($){ } ### Utilities -# From Arpit Jain +# based on bestdir From Arpit Jain # http://ikiwiki.info/todo/Bestdir_along_with_bestlink_in_IkiWiki.pm/ # need to clarify license -sub bestdir ($$) { #{{{ +sub bestpath ($$) { #{{{ my $page=shift; my $link=shift; my $cwd=$page; @@ -157,7 +163,7 @@ sub bestdir ($$) { #{{{ my $l=$cwd; $l.="/" if length $l; $l.=$link; - if (-d "$config{srcdir}/$l") { + if (-d "$config{srcdir}/$l" || -f "$config{srcdir}/$l") { return $l; } } while $cwd=~s!/?[^/]+$!!; @@ -165,7 +171,7 @@ sub bestdir ($$) { #{{{ if (length $config{userdir}) { my $l = "$config{userdir}/".lc($link); - if (-d $l) { + if (-d $l || -f $l) { return $l; } } @@ -188,4 +194,19 @@ sub pagetemplate (@) { #{{{ +package Email::FolderType::MH; + +sub match { + my $folder = shift; + return 0 if (! -d $folder); + opendir DIR,$folder || error("opendir failed"); + + while (){ + return 0 if (!m|\.| && !m|\.\.| && !m|\d+|); + } + return 1; +} + + + 1; diff --git a/test/in/index.mdwn b/test/in/index.mdwn index bc42ecfaf..5cab8036d 100644 --- a/test/in/index.mdwn +++ b/test/in/index.mdwn @@ -1,2 +1,11 @@ -[[!mailbox path="testbox"]] +## A Maildir called maildir + +[[!mailbox path="maildir"]] + +## An Mh Folder +[[!mailbox path="mhdir" type="MH"]] + +## An Mbox + +[[!mailbox path="mbox" type="Mbox"]] \ No newline at end of file diff --git a/test/in/testbox/cur/1216509900.24030_0.rocinante:2,S b/test/in/maildir/cur/1216509900.24030_0.rocinante:2,S similarity index 100% rename from test/in/testbox/cur/1216509900.24030_0.rocinante:2,S rename to test/in/maildir/cur/1216509900.24030_0.rocinante:2,S diff --git a/test/in/testbox/cur/1217510059.4567_1.convex.cs.unb.ca:2,S b/test/in/maildir/cur/1217510059.4567_1.convex.cs.unb.ca:2,S similarity index 100% rename from test/in/testbox/cur/1217510059.4567_1.convex.cs.unb.ca:2,S rename to test/in/maildir/cur/1217510059.4567_1.convex.cs.unb.ca:2,S diff --git a/test/in/testbox/cur/1217510060.4567_2.convex.cs.unb.ca:2, b/test/in/maildir/cur/1217510060.4567_2.convex.cs.unb.ca:2, similarity index 100% rename from test/in/testbox/cur/1217510060.4567_2.convex.cs.unb.ca:2, rename to test/in/maildir/cur/1217510060.4567_2.convex.cs.unb.ca:2, diff --git a/test/in/testbox/cur/1217510061.4567_3.convex.cs.unb.ca:2, b/test/in/maildir/cur/1217510061.4567_3.convex.cs.unb.ca:2, similarity index 100% rename from test/in/testbox/cur/1217510061.4567_3.convex.cs.unb.ca:2, rename to test/in/maildir/cur/1217510061.4567_3.convex.cs.unb.ca:2, diff --git a/test/in/testbox/cur/1217510061.4567_4.convex.cs.unb.ca:2, b/test/in/maildir/cur/1217510061.4567_4.convex.cs.unb.ca:2, similarity index 100% rename from test/in/testbox/cur/1217510061.4567_4.convex.cs.unb.ca:2, rename to test/in/maildir/cur/1217510061.4567_4.convex.cs.unb.ca:2, diff --git a/test/in/testbox/cur/1217510062.4567_5.convex.cs.unb.ca:2, b/test/in/maildir/cur/1217510062.4567_5.convex.cs.unb.ca:2, similarity index 100% rename from test/in/testbox/cur/1217510062.4567_5.convex.cs.unb.ca:2, rename to test/in/maildir/cur/1217510062.4567_5.convex.cs.unb.ca:2, diff --git a/test/in/testbox/cur/1217510062.4567_6.convex.cs.unb.ca:2, b/test/in/maildir/cur/1217510062.4567_6.convex.cs.unb.ca:2, similarity index 100% rename from test/in/testbox/cur/1217510062.4567_6.convex.cs.unb.ca:2, rename to test/in/maildir/cur/1217510062.4567_6.convex.cs.unb.ca:2, diff --git a/test/in/testbox/cur/1217510063.4567_7.convex.cs.unb.ca:2, b/test/in/maildir/cur/1217510063.4567_7.convex.cs.unb.ca:2, similarity index 100% rename from test/in/testbox/cur/1217510063.4567_7.convex.cs.unb.ca:2, rename to test/in/maildir/cur/1217510063.4567_7.convex.cs.unb.ca:2, diff --git a/test/in/testbox/cur/1217510063.4567_8.convex.cs.unb.ca:2, b/test/in/maildir/cur/1217510063.4567_8.convex.cs.unb.ca:2, similarity index 100% rename from test/in/testbox/cur/1217510063.4567_8.convex.cs.unb.ca:2, rename to test/in/maildir/cur/1217510063.4567_8.convex.cs.unb.ca:2, diff --git a/test/in/testbox/cur/1217510064.4567_9.convex.cs.unb.ca:2, b/test/in/maildir/cur/1217510064.4567_9.convex.cs.unb.ca:2, similarity index 100% rename from test/in/testbox/cur/1217510064.4567_9.convex.cs.unb.ca:2, rename to test/in/maildir/cur/1217510064.4567_9.convex.cs.unb.ca:2, diff --git a/test/in/testbox/new/1217537543.4567_10.convex.cs.unb.ca b/test/in/maildir/new/1217537543.4567_10.convex.cs.unb.ca similarity index 100% rename from test/in/testbox/new/1217537543.4567_10.convex.cs.unb.ca rename to test/in/maildir/new/1217537543.4567_10.convex.cs.unb.ca diff --git a/test/in/testbox/new/1217537543.4567_11.convex.cs.unb.ca b/test/in/maildir/new/1217537543.4567_11.convex.cs.unb.ca similarity index 100% rename from test/in/testbox/new/1217537543.4567_11.convex.cs.unb.ca rename to test/in/maildir/new/1217537543.4567_11.convex.cs.unb.ca diff --git a/test/in/testbox/new/1217537544.4567_12.convex.cs.unb.ca b/test/in/maildir/new/1217537544.4567_12.convex.cs.unb.ca similarity index 100% rename from test/in/testbox/new/1217537544.4567_12.convex.cs.unb.ca rename to test/in/maildir/new/1217537544.4567_12.convex.cs.unb.ca diff --git a/test/in/testbox/new/1217537544.4567_13.convex.cs.unb.ca b/test/in/maildir/new/1217537544.4567_13.convex.cs.unb.ca similarity index 100% rename from test/in/testbox/new/1217537544.4567_13.convex.cs.unb.ca rename to test/in/maildir/new/1217537544.4567_13.convex.cs.unb.ca diff --git a/test/in/testbox/new/1217537545.4567_14.convex.cs.unb.ca b/test/in/maildir/new/1217537545.4567_14.convex.cs.unb.ca similarity index 100% rename from test/in/testbox/new/1217537545.4567_14.convex.cs.unb.ca rename to test/in/maildir/new/1217537545.4567_14.convex.cs.unb.ca diff --git a/test/in/mbox b/test/in/mbox new file mode 100644 index 000000000..e0c2468f5 --- /dev/null +++ b/test/in/mbox @@ -0,0 +1,1304 @@ +From - Sun Aug 03 21:06:32 2008 +X-Mozilla-Status: 0011 +X-Mozilla-Status2: 00000000 +X-Mozilla-Keys: +>From bounce-debian-kde=bremner=unb.ca@lists.debian.org Thu Jul 31 06:44:00 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 06:44:00 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOUhT-0004Mn-8O + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 06:44:00 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6V9hpij017380 + for ; Thu, 31 Jul 2008 06:43:54 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 7FCF2444018 + for ; Thu, 31 Jul 2008 06:43:51 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 1F1F044404E + for ; Thu, 31 Jul 2008 06:43:51 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id D01AE13A6323; Thu, 31 Jul 2008 09:43:48 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.0 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST + autolearn=failed version=3.2.3 +X-Original-To: lists-debian-kde@liszt.debian.org +Delivered-To: lists-debian-kde@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 9F4D613A631A + for ; Thu, 31 Jul 2008 09:43:42 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 05963-61 for ; + Thu, 31 Jul 2008 09:43:39 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_FROM_IP=-2 (check from: .gmane. - helo: .ciao.gmane. - helo-domain: .gmane.) FROM/MX_MATCHES_HELO(DOMAIN)=-2 , rate: -7 +Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) + (using TLSv1 with cipher AES256-SHA (256/256 bits)) + (Client did not present a certificate) + by liszt.debian.org (Postfix) with ESMTP id AA8DB13A630C + for ; Thu, 31 Jul 2008 09:43:33 +0000 (UTC) +Received: from list by ciao.gmane.org with local (Exim 4.43) + id 1KOUh0-0006p9-Ng + for debian-kde@lists.debian.org; Thu, 31 Jul 2008 09:43:30 +0000 +Received: from x1-6-00-1b-2f-09-8e-4f.k132.webspeed.dk ([80.163.18.233]) + by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) + id 1AlnuQ-0007hv-00 + for ; Thu, 31 Jul 2008 09:43:30 +0000 +Received: from bofhenator by x1-6-00-1b-2f-09-8e-4f.k132.webspeed.dk with local (Gmexim 0.1 (Debian)) + id 1AlnuQ-0007hv-00 + for ; Thu, 31 Jul 2008 09:43:30 +0000 +X-Injected-Via-Gmane: http://gmane.org/ +To: debian-kde@lists.debian.org +From: Magnus Pedersen +Subject: Re: Do you now when amarok 2 pakages in experimental? +Date: Thu, 31 Jul 2008 11:43:18 +0200 +Lines: 34 +Message-ID: +References: <200807311046.37761.basaburu@basatu.org> +Mime-Version: 1.0 +Content-Type: text/plain; charset=ISO-8859-1; format=flowed +Content-Transfer-Encoding: 7bit +X-Complaints-To: usenet@ger.gmane.org +X-Gmane-NNTP-Posting-Host: x1-6-00-1b-2f-09-8e-4f.k132.webspeed.dk +User-Agent: Mozilla-Thunderbird 2.0.0.14 (X11/20080509) +In-Reply-To: <200807311046.37761.basaburu@basatu.org> +Sender: news +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-ht +X-Amavis-Spam-Status: No, score=-5 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-kde@lists.debian.org +X-Mailing-List: archive/latest/28961 +X-Loop: debian-kde@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-kde-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 09:43:48 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.93122 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1200_1299 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CP_MEDIA_2_BODY 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __FRAUD_419_WEBMAIL 0, __FRAUD_419_WEBMAIL_FROM 0, __FROM_GMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-kde=bremner=unb.ca@lists.debian.org + +BasaBuru wrote: +> Aupa +> +> I liked amarok, and i look any pages with them, amarok 2 beta, is prety. +> +> I'm compile beta 2 but isn't boot. +> +> the message is very extrange. +> +> said: +> +> Amarok could not find any collection plugins. Amarok is now updating the KDE +> configuration database. Please wait a couple of minutes, then restart Amarok. +> If this does not help, it is likely that Amarok is installed under the wrong +> prefix, please fix your installation using: +> $ cd /path/to/amarok/source-code/ +> $ su -c "make uninstall" +> $ ./configure --prefix=`kde-config --prefix` && su -c "make install" +> $ kbuildsycoca4 +> $ amarok +> the solution is absurd, for compile beta 2 you must be use cmake, isn't +> .configure +> I'm look for information on the net and nothing. :) i'm a few inutil, think so +> I'm think is more well and confiable if the kde team, compile packages for us. +> izan funtsa +> BasaBuru +> +> +> +> +You could try these: +http://www.kde-apps.org/content/show.php/Amarok+2?content=85474 + +/Magnus + + +-- +To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + + +From - Sun Aug 03 21:06:32 2008 +X-Mozilla-Status: 0011 +X-Mozilla-Status2: 00000000 +X-Mozilla-Keys: +>From bounce-debian-kde=bremner=unb.ca@lists.debian.org Thu Jul 31 07:09:23 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 07:09:23 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOV63-0004Oh-UI + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 07:09:23 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6VA9GrH022248 + for ; Thu, 31 Jul 2008 07:09:18 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 396E8444059 + for ; Thu, 31 Jul 2008 07:09:16 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id CC84C444007 + for ; Thu, 31 Jul 2008 07:09:15 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id A633013A637E; Thu, 31 Jul 2008 10:09:13 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=0.0 required=4.0 tests=none autolearn=no version=3.2.3 +X-Original-To: lists-debian-kde@liszt.debian.org +Delivered-To: lists-debian-kde@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id B525D13A631A + for ; Thu, 31 Jul 2008 09:51:42 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 32688-36 for ; + Thu, 31 Jul 2008 09:51:39 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_MX=-3.1 (check from: .debian. - helo: .ekaia. - helo-domain: .ekaia.) FROM/MX_MATCHES_NOT_HELO(DOMAIN)=0 , rate: -6.1 +Received: from ekaia.org (ekaia.org [70.87.222.228]) + by liszt.debian.org (Postfix) with ESMTP id BD45313A631D + for ; Thu, 31 Jul 2008 09:51:33 +0000 (UTC) +Received: by ekaia.org (Postfix, from userid 1001) + id AA39F298202; Thu, 31 Jul 2008 11:51:28 +0200 (CEST) +Date: Thu, 31 Jul 2008 11:51:28 +0200 +From: Ana Guerrero +To: Magnus Pedersen +Cc: debian-kde@lists.debian.org +Subject: Re: Do you now when amarok 2 pakages in experimental? +Message-ID: <20080731095128.GA13782@ekaia.org> +References: <200807311046.37761.basaburu@basatu.org> +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +Content-Disposition: inline +In-Reply-To: +User-Agent: Mutt/1.5.13 (2006-08-11) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-ht +X-Amavis-Spam-Status: No, score=0 tagged_above=3.6 required=5.3 tests=[none] +X-Rc-Spam: 2007-10-04_01 +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-kde@lists.debian.org +X-Mailing-List: archive/latest/28962 +X-Loop: debian-kde@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-kde-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 10:09:13 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.95517 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1500_1599 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CP_MEDIA_2_BODY 0, __CP_URI_IN_BODY 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-kde=bremner=unb.ca@lists.debian.org + +On Thu, Jul 31, 2008 at 11:43:18AM +0200, Magnus Pedersen wrote: +> BasaBuru wrote: +> >Aupa +> > +> >I liked amarok, and i look any pages with them, amarok 2 beta, is prety. +> > +> >I'm compile beta 2 but isn't boot. +> > +> >the message is very extrange. +> > +> >said: +> > +> >Amarok could not find any collection plugins. Amarok is now updating the +> >KDE configuration database. Please wait a couple of minutes, then restart +> >Amarok. +> >If this does not help, it is likely that Amarok is installed under the +> >wrong prefix, please fix your installation using: +> >$ cd /path/to/amarok/source-code/ +> >$ su -c "make uninstall" +> >$ ./configure --prefix=`kde-config --prefix` && su -c "make install" +> >$ kbuildsycoca4 +> >$ amarok +> >the solution is absurd, for compile beta 2 you must be use cmake, isn't +> >.configure +> >I'm look for information on the net and nothing. :) i'm a few inutil, +> >think so +> >I'm think is more well and confiable if the kde team, compile packages for +> >us. +> >izan funtsa +> >BasaBuru +> > +> > +> > +> > +> You could try these: +> http://www.kde-apps.org/content/show.php/Amarok+2?content=85474 +> + +Please do not recommend non official stuff... quality can be good or not so +good, and they can break your system. +AFAIK, current amarok's mantainer have not uploaded packages yet because they +are too much experimental :) + +Ana + + +-- +To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + + +From - Sun Aug 03 21:06:32 2008 +X-Mozilla-Status: 0011 +X-Mozilla-Status2: 00000000 +X-Mozilla-Keys: +>From bounce-debian-kde=bremner=unb.ca@lists.debian.org Thu Jul 31 07:38:39 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 07:38:39 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOVYN-0004S8-MM + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 07:38:39 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6VAcWDr029707 + for ; Thu, 31 Jul 2008 07:38:34 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 1559FDADBF + for ; Thu, 31 Jul 2008 07:38:32 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id 97B02DAD99 + for ; Thu, 31 Jul 2008 07:38:31 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id CE6F713A58A7; Thu, 31 Jul 2008 10:38:29 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-10.9 required=4.0 tests=FOURLA,LDOSUBSCRIBER, + LDO_WHITELIST autolearn=failed version=3.2.3 +X-Original-To: lists-debian-kde@liszt.debian.org +Delivered-To: lists-debian-kde@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 770A313A581A + for ; Thu, 31 Jul 2008 10:38:23 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 30550-27 for ; + Thu, 31 Jul 2008 10:38:20 +0000 (UTC) +X-policyd-weight: using cached result; rate: -7 +Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) + (using TLSv1 with cipher AES256-SHA (256/256 bits)) + (Client did not present a certificate) + by liszt.debian.org (Postfix) with ESMTP id 48E3A13A5824 + for ; Thu, 31 Jul 2008 10:38:14 +0000 (UTC) +Received: from list by ciao.gmane.org with local (Exim 4.43) + id 1KOVXs-0000mQ-K3 + for debian-kde@lists.debian.org; Thu, 31 Jul 2008 10:38:08 +0000 +Received: from x1-6-00-1b-2f-09-8e-4f.k132.webspeed.dk ([80.163.18.233]) + by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) + id 1AlnuQ-0007hv-00 + for ; Thu, 31 Jul 2008 10:38:08 +0000 +Received: from bofhenator by x1-6-00-1b-2f-09-8e-4f.k132.webspeed.dk with local (Gmexim 0.1 (Debian)) + id 1AlnuQ-0007hv-00 + for ; Thu, 31 Jul 2008 10:38:08 +0000 +X-Injected-Via-Gmane: http://gmane.org/ +To: debian-kde@lists.debian.org +From: Magnus Pedersen +Subject: Re: Do you now when amarok 2 pakages in experimental? +Date: Thu, 31 Jul 2008 12:37:55 +0200 +Lines: 14 +Message-ID: +References: <200807311046.37761.basaburu@basatu.org> <20080731095128.GA13782@ekaia.org> +Mime-Version: 1.0 +Content-Type: text/plain; charset=ISO-8859-1; format=flowed +Content-Transfer-Encoding: 7bit +X-Complaints-To: usenet@ger.gmane.org +X-Gmane-NNTP-Posting-Host: x1-6-00-1b-2f-09-8e-4f.k132.webspeed.dk +User-Agent: Mozilla-Thunderbird 2.0.0.14 (X11/20080509) +In-Reply-To: <20080731095128.GA13782@ekaia.org> +Sender: news +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-ht +X-Amavis-Spam-Status: No, score=-4.9 tagged_above=3.6 required=5.3 tests=[FOURLA=0.1, + LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-kde@lists.debian.org +X-Mailing-List: archive/latest/28963 +X-Loop: debian-kde@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-kde-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 10:38:29 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.101655 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_600_699 0, __BOUNCE_CHALLENGE_SUBJ 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __FRAUD_419_WEBMAIL 0, __FRAUD_419_WEBMAIL_FROM 0, __FROM_GMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-kde=bremner=unb.ca@lists.debian.org + +Ana Guerrero wrote: +>> You could try these: +>> http://www.kde-apps.org/content/show.php/Amarok+2?content=85474 +>> +> +> Please do not recommend non official stuff... quality can be good or not so +> good, and they can break your system. +> AFAIK, current amarok's mantainer have not uploaded packages yet because they +> are too much experimental :) + +I agree that the quality of non-official packages is an unknown, but +from there to not link to them is, IMHO, a long way? + +/Magnus + + +-- +To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + + +From - Sun Aug 03 21:06:32 2008 +X-Mozilla-Status: 0011 +X-Mozilla-Status2: 00000000 +X-Mozilla-Keys: +>From bounce-debian-kde=bremner=unb.ca@lists.debian.org Thu Jul 31 09:09:20 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 09:09:20 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOWy8-0004ac-PJ + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 09:09:20 -0300 +Received: from mx4.nbpei-ecn.ca (mx4.nbpei-ecn.ca [198.164.163.197]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6VC9Ccr023473 + for ; Thu, 31 Jul 2008 09:09:15 -0300 +Received: from mx4.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id E22E87C4048 + for ; Thu, 31 Jul 2008 09:09:12 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx4.nbpei-ecn.ca (Postfix) with ESMTP id 9E01F7C4045 + for ; Thu, 31 Jul 2008 09:09:12 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id E0CF713A61D2; Thu, 31 Jul 2008 12:09:10 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=0.1 required=4.0 tests=FOURLA autolearn=no + version=3.2.3 +X-Original-To: lists-debian-kde@liszt.debian.org +Delivered-To: lists-debian-kde@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 06CDD13A58BE + for ; Thu, 31 Jul 2008 11:51:53 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 10922-70 for ; + Thu, 31 Jul 2008 11:51:50 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_MX=-3.1 (check from: .debian. - helo: .ekaia. - helo-domain: .ekaia.) FROM/MX_MATCHES_NOT_HELO(DOMAIN)=0 , rate: -6.1 +Received: from ekaia.org (ekaia.org [70.87.222.228]) + by liszt.debian.org (Postfix) with ESMTP id 05A3613A588D + for ; Thu, 31 Jul 2008 11:51:43 +0000 (UTC) +Received: by ekaia.org (Postfix, from userid 1001) + id 33B91298201; Thu, 31 Jul 2008 13:51:41 +0200 (CEST) +Date: Thu, 31 Jul 2008 13:51:41 +0200 +From: Ana Guerrero +To: Magnus Pedersen +Cc: debian-kde@lists.debian.org +Subject: Re: Do you now when amarok 2 pakages in experimental? +Message-ID: <20080731115140.GA14760@ekaia.org> +References: <200807311046.37761.basaburu@basatu.org> <20080731095128.GA13782@ekaia.org> +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +Content-Disposition: inline +In-Reply-To: +User-Agent: Mutt/1.5.13 (2006-08-11) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-ht +X-Amavis-Spam-Status: No, score=0.1 tagged_above=3.6 required=5.3 tests=[FOURLA=0.1] +X-Rc-Spam: 2007-10-04_01 +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-kde@lists.debian.org +X-Mailing-List: archive/latest/28964 +X-Loop: debian-kde@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-kde-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 12:09:10 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.115652 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_1099 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-kde=bremner=unb.ca@lists.debian.org + +On Thu, Jul 31, 2008 at 12:37:55PM +0200, Magnus Pedersen wrote: +> Ana Guerrero wrote: +> >>You could try these: +> >>http://www.kde-apps.org/content/show.php/Amarok+2?content=85474 +> >> +> > +> >Please do not recommend non official stuff... quality can be good or not so +> >good, and they can break your system. +> >AFAIK, current amarok's mantainer have not uploaded packages yet because +> >they +> >are too much experimental :) +> +> I agree that the quality of non-official packages is an unknown, but +> from there to not link to them is, IMHO, a long way? +> + +who said you can not link it? you do not know the knowledge of the person who +you are answering so making a notice about it coming from non official repos +(that are not supported), is a very good idea. +I guess a better rewording of my email would be:" do not recommend non offcial +stuff without stating it is non official and it could break your system". + +Ana + + +-- +To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + + +From - Sun Aug 03 21:06:32 2008 +X-Mozilla-Status: 0011 +X-Mozilla-Status2: 00000000 +X-Mozilla-Keys: +>From bounce-debian-kde=bremner=unb.ca@lists.debian.org Thu Jul 31 09:45:19 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 09:45:19 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOXWx-0004eP-8y + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 09:45:19 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6VCjBF1007758 + for ; Thu, 31 Jul 2008 09:45:14 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id B3C59DCC9E + for ; Thu, 31 Jul 2008 09:45:10 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id 5623CDCC9D + for ; Thu, 31 Jul 2008 09:45:10 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 83A4313A6343; Thu, 31 Jul 2008 12:45:04 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.0 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST + autolearn=failed version=3.2.3 +X-Original-To: lists-debian-kde@liszt.debian.org +Delivered-To: lists-debian-kde@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id F34EF13A6098 + for ; Thu, 31 Jul 2008 12:44:57 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 32041-99 for ; + Thu, 31 Jul 2008 12:44:55 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .basatu. - helo: .mx1.grupoikusnet. - helo-domain: .grupoikusnet.) FROM/MX_MATCHES_NOT_HELO(DOMAIN)=0 , rate: -5 +Received: from mx1.grupoikusnet.com (extranet.grupoikusnet.com [91.121.11.45]) + by liszt.debian.org (Postfix) with ESMTP id 2814713A61D3 + for ; Thu, 31 Jul 2008 12:44:45 +0000 (UTC) +Received: from localhost (localhost.localdomain [127.0.0.1]) + by mx1.grupoikusnet.com (Postfix) with ESMTP id F03181FA06 + for ; Thu, 31 Jul 2008 14:44:42 +0200 (CEST) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: Debian amavisd-new at mx1.grupoikusnet.com +Received: from mx1.grupoikusnet.com ([127.0.0.1]) + by localhost (extranet.grupoikusnet.com [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id WEpXQrDzqn3W for ; + Thu, 31 Jul 2008 14:44:36 +0200 (CEST) +Received: from hal.ikusnet.com (unknown [217.76.134.179]) + by mx1.grupoikusnet.com (Postfix) with ESMTP id 8DBA3A9FE4 + for ; Thu, 31 Jul 2008 14:44:36 +0200 (CEST) +Received: from localhost (localhost.localdomain [127.0.0.1]) + by hal.ikusnet.com (Postfix) with ESMTP id EACF72FA868 + for ; Thu, 31 Jul 2008 14:44:35 +0200 (CEST) +Received: from hal.ikusnet.com ([127.0.0.1]) + by localhost (hal.ikusnet.com [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id 19871-05 for ; + Thu, 31 Jul 2008 14:44:21 +0200 (CEST) +Received: from basatu.localnet (238.Red-83-61-23.staticIP.rima-tde.net [83.61.23.238]) + by hal.ikusnet.com (Postfix) with ESMTP id AFA352FA859 + for ; Thu, 31 Jul 2008 14:44:08 +0200 (CEST) +From: BasaBuru +To: debian-kde@lists.debian.org +Subject: Re: Do you now when amarok 2 pakages in experimental? +Date: Thu, 31 Jul 2008 14:44:22 +0200 +User-Agent: KMail/1.10.0 (Linux/2.6.26; KDE/4.1.0; x86_64; ; ) +References: <200807311046.37761.basaburu@basatu.org> +In-Reply-To: +MIME-Version: 1.0 +Content-Type: text/plain; + charset="iso-8859-1" +Content-Transfer-Encoding: quoted-printable +Content-Disposition: inline +Message-Id: <200807311444.22470.basaburu@basatu.org> +X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at ikusnet.com +X-Virus-Scanned: at lists.debian.org with policy bank en-ht +X-Amavis-Spam-Status: No, score=-5 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-kde@lists.debian.org +X-Mailing-List: archive/latest/28965 +X-Loop: debian-kde@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-kde-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 12:45:04 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.123116 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='FROM_NAME_ONE_WORD 0.05, BODY_SIZE_1000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_500_599 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-kde=bremner=unb.ca@lists.debian.org + +El Thursday 31 July 2008 11:43:18 Magnus Pedersen escribi=F3: + +> +> You could try these: +> http://www.kde-apps.org/content/show.php/Amarok+2?content=3D85474 + +Yes i now. but... + +1. Is unoffical, then you maybe have any problems. + +2. Is only for i386 i can't probe + +3. i'm not sure what is make compile.=20 + +4. If official package is not, i prefer compile it's my self + +thanks for link + +BasaBuru + + + +-- +To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + + +From - Sun Aug 03 21:06:32 2008 +X-Mozilla-Status: 0001 +X-Mozilla-Status2: 00000000 +X-Mozilla-Keys: +>From bounce-debian-kde=bremner=unb.ca@lists.debian.org Thu Jul 31 12:58:24 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 12:58:24 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOaXo-0004xa-Dy + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 12:58:24 -0300 +Received: from mx4.nbpei-ecn.ca (mx4.nbpei-ecn.ca [198.164.163.197]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6VFwDcw019086 + for ; Thu, 31 Jul 2008 12:58:19 -0300 +Received: from mx4.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 500E47C4050 + for ; Thu, 31 Jul 2008 12:58:18 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx4.nbpei-ecn.ca (Postfix) with ESMTP id E51617C4047 + for ; Thu, 31 Jul 2008 12:58:17 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 4E2CD13A6442; Thu, 31 Jul 2008 15:58:16 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.0 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST + autolearn=failed version=3.2.3 +X-Original-To: lists-debian-kde@liszt.debian.org +Delivered-To: lists-debian-kde@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 2927513A5B97 + for ; Thu, 31 Jul 2008 15:58:10 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 20657-36 for ; + Thu, 31 Jul 2008 15:58:07 +0000 (UTC) +X-policyd-weight: using cached result; rate: -6.1 +X-Greylist: delayed 474 seconds by postgrey-1.27 at liszt; Thu, 31 Jul 2008 15:58:07 UTC +Received: from smtp0.telegraaf.nl (smtp0.telegraaf.nl [217.196.45.192]) + by liszt.debian.org (Postfix) with ESMTP id 3BE8013A5213 + for ; Thu, 31 Jul 2008 15:58:01 +0000 (UTC) +Received: from smtp0.telegraaf.nl (localhost [127.0.0.1]) + by smtp0.telegraaf.nl (Postfix) with ESMTP id BDCB33682B0 + for ; Thu, 31 Jul 2008 17:49:58 +0200 (CEST) +Received: from office.telegraafnet.nl (olijfje.telegraafnet.nl [10.41.0.9]) + by smtp0.telegraaf.nl (Postfix) with ESMTP id B120F3680FD + for ; Thu, 31 Jul 2008 17:49:58 +0200 (CEST) +Received: by office.telegraafnet.nl (Postfix, from userid 1136) + id A25C81618E1; Thu, 31 Jul 2008 17:49:58 +0200 (CEST) +Date: Thu, 31 Jul 2008 17:49:58 +0200 +To: debian-kde@lists.debian.org +Subject: Upgrade was mostly fine, but a few problems left +Message-ID: <20080731154958.GA5100@telegraafnet.nl> +Mime-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +Content-Disposition: inline +User-Agent: Mutt/1.5.9i +From: ferdinand@telegraafnet.nl (Ferdinand Smit) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: ClamAV using ClamSMTP +X-Virus-Scanned: at lists.debian.org with policy bank en-ht +X-Amavis-Spam-Status: No, score=-5 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-kde@lists.debian.org +X-Mailing-List: archive/latest/28966 +X-Loop: debian-kde@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-kde-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 15:58:16 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.154524 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_1099 0, BODY_SIZE_5000_LESS 0, __CD 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-kde=bremner=unb.ca@lists.debian.org + +Hi, + +I've upgraded my system to 4.1 by aptitude -t experimental install kde4. +It +looks a bit scary so i created backup and got the install done. + +The upgrade was fine ! Great job ! KDE 4.1 looks and works nice ! + +But ... there are a few problems left, that i can not fix: +* Where did my address book and my calender go in kontact ? Can i import +* them +again in kontact 4.1 ? My mail and my mail settings seems fine. +* At First my alt-tab was working accordingly the settings of "Desktop +* Effects +Settings" but now is it only using some old alt-tab behavior and does it +not +listen to changes in the "Desktop Effect Settings". Probably it's just a +setting somewhere, but i can not find it. +* How do i added programs (-links) to the panel ? +* The effects are a little bit slow on a 'Intel(R) Core(TM)2 Duo CPU +* 2Gz, Intel +Mobile GM965/GL960'. Is that normal ? + +Regards, +Ferdinand + + +-- +To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + + +From - Sun Aug 03 21:06:32 2008 +X-Mozilla-Status: 0011 +X-Mozilla-Status2: 00000000 +X-Mozilla-Keys: +>From bounce-debian-kde=bremner=unb.ca@lists.debian.org Thu Jul 31 13:13:17 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 13:13:17 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOamD-0004zE-4u + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 13:13:17 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6VGD9kd024398 + for ; Thu, 31 Jul 2008 13:13:12 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 80493444072 + for ; Thu, 31 Jul 2008 13:13:09 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 1E96544406B + for ; Thu, 31 Jul 2008 13:13:09 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id B7B0C13A6429; Thu, 31 Jul 2008 16:13:07 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-8.0 required=4.0 tests=BLOGSPOT,LDOSUBSCRIBER, + LDO_WHITELIST autolearn=failed version=3.2.3 +X-Original-To: lists-debian-kde@liszt.debian.org +Delivered-To: lists-debian-kde@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 6E3D513A641E + for ; Thu, 31 Jul 2008 16:13:01 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 09963-17 for ; + Thu, 31 Jul 2008 16:12:58 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .gmail. - helo: .yw-out-1718.google. - helo-domain: .google.) FROM/MX_MATCHES_HELO(DOMAIN)=-2 IN_PM_RFCI=0.1 , rate: -6.9 +Received: from yw-out-1718.google.com (yw-out-1718.google.com [74.125.46.152]) + by liszt.debian.org (Postfix) with ESMTP id 74E1413A640E + for ; Thu, 31 Jul 2008 16:12:43 +0000 (UTC) +Received: by yw-out-1718.google.com with SMTP id 5so325711ywr.30 + for ; Thu, 31 Jul 2008 09:12:41 -0700 (PDT) +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=gmail.com; s=gamma; + h=domainkey-signature:received:received:from:to:subject:date + :user-agent:references:in-reply-to:x-face:mime-version:content-type + :content-transfer-encoding:message-id; + bh=+we4wAcRrH4ag8iPbvJhCKRs3Q7nc0bhm1sKf9KizQ0=; + b=TsQ5oqNsVyqLoqOA37pwZhtHDDRUgjkio3RtTwy8l6CtDTYVhsUNVoDuohjbY8tlmG + NCuaJF3eo/wwPALzjPDaUu64TsDyrWyM5p1KwhO0g5lk4lMt6/uShkOpR2OH+99gbYyo + HIYnsNtalHkocPDcJBY/GAmNzIF3SqwUroMNs= +DomainKey-Signature: a=rsa-sha1; c=nofws; + d=gmail.com; s=gamma; + h=from:to:subject:date:user-agent:references:in-reply-to:x-face + :mime-version:content-type:content-transfer-encoding:message-id; + b=gNdQgzWEHj53XDmkNd8MOWLFgEi/xgvjzDMLGPfNab5Y65XXbodC2HAtOnhsgOgS+0 + 7LaWAbPPVOUaKRg12aH8IQyodKjZ9K+jOJ6YDGjw9OYI1MKoCWvb9ozM7nIBABmvqlw3 + 1homfskVCy3TYcGNotrQgzRUFFeNVFexSX/9w= +Received: by 10.114.159.17 with SMTP id h17mr10332650wae.227.1217520760498; + Thu, 31 Jul 2008 09:12:40 -0700 (PDT) +Received: from dumbledore.localnet ( [190.1.22.76]) + by mx.google.com with ESMTPS id 5sm23293ywd.8.2008.07.31.09.12.38 + (version=TLSv1/SSLv3 cipher=RC4-MD5); + Thu, 31 Jul 2008 09:12:39 -0700 (PDT) +From: Lisandro =?iso-8859-1?q?Dami=E1n_Nicanor_P=E9rez_Meyer?= +To: debian-kde@lists.debian.org +Subject: Re: Upgrade was mostly fine, but a few problems left +Date: Thu, 31 Jul 2008 13:12:34 -0300 +User-Agent: KMail/1.10.0 (Linux/2.6.25-2-686; KDE/4.1.0; i686; ; ) +References: <20080731154958.GA5100@telegraafnet.nl> +In-Reply-To: <20080731154958.GA5100@telegraafnet.nl> +X-Face: &O7POA^t$8Gq0El|^zM9V:*jgn,ETU\1A73;Zdeojd,G(a";/Y0Fu|/*_jQF+@3';#.O@ + =?utf-8?q?=26=0A=09=2ET?="FaLh+5o_F,\lrKg~{JYYVM20 + =?utf-8?q?Q1I=26fUN=0A=094?=<\TGcR5= +MIME-Version: 1.0 +Content-Type: multipart/signed; + boundary="nextPart4479863.OBGFDyufmS"; + protocol="application/pgp-signature"; + micalg=pgp-sha1 +Content-Transfer-Encoding: 7bit +Message-Id: <200807311312.34725.perezmeyer@gmail.com> +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-ht +X-Amavis-Spam-Status: No, score=-2 tagged_above=3.6 required=5.3 tests=[BLOGSPOT=3, + LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-kde@lists.debian.org +X-Mailing-List: archive/latest/28967 +X-Loop: debian-kde@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-kde-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 16:13:07 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.155821 +X-PerlMx-Spam: Gauge=IIIIIIIII, Probability=9%, Report='BLOGSPOT_URI 0.5, BODY_ENDS_IN_URL_NOT_WWW 0, BODY_SIZE_1700_1799 0, BODY_SIZE_5000_LESS 0, ECARD_WORD 0, __BOUNCE_CHALLENGE_SUBJ 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __FRAUD_419_WEBMAIL 0, __FRAUD_419_WEBMAIL_FROM 0, __FROM_GMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-kde=bremner=unb.ca@lists.debian.org + +--nextPart4479863.OBGFDyufmS +Content-Type: text/plain; + charset="iso-8859-1" +Content-Transfer-Encoding: quoted-printable +Content-Disposition: inline + +On Thursday 31 July 2008 12:49:58 Ferdinand Smit wrote: +> Hi, +> +> I've upgraded my system to 4.1 by aptitude -t experimental install kde4. +> It +> looks a bit scary so i created backup and got the install done. +> +> The upgrade was fine ! Great job ! KDE 4.1 looks and works nice ! +> +> But ... there are a few problems left, that i can not fix: +> * Where did my address book and my calender go in kontact ? Can i import +> * them +> again in kontact 4.1 ? My mail and my mail settings seems fine. + +They didn't go. KDE 4 is using ~/.kde4 to store all data, while KDE 3 uses= +=20 +~/.kde + +What I did was to copy ~./kde/share/ to ~./kd/share, in a console without k= +de=20 +running. It is not the best solution I guess, but it worked for me. + +The rest I cannot say. I don't use effects as I have a %$&$%&$% NVidia card= +=20 + +=2D-=20 +La ciencia sin la religi=F3n es renga, +la religi=F3n sin la ciencia es ciega. + Albert Einstein + +Lisandro Dami=E1n Nicanor P=E9rez Meyer +http://perezmeyer.com.ar/ +http://perezmeyer.blogspot.com/ + + +--nextPart4479863.OBGFDyufmS +Content-Type: application/pgp-signature; name=signature.asc +Content-Description: This is a digitally signed message part. + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEABECAAYFAkiR5HIACgkQXGiQYciCD6cqhwCgiyYRq4EMSOvoG1kJxMapT0rw +aR0An1kb8XxgZLnDXzNWmIh0woU4T+tQ +=kHwS +-----END PGP SIGNATURE----- + +--nextPart4479863.OBGFDyufmS-- + + +-- +To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + + +From - Sun Aug 03 21:06:32 2008 +X-Mozilla-Status: 0011 +X-Mozilla-Status2: 00000000 +X-Mozilla-Keys: +>From bounce-debian-kde=bremner=unb.ca@lists.debian.org Thu Jul 31 13:57:15 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 13:57:15 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KObSl-00054l-Fd + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 13:57:15 -0300 +Received: from mx4.nbpei-ecn.ca (mx4.nbpei-ecn.ca [198.164.163.197]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6VGv56w017425 + for ; Thu, 31 Jul 2008 13:57:10 -0300 +Received: from mx4.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 1259C7C402F + for ; Thu, 31 Jul 2008 13:57:09 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx4.nbpei-ecn.ca (Postfix) with ESMTP id AACC67C4028 + for ; Thu, 31 Jul 2008 13:57:08 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id E3E2913A6460; Thu, 31 Jul 2008 16:55:27 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.0 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST + autolearn=failed version=3.2.3 +X-Original-To: lists-debian-kde@liszt.debian.org +Delivered-To: lists-debian-kde@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 02D9513A6451 + for ; Thu, 31 Jul 2008 16:55:20 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 09963-68 for ; + Thu, 31 Jul 2008 16:55:14 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .basatu. - helo: .mx1.grupoikusnet. - helo-domain: .grupoikusnet.) FROM/MX_MATCHES_NOT_HELO(DOMAIN)=0 , rate: -5 +Received: from mx1.grupoikusnet.com (extranet.grupoikusnet.com [91.121.11.45]) + by liszt.debian.org (Postfix) with ESMTP id 4026A13A6465 + for ; Thu, 31 Jul 2008 16:54:53 +0000 (UTC) +Received: from localhost (localhost.localdomain [127.0.0.1]) + by mx1.grupoikusnet.com (Postfix) with ESMTP id 907111FA10 + for ; Thu, 31 Jul 2008 18:54:46 +0200 (CEST) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: Debian amavisd-new at mx1.grupoikusnet.com +Received: from mx1.grupoikusnet.com ([127.0.0.1]) + by localhost (extranet.grupoikusnet.com [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id cz0CbvjYj-yn for ; + Thu, 31 Jul 2008 18:54:39 +0200 (CEST) +Received: from hal.ikusnet.com (unknown [217.76.134.179]) + by mx1.grupoikusnet.com (Postfix) with ESMTP id 5AE19A9FDD + for ; Thu, 31 Jul 2008 18:54:39 +0200 (CEST) +Received: from localhost (localhost.localdomain [127.0.0.1]) + by hal.ikusnet.com (Postfix) with ESMTP id B44E42FA824 + for ; Thu, 31 Jul 2008 18:54:38 +0200 (CEST) +Received: from hal.ikusnet.com ([127.0.0.1]) + by localhost (hal.ikusnet.com [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id 32414-09 for ; + Thu, 31 Jul 2008 18:54:27 +0200 (CEST) +Received: from basatu.localnet (238.Red-83-61-23.staticIP.rima-tde.net [83.61.23.238]) + by hal.ikusnet.com (Postfix) with ESMTP id 7F4D62FA858 + for ; Thu, 31 Jul 2008 18:54:26 +0200 (CEST) +From: BasaBuru +To: debian-kde@lists.debian.org +Subject: Re: Upgrade was mostly fine, but a few problems left +Date: Thu, 31 Jul 2008 18:54:43 +0200 +User-Agent: KMail/1.10.0 (Linux/2.6.26; KDE/4.1.0; x86_64; ; ) +References: <20080731154958.GA5100@telegraafnet.nl> <200807311312.34725.perezmeyer@gmail.com> +In-Reply-To: <200807311312.34725.perezmeyer@gmail.com> +MIME-Version: 1.0 +Content-Type: text/plain; + charset="iso-8859-15" +Content-Transfer-Encoding: quoted-printable +Content-Disposition: inline +Message-Id: <200807311854.44009.basaburu@basatu.org> +X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at ikusnet.com +X-Virus-Scanned: at lists.debian.org with policy bank en-ht +X-Amavis-Spam-Status: No, score=-5 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-kde@lists.debian.org +X-Mailing-List: archive/latest/28968 +X-Loop: debian-kde@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-kde-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 16:55:27 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.164418 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='FROM_NAME_ONE_WORD 0.05, BODY_SIZE_1000_LESS 0, BODY_SIZE_300_399 0, BODY_SIZE_5000_LESS 0, ECARD_WORD 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-kde=bremner=unb.ca@lists.debian.org + +El Thursday 31 July 2008 18:12:34 Lisandro Dami=E1n Nicanor P=E9rez Meyer=20 +escribi=F3: + +> The rest I cannot say. I don't use effects as I have a %$&$%&$% NVidia ca= +rd + +Do you true the new nvidia driver??? + +It's no work? + +BasaBuru + + +-- +To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + + +From - Sun Aug 03 21:06:32 2008 +X-Mozilla-Status: 0011 +X-Mozilla-Status2: 00000000 +X-Mozilla-Keys: +>From bounce-debian-kde=bremner=unb.ca@lists.debian.org Thu Jul 31 14:20:21 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 14:20:21 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KObp7-0005AM-HA + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 14:20:21 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6VHKD1X026376 + for ; Thu, 31 Jul 2008 14:20:16 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id BC9E9E126E + for ; Thu, 31 Jul 2008 14:20:13 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id 4E858E11AE + for ; Thu, 31 Jul 2008 14:20:13 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 15E9913A648F; Thu, 31 Jul 2008 17:20:11 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-7.9 required=4.0 tests=BLOGSPOT,FOURLA,LDOSUBSCRIBER, + LDO_WHITELIST autolearn=failed version=3.2.3 +X-Original-To: lists-debian-kde@liszt.debian.org +Delivered-To: lists-debian-kde@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 1B56213A6487 + for ; Thu, 31 Jul 2008 17:20:04 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 09963-91 for ; + Thu, 31 Jul 2008 17:20:01 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .gmail. - helo: .qw-out-1920.google. - helo-domain: .google.) FROM/MX_MATCHES_HELO(DOMAIN)=-2 IN_PM_RFCI=0.1 , rate: -6.9 +Received: from qw-out-1920.google.com (qw-out-1920.google.com [74.125.92.146]) + by liszt.debian.org (Postfix) with ESMTP id B8F1E13A6458 + for ; Thu, 31 Jul 2008 17:19:54 +0000 (UTC) +Received: by qw-out-1920.google.com with SMTP id 4so105670qwk.18 + for ; Thu, 31 Jul 2008 10:19:51 -0700 (PDT) +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=gmail.com; s=gamma; + h=domainkey-signature:received:received:from:to:subject:date + :user-agent:references:in-reply-to:x-face:mime-version:content-type + :content-transfer-encoding:message-id; + bh=NBniFi5IX6jJxPMydTm2ot/H5CnYBzFknkDlUyefVTc=; + b=g99RVa8lRbBwDiKtQwHTiMI+vQUHQfOIIXA00xtNZy99uIVsOzFHtoUcH56UdrGV22 + 9uh+fuJc0F8/+fPyw8pd+Ajvj7dHAFOeco+wv+OGgSkmYxPgpnwfttcHg5jVGj6UMJjm + lAIMoefjwL5RxXkD9pQ1CMEKf0HLAJIPJvG5A= +DomainKey-Signature: a=rsa-sha1; c=nofws; + d=gmail.com; s=gamma; + h=from:to:subject:date:user-agent:references:in-reply-to:x-face + :mime-version:content-type:content-transfer-encoding:message-id; + b=I77AeAkatiTtf66n0iX/CEGwLCNMxk0HFvLlVCJOIw+TJg5M7v1IVBRun11yUKvtYn + 99eqM8gYGnnjKkHtYqNOxPYrrCz6ikAIrlf6zBTzBsuGIRD8AwmGzyezm4hVEwrWko2o + URR8UCXkkypFiPR0vN7oKQjsAj4jTgji7CC6w= +Received: by 10.215.14.5 with SMTP id r5mr6545234qai.41.1217524791670; + Thu, 31 Jul 2008 10:19:51 -0700 (PDT) +Received: from dumbledore.localnet ( [190.1.22.76]) + by mx.google.com with ESMTPS id 7sm52137ywo.7.2008.07.31.10.19.48 + (version=TLSv1/SSLv3 cipher=RC4-MD5); + Thu, 31 Jul 2008 10:19:50 -0700 (PDT) +From: Lisandro =?iso-8859-15?q?Dami=E1n_Nicanor_P=E9rez_Meyer?= +To: debian-kde@lists.debian.org +Subject: Re: Upgrade was mostly fine, but a few problems left +Date: Thu, 31 Jul 2008 14:19:44 -0300 +User-Agent: KMail/1.10.0 (Linux/2.6.25-2-686; KDE/4.1.0; i686; ; ) +References: <20080731154958.GA5100@telegraafnet.nl> <200807311312.34725.perezmeyer@gmail.com> <200807311854.44009.basaburu@basatu.org> +In-Reply-To: <200807311854.44009.basaburu@basatu.org> +X-Face: &O7POA^t$8Gq0El|^zM9V:*jgn,ETU\1A73;Zdeojd,G(a";/Y0Fu|/*_jQF+@3';#.O@ + =?utf-8?q?=26=0A=09=2ET?="FaLh+5o_F,\lrKg~{JYYVM20 + =?utf-8?q?Q1I=26fUN=0A=094?=<\TGcR5= +MIME-Version: 1.0 +Content-Type: multipart/signed; + boundary="nextPart1338689.gb6M2R9Bna"; + protocol="application/pgp-signature"; + micalg=pgp-sha1 +Content-Transfer-Encoding: 7bit +Message-Id: <200807311419.45020.perezmeyer@gmail.com> +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-ht +X-Amavis-Spam-Status: No, score=-1.9 tagged_above=3.6 required=5.3 tests=[BLOGSPOT=3, + FOURLA=0.1, LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-kde@lists.debian.org +X-Mailing-List: archive/latest/28969 +X-Loop: debian-kde@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-kde-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 17:20:11 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.170120 +X-PerlMx-Spam: Gauge=IIIIIIIII, Probability=9%, Report='BLOGSPOT_URI 0.5, BODY_ENDS_IN_URL_NOT_WWW 0, BODY_SIZE_1300_1399 0, BODY_SIZE_5000_LESS 0, ECARD_WORD 0, __BOUNCE_CHALLENGE_SUBJ 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __FRAUD_419_WEBMAIL 0, __FRAUD_419_WEBMAIL_FROM 0, __FROM_GMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-kde=bremner=unb.ca@lists.debian.org + +--nextPart1338689.gb6M2R9Bna +Content-Type: text/plain; + charset="iso-8859-15" +Content-Transfer-Encoding: quoted-printable +Content-Disposition: inline + +On Thursday 31 July 2008 13:54:43 BasaBuru wrote: +> El Thursday 31 July 2008 18:12:34 Lisandro Dami=E1n Nicanor P=E9rez Meyer +> +> escribi=F3: +> > The rest I cannot say. I don't use effects as I have a %$&$%&$% NVidia +> > card +> +> Do you true the new nvidia driver??? +> +> It's no work? +It has always been a disaster on my system, but the only way to get GLSL an= +d=20 +OpenGL working. + + +=2D-=20 +She got her good looks from her father. He's a plastic surgeon. + -- Groucho Marx + +Lisandro Dami=E1n Nicanor P=E9rez Meyer +http://perezmeyer.com.ar/ +http://perezmeyer.blogspot.com/ + + +--nextPart1338689.gb6M2R9Bna +Content-Type: application/pgp-signature; name=signature.asc +Content-Description: This is a digitally signed message part. + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEABECAAYFAkiR9DAACgkQXGiQYciCD6dDVQCg1RT+9URnI0mP+y67Oeee+3cC +DRsAnibLhKcJ5unWW+/DWObajPcJjyk7 +=zjfo +-----END PGP SIGNATURE----- + +--nextPart1338689.gb6M2R9Bna-- + + +-- +To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + + +From - Sun Aug 03 21:06:32 2008 +X-Mozilla-Status: 0001 +X-Mozilla-Status2: 00000000 +X-Mozilla-Keys: +>From bounce-debian-kde=bremner=unb.ca@lists.debian.org Fri Aug 01 00:42:34 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Fri, 01 Aug 2008 00:42:34 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOlXG-0006h3-Cw + for bremner@pivot.cs.unb.ca; Fri, 01 Aug 2008 00:42:34 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m713gQNU008910 + for ; Fri, 1 Aug 2008 00:42:29 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id AF76E444037 + for ; Fri, 1 Aug 2008 00:42:26 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 501BE44407E + for ; Fri, 1 Aug 2008 00:42:26 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 49CC213A4AD6; Fri, 1 Aug 2008 03:42:07 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=0.0 required=4.0 tests=none autolearn=no version=3.2.3 +X-Original-To: lists-debian-kde@liszt.debian.org +Delivered-To: lists-debian-kde@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 0183913A51D9 + for ; Fri, 1 Aug 2008 03:24:53 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 23321-92 for ; + Fri, 1 Aug 2008 03:24:50 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .smitplaza. - helo: .webmail10.mail.sp.isp-net. - helo-domain: .isp-net.) FROM/MX_MATCHES_NOT_HELO(DOMAIN)=0 , rate: -5 +X-Greylist: delayed 47414 seconds by postgrey-1.27 at liszt; Fri, 01 Aug 2008 03:24:50 UTC +Received: from webmail10.mail.sp.isp-net.nl (webmail10.mail.sp.isp-net.nl [217.149.192.62]) + by liszt.debian.org (Postfix) with ESMTP id 19BCE13A5176 + for ; Fri, 1 Aug 2008 03:24:43 +0000 (UTC) +Received: from william.smitplaza.com by webmail10.mail.sp.isp-net.nl + via 39-48-223.ftth.xms.internl.net [85.223.48.39] with ESMTP for + id m6VEERvL028669 (8.13.2/2.04); Thu, 31 Jul 2008 16:14:27 +0200 (MEST) +Received: from wlan.smitplaza.com ([10.0.0.100] helo=fertop.localnet) + by william.smitplaza.com with esmtp (Exim 4.69) + (envelope-from ) + id 1KOYvC-0004VE-MT + for debian-kde@lists.debian.org; Thu, 31 Jul 2008 16:14:27 +0200 +From: Ferdinand Smit +To: debian-kde@lists.debian.org +Subject: Upgrade was mostly fine, but a few problems left +Date: Thu, 31 Jul 2008 16:12:21 +0200 +User-Agent: KMail/1.10.0 (Linux/2.6.25-2-686; KDE/4.1.0; i686; ; ) +MIME-Version: 1.0 +Content-Type: text/plain; + charset="us-ascii" +Content-Transfer-Encoding: 7bit +Content-Disposition: inline +Message-Id: <200807311612.21314.ferdinand@smitplaza.com> +X-Spam_score: -1.8 +X-Spam_score_int: -17 +X-Spam_bar: - +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-ht +X-Amavis-Spam-Status: No, score=0 tagged_above=3.6 required=5.3 tests=[none] +X-Rc-Spam: 2007-10-04_01 +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: <9mw5mblLErO.A.7ZH.PYokIB@liszt> +Resent-From: debian-kde@lists.debian.org +X-Mailing-List: archive/latest/28973 +X-Loop: debian-kde@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-kde-request@lists.debian.org +Resent-Date: Fri, 1 Aug 2008 03:42:07 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.1.32448 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_1099 0, BODY_SIZE_5000_LESS 0, __CD 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-kde=bremner=unb.ca@lists.debian.org + +Hi, + +I've upgraded my system to 4.1 by aptitude -t experimental install kde4. It +looks a bit scary so i created backup and got the install done. + +The upgrade was fine ! Great job ! KDE 4.1 looks and works nice ! + +But ... there are a few problems left, that i can not fix: +* Where did my address book and my calender go in kontact ? Can i import them +again in kontact 4.1 ? My mail and my mail settings seems fine. +* At First my alt-tab was working accordingly the settings of "Desktop Effects +Settings" but now is it only using some old alt-tab behavior and does it not +listen to changes in the "Desktop Effect Settings". Probably it's just a +setting somewhere, but i can not find it. +* How do i added programs (-links) to the panel ? +* The effects are a little bit slow on a 'Intel(R) Core(TM)2 Duo CPU 2Gz, Intel +Mobile GM965/GL960'. Is that normal ? + +Regards, +Ferdinand + + +-- +To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + + diff --git a/test/in/mhdir/1 b/test/in/mhdir/1 new file mode 100644 index 000000000..006d12b52 --- /dev/null +++ b/test/in/mhdir/1 @@ -0,0 +1,222 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 06:23:25 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 06:23:25 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KO7u1-0001V6-31 + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 06:23:25 -0300 +Received: from mx4.nbpei-ecn.ca (mx4.nbpei-ecn.ca [198.164.163.197]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6U9NDWf015654 + for ; Wed, 30 Jul 2008 06:23:20 -0300 +Received: from mx4.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id ABA2B7C411B + for ; Wed, 30 Jul 2008 06:23:12 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx4.nbpei-ecn.ca (Postfix) with ESMTP id B07477C40D8 + for ; Wed, 30 Jul 2008 05:52:07 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 5386513A5FD8; Wed, 30 Jul 2008 08:52:06 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-4.3 required=4.0 tests=FOURLA,LDO_WHITELIST, + SARE_MSGID_LONG40 autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id E2A3713A5F78 + for ; Wed, 30 Jul 2008 08:51:56 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 31837-36 for ; + Wed, 30 Jul 2008 08:51:53 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .gmail. - helo: .mu-out-0910.google. - helo-domain: .google.) FROM/MX_MATCHES_HELO(DOMAIN)=-2 IN_PM_RFCI=0.1 , rate: -6.9 +Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.185]) + by liszt.debian.org (Postfix) with ESMTP id BA66D13A5FC0 + for ; Wed, 30 Jul 2008 08:51:47 +0000 (UTC) +Received: by mu-out-0910.google.com with SMTP id w9so246610mue.0 + for ; Wed, 30 Jul 2008 01:51:44 -0700 (PDT) +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=gmail.com; s=gamma; + h=domainkey-signature:received:received:message-id:date:from:sender + :to:subject:mime-version:content-type:content-transfer-encoding + :content-disposition:x-google-sender-auth; + bh=B46qi++Qc+o45M0qCK+l/5iH6YDeThy9NnU1JgvVuzc=; + b=fM1zWnFLJcb5DDnMCMCkZdpxNKHL8IiAbaE9MWhtf3yoSJ1q7LBVlbygcT9xOMON0h + AMa17055JwBj52s6Ow1XhVdHFjp818utPP7PBU7XaNJo53h4/qmmMiKfS8CctmCJXPjY + +qBeA6WDFQoKqm7gHr25uMzD5li45MRNae7Rw= +DomainKey-Signature: a=rsa-sha1; c=nofws; + d=gmail.com; s=gamma; + h=message-id:date:from:sender:to:subject:mime-version:content-type + :content-transfer-encoding:content-disposition:x-google-sender-auth; + b=hIN+6D7rniUdoS9OPBLCFiikG8ykIOb7vvgEyEKS7ZuNeOXXXynsKiWz04KN1+saX7 + 8byrqViqSmwTkXY0yIem2Xx5eGIaRAMwHKc7MLvvGJsL/E5kqvMx5PupLoKVeDuxRY2N + bbLcjorpwtRrlbigwtdcDuK3ILzygiD8pRqcg= +Received: by 10.103.243.7 with SMTP id v7mr2718341mur.118.1217407904516; + Wed, 30 Jul 2008 01:51:44 -0700 (PDT) +Received: by 10.103.175.12 with HTTP; Wed, 30 Jul 2008 01:51:44 -0700 (PDT) +Message-ID: +Date: Wed, 30 Jul 2008 10:51:44 +0200 +From: "Jens Peter Secher" +Sender: jpsecher@gmail.com +To: debian-mentors@lists.debian.org +Subject: pbuilder/pdebuild mini-howto (Was: Building a build environment) +MIME-Version: 1.0 +Content-Type: text/plain; charset=ISO-8859-1 +Content-Transfer-Encoding: 7bit +Content-Disposition: inline +X-Google-Sender-Auth: 3697963bb83213d5 +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-4.263 tagged_above=3.6 required=5.3 + tests=[FOURLA=0.1, LDO_WHITELIST=-5, SARE_MSGID_LONG40=0.637] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42381 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 08:52:06 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.90610 +X-PerlMx-Spam: Gauge=IIIIIIIII, Probability=9%, Report='WEBMAIL_REPLYTO_NOT_FROM 0.5, BODY_SIZE_4000_4999 0, BODY_SIZE_5000_LESS 0, WEBMAIL_SOURCE 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __FRAUD_419_WEBMAIL 0, __FRAUD_419_WEBMAIL_SENDER 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __PHISH_SPEAR_HTTP_RECEIVED 0, __PHISH_SPEAR_STRUCTURE_1 0, __PHISH_SPEAR_STRUCTURE_2 0, __SANE_MSGID 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +2008/7/29 Richard Hurt : +> I am just getting started in Debian package building and I need to know if +> this idea is valid or if there is a better way. +> [...] +> What do you use? + +I find pbuilder easiest to work with. Since I am mostly running +Testing, I have two setups, one for Sid and one for Backports. Here is +a mini-howto for what to do. + +Create a ~/deb/unstable-pbuilderrc: + + DISTRIBUTION="sid" + BASETGZ="$HOME/var/pbuilder/$DISTRIBUTION-base.tgz" + BUILDPLACE="$HOME/var/pbuilder/$DISTRIBUTION" + MIRRORSITE="http://ftp.se.debian.org/debian" + USEPROC="yes" + USEDEVPTS="yes" + USEDEVFS="no" + BUILDRESULT="$HOME/var/presult" + APTCACHE="/var/cache/apt/archives" + APTCACHEHARDLINK="no" + REMOVEPACKAGES="lilo grub" + HOOKDIR="" + export DEBIAN_FRONTEND="noninteractive" + DEBEMAIL="Jens Peter Secher " + BUILDSOURCEROOTCMD="fakeroot" + PBUILDERROOTCMD="sudo" + DEBBUILDOPTS="" + APTCONFDIR="$HOME/deb/apt.config" + BUILDUSERID="1000" + BINDMOUNTS="" + DEBOOTSTRAPOPTS[0]='--variant=buildd' + +And create a ~/deb/backports-pbuilderrc: + + DISTRIBUTION="etch" + BASETGZ="$HOME/var/pbuilder/backports-base.tgz" + BUILDPLACE="$HOME/var/pbuilder/backports" + MIRRORSITE="http://ftp.se.debian.org/debian" + OTHERMIRROR="deb http://www.backports.org/debian/ +$DISTRIBUTION-backports main" + USEPROC="yes" + USEDEVPTS="yes" + USEDEVFS="no" + BUILDRESULT="$HOME/var/presult" + APTCACHE="/var/cache/apt/archives" + APTCACHEHARDLINK="no" + REMOVEPACKAGES="lilo grub" + HOOKDIR="" + export DEBIAN_FRONTEND="noninteractive" + DEBEMAIL="Jens Peter Secher " + BUILDSOURCEROOTCMD="fakeroot" + PBUILDERROOTCMD="sudo" + DEBBUILDOPTS="" + APTCONFDIR="$HOME/deb/apt.config" + BUILDUSERID="1000" + BINDMOUNTS="" + DEBOOTSTRAPOPTS[0]='--variant=buildd' + +To stop apt complaining, create an +~/deb/apt.config/apt.conf.d/allow-unauthenticated: + + APT::Get::AllowUnauthenticated 1; + +To give pbuilder a place to store its stuff, do + + mkdir -p ~/var/presults ~/var/pbuilder + +To create the environments, do + + sudo pbuilder create --configfile ~/deb/unstable-pbuilderrc + sudo pbuilder create --configfile ~/deb/backports-pbuilderrc + +To build a new package, in your package directory +(eg. ~/deb/libfoo/libfoo-2.13/) you then just do + + pdebuild --configfile ~/deb/unstable-pbuilderrc + +or to build a backport, use the -sa -v options: + + pdebuild --configfile ~/deb/backports-pbuilderrc --debbuildopts '-sa -v2.12-1' + +To manually install dependencies in the environment, you can do + + sudo pbuilder login --configfile ~/deb/backports-pbuilderrc + +and then manually copy (source) packages into the chroot. To tweak +things in the environment in general, you can do + + sudo pbuilder login --save-after-exec --configfile ~/deb/unstable-pbuilderrc + +To sponsor a package, use the -k option: + + pdebuild --configfile ~/deb/unstable-pbuilderrc --debbuildopts '-kFE63E8A1' + +Remember to update the environments before building: + + sudo /usr/sbin/pbuilder update --configfile ~/deb/unstable-pbuilderrc + +The resulting packages are placed in ~/var/presults, where you need to +sign them with debsign, which works best with GPG Agent running, so put +something like this in your .xsession file: + + if test -f $HOME/.gpg-agent-info && \ + kill -0 `cut -d: -f 2 $HOME/.gpg-agent-info` 2>/dev/null; + then + GPG_AGENT_INFO=`cat $HOME/.gpg-agent-info` + export GPG_AGENT_INFO + else + eval `gpg-agent --daemon` + echo $GPG_AGENT_INFO >$HOME/.gpg-agent-info + fi + + +HTH, +-- + Jens Peter Secher. +_DD6A 05B0 174E BFB2 D4D9 B52E 0EE5 978A FE63 E8A1 jpsecher gmail com_. +A. Because it breaks the logical sequence of discussion. +Q. Why is top posting bad? + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/10 b/test/in/mhdir/10 new file mode 100644 index 000000000..bf2596233 --- /dev/null +++ b/test/in/mhdir/10 @@ -0,0 +1,123 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 16:38:14 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 16:38:14 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOHV0-0006c4-0O + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 16:38:14 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UJc6dd020005 + for ; Wed, 30 Jul 2008 16:38:09 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 5DA7DD134E + for ; Wed, 30 Jul 2008 16:38:06 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id EFB36D147A + for ; Wed, 30 Jul 2008 16:38:05 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 8E3EA13A61C4; Wed, 30 Jul 2008 19:38:04 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-3.0 required=4.0 tests=LDO_WHITELIST,ONEWORD + autolearn=no version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 4F25A13A61B8 + for ; Wed, 30 Jul 2008 19:37:58 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 20891-49 for ; + Wed, 30 Jul 2008 19:37:55 +0000 (UTC) +X-policyd-weight: using cached result; rate: -5 +Received: from rzlab.ucr.edu (rzlab.ucr.edu [138.23.92.77]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (Client did not present a certificate) + by liszt.debian.org (Postfix) with ESMTP id 2B93013A60E1 + for ; Wed, 30 Jul 2008 19:37:49 +0000 (UTC) +Received: from rzlab.ucr.edu (rzlab.ucr.edu [127.0.0.1]) + by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m6UJbjSE013036 + for ; Wed, 30 Jul 2008 12:37:45 -0700 +Received: (from remotemail@localhost) + by rzlab.ucr.edu (8.13.8/8.13.8/Submit) id m6UJbjt6013035 + for debian-mentors@lists.debian.org; Wed, 30 Jul 2008 12:37:45 -0700 +Received: (nullmailer pid 19340 invoked by uid 1000); + Wed, 30 Jul 2008 19:37:44 -0000 +Date: Wed, 30 Jul 2008 12:37:44 -0700 +From: Don Armstrong +To: debian-mentors@lists.debian.org +Subject: Re: ftp-masters +Message-ID: <20080730193744.GM21393@volo.donarmstrong.com> +Mail-Followup-To: debian-mentors@lists.debian.org +References: <20080730115010.GA24515@shota.mine.nu> <200807301404.49015.t.quathamer@gmx.net> <87tze7bjp5.fsf@benfinney.id.au> <8b2d7b4d0807300615m129c35f8x7789b376b958e35a@mail.gmail.com> +MIME-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +Content-Disposition: inline +In-Reply-To: <8b2d7b4d0807300615m129c35f8x7789b376b958e35a@mail.gmail.com> +User-Agent: Mutt/1.5.18 (2008-05-17) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-3 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, ONEWORD=2] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42395 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 19:38:04 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.192251 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1400_1499 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __C230066_P1_2 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +On Wed, 30 Jul 2008, Sandro Tosi wrote: +> On Wed, Jul 30, 2008 at 15:11, Ben Finney wrote: +> > Tobias Quathamer writes: +> > +> >> You can send an email to ftpmaster@d.o and ask them to REJECT your +> >> package now, without doing further checks and then upload again. You +> >> can even re-use the same version number then. +> > +> > Though there's no good reason I can see to re-use a release number +> > after it's uploaded. +> +> Because it never reach the archive, so it's better to keep the same +> version for a REJECTED package: jumping revision is useless. + +There's no reason not to increment the version. You've made a release, +and have made changes to that release. Whether it actually hits the +archive is immaterial. You just build with the appropriate -v option, +and you're done. Moreover, a new revision makes it easier for everyone +to follow what had changed between a version which was reviewed by the +ftpmasters and the next version that was uploaded. + +There's nothing magical about the -1 version number. + + +Don Armstrong + +-- +She was alot like starbucks. +IE, generic and expensive. + -- hugh macleod http://www.gapingvoid.com/Moveable_Type/archives/001376.html + +http://www.donarmstrong.com http://rzlab.ucr.edu + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/11 b/test/in/mhdir/11 new file mode 100644 index 000000000..af9889315 --- /dev/null +++ b/test/in/mhdir/11 @@ -0,0 +1,147 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 17:35:33 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 17:35:33 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOIOT-0006iS-T5 + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 17:35:33 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UKZQgi029790 + for ; Wed, 30 Jul 2008 17:35:28 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 0C25C44403D + for ; Wed, 30 Jul 2008 17:35:26 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 9685C444039 + for ; Wed, 30 Jul 2008 17:35:25 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id E7F7913A6135; Wed, 30 Jul 2008 20:35:22 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-4.3 required=4.0 tests=ALL_TRUSTED,FOURLA, + LDO_WHITELIST,ONEWORD autolearn=no version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id B32F013A58AB + for ; Wed, 30 Jul 2008 20:35:16 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 05234-17 for ; + Wed, 30 Jul 2008 20:35:14 +0000 (UTC) +Received: from dedibox.ebzao.info (ipv6.ebzao.info [IPv6:2001:6f8:385::2]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (Client CN "dedibox.ebzao.info", Issuer "CA Cert Signing Authority" (not verified)) + by liszt.debian.org (Postfix) with ESMTP id E53C313A58CD + for ; Wed, 30 Jul 2008 20:35:13 +0000 (UTC) +Received: from localhost (localhost [127.0.0.1]) + by dedibox.ebzao.info (Postfix) with ESMTP id 62BA988D7 + for ; Wed, 30 Jul 2008 22:35:09 +0200 (CEST) +Received: from dedibox.ebzao.info ([127.0.0.1]) + by localhost (dedibox.ebzao.info [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id hwkzjDPVFHeN for ; + Wed, 30 Jul 2008 22:35:09 +0200 (CEST) +Received: from evy.ikibiki.org (localhost [127.0.0.1]) + (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) + (No client certificate requested) + by dedibox.ebzao.info (Postfix) with ESMTPS id 2E9A188A3 + for ; Wed, 30 Jul 2008 22:35:09 +0200 (CEST) +Received: by evy.ikibiki.org (Postfix, from userid 1000) + id 669D6C85B8; Wed, 30 Jul 2008 22:34:38 +0200 (CEST) +Date: Wed, 30 Jul 2008 22:34:38 +0200 +From: Cyril Brulebois +To: debian-mentors@lists.debian.org +Subject: Re: ftp-masters +Message-ID: <20080730203438.GF4563@ikibiki.org> +References: <20080730115010.GA24515@shota.mine.nu> <200807301404.49015.t.quathamer@gmx.net> <87tze7bjp5.fsf@benfinney.id.au> <8b2d7b4d0807300615m129c35f8x7789b376b958e35a@mail.gmail.com> <20080730193744.GM21393@volo.donarmstrong.com> +MIME-Version: 1.0 +Content-Type: multipart/signed; micalg=pgp-sha1; + protocol="application/pgp-signature"; boundary="URkQCorwCiZbgSAY" +Content-Disposition: inline +In-Reply-To: <20080730193744.GM21393@volo.donarmstrong.com> +Organization: Debian +User-Agent: Mutt/1.5.18 (2008-05-17) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-4.26 tagged_above=3.6 required=5.3 + tests=[ALL_TRUSTED=-1.36, FOURLA=0.1, LDO_WHITELIST=-5, ONEWORD=2] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42400 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 20:35:22 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.202006 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1800_1899 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __C230066_P1_2 0, __CD 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + + +--URkQCorwCiZbgSAY +Content-Type: text/plain; charset=us-ascii +Content-Disposition: inline +Content-Transfer-Encoding: quoted-printable + +Don Armstrong (30/07/2008): +> > Because it never reach the archive, so it's better to keep the same +> > version for a REJECTED package: jumping revision is useless. +>=20 +> There's no reason not to increment the version. You've made a release, +> and have made changes to that release. Whether it actually hits the +> archive is immaterial. You just build with the appropriate -v option, +> and you're done. + +And when one checks in which revision this or that happened, that's +quite misleading not to see any upload in the archive matching those +revisions (yeah for QA work!). + +> Moreover, a new revision makes it easier for everyone to follow what +> had changed between a version which was reviewed by the ftpmasters and +> the next version that was uploaded. + +That was already discussed at length in another mentors.d.n thread +(other threads actually). Improving the mentoring system seems to be the +key (at least to me). Maybe Signum could post some report on his GSOC +debexpo project? + +> There's nothing magical about the -1 version number. + +There's no need to keep intermediate work-in-progress never-uploaded +not-matching-anything-in-the-archive revision. + +Mraw, +KiBi. + +--URkQCorwCiZbgSAY +Content-Type: application/pgp-signature; name="signature.asc" +Content-Description: Digital signature +Content-Disposition: inline + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEARECAAYFAkiQ0F0ACgkQeGfVPHR5Nd2fBQCdHCDNIa8YJV2hfxS754xVQZrQ +ZhoAn2+mVeySayNvx1bVxeyvYnGbE6BC +=lAk0 +-----END PGP SIGNATURE----- + +--URkQCorwCiZbgSAY-- + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/12 b/test/in/mhdir/12 new file mode 100644 index 000000000..2b5f9bac5 --- /dev/null +++ b/test/in/mhdir/12 @@ -0,0 +1,131 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 18:09:35 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 18:09:35 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOIvP-0006l9-Er + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 18:09:35 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UL9Pcx005938 + for ; Wed, 30 Jul 2008 18:09:30 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 393A9444018 + for ; Wed, 30 Jul 2008 18:09:29 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id CB96B44406B + for ; Wed, 30 Jul 2008 18:09:28 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id B180713A558A; Wed, 30 Jul 2008 21:09:23 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-2.9 required=4.0 tests=FVGT_m_MULTI_ODD, + LDO_WHITELIST,MDO_DATING2,ONEWORD autolearn=no version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 3C21D13A555C + for ; Wed, 30 Jul 2008 21:09:17 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 30169-89 for ; + Wed, 30 Jul 2008 21:09:14 +0000 (UTC) +X-policyd-weight: using cached result; rate: -5 +Received: from rzlab.ucr.edu (rzlab.ucr.edu [138.23.92.77]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (Client did not present a certificate) + by liszt.debian.org (Postfix) with ESMTP id BBBA013A5286 + for ; Wed, 30 Jul 2008 21:09:07 +0000 (UTC) +Received: from rzlab.ucr.edu (rzlab.ucr.edu [127.0.0.1]) + by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m6UL93vO004859 + for ; Wed, 30 Jul 2008 14:09:03 -0700 +Received: (from remotemail@localhost) + by rzlab.ucr.edu (8.13.8/8.13.8/Submit) id m6UL93LP004858 + for debian-mentors@lists.debian.org; Wed, 30 Jul 2008 14:09:03 -0700 +Received: (nullmailer pid 28214 invoked by uid 1000); + Wed, 30 Jul 2008 21:08:57 -0000 +Date: Wed, 30 Jul 2008 14:08:57 -0700 +From: Don Armstrong +To: debian-mentors@lists.debian.org +Subject: Re: ftp-masters +Message-ID: <20080730210857.GO21393@volo.donarmstrong.com> +Mail-Followup-To: debian-mentors@lists.debian.org +References: <20080730115010.GA24515@shota.mine.nu> <200807301404.49015.t.quathamer@gmx.net> <87tze7bjp5.fsf@benfinney.id.au> <8b2d7b4d0807300615m129c35f8x7789b376b958e35a@mail.gmail.com> <20080730193744.GM21393@volo.donarmstrong.com> <20080730203438.GF4563@ikibiki.org> +MIME-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +Content-Disposition: inline +In-Reply-To: <20080730203438.GF4563@ikibiki.org> +User-Agent: Mutt/1.5.18 (2008-05-17) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-2.88 tagged_above=3.6 required=5.3 + tests=[FVGT_m_MULTI_ODD=0.02, LDO_WHITELIST=-5, MDO_DATING2=0.1, + ONEWORD=2] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42401 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 21:09:23 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.205520 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1700_1799 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __C230066_P1_2 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +On Wed, 30 Jul 2008, Cyril Brulebois wrote: +> Don Armstrong (30/07/2008): +> > There's no reason not to increment the version. You've made a +> > release, and have made changes to that release. Whether it +> > actually hits the archive is immaterial. You just build with the +> > appropriate -v option, and you're done. +> +> And when one checks in which revision this or that happened, that's +> quite misleading not to see any upload in the archive matching those +> revisions (yeah for QA work!). + +In QA work you're always comparing revisions. There's no difference +between dealing with versions which skipped the archive because they +were QAed elsewhere, or versions which are no longer in the archive +because they have been superseded. Furthemore, in this case, there was +an upload, it just never made it out of NEW. + +> > Moreover, a new revision makes it easier for everyone to follow +> > what had changed between a version which was reviewed by the +> > ftpmasters and the next version that was uploaded. +> +> That was already discussed at length in another mentors.d.n thread +> (other threads actually). + +There's a significant difference between uploads to mentors.d.n and +uploads to debian.org. If you actually uploaded to the archive, even +if it never made it out of NEW, you should never elide changelogs. + + +Don Armstrong + +-- +Three little words. (In descending order of importance.) +I +love +you + -- hugh macleod http://www.gapingvoid.com/graphics/batch35.php + +http://www.donarmstrong.com http://rzlab.ucr.edu + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/13 b/test/in/mhdir/13 new file mode 100644 index 000000000..67db31eb9 --- /dev/null +++ b/test/in/mhdir/13 @@ -0,0 +1,139 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 19:34:16 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 19:34:16 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOKFI-0006w8-TM + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 19:34:16 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UMY5g3003634 + for ; Wed, 30 Jul 2008 19:34:07 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 38E9DD36F5 + for ; Wed, 30 Jul 2008 19:34:05 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id CBDCDD3700 + for ; Wed, 30 Jul 2008 19:34:04 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id ED75113A5AA8; Wed, 30 Jul 2008 22:34:02 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-8.0 required=4.0 tests=GMAIL,LDOSUBSCRIBER, + LDO_WHITELIST,ONEWORD autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id CCD2013A592C + for ; Wed, 30 Jul 2008 22:33:56 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 15005-44 for ; + Wed, 30 Jul 2008 22:33:54 +0000 (UTC) +X-policyd-weight: using cached result; rate: -7 +Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) + (using TLSv1 with cipher AES256-SHA (256/256 bits)) + (Client did not present a certificate) + by liszt.debian.org (Postfix) with ESMTP id EE49713A5914 + for ; Wed, 30 Jul 2008 22:33:47 +0000 (UTC) +Received: from list by ciao.gmane.org with local (Exim 4.43) + id 1KOKEn-00076R-Qh + for debian-mentors@lists.debian.org; Wed, 30 Jul 2008 22:33:41 +0000 +Received: from eth595.vic.adsl.internode.on.net ([150.101.214.82]) + by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) + id 1AlnuQ-0007hv-00 + for ; Wed, 30 Jul 2008 22:33:41 +0000 +Received: from ben+debian by eth595.vic.adsl.internode.on.net with local (Gmexim 0.1 (Debian)) + id 1AlnuQ-0007hv-00 + for ; Wed, 30 Jul 2008 22:33:41 +0000 +X-Injected-Via-Gmane: http://gmane.org/ +To: debian-mentors@lists.debian.org +From: Ben Finney +Subject: Re: ftp-masters +Date: Thu, 31 Jul 2008 08:33:33 +1000 +Lines: 33 +Message-ID: <87ljzjatoi.fsf@benfinney.id.au> +References: <20080730115010.GA24515@shota.mine.nu> <200807301404.49015.t.quathamer@gmx.net> <87tze7bjp5.fsf@benfinney.id.au> <8b2d7b4d0807300615m129c35f8x7789b376b958e35a@mail.gmail.com> +Mime-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +X-Complaints-To: usenet@ger.gmane.org +X-Gmane-NNTP-Posting-Host: eth595.vic.adsl.internode.on.net +X-Public-Key-ID: 0xBD41714B +X-Public-Key-Fingerprint: 9CFE 12B0 791A 4267 887F 520C B7AC 2E51 BD41 714B +X-Public-Key-URL: http://www.benfinney.id.au/contact/bfinney-gpg.asc +X-Post-From: Ben Finney +User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (gnu/linux) +Cancel-Lock: sha1:+mAEwxNsMBR5Hda+f68mIlgjBFY= +Sender: news +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-2 tagged_above=3.6 required=5.3 tests=[GMAIL=1, + LDO_WHITELIST=-5, ONEWORD=2] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42404 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 22:34:02 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.221624 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1400_1499 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __C230066_P1_2 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __FRAUD_419_BODY_WEBMAIL 0, __FRAUD_419_WEBMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __HIGHBITS 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +Content-Transfer-Encoding: quoted-printable +X-MIME-Autoconverted: from 8bit to quoted-printable by mailserv4.its.unb.ca id m6UMY5g3003634 +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +"Sandro Tosi" writes: + +> On Wed, Jul 30, 2008 at 15:11, Ben Finney = +wrote: +> > [T]here's no good reason I can see to re-use a release number +> > after it's uploaded. +>=20 +> Because it never reach the archive, so it's better to keep the same +> version for a REJECTED package + +Why is it better? What benefit does it bring to retain the same +version string, including release number, for two different packages +that have both been uploaded by the maintainer? + +> jumping revision is useless. + +It's useful because it clearly distinguishes two different package +uploads by the maintainer. By definition, they are at least different +enough that one was REJECTED and the later one hopes not to meet the +same fate. + +That keeps discussions about which one is which easy, and it even +makes it trivial to distinguish in the package changelog, by +separating the two releases and describing what was done for the later +one to make it different. + +That's a tangible benefit, not "useless". What is the benefit in not +doing that? + +--=20 + \ =E2=80=9CMy girlfriend has a queen sized bed; I have a court j= +ester | + `\ sized bed. It's red and green and has bells on it, and the ends | +_o__) curl up.=E2=80=9D =E2=80=94= +Steven Wright | +Ben Finney + + +--=20 +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian= +.org + + diff --git a/test/in/mhdir/14 b/test/in/mhdir/14 new file mode 100644 index 000000000..d7564b6d4 --- /dev/null +++ b/test/in/mhdir/14 @@ -0,0 +1,152 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 19:42:59 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 19:42:59 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOKNn-0006xK-4k + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 19:42:59 -0300 +Received: from mx4.nbpei-ecn.ca (mx4.nbpei-ecn.ca [198.164.163.197]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UMgpAE005639 + for ; Wed, 30 Jul 2008 19:42:54 -0300 +Received: from mx4.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 8107B7C401E + for ; Wed, 30 Jul 2008 19:42:51 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx4.nbpei-ecn.ca (Postfix) with ESMTP id 1C3FC7C4012 + for ; Wed, 30 Jul 2008 19:42:51 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id D6FDA13A5DB4; Wed, 30 Jul 2008 22:42:48 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-7.4 required=4.0 tests=GMAIL,LDOSUBSCRIBER, + LDO_WHITELIST,ONEWORD,SARE_MSGID_LONG40 autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id AC5C813A5D0B + for ; Wed, 30 Jul 2008 22:42:42 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 15005-48 for ; + Wed, 30 Jul 2008 22:42:39 +0000 (UTC) +Received: from rv-out-0708.google.com (rv-out-0708.google.com [209.85.198.245]) + by liszt.debian.org (Postfix) with ESMTP id 560D013A53C3 + for ; Wed, 30 Jul 2008 22:42:39 +0000 (UTC) +Received: by rv-out-0708.google.com with SMTP id k29so255439rvb.30 + for ; Wed, 30 Jul 2008 15:42:36 -0700 (PDT) +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=gmail.com; s=gamma; + h=domainkey-signature:received:received:message-id:date:from:to + :subject:in-reply-to:mime-version:content-type + :content-transfer-encoding:content-disposition:references; + bh=hq47lco8gL+qoo1uwnpKgR96jFObeUG4peRjeXoboJc=; + b=AiLAGVTRcUyXAVeraFIAWguDHU7lRAZ6EC3CEf7A39F3qQkU6ifrNrVweMX5cOQKWZ + cDAAx3G6/GzP8bPsZoXIXX4o+J5VhZtLLCdmNVDfnJZbEivSJilx/RKNYZzNFL3r8gJ9 + +Tss0EVEKs1B+9g5qs1HtME7bOfx3sCk79hjI= +DomainKey-Signature: a=rsa-sha1; c=nofws; + d=gmail.com; s=gamma; + h=message-id:date:from:to:subject:in-reply-to:mime-version + :content-type:content-transfer-encoding:content-disposition + :references; + b=K86MfRpAgPegojeysEw9Z1JQaweKT4q6/LQ2fE53GK6DIHVcINdpmEVgR4t0Y46JHp + ICBhLDKnjcQbPLRRHmK9YteiokayJLexwMT0ziWVHqixuGBHQ319K+iNRxopBketcCQI + KWVX7pz5c9d37p1f7dZtNmgyP4ALczVTGORc4= +Received: by 10.141.79.12 with SMTP id g12mr4907590rvl.29.1217457756272; + Wed, 30 Jul 2008 15:42:36 -0700 (PDT) +Received: by 10.141.202.10 with HTTP; Wed, 30 Jul 2008 15:42:36 -0700 (PDT) +Message-ID: <8b2d7b4d0807301542u41a4b774pa8b5fda67554f0da@mail.gmail.com> +Date: Thu, 31 Jul 2008 00:42:36 +0200 +From: "Sandro Tosi" +To: debian-mentors +Subject: Re: ftp-masters +In-Reply-To: <87ljzjatoi.fsf@benfinney.id.au> +MIME-Version: 1.0 +Content-Type: text/plain; charset=ISO-8859-1 +Content-Transfer-Encoding: 7bit +Content-Disposition: inline +References: <20080730115010.GA24515@shota.mine.nu> + <200807301404.49015.t.quathamer@gmx.net> + <87tze7bjp5.fsf@benfinney.id.au> + <8b2d7b4d0807300615m129c35f8x7789b376b958e35a@mail.gmail.com> + <87ljzjatoi.fsf@benfinney.id.au> +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-1.363 tagged_above=3.6 required=5.3 tests=[GMAIL=1, + LDO_WHITELIST=-5, ONEWORD=2, SARE_MSGID_LONG40=0.637] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42405 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 22:42:48 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.222943 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_2000_2999 0, BODY_SIZE_5000_LESS 0, WEBMAIL_SOURCE 0, __BOUNCE_CHALLENGE_SUBJ 0, __C230066_P1_2 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __FRAUD_419_BODY_WEBMAIL 0, __FRAUD_419_WEBMAIL 0, __FRAUD_419_WEBMAIL_FROM 0, __FROM_GMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __PHISH_SPEAR_HTTP_RECEIVED 0, __PHISH_SPEAR_STRUCTURE_1 0, __PHISH_SPEAR_STRUCTURE_2 0, __SANE_MSGID 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +On Thu, Jul 31, 2008 at 00:33, Ben Finney wrote: +> "Sandro Tosi" writes: +> +>> On Wed, Jul 30, 2008 at 15:11, Ben Finney wrote: +>> > [T]here's no good reason I can see to re-use a release number +>> > after it's uploaded. +>> +>> Because it never reach the archive, so it's better to keep the same +>> version for a REJECTED package +> +> Why is it better? What benefit does it bring to retain the same +> version string, including release number, for two different packages +> that have both been uploaded by the maintainer? +> +>> jumping revision is useless. +> +> It's useful because it clearly distinguishes two different package +> uploads by the maintainer. By definition, they are at least different +> enough that one was REJECTED and the later one hopes not to meet the +> same fate. +> +> That keeps discussions about which one is which easy, and it even +> makes it trivial to distinguish in the package changelog, by +> separating the two releases and describing what was done for the later +> one to make it different. +> +> That's a tangible benefit, not "useless". What is the benefit in not +> doing that? + +Because it doesn't add any information for the end users, if not +confusion: it seems that 2 different version reached the archive, +since the users will see 2 different entries in the changelog (for +example using apt-listchanges) when indeed there is only 1 package +uploaded after the one previou in the archive. + +So, simply changing the current REJECTED changelog entry +adding/modifing/removing items in it it's clearer. + +Ah, did I forgot to remember that "Our priorities are our users and +free software"? + +Sandro + +-- +Sandro Tosi (aka morph, Morpheus, matrixhasu) +My website: http://matrixhasu.altervista.org/ +Me at Debian: http://wiki.debian.org/SandroTosi + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/15 b/test/in/mhdir/15 new file mode 100644 index 000000000..6cda8abc2 --- /dev/null +++ b/test/in/mhdir/15 @@ -0,0 +1,130 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 20:08:13 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 20:08:13 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOKmD-00070X-TD + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 20:08:13 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UN86Lw011534 + for ; Wed, 30 Jul 2008 20:08:08 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 442A444403D + for ; Wed, 30 Jul 2008 20:08:06 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id D653944403E + for ; Wed, 30 Jul 2008 20:08:05 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 503F013A5F47; Wed, 30 Jul 2008 23:08:04 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-3.0 required=4.0 tests=LDO_WHITELIST,ONEWORD + autolearn=no version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 2E6BC13A5F9E + for ; Wed, 30 Jul 2008 23:07:58 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 18845-15 for ; + Wed, 30 Jul 2008 23:07:55 +0000 (UTC) +X-policyd-weight: using cached result; rate: -5 +Received: from rzlab.ucr.edu (rzlab.ucr.edu [138.23.92.77]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (Client did not present a certificate) + by liszt.debian.org (Postfix) with ESMTP id 0CC8613A5F47 + for ; Wed, 30 Jul 2008 23:07:48 +0000 (UTC) +Received: from rzlab.ucr.edu (rzlab.ucr.edu [127.0.0.1]) + by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m6UN7iq7004273 + for ; Wed, 30 Jul 2008 16:07:44 -0700 +Received: (from remotemail@localhost) + by rzlab.ucr.edu (8.13.8/8.13.8/Submit) id m6UN7i5J004272 + for debian-mentors@lists.debian.org; Wed, 30 Jul 2008 16:07:44 -0700 +Received: (nullmailer pid 7515 invoked by uid 1000); + Wed, 30 Jul 2008 23:07:43 -0000 +Date: Wed, 30 Jul 2008 16:07:43 -0700 +From: Don Armstrong +To: debian-mentors@lists.debian.org +Subject: Re: ftp-masters +Message-ID: <20080730230743.GR21393@volo.donarmstrong.com> +Mail-Followup-To: debian-mentors@lists.debian.org +References: <20080730115010.GA24515@shota.mine.nu> <200807301404.49015.t.quathamer@gmx.net> <87tze7bjp5.fsf@benfinney.id.au> <8b2d7b4d0807300615m129c35f8x7789b376b958e35a@mail.gmail.com> <87ljzjatoi.fsf@benfinney.id.au> <8b2d7b4d0807301542u41a4b774pa8b5fda67554f0da@mail.gmail.com> +MIME-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +Content-Disposition: inline +In-Reply-To: <8b2d7b4d0807301542u41a4b774pa8b5fda67554f0da@mail.gmail.com> +User-Agent: Mutt/1.5.18 (2008-05-17) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-3 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, ONEWORD=2] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42406 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 23:08:04 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.225519 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1700_1799 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __C230066_P1_2 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +On Thu, 31 Jul 2008, Sandro Tosi wrote: +> Because it doesn't add any information for the end users, + +Sure it does. It tells end users what was changed in between the +REJECT and the new upload. Eliding this means that it's no longer +possible to trivially tell what was changed between uploads.[1] + +> if not confusion: it seems that 2 different version reached the +> archive, since the users will see 2 different entries in the +> changelog (for example using apt-listchanges) when indeed there is +> only 1 package uploaded after the one previou in the archive. + +There were two uploaded, not just one. Furthermore, it doesn't matter +how many have reached the archive when a user is examining changelogs. +All you care about is the version that you have, the version that +you're upgrading to, and any previous versions you had installed. None +of those necessarily correlate with versions that are actually in the +archive. + +> Ah, did I forgot to remember that "Our priorities are our users and +> free software"? + +Obviously, which is why you should do what I suggested. + +You shouldn't treat changelogs of packages which happen to stop off at +NEW any differently, even if they get REJECTed. + + +Don Armstrong + +1: Furthermore, you really should be tagging your uploads with the +release that you uploaded to Debian with in your VCS. You are doing +that, right? +-- +NASCAR is a Yankee conspiracy to keep you all placated so the South +won't rise again. + -- http://www.questionablecontent.net/view.php?comic=327 + +http://www.donarmstrong.com http://rzlab.ucr.edu + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/16 b/test/in/mhdir/16 new file mode 100644 index 000000000..695f45986 --- /dev/null +++ b/test/in/mhdir/16 @@ -0,0 +1,162 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 20:16:49 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 20:16:49 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOKuX-00071l-K7 + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 20:16:49 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UNGdBa006338 + for ; Wed, 30 Jul 2008 20:16:44 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 7C76044403E + for ; Wed, 30 Jul 2008 20:16:43 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 15EB344403A + for ; Wed, 30 Jul 2008 20:16:43 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 7A17E13A6127; Wed, 30 Jul 2008 23:16:41 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-8.4 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + ONEWORD,SARE_MSGID_LONG40 autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 2AD4F13A6101 + for ; Wed, 30 Jul 2008 23:16:35 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 01281-31 for ; + Wed, 30 Jul 2008 23:16:32 +0000 (UTC) +Received: from rv-out-0708.google.com (rv-out-0708.google.com [209.85.198.246]) + by liszt.debian.org (Postfix) with ESMTP id B260013A60DF + for ; Wed, 30 Jul 2008 23:16:31 +0000 (UTC) +Received: by rv-out-0708.google.com with SMTP id k29so269428rvb.30 + for ; Wed, 30 Jul 2008 16:16:28 -0700 (PDT) +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=gmail.com; s=gamma; + h=domainkey-signature:received:received:message-id:date:from:to + :subject:in-reply-to:mime-version:content-type + :content-transfer-encoding:content-disposition:references; + bh=VX9xNbQiXI4eAYrf7tEMv7AUIwrXCvHt0t50dsVFJkw=; + b=VmS91y+nSpsektEkjElxTVNncblkxMabZi+HdJqwUdUlfFFLg83FUAfUf4h7YOsWwP + 2ZVsDmxkGontpZZKudzVzjXP8lqXm3UOHUXZvoAM5lXKWK6nDkjeGIGdesvK8xreE6nC + gAvnLod6X/zU0sCjNTPWQkSJAZXxqXGechS+U= +DomainKey-Signature: a=rsa-sha1; c=nofws; + d=gmail.com; s=gamma; + h=message-id:date:from:to:subject:in-reply-to:mime-version + :content-type:content-transfer-encoding:content-disposition + :references; + b=R6VnmecoXNAxvKp20WeRTsFfEI0aTgawZYTtoYT3aXFlm7R3wbEXMy3tRCR4Ow7xmK + K23ottieP8kwyTNl9y6uCWZi1vzttifktll6pFbyrk48FJstqICirAS2rMoI9+/dVjTf + 7QDo7HtwkoUxZY32Zi5KiJ04pGClVOmoDDfLI= +Received: by 10.141.168.16 with SMTP id v16mr4901496rvo.233.1217459788933; + Wed, 30 Jul 2008 16:16:28 -0700 (PDT) +Received: by 10.141.202.10 with HTTP; Wed, 30 Jul 2008 16:16:28 -0700 (PDT) +Message-ID: <8b2d7b4d0807301616r62b9039bh94c4d90011362022@mail.gmail.com> +Date: Thu, 31 Jul 2008 01:16:28 +0200 +From: "Sandro Tosi" +To: debian-mentors@lists.debian.org +Subject: Re: ftp-masters +In-Reply-To: <20080730230743.GR21393@volo.donarmstrong.com> +MIME-Version: 1.0 +Content-Type: text/plain; charset=ISO-8859-1 +Content-Transfer-Encoding: 7bit +Content-Disposition: inline +References: <20080730115010.GA24515@shota.mine.nu> + <200807301404.49015.t.quathamer@gmx.net> + <87tze7bjp5.fsf@benfinney.id.au> + <8b2d7b4d0807300615m129c35f8x7789b376b958e35a@mail.gmail.com> + <87ljzjatoi.fsf@benfinney.id.au> + <8b2d7b4d0807301542u41a4b774pa8b5fda67554f0da@mail.gmail.com> + <20080730230743.GR21393@volo.donarmstrong.com> +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-2.363 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, ONEWORD=2, SARE_MSGID_LONG40=0.637] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42407 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 23:16:41 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.230115 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_2000_2999 0, BODY_SIZE_5000_LESS 0, WEBMAIL_SOURCE 0, __BOUNCE_CHALLENGE_SUBJ 0, __C230066_P1_2 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __FRAUD_419_WEBMAIL 0, __FRAUD_419_WEBMAIL_FROM 0, __FROM_GMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __PHISH_SPEAR_HTTP_RECEIVED 0, __PHISH_SPEAR_STRUCTURE_1 0, __PHISH_SPEAR_STRUCTURE_2 0, __SANE_MSGID 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +On Thu, Jul 31, 2008 at 01:07, Don Armstrong wrote: +> On Thu, 31 Jul 2008, Sandro Tosi wrote: +>> Because it doesn't add any information for the end users, +> +> Sure it does. It tells end users what was changed in between the +> REJECT and the new upload. Eliding this means that it's no longer +> possible to trivially tell what was changed between uploads.[1] + +But does really an end user knows/cares about it? You are talkink from +a developer POV, that's a little bit low-level than most of our users. + +>> if not confusion: it seems that 2 different version reached the +>> archive, since the users will see 2 different entries in the +>> changelog (for example using apt-listchanges) when indeed there is +>> only 1 package uploaded after the one previou in the archive. +> +> There were two uploaded, not just one. Furthermore, it doesn't matter +> how many have reached the archive when a user is examining changelogs. +> All you care about is the version that you have, the version that +> you're upgrading to, and any previous versions you had installed. None +> of those necessarily correlate with versions that are actually in the +> archive. + +mh, so the latest changelog entry should report why the previous +upload was REJECTED, and what was done to fix it. + +>> Ah, did I forgot to remember that "Our priorities are our users and +>> free software"? +> +> Obviously, which is why you should do what I suggested. +> +> You shouldn't treat changelogs of packages which happen to stop off at +> NEW any differently, even if they get REJECTed. + +I suggest this only because a REJECTED package is a sort of +half-release, and you still need to rework (hopefully a bit) the +previous changes: you rework the previous upload (that you think it +was right) to meet our standards. + +Of course, this is just what I *feel* is correct, since no ufficial +doc is available for this. + +Cheers, +Sandro + +> 1: Furthermore, you really should be tagging your uploads with the +> release that you uploaded to Debian with in your VCS. You are doing +> that, right? + +Of course, but I can retag ;) + +-- +Sandro Tosi (aka morph, Morpheus, matrixhasu) +My website: http://matrixhasu.altervista.org/ +Me at Debian: http://wiki.debian.org/SandroTosi + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/17 b/test/in/mhdir/17 new file mode 100644 index 000000000..2ca406391 --- /dev/null +++ b/test/in/mhdir/17 @@ -0,0 +1,117 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Thu Jul 31 07:15:55 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 07:15:55 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOVCN-0004PM-B5 + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 07:15:55 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6VAFlVs030870 + for ; Thu, 31 Jul 2008 07:15:50 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id B0635444057 + for ; Thu, 31 Jul 2008 07:15:47 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 48AF7444007 + for ; Thu, 31 Jul 2008 07:15:47 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id A70FA13A6370; Thu, 31 Jul 2008 10:15:45 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-3.0 required=4.0 tests=LDO_WHITELIST,ONEWORD + autolearn=no version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 69B9613A6364 + for ; Thu, 31 Jul 2008 10:15:39 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 09480-15 for ; + Thu, 31 Jul 2008 10:15:36 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .donarmstrong. - helo: .rzlab.ucr. - helo-domain: .ucr.) FROM/MX_MATCHES_NOT_HELO(DOMAIN)=0 , rate: -5 +Received: from rzlab.ucr.edu (rzlab.ucr.edu [138.23.92.77]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (Client did not present a certificate) + by liszt.debian.org (Postfix) with ESMTP id 6A4B213A6363 + for ; Thu, 31 Jul 2008 10:15:29 +0000 (UTC) +Received: from rzlab.ucr.edu (rzlab.ucr.edu [127.0.0.1]) + by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m6VAFN37019638 + for ; Thu, 31 Jul 2008 03:15:23 -0700 +Received: (from remotemail@localhost) + by rzlab.ucr.edu (8.13.8/8.13.8/Submit) id m6VAFNFA019637 + for debian-mentors@lists.debian.org; Thu, 31 Jul 2008 03:15:23 -0700 +Received: (nullmailer pid 21925 invoked by uid 1000); + Thu, 31 Jul 2008 10:15:15 -0000 +Date: Thu, 31 Jul 2008 03:15:15 -0700 +From: Don Armstrong +To: debian-mentors@lists.debian.org +Subject: Re: ftp-masters +Message-ID: <20080731101515.GY21393@volo.donarmstrong.com> +Mail-Followup-To: debian-mentors@lists.debian.org +References: <20080730115010.GA24515@shota.mine.nu> <200807301404.49015.t.quathamer@gmx.net> <87tze7bjp5.fsf@benfinney.id.au> <8b2d7b4d0807300615m129c35f8x7789b376b958e35a@mail.gmail.com> <87ljzjatoi.fsf@benfinney.id.au> <8b2d7b4d0807301542u41a4b774pa8b5fda67554f0da@mail.gmail.com> <20080730230743.GR21393@volo.donarmstrong.com> <8b2d7b4d0807301616r62b9039bh94c4d90011362022@mail.gmail.com> +MIME-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +Content-Disposition: inline +In-Reply-To: <8b2d7b4d0807301616r62b9039bh94c4d90011362022@mail.gmail.com> +User-Agent: Mutt/1.5.18 (2008-05-17) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-3 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, ONEWORD=2] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42410 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 10:15:45 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.95815 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1100_1199 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __C230066_P1_2 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +On Thu, 31 Jul 2008, Sandro Tosi wrote: +> But does really an end user knows/cares about it? You are talkink +> from a developer POV, that's a little bit low-level than most of our +> users. + +Someone who is looking at the changelog is getting to the lower levels +anyway. [Plus, it's not like this is particularly complicated stuff.] + +> mh, so the latest changelog entry should report why the previous +> upload was REJECTED, and what was done to fix it. + +Ideally, what was done to fix it is enough, because that'd tell you +why it was rejected. + + +Don Armstrong + +-- +As nightfall does not come at once, neither does oppression. In both +instances, there is a twilight when everything remains seemingly +unchanged. And it is in such twilight that we all must be most aware +of change in the air however slight lest we become unwitting victims +of the darkness. + -- William O. Douglas + +http://www.donarmstrong.com http://rzlab.ucr.edu + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/18 b/test/in/mhdir/18 new file mode 100644 index 000000000..e15a6793e --- /dev/null +++ b/test/in/mhdir/18 @@ -0,0 +1,100 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 15:22:48 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 15:22:48 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOGK0-0006Tb-JS + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 15:22:48 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UIMagB022465 + for ; Wed, 30 Jul 2008 15:22:43 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id EFBC9D04C3 + for ; Wed, 30 Jul 2008 15:22:41 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id AFDA0D04C1 + for ; Wed, 30 Jul 2008 15:22:41 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 64BBD13A51DF; Wed, 30 Jul 2008 18:22:25 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.0 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST + autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id DA5DE13A5087 + for ; Wed, 30 Jul 2008 18:22:18 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 25341-26 for ; + Wed, 30 Jul 2008 18:22:16 +0000 (UTC) +Received: from contrabass.post.ru (contrabass.post.ru [85.21.78.5]) + by liszt.debian.org (Postfix) with ESMTP id AA98C13A513B + for ; Wed, 30 Jul 2008 18:22:15 +0000 (UTC) +Received: from corbina.ru (mail.post.ru [195.14.50.16]) + by contrabass.post.ru (Postfix) with ESMTP id C8F29154210 + for ; Wed, 30 Jul 2008 22:22:12 +0400 (MSD) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: by cgpav Uf39PSi9pFi9oFi9 +Received: from [10.120.62.79] (account tsukasa@post.ru HELO localhost.localdomain) + by corbina.ru (CommuniGate Pro SMTP 5.1.14) + with ESMTPSA id 891715674 for debian-mentors@lists.debian.org; Wed, 30 Jul 2008 22:22:12 +0400 +Received: from stas by localhost.localdomain with local (Exim 4.69) + (envelope-from ) + id 1KOGJX-0004m8-8H + for debian-mentors@lists.debian.org; Wed, 30 Jul 2008 22:22:19 +0400 +Date: Wed, 30 Jul 2008 22:22:18 +0400 +From: Stanislav Maslovski +To: debian-mentors@lists.debian.org +Subject: versioned Build-Depends on debhelper +Message-ID: <20080730182218.GA23851@shota.mine.nu> +Mail-Followup-To: Stanislav Maslovski , + debian-mentors@lists.debian.org +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +Content-Disposition: inline +User-Agent: Mutt/1.5.18 (2008-05-17) +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-5 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42393 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 18:22:25 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.180446 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_LESS 0, BODY_SIZE_400_499 0, BODY_SIZE_5000_LESS 0, __CD 0, __CT 0, __CT_TEXT_PLAIN 0, __FRAUD_419_WEBMAIL 0, __FRAUD_419_WEBMAIL_FROM 0, __FROM_GMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +Hello again, + +My sponsor asked me to delete versioned build dependency on +debhelper. I had it in the form "debhelper (>= 5)" and changed +it to just "debhelper". I am wondering if this is right. + +In debian/compat I put "5". + +-- +Stanislav + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/19 b/test/in/mhdir/19 new file mode 100644 index 000000000..d0138fb5d --- /dev/null +++ b/test/in/mhdir/19 @@ -0,0 +1,112 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 15:30:29 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 15:30:29 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOGRR-0006Uq-Dy + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 15:30:29 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UIULNv000743 + for ; Wed, 30 Jul 2008 15:30:24 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id BBAA2444024 + for ; Wed, 30 Jul 2008 15:30:21 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 81B83444011 + for ; Wed, 30 Jul 2008 15:30:21 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 138DA13A58CC; Wed, 30 Jul 2008 18:30:19 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.0 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST + autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id E3D1913A56DA + for ; Wed, 30 Jul 2008 18:30:12 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 14209-01 for ; + Wed, 30 Jul 2008 18:30:10 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_FROM_MX=-3.1 , rate: -6.1 +Received: from mail.rastageeks.org (www.rastageeks.org [88.191.17.132]) + by liszt.debian.org (Postfix) with ESMTP id 7AC3013A56C4 + for ; Wed, 30 Jul 2008 18:30:00 +0000 (UTC) +Received: from ras-macintosh.local (rob92-9-88-161-115-205.fbx.proxad.net [88.161.115.205]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (No client certificate requested) + by mail.rastageeks.org (Postfix) with ESMTP id DBC51A421E; + Wed, 30 Jul 2008 20:29:57 +0200 (CEST) +From: Romain Beauxis +To: debian-mentors@lists.debian.org +Subject: Re: versioned Build-Depends on debhelper +Date: Wed, 30 Jul 2008 20:30:15 +0200 +User-Agent: KMail/1.9.9 +Cc: Stanislav Maslovski +References: <20080730182218.GA23851@shota.mine.nu> +In-Reply-To: <20080730182218.GA23851@shota.mine.nu> +MIME-Version: 1.0 +Content-Type: text/plain; + charset="iso-8859-1" +Content-Transfer-Encoding: quoted-printable +Content-Disposition: inline +Message-Id: <200807302030.15264.toots@rastageeks.org> +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-5 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42394 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 18:30:19 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.181052 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_700_799 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +Le Wednesday 30 July 2008 20:22:18 Stanislav Maslovski, vous avez =E9crit= +=A0: +> Hello again, + + Hi ! + +> My sponsor asked me to delete versioned build dependency on +> debhelper. I had it in the form "debhelper (>=3D 5)" and changed +> it to just "debhelper". I am wondering if this is right. +> +> In debian/compat I put "5". + +Why didn't you ask him directly ? + +I believe the fact that current etch already sips debhelper >=3D 5 +makes this versioned build-dep void.. + + +Romain +=2D-=20 +And all the crowd comes in day by day +No one stop it in anyway +And all the peacemaker turn war officer +Hear what I say + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/2 b/test/in/mhdir/2 new file mode 100644 index 000000000..323db38fd --- /dev/null +++ b/test/in/mhdir/2 @@ -0,0 +1,135 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 06:30:34 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 06:30:34 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KO80w-0005Hm-St + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 06:30:34 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6U9URBY017957 + for ; Wed, 30 Jul 2008 06:30:29 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 45A03444090 + for ; Wed, 30 Jul 2008 06:30:27 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id EEFE0444085 + for ; Wed, 30 Jul 2008 06:30:24 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id A201B13A6023; Wed, 30 Jul 2008 09:30:22 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.0 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST + autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 5DAF713A6000 + for ; Wed, 30 Jul 2008 09:30:16 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 22726-11 for ; + Wed, 30 Jul 2008 09:30:13 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_FROM_IP=-2 (check from: .marmaro. - helo: .wp091.webpack.hosteurope. - helo-domain: .hosteurope.) FROM/MX_MATCHES_NOT_HELO(DOMAIN)=0 , rate: -5 +Received: from wp091.webpack.hosteurope.de (wp091.webpack.hosteurope.de [80.237.132.98]) + by liszt.debian.org (Postfix) with ESMTP id AC12F13A5FF7 + for ; Wed, 30 Jul 2008 09:30:05 +0000 (UTC) +Received: from ta7a4.t.pppool.de ([89.55.167.164] helo=serveme); authenticated + by wp091.webpack.hosteurope.de running ExIM using esmtpa + id 1KO80Q-0003tJ-Il; Wed, 30 Jul 2008 11:30:02 +0200 +Received: from meillo by serveme with local (masqmail 0.2.21) id + 1KO7zS-7cx-00 for ; Wed, 30 Jul 2008 + 11:29:02 +0200 +Date: Wed, 30 Jul 2008 11:29:02 +0200 +From: markus schnalke +To: debian-mentors@lists.debian.org +Subject: Re: pbuilder/pdebuild mini-howto (Was: Building a build environment) +Message-ID: <20080730092902.GC3066@serveme.schnalke.local> +References: +MIME-Version: 1.0 +Content-Type: multipart/signed; micalg=pgp-sha1; + protocol="application/pgp-signature"; boundary="Y+BmdnREOSIoaDN4" +Content-Disposition: inline +In-Reply-To: +User-Agent: Mutt/1.5.13 (2006-08-11) +X-bounce-key: webpack.hosteurope.de;meillo@marmaro.de;1217410213;8a83b8e7; +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-5 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42384 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 09:30:22 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.91353 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1500_1599 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + + +--Y+BmdnREOSIoaDN4 +Content-Type: text/plain; charset=us-ascii +Content-Disposition: inline +Content-Transfer-Encoding: quoted-printable + +[2008-07-30 10:51] Jens Peter Secher +> 2008/7/29 Richard Hurt : +> > I am just getting started in Debian package building and I need to know= + if +> > this idea is valid or if there is a better way. +> > [...] +> > What do you use? +>=20 +> I find pbuilder easiest to work with. Since I am mostly running +> Testing, I have two setups, one for Sid and one for Backports. Here is +> a mini-howto for what to do. + +Thanks for the howto, this looks useful. + + +One point I want to mention: +When I configured pbuilder some time ago, I couldn't manage to use +different locations than /var/cache/pbuilder when using +cowdancer/cowbuilder with it. +So I was not able to have chroots for different distributions. + +But I haven't digged deeper in that, cause having only sid satisfied +me. + + +meillo + +--Y+BmdnREOSIoaDN4 +Content-Type: application/pgp-signature; name="signature.asc" +Content-Description: Digital signature +Content-Disposition: inline + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.6 (GNU/Linux) + +iD8DBQFIkDRe6aFpZ+X9qBIRApq3AJ0aJ2huFOzpuTZCMFZ5kV+nbVnbaACdHXQ3 ++y4xeQIaS+0dfzWuPG45uv0= +=sBHB +-----END PGP SIGNATURE----- + +--Y+BmdnREOSIoaDN4-- + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/20 b/test/in/mhdir/20 new file mode 100644 index 000000000..47a558594 --- /dev/null +++ b/test/in/mhdir/20 @@ -0,0 +1,120 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 16:48:09 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 16:48:09 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOHeb-0006dW-Nc + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 16:48:09 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UJm2JN015584 + for ; Wed, 30 Jul 2008 16:48:04 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 1D233444009 + for ; Wed, 30 Jul 2008 16:48:02 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id A81D6444018 + for ; Wed, 30 Jul 2008 16:48:01 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id D5D3913A5685; Wed, 30 Jul 2008 19:47:59 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.0 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST + autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 2391013A564B + for ; Wed, 30 Jul 2008 19:47:53 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 25207-46 for ; + Wed, 30 Jul 2008 19:47:50 +0000 (UTC) +Received: from contrabass.post.ru (contrabass.post.ru [85.21.78.5]) + by liszt.debian.org (Postfix) with ESMTP id 4D0E613A5638 + for ; Wed, 30 Jul 2008 19:47:50 +0000 (UTC) +Received: from corbina.ru (mail.post.ru [195.14.50.16]) + by contrabass.post.ru (Postfix) with ESMTP id BF2BD15AE20 + for ; Wed, 30 Jul 2008 23:47:47 +0400 (MSD) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: by cgpav Uf39PSi9pFi9oFi9 +Received: from [10.120.62.79] (account tsukasa@post.ru HELO localhost.localdomain) + by corbina.ru (CommuniGate Pro SMTP 5.1.14) + with ESMTPSA id 892031646 for debian-mentors@lists.debian.org; Wed, 30 Jul 2008 23:47:47 +0400 +Received: from stas by localhost.localdomain with local (Exim 4.69) + (envelope-from ) + id 1KOHeF-0003m6-CJ + for debian-mentors@lists.debian.org; Wed, 30 Jul 2008 23:47:47 +0400 +Date: Wed, 30 Jul 2008 23:47:47 +0400 +From: Stanislav Maslovski +To: debian-mentors@lists.debian.org +Subject: Re: versioned Build-Depends on debhelper +Message-ID: <20080730194747.GA4953@shota.mine.nu> +Mail-Followup-To: Stanislav Maslovski , + debian-mentors@lists.debian.org +References: <20080730182218.GA23851@shota.mine.nu> <200807302030.15264.toots@rastageeks.org> +MIME-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +Content-Disposition: inline +Content-Transfer-Encoding: quoted-printable +In-Reply-To: <200807302030.15264.toots@rastageeks.org> +User-Agent: Mutt/1.5.18 (2008-05-17) +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-5 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: <8YmZyhEYZ3D.A.lVB.vVMkIB@liszt> +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42398 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 19:47:59 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.193429 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_1099 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __FRAUD_419_WEBMAIL 0, __FRAUD_419_WEBMAIL_FROM 0, __FROM_GMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +On Wed, Jul 30, 2008 at 08:30:15PM +0200, Romain Beauxis wrote: +> Le Wednesday 30 July 2008 20:22:18 Stanislav Maslovski, vous avez =C3=A9c= +rit=C2=A0: +> > Hello again, +>=20 +> Hi ! +>=20 +> > My sponsor asked me to delete versioned build dependency on +> > debhelper. I had it in the form "debhelper (>=3D 5)" and changed +> > it to just "debhelper". I am wondering if this is right. +> > +> > In debian/compat I put "5". +>=20 +> Why didn't you ask him directly ? + +I asked, however I was not fully satisfied with his explanations +(I hope he will excuse me for this :) ) and wanted to ask a broader +audience to make things bright and clear to me. + +> I believe the fact that current etch already sips debhelper >=3D 5 +> makes this versioned build-dep void.. + +All right. I simply saw too many packages built with that kind of +versioned dependency. + +--=20 +Stanislav + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/21 b/test/in/mhdir/21 new file mode 100644 index 000000000..e777a06b5 --- /dev/null +++ b/test/in/mhdir/21 @@ -0,0 +1,109 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 18:15:24 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 18:15:24 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOJ12-0006lp-54 + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 18:15:24 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6ULFGQb015272 + for ; Wed, 30 Jul 2008 18:15:19 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 81DB5D2862 + for ; Wed, 30 Jul 2008 18:15:16 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id 234BAD285D + for ; Wed, 30 Jul 2008 18:15:16 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 9D39013A61E9; Wed, 30 Jul 2008 21:15:14 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-4.0 required=4.0 tests=GMAIL,LDO_WHITELIST + autolearn=no version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id EEF2413A61DF + for ; Wed, 30 Jul 2008 21:15:06 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 26765-58 for ; + Wed, 30 Jul 2008 21:15:04 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .stanford. - helo: .smtp2.stanford. - helo-domain: .stanford.) FROM/MX_MATCHES_HELO(DOMAIN)=-2 , rate: -7 +Received: from smtp2.stanford.edu (smtp2.Stanford.EDU [171.67.20.25]) + by liszt.debian.org (Postfix) with ESMTP id D3D7413A61DA + for ; Wed, 30 Jul 2008 21:14:57 +0000 (UTC) +Received: from smtp2.stanford.edu (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 45ECA659BC6 + for ; Wed, 30 Jul 2008 14:14:54 -0700 (PDT) +Received: from windlord.stanford.edu (windlord.Stanford.EDU [171.64.19.147]) + by smtp2.stanford.edu (Postfix) with ESMTP id 1648665A595 + for ; Wed, 30 Jul 2008 14:14:53 -0700 (PDT) +Received: by windlord.stanford.edu (Postfix, from userid 1000) + id B8493E78DA; Wed, 30 Jul 2008 14:14:53 -0700 (PDT) +To: debian-mentors@lists.debian.org +Subject: Re: versioned Build-Depends on debhelper +In-Reply-To: <20080730182218.GA23851@shota.mine.nu> (Stanislav Maslovski's message of "Wed\, 30 Jul 2008 22\:22\:18 +0400") +User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (gnu/linux) +References: <20080730182218.GA23851@shota.mine.nu> +From: Russ Allbery +Organization: The Eyrie +Date: Wed, 30 Jul 2008 14:14:53 -0700 +Message-ID: <87ej5bgjle.fsf@windlord.stanford.edu> +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-4 tagged_above=3.6 required=5.3 tests=[GMAIL=1, + LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42402 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 21:15:14 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.210116 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_1099 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CP_URI_IN_BODY 0, __CT 0, __CT_TEXT_PLAIN 0, __FRAUD_419_BODY_WEBMAIL 0, __FRAUD_419_WEBMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +Stanislav Maslovski writes: + +> My sponsor asked me to delete versioned build dependency on debhelper. + +I think this is bad advice. + +> I had it in the form "debhelper (>= 5)" and changed it to just +> "debhelper". I am wondering if this is right. +> +> In debian/compat I put "5". + +It is considered best practice to always depend on the minimum version of +debhelper corresponding to the compat level that you're using. It's not +strictly necessary to version the debhelper dependency if your compat +level is old enough that it's supported by any debhelper that a building +host is likely to be able to install (in practice, old enough that it's +supported in stable), but there's really no reason not to use the more +accurate and informative dependency. + +-- +Russ Allbery (rra@debian.org) + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/22 b/test/in/mhdir/22 new file mode 100644 index 000000000..23f4db133 --- /dev/null +++ b/test/in/mhdir/22 @@ -0,0 +1,106 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 18:58:08 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 18:58:08 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOJgO-0006sl-40 + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 18:58:08 -0300 +Received: from mx4.nbpei-ecn.ca (mx4.nbpei-ecn.ca [198.164.163.197]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6ULw0tR027358 + for ; Wed, 30 Jul 2008 18:58:02 -0300 +Received: from mx4.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 3404F7C4020 + for ; Wed, 30 Jul 2008 18:58:00 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx4.nbpei-ecn.ca (Postfix) with ESMTP id E44527C401B + for ; Wed, 30 Jul 2008 18:57:59 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 7490A13A56BD; Wed, 30 Jul 2008 21:57:56 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.4 required=4.0 tests=ALL_TRUSTED,GMAIL, + LDOSUBSCRIBER,LDO_WHITELIST autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 35C2E13A5652 + for ; Wed, 30 Jul 2008 21:57:50 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 15005-16 for ; + Wed, 30 Jul 2008 21:57:47 +0000 (UTC) +Received: from torres.zugschlus.de (torres6.zugschlus.de [IPv6:2a01:198:231:1::1]) + (using TLSv1 with cipher AES256-SHA (256/256 bits)) + (Client did not present a certificate) + by liszt.debian.org (Postfix) with ESMTP id 4D6BC13A54BF + for ; Wed, 30 Jul 2008 21:57:47 +0000 (UTC) +Received: from mh by torres.zugschlus.de with local (Exim 4.69) + (envelope-from ) + id 1KOJg0-0005uU-Qf + for debian-mentors@lists.debian.org; Wed, 30 Jul 2008 23:57:44 +0200 +Date: Wed, 30 Jul 2008 23:57:44 +0200 +From: Marc Haber +To: debian-mentors@lists.debian.org +Subject: Re: versioned Build-Depends on debhelper +Message-ID: <20080730215744.GF20919@torres.zugschlus.de> +References: <20080730182218.GA23851@shota.mine.nu> <87ej5bgjle.fsf@windlord.stanford.edu> +MIME-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +Content-Disposition: inline +In-Reply-To: <87ej5bgjle.fsf@windlord.stanford.edu> +User-Agent: Mutt/1.5.13 (2006-08-11) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-4.001 tagged_above=3.6 required=5.3 tests=[GMAIL=1, + LDO_WHITELIST=-5, NO_RELAYS=-0.001] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42403 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 21:57:56 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.214514 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_1099 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CT 0, __CT_TEXT_PLAIN 0, __FRAUD_419_BODY_WEBMAIL 0, __FRAUD_419_WEBMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +On Wed, Jul 30, 2008 at 02:14:53PM -0700, Russ Allbery wrote: +> Stanislav Maslovski writes: +> > My sponsor asked me to delete versioned build dependency on debhelper. +> +> I think this is bad advice. + +I agree. There are people building Debian packages on older releases, +and having a package fail because a known versioned dependency had its +version removed it a disservice to those people. + +I might be missing arguments for removing the version, but I have only +been a DD for like seven years. + +Greetings +Marc + +-- +----------------------------------------------------------------------------- +Marc Haber | "I don't trust Computers. They | Mailadresse im Header +Mannheim, Germany | lose things." Winona Ryder | Fon: *49 621 72739834 +Nordisch by Nature | How to make an American Quilt | Fax: *49 3221 2323190 + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/23 b/test/in/mhdir/23 new file mode 100644 index 000000000..b45a10f58 --- /dev/null +++ b/test/in/mhdir/23 @@ -0,0 +1,117 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Thu Jul 31 05:05:44 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 05:05:44 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOTAO-0000On-8T + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 05:05:44 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6V85apt027849 + for ; Thu, 31 Jul 2008 05:05:39 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 7DF3AD943A + for ; Thu, 31 Jul 2008 05:05:36 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id 1D5C0D9438 + for ; Thu, 31 Jul 2008 05:05:36 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 22AA813A62EA; Thu, 31 Jul 2008 08:05:33 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-10.0 required=4.0 tests=GMAIL,LDOSUBSCRIBER, + LDO_WHITELIST autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id D90A213A62E6 + for ; Thu, 31 Jul 2008 08:05:26 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 22851-99 for ; + Thu, 31 Jul 2008 08:05:23 +0000 (UTC) +Received: from contrabass.post.ru (contrabass.post.ru [85.21.78.5]) + by liszt.debian.org (Postfix) with ESMTP id D1F8C13A62E4 + for ; Thu, 31 Jul 2008 08:05:23 +0000 (UTC) +Received: from corbina.ru (mail.post.ru [195.14.50.16]) + by contrabass.post.ru (Postfix) with ESMTP id 5B18E158DF2 + for ; Thu, 31 Jul 2008 12:05:21 +0400 (MSD) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: by cgpav Uf39PSi9pFi9oFi9 +Received: from [10.120.62.79] (account tsukasa@post.ru HELO localhost.localdomain) + by corbina.ru (CommuniGate Pro SMTP 5.1.14) + with ESMTPSA id 894297288 for debian-mentors@lists.debian.org; Thu, 31 Jul 2008 12:05:21 +0400 +Received: from stas by localhost.localdomain with local (Exim 4.69) + (envelope-from ) + id 1KOTA1-0004Yt-UM + for debian-mentors@lists.debian.org; Thu, 31 Jul 2008 12:05:21 +0400 +Date: Thu, 31 Jul 2008 12:05:21 +0400 +From: Stanislav Maslovski +To: debian-mentors@lists.debian.org +Subject: Re: versioned Build-Depends on debhelper +Message-ID: <20080731080521.GA15877@shota.mine.nu> +Mail-Followup-To: Stanislav Maslovski , + debian-mentors@lists.debian.org +References: <20080730182218.GA23851@shota.mine.nu> <87ej5bgjle.fsf@windlord.stanford.edu> <20080730215744.GF20919@torres.zugschlus.de> +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +Content-Disposition: inline +In-Reply-To: <20080730215744.GF20919@torres.zugschlus.de> +User-Agent: Mutt/1.5.18 (2008-05-17) +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-4 tagged_above=3.6 required=5.3 tests=[GMAIL=1, + LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42409 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 08:05:33 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.75219 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1200_1299 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CT 0, __CT_TEXT_PLAIN 0, __FRAUD_419_BODY_WEBMAIL 0, __FRAUD_419_WEBMAIL 0, __FRAUD_419_WEBMAIL_FROM 0, __FROM_GMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +On Wed, Jul 30, 2008 at 11:57:44PM +0200, Marc Haber wrote: +> On Wed, Jul 30, 2008 at 02:14:53PM -0700, Russ Allbery wrote: +> > Stanislav Maslovski writes: +> > > My sponsor asked me to delete versioned build dependency on debhelper. +> > +> > I think this is bad advice. +> +> I agree. There are people building Debian packages on older releases, +> and having a package fail because a known versioned dependency had its +> version removed it a disservice to those people. + +That was my concern also. However, Romain pointed out that Etch +(which will soon become oldstable) has debhelper of ver. > 5 so there +should not be problems with backporting to it. + +> I might be missing arguments for removing the version, but I have only +> been a DD for like seven years. + +Marc, Russ, thank you for your answers. Unfortunately, the package has been +already sponsored and uploaded to NEW. I think that at this stage this change +should be harmless. I will return the versioned dependency back when +preparing the next modification of the package. + +-- +Stanislav + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/24 b/test/in/mhdir/24 new file mode 100644 index 000000000..83b759e2b --- /dev/null +++ b/test/in/mhdir/24 @@ -0,0 +1,123 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Thu Jul 31 13:30:53 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 13:30:53 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOb3F-00052D-FJ + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 13:30:53 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6VGUj6B005879 + for ; Thu, 31 Jul 2008 13:30:48 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id B23C8444064 + for ; Thu, 31 Jul 2008 13:30:45 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 45AB9444059 + for ; Thu, 31 Jul 2008 13:30:45 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id CEBFE13A645A; Thu, 31 Jul 2008 16:30:43 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.4 required=4.0 tests=ALL_TRUSTED,GMAIL, + LDOSUBSCRIBER,LDO_WHITELIST autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 4BF7713A6459 + for ; Thu, 31 Jul 2008 16:30:37 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 20657-66 for ; + Thu, 31 Jul 2008 16:30:34 +0000 (UTC) +Received: from torres.zugschlus.de (torres6.zugschlus.de [IPv6:2a01:198:231:1::1]) + (using TLSv1 with cipher AES256-SHA (256/256 bits)) + (Client did not present a certificate) + by liszt.debian.org (Postfix) with ESMTP id 3100013A6454 + for ; Thu, 31 Jul 2008 16:30:34 +0000 (UTC) +Received: from mh by torres.zugschlus.de with local (Exim 4.69) + (envelope-from ) + id 1KOb2t-0003ci-D7; Thu, 31 Jul 2008 18:30:31 +0200 +Date: Thu, 31 Jul 2008 18:30:31 +0200 +From: Marc Haber +To: Stanislav Maslovski , + debian-mentors@lists.debian.org +Subject: Re: versioned Build-Depends on debhelper +Message-ID: <20080731163031.GB12626@torres.zugschlus.de> +References: <20080730182218.GA23851@shota.mine.nu> <87ej5bgjle.fsf@windlord.stanford.edu> <20080730215744.GF20919@torres.zugschlus.de> <20080731080521.GA15877@shota.mine.nu> +MIME-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +Content-Disposition: inline +In-Reply-To: <20080731080521.GA15877@shota.mine.nu> +User-Agent: Mutt/1.5.13 (2006-08-11) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-4.001 tagged_above=3.6 required=5.3 tests=[GMAIL=1, + LDO_WHITELIST=-5, NO_RELAYS=-0.001] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42420 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 16:30:43 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.160641 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1900_1999 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CT 0, __CT_TEXT_PLAIN 0, __FRAUD_419_BODY_WEBMAIL 0, __FRAUD_419_WEBMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +On Thu, Jul 31, 2008 at 12:05:21PM +0400, Stanislav Maslovski wrote: +> On Wed, Jul 30, 2008 at 11:57:44PM +0200, Marc Haber wrote: +> > On Wed, Jul 30, 2008 at 02:14:53PM -0700, Russ Allbery wrote: +> > > Stanislav Maslovski writes: +> > > > My sponsor asked me to delete versioned build dependency on debhelper. +> > > +> > > I think this is bad advice. +> > +> > I agree. There are people building Debian packages on older releases, +> > and having a package fail because a known versioned dependency had its +> > version removed it a disservice to those people. +> +> That was my concern also. However, Romain pointed out that Etch +> (which will soon become oldstable) has debhelper of ver. > 5 so there +> should not be problems with backporting to it. + +There have been Debian releases before etch. Which is the reason why I +wrote "older releases" instead of etch. + +> > I might be missing arguments for removing the version, but I have only +> > been a DD for like seven years. +> +> Marc, Russ, thank you for your answers. Unfortunately, the package has been +> already sponsored and uploaded to NEW. I think that at this stage this change +> should be harmless. I will return the versioned dependency back when +> preparing the next modification of the package. + +And please deliver a cluebat to your sponsor and ask him to give +better advice to newbies in the future. + +Greetings +Marc + +-- +----------------------------------------------------------------------------- +Marc Haber | "I don't trust Computers. They | Mailadresse im Header +Mannheim, Germany | lose things." Winona Ryder | Fon: *49 621 72739834 +Nordisch by Nature | How to make an American Quilt | Fax: *49 3221 2323190 + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/25 b/test/in/mhdir/25 new file mode 100644 index 000000000..a0f0989aa --- /dev/null +++ b/test/in/mhdir/25 @@ -0,0 +1,115 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Thu Jul 31 11:10:17 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 11:10:17 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOYrB-0004oT-2G + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 11:10:17 -0300 +Received: from mx4.nbpei-ecn.ca (mx4.nbpei-ecn.ca [198.164.163.197]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6VEA9QF016931 + for ; Thu, 31 Jul 2008 11:10:11 -0300 +Received: from mx4.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 8F8A57C404A + for ; Thu, 31 Jul 2008 11:10:11 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx4.nbpei-ecn.ca (Postfix) with ESMTP id 2FCA67C4051 + for ; Thu, 31 Jul 2008 11:10:11 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 779EA13A63E6; Thu, 31 Jul 2008 14:10:09 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-10.0 required=4.0 tests=GMAIL,LDOSUBSCRIBER, + LDO_WHITELIST autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 74FFD13A62D7 + for ; Thu, 31 Jul 2008 14:09:58 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 16475-93 for ; + Thu, 31 Jul 2008 14:09:55 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_FROM_MX=-3.1 , rate: -6.1 +Received: from mail.rastageeks.org (www.rastageeks.org [88.191.17.132]) + by liszt.debian.org (Postfix) with ESMTP id A727613A62B8 + for ; Thu, 31 Jul 2008 14:09:45 +0000 (UTC) +Received: from ras-macintosh.local (rob92-9-88-161-115-205.fbx.proxad.net [88.161.115.205]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (No client certificate requested) + by mail.rastageeks.org (Postfix) with ESMTP id 0FCB8A5121 + for ; Thu, 31 Jul 2008 16:09:43 +0200 (CEST) +From: Romain Beauxis +To: debian-mentors@lists.debian.org +Subject: Re: versioned Build-Depends on debhelper +Date: Thu, 31 Jul 2008 16:10:12 +0200 +User-Agent: KMail/1.9.9 +References: <20080730182218.GA23851@shota.mine.nu> <87ej5bgjle.fsf@windlord.stanford.edu> <20080730215744.GF20919@torres.zugschlus.de> +In-Reply-To: <20080730215744.GF20919@torres.zugschlus.de> +MIME-Version: 1.0 +Content-Type: text/plain; + charset="utf-8" +Content-Transfer-Encoding: quoted-printable +Content-Disposition: inline +Message-Id: <200807311610.12695.toots@rastageeks.org> +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-4 tagged_above=3.6 required=5.3 tests=[GMAIL=1, + LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42415 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 14:10:09 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.135345 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1200_1299 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __FRAUD_419_BODY_WEBMAIL 0, __FRAUD_419_WEBMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +Le Wednesday 30 July 2008 23:57:44 Marc Haber, vous avez =C3=A9crit=C2=A0: +> On Wed, Jul 30, 2008 at 02:14:53PM -0700, Russ Allbery wrote: +> > Stanislav Maslovski writes: +> > > My sponsor asked me to delete versioned build dependency on debhelper. +> > +> > I think this is bad advice. +> +> I agree. There are people building Debian packages on older releases, +> and having a package fail because a known versioned dependency had its +> version removed it a disservice to those people. +> +> I might be missing arguments for removing the version, but I have only +> been a DD for like seven years. + +Well, while I wouldn't ask to remove a versioned build-dep, +you could also argue with your reasoning that all build-dep +should be versioned.. + +I think a relatively safe requirement is to version if it needs more than +the current stable (or perhaps oldstable) version. + + +Romain +=2D-=20 +I've got to get away from here +This is not a place for me to stay +I've got to take my family +We'll find a quiet place + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/26 b/test/in/mhdir/26 new file mode 100644 index 000000000..139331f10 --- /dev/null +++ b/test/in/mhdir/26 @@ -0,0 +1,108 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Thu Jul 31 20:47:37 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 20:47:37 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOhrt-0006IH-Gf + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 20:47:37 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6VNlN1c009709 + for ; Thu, 31 Jul 2008 20:47:32 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 6AEF1E6290 + for ; Thu, 31 Jul 2008 20:47:32 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id F25CBE542A + for ; Thu, 31 Jul 2008 20:47:31 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 891DA13A558D; Thu, 31 Jul 2008 23:47:23 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-5.0 required=4.0 tests=LDO_WHITELIST + autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 9882313A5582 + for ; Thu, 31 Jul 2008 23:47:17 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 21563-46 for ; + Thu, 31 Jul 2008 23:47:14 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .stanford. - helo: .smtp2.stanford. - helo-domain: .stanford.) FROM/MX_MATCHES_HELO(DOMAIN)=-2 , rate: -7 +Received: from smtp2.stanford.edu (smtp2.Stanford.EDU [171.67.20.25]) + by liszt.debian.org (Postfix) with ESMTP id 9134E13A5580 + for ; Thu, 31 Jul 2008 23:47:08 +0000 (UTC) +Received: from smtp2.stanford.edu (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 2CC1765B49C + for ; Thu, 31 Jul 2008 16:47:05 -0700 (PDT) +Received: from windlord.stanford.edu (windlord.Stanford.EDU [171.64.19.147]) + by smtp2.stanford.edu (Postfix) with ESMTP id 0286C65A5B6 + for ; Thu, 31 Jul 2008 16:47:04 -0700 (PDT) +Received: by windlord.stanford.edu (Postfix, from userid 1000) + id C4860E7924; Thu, 31 Jul 2008 16:47:04 -0700 (PDT) +To: debian-mentors@lists.debian.org +Subject: Re: versioned Build-Depends on debhelper +In-Reply-To: <200807311610.12695.toots@rastageeks.org> (Romain Beauxis's message of "Thu\, 31 Jul 2008 16\:10\:12 +0200") +User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (gnu/linux) +References: <20080730182218.GA23851@shota.mine.nu> + <87ej5bgjle.fsf@windlord.stanford.edu> + <20080730215744.GF20919@torres.zugschlus.de> + <200807311610.12695.toots@rastageeks.org> +From: Russ Allbery +Organization: The Eyrie +Date: Thu, 31 Jul 2008 16:47:04 -0700 +Message-ID: <873alp8vlz.fsf@windlord.stanford.edu> +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-5 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42425 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 23:47:23 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.233114 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_1099 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CP_URI_IN_BODY 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +Romain Beauxis writes: + +> Well, while I wouldn't ask to remove a versioned build-dep, you could +> also argue with your reasoning that all build-dep should be versioned.. +> +> I think a relatively safe requirement is to version if it needs more +> than the current stable (or perhaps oldstable) version. + +I think of debhelper as a special case since it's so easy to know what +versioned dependency to use and it's possible to programmatically check +that you've got the right one (against the compat file). For most other +cases, I would only version a dependency if I knew there was an oldstable +(or even just stable) version that didn't support what I needed, but with +debhelper it's just so easy to always version it for consistency. + +-- +Russ Allbery (rra@debian.org) + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/27 b/test/in/mhdir/27 new file mode 100644 index 000000000..6a0f934ec --- /dev/null +++ b/test/in/mhdir/27 @@ -0,0 +1,107 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Thu Jul 31 11:01:08 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 11:01:08 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOYiJ-0004nX-QL + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 11:01:08 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6VE0xHC013121 + for ; Thu, 31 Jul 2008 11:01:02 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 4C3D2DE0DD + for ; Thu, 31 Jul 2008 11:00:59 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id EF010DE06B + for ; Thu, 31 Jul 2008 11:00:58 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 5292313A63AC; Thu, 31 Jul 2008 14:00:57 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-10.7 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + MENTORSRFS,SARE_MSGID_LONG40 autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 9F56C13A6382 + for ; Thu, 31 Jul 2008 14:00:50 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 05683-13 for ; + Thu, 31 Jul 2008 14:00:48 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .moulticast. - helo: .rv-out-0708.google. - helo-domain: .google.) FROM/MX_MATCHES_NOT_HELO(DOMAIN)=0 , rate: -5 +Received: from rv-out-0708.google.com (rv-out-0708.google.com [209.85.198.248]) + by liszt.debian.org (Postfix) with ESMTP id 947F213A6390 + for ; Thu, 31 Jul 2008 14:00:41 +0000 (UTC) +Received: by rv-out-0708.google.com with SMTP id k29so602986rvb.30 + for ; Thu, 31 Jul 2008 07:00:38 -0700 (PDT) +Received: by 10.141.115.6 with SMTP id s6mr5277944rvm.239.1217512838400; + Thu, 31 Jul 2008 07:00:38 -0700 (PDT) +Received: by 10.140.171.20 with HTTP; Thu, 31 Jul 2008 07:00:38 -0700 (PDT) +Message-ID: +Date: Thu, 31 Jul 2008 16:00:38 +0200 +From: "=?UTF-8?Q?Herv=C3=A9_Rousseau?=" +To: debian-mentors@lists.debian.org +Subject: RFS: paris-traceroute (updated package) +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 7bit +Content-Disposition: inline +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-4.663 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, MENTORSRFS=-0.3, SARE_MSGID_LONG40=0.637] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42414 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 14:00:57 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.134430 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_800_899 0, WEBMAIL_SOURCE 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __PHISH_SPEAR_HTTP_RECEIVED 0, __PHISH_SPEAR_STRUCTURE_1 0, __PHISH_SPEAR_STRUCTURE_2 0, __SANE_MSGID 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +Dear mentors, + +I am looking for a sponsor for the new version 0.92-dev-2 +of my package "paris-traceroute". + +It builds these binary packages: +paris-traceroute - New version of well known tool traceroute + +The package appears to be lintian clean. + +The upload would fix these bugs: 432606 + +The package can be found on mentors.debian.net: +- URL: http://mentors.debian.net/debian/pool/main/p/paris-traceroute +- Source repository: deb-src http://mentors.debian.net/debian unstable +main contrib non-free +- dget http://mentors.debian.net/debian/pool/main/p/paris-traceroute/paris-traceroute_0.92-dev-2.dsc + +I would be glad if someone uploaded this package for me. + +Kind regards + +-- +Herve Rousseau + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/28 b/test/in/mhdir/28 new file mode 100644 index 000000000..27ea4e8dd --- /dev/null +++ b/test/in/mhdir/28 @@ -0,0 +1,112 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Thu Jul 31 23:23:36 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 23:23:36 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOkIq-0006Y2-MW + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 23:23:36 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m712NSG8017198 + for ; Thu, 31 Jul 2008 23:23:31 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id C8A8E44407E + for ; Thu, 31 Jul 2008 23:23:28 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 636C1444069 + for ; Thu, 31 Jul 2008 23:23:28 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 264BA13A53A2; Fri, 1 Aug 2008 02:23:25 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.0 required=4.0 tests=FOURLA,LDOSUBSCRIBER, + LDO_WHITELIST,MENTORSRFS,MISSING_HEADERS autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id EEFE813A5363 + for ; Fri, 1 Aug 2008 02:23:18 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 24183-39 for ; + Fri, 1 Aug 2008 02:23:16 +0000 (UTC) +X-policyd-weight: using cached result; rate: -6.1 +X-Greylist: delayed 1664 seconds by postgrey-1.27 at liszt; Fri, 01 Aug 2008 02:23:15 UTC +Received: from node0103.gplhost.net (node0103.gplhost.net [66.251.193.20]) + by liszt.debian.org (Postfix) with ESMTP id E76BA13A5321 + for ; Fri, 1 Aug 2008 02:23:09 +0000 (UTC) +Received: from localhost (localhost.localdomain [127.0.0.1]) + by node0103.gplhost.net (Postfix) with ESMTP id 590C926C0F2 + for ; Fri, 1 Aug 2008 01:56:32 +0000 (UTC) +Received: from node0103.gplhost.net ([127.0.0.1]) + by localhost (node0103.gplhost.net [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id mbKYePU1uB0u for ; + Fri, 1 Aug 2008 01:56:26 +0000 (UTC) +Received: from [127.0.0.1] (unknown [203.174.86.99]) + by node0103.gplhost.net (Postfix) with ESMTP id 6458126C009 + for ; Fri, 1 Aug 2008 01:56:25 +0000 (UTC) +Message-ID: <48926CC3.9090903@goirand.fr> +Date: Fri, 01 Aug 2008 09:54:11 +0800 +From: Thomas Goirand +Organization: GPLHost +User-Agent: Icedove 1.5.0.14eol (X11/20080724) +MIME-Version: 1.0 +CC: debian-mentors@lists.debian.org +Subject: Re: RFS: paris-traceroute (updated package) +References: +In-Reply-To: +X-Enigmail-Version: 0.94.2.0 +OpenPGP: id=98EF9A49 +Content-Type: text/plain; charset=UTF-8 +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-3.301 tagged_above=3.6 required=5.3 + tests=[FOURLA=0.1, LDO_WHITELIST=-5, MENTORSRFS=-0.3, + MISSING_HEADERS=1.899] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: <957YKC5xygJ.A.KaB.dOnkIB@liszt> +To: debian-mentors@lists.debian.org +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42426 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Fri, 1 Aug 2008 02:23:25 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.1.20811 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_600_699 0, __BOUNCE_CHALLENGE_SUBJ 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +Content-Transfer-Encoding: quoted-printable +X-MIME-Autoconverted: from 8bit to quoted-printable by mailserv2.unb.ca id m712NSG8017198 +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +Herv=C3=A9 Rousseau wrote: +> Dear mentors, +>=20 +> I am looking for a sponsor for the new version 0.92-dev-2 +> of my package "paris-traceroute". +>=20 +> It builds these binary packages: +> paris-traceroute - New version of well known tool traceroute + +What's the advantage of paris-traceroute comparing to the old one and to +mtr (and mtr-tiny) for example? If it does the same, or less than the +other 2, it's useless to work on it, IMHO. + +Thomas + + +--=20 +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian= +.org + + diff --git a/test/in/mhdir/29 b/test/in/mhdir/29 new file mode 100644 index 000000000..e529660ce --- /dev/null +++ b/test/in/mhdir/29 @@ -0,0 +1,137 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Fri Aug 01 00:02:37 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Fri, 01 Aug 2008 00:02:37 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOkub-0006bi-H2 + for bremner@pivot.cs.unb.ca; Fri, 01 Aug 2008 00:02:37 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m7132Tkq032297 + for ; Fri, 1 Aug 2008 00:02:32 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id C35A5444099 + for ; Fri, 1 Aug 2008 00:02:29 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 6420E444054 + for ; Fri, 1 Aug 2008 00:02:29 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 78EAB13A5404; Fri, 1 Aug 2008 03:02:23 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-6.6 required=4.0 tests=ALL_TRUSTED,FOURLA, + LDO_WHITELIST,MENTORSRFS autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 36E6A13A53E6 + for ; Fri, 1 Aug 2008 03:02:17 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 17937-50 for ; + Fri, 1 Aug 2008 03:02:14 +0000 (UTC) +Received: from dedibox.ebzao.info (unknown [IPv6:2001:6f8:385::2]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (Client CN "dedibox.ebzao.info", Issuer "CA Cert Signing Authority" (not verified)) + by liszt.debian.org (Postfix) with ESMTP id 4C9A213A53F2 + for ; Fri, 1 Aug 2008 03:02:14 +0000 (UTC) +Received: from localhost (localhost [127.0.0.1]) + by dedibox.ebzao.info (Postfix) with ESMTP id 85DB53381 + for ; Fri, 1 Aug 2008 05:02:11 +0200 (CEST) +Received: from dedibox.ebzao.info ([127.0.0.1]) + by localhost (dedibox.ebzao.info [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id 9tRFHqyLKojD for ; + Fri, 1 Aug 2008 05:02:11 +0200 (CEST) +Received: from evy.ikibiki.org (localhost [127.0.0.1]) + (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) + (No client certificate requested) + by dedibox.ebzao.info (Postfix) with ESMTPS id 0312E1085 + for ; Fri, 1 Aug 2008 05:02:10 +0200 (CEST) +Received: by evy.ikibiki.org (Postfix, from userid 1000) + id 9D09BC81D0; Fri, 1 Aug 2008 04:42:24 +0200 (CEST) +Date: Fri, 1 Aug 2008 04:42:24 +0200 +From: Cyril Brulebois +To: debian-mentors@lists.debian.org +Subject: Re: RFS: paris-traceroute (updated package) +Message-ID: <20080801024224.GG4563@ikibiki.org> +References: <48926CC3.9090903@goirand.fr> +MIME-Version: 1.0 +Content-Type: multipart/signed; micalg=pgp-sha1; + protocol="application/pgp-signature"; boundary="IMkrVgXn3Eza/P0m" +Content-Disposition: inline +In-Reply-To: <48926CC3.9090903@goirand.fr> +Organization: Debian +User-Agent: Mutt/1.5.18 (2008-05-17) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-6.56 tagged_above=3.6 required=5.3 + tests=[ALL_TRUSTED=-1.36, FOURLA=0.1, LDO_WHITELIST=-5, + MENTORSRFS=-0.3] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42427 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Fri, 1 Aug 2008 03:02:23 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.1.24620 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1300_1399 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + + +--IMkrVgXn3Eza/P0m +Content-Type: text/plain; charset=utf-8 +Content-Disposition: inline +Content-Transfer-Encoding: quoted-printable + +Bleh: +> To: debian-mentors@lists.debian.org +> CC: debian-mentors@lists.debian.org + +Thomas Goirand (01/08/2008): +> What's the advantage of paris-traceroute comparing to the old one and +> to mtr (and mtr-tiny) for example? If it does the same, or less than +> the other 2, it's useless to work on it, IMHO. + +Check the homepage[1]. Herv=C3=A9: I think you should run the latest lintian +version on your package, which would have spotted that your Homepage: +should be moved to a proper source field, and that your +Standards-Version is outdated (and maybe other, didn't check). + + 1. http://www.paris-traceroute.net/ + +Mraw, +KiBi. + +--IMkrVgXn3Eza/P0m +Content-Type: application/pgp-signature; name="signature.asc" +Content-Description: Digital signature +Content-Disposition: inline + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEARECAAYFAkiSeBAACgkQeGfVPHR5Nd0oGACdFC4AAH5bCUciD23Q34rPsoCo +3MgAoJzG/1rX2CRHtMWp8bA+UnYqWbtB +=P3xI +-----END PGP SIGNATURE----- + +--IMkrVgXn3Eza/P0m-- + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/3 b/test/in/mhdir/3 new file mode 100644 index 000000000..e60150dc4 --- /dev/null +++ b/test/in/mhdir/3 @@ -0,0 +1,113 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 16:39:54 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 16:39:54 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOHWc-0006cX-IQ + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 16:39:54 -0300 +Received: from mx4.nbpei-ecn.ca (mx4.nbpei-ecn.ca [198.164.163.197]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UJdjPu012892 + for ; Wed, 30 Jul 2008 16:39:49 -0300 +Received: from mx4.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 705257C401B + for ; Wed, 30 Jul 2008 16:39:48 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx4.nbpei-ecn.ca (Postfix) with ESMTP id 114D67C4039 + for ; Wed, 30 Jul 2008 16:39:48 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 7D6CA13A61CB; Wed, 30 Jul 2008 19:39:46 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-5.0 required=4.0 tests=LDO_WHITELIST + autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 4E17813A61B8 + for ; Wed, 30 Jul 2008 19:39:40 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 25207-39 for ; + Wed, 30 Jul 2008 19:39:37 +0000 (UTC) +X-policyd-weight: using cached result; rate: -5 +Received: from rzlab.ucr.edu (rzlab.ucr.edu [138.23.92.77]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (Client did not present a certificate) + by liszt.debian.org (Postfix) with ESMTP id 2F4AB13A605A + for ; Wed, 30 Jul 2008 19:39:31 +0000 (UTC) +Received: from rzlab.ucr.edu (rzlab.ucr.edu [127.0.0.1]) + by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m6UJdRQT013083 + for ; Wed, 30 Jul 2008 12:39:27 -0700 +Received: (from remotemail@localhost) + by rzlab.ucr.edu (8.13.8/8.13.8/Submit) id m6UJdRXY013082 + for debian-mentors@lists.debian.org; Wed, 30 Jul 2008 12:39:27 -0700 +Received: (nullmailer pid 19411 invoked by uid 1000); + Wed, 30 Jul 2008 19:39:26 -0000 +Date: Wed, 30 Jul 2008 12:39:26 -0700 +From: Don Armstrong +To: debian-mentors@lists.debian.org +Subject: Re: pbuilder/pdebuild mini-howto (Was: Building a build + environment) +Message-ID: <20080730193926.GN21393@volo.donarmstrong.com> +Mail-Followup-To: debian-mentors@lists.debian.org +References: <20080730092902.GC3066@serveme.schnalke.local> +MIME-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +Content-Disposition: inline +In-Reply-To: <20080730092902.GC3066@serveme.schnalke.local> +User-Agent: Mutt/1.5.18 (2008-05-17) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-5 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42396 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 19:39:46 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.192251 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_900_999 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +On Wed, 30 Jul 2008, markus schnalke wrote: +> When I configured pbuilder some time ago, I couldn't manage to use +> different locations than /var/cache/pbuilder when using +> cowdancer/cowbuilder with it. + +You set BASEPATH instead of BASETGZ (or use --basepath instead of +--basetgz). + + +Don Armstrong + +-- +If I had a letter, sealed it in a locked vault and hid the vault +somewhere in New York. Then told you to read the letter, thats not +security, thats obscurity. If I made a letter, sealed it in a vault, +gave you the blueprints of the vault, the combinations of 1000 other +vaults, access to the best lock smiths in the world, then told you to +read the letter, and you still can't, thats security. + -- Bruce Schneier + +http://www.donarmstrong.com http://rzlab.ucr.edu + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/30 b/test/in/mhdir/30 new file mode 100644 index 000000000..622a70a8a --- /dev/null +++ b/test/in/mhdir/30 @@ -0,0 +1,95 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Fri Aug 01 02:57:25 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Fri, 01 Aug 2008 02:57:25 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOndk-0006s1-MM + for bremner@pivot.cs.unb.ca; Fri, 01 Aug 2008 02:57:25 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m715vGPd030165 + for ; Fri, 1 Aug 2008 02:57:19 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id D53AD444074 + for ; Fri, 1 Aug 2008 02:57:16 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 77013444054 + for ; Fri, 1 Aug 2008 02:57:16 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 6560813A528B; Fri, 1 Aug 2008 05:57:14 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-10.7 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + MENTORSRFS,SARE_MSGID_LONG40 autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 69DFA13A528D + for ; Fri, 1 Aug 2008 05:57:07 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 26175-94 for ; + Fri, 1 Aug 2008 05:57:04 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .moulticast. - helo: .rv-out-0708.google. - helo-domain: .google.) FROM/MX_MATCHES_NOT_HELO(DOMAIN)=0 , rate: -5 +Received: from rv-out-0708.google.com (rv-out-0708.google.com [209.85.198.251]) + by liszt.debian.org (Postfix) with ESMTP id 0B27113A525C + for ; Fri, 1 Aug 2008 05:56:55 +0000 (UTC) +Received: by rv-out-0708.google.com with SMTP id k29so978410rvb.30 + for ; Thu, 31 Jul 2008 22:56:52 -0700 (PDT) +Received: by 10.141.113.6 with SMTP id q6mr5743424rvm.36.1217570212637; + Thu, 31 Jul 2008 22:56:52 -0700 (PDT) +Received: by 10.140.171.20 with HTTP; Thu, 31 Jul 2008 22:56:52 -0700 (PDT) +Message-ID: +Date: Fri, 1 Aug 2008 07:56:52 +0200 +From: "=?UTF-8?Q?Herv=C3=A9_Rousseau?=" +To: "Cyril Brulebois" , debian-mentors@lists.debian.org +Subject: Re: RFS: paris-traceroute (updated package) +In-Reply-To: <20080801024224.GG4563@ikibiki.org> +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: base64 +Content-Disposition: inline +References: + <48926CC3.9090903@goirand.fr> <20080801024224.GG4563@ikibiki.org> +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-4.663 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, MENTORSRFS=-0.3, SARE_MSGID_LONG40=0.637] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42429 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Fri, 1 Aug 2008 05:57:14 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.1.54516 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_1099 0, BODY_SIZE_5000_LESS 0, WEBMAIL_SOURCE 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __PHISH_SPEAR_HTTP_RECEIVED 0, __PHISH_SPEAR_STRUCTURE_1 0, __PHISH_SPEAR_STRUCTURE_2 0, __SANE_MSGID 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +T24gRnJpLCBBdWcgMSwgMjAwOCBhdCA0OjQyIEFNLCBDeXJpbCBCcnVsZWJvaXMgPGtpYmlAZGVi +aWFuLm9yZz4gd3JvdGU6ClsuLi5dCj4KPiBDaGVjayB0aGUgaG9tZXBhZ2VbMV0uIEhlcnbDqTog +SSB0aGluayB5b3Ugc2hvdWxkIHJ1biB0aGUgbGF0ZXN0IGxpbnRpYW4KPiB2ZXJzaW9uIG9uIHlv +dXIgcGFja2FnZSwgd2hpY2ggd291bGQgaGF2ZSBzcG90dGVkIHRoYXQgeW91ciBIb21lcGFnZToK +PiBzaG91bGQgYmUgbW92ZWQgdG8gYSBwcm9wZXIgc291cmNlIGZpZWxkLCBhbmQgdGhhdCB5b3Vy +Cj4gU3RhbmRhcmRzLVZlcnNpb24gaXMgb3V0ZGF0ZWQgKGFuZCBtYXliZSBvdGhlciwgZGlkbid0 +IGNoZWNrKS4KCk9vb3BzLAoKWWVzLCBJIGRpZG4ndCB1c2UgdGhlIGxhdGVzdCB2ZXJzaW9uIG9m +IGxpbnRpYW4gc29ycnkuIEl0IHNob3VsZCBiZSBmaXhlZCBub3cuCgpJIGhhdmUgdXBkYXRlZCB0 +aGUgcGFja2FnZSBpbiBtZW50b3JzLmRlYmlhbi5uZXQgOgoKLSBVUkw6IGh0dHA6Ly9tZW50b3Jz +LmRlYmlhbi5uZXQvZGViaWFuL3Bvb2wvbWFpbi9wL3BhcmlzLXRyYWNlcm91dGUKLSBTb3VyY2Ug +cmVwb3NpdG9yeTogZGViLXNyYyBodHRwOi8vbWVudG9ycy5kZWJpYW4ubmV0L2RlYmlhbiB1bnN0 +YWJsZQptYWluIGNvbnRyaWIgbm9uLWZyZWUKLSBkZ2V0IGh0dHA6Ly9tZW50b3JzLmRlYmlhbi5u +ZXQvZGViaWFuL3Bvb2wvbWFpbi9wL3BhcmlzLXRyYWNlcm91dGUvcGFyaXMtdHJhY2Vyb3V0ZV8w +LjkyLWRldi0yLmRzYwoKQ2hlZXJzLAoKLS0gCkhlcnZlIFJvdXNzZWF1Cg== + + diff --git a/test/in/mhdir/31 b/test/in/mhdir/31 new file mode 100644 index 000000000..df51f5597 --- /dev/null +++ b/test/in/mhdir/31 @@ -0,0 +1,107 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Fri Aug 01 05:03:24 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Fri, 01 Aug 2008 05:03:24 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOpbg-00072h-NV + for bremner@pivot.cs.unb.ca; Fri, 01 Aug 2008 05:03:24 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m7183HUM031900 + for ; Fri, 1 Aug 2008 05:03:19 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 184104440A5 + for ; Fri, 1 Aug 2008 05:03:17 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id C94EA444091 + for ; Fri, 1 Aug 2008 05:03:16 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id AA75313A5370; Fri, 1 Aug 2008 07:54:30 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-10.7 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + MENTORSRFS,SARE_MSGID_LONG40 autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 8B69313A5365 + for ; Fri, 1 Aug 2008 07:54:24 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 06688-45 for ; + Fri, 1 Aug 2008 07:54:21 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .moulticast. - helo: .rv-out-0708.google. - helo-domain: .google.) FROM/MX_MATCHES_NOT_HELO(DOMAIN)=0 , rate: -5 +Received: from rv-out-0708.google.com (rv-out-0708.google.com [209.85.198.247]) + by liszt.debian.org (Postfix) with ESMTP id 37E5A13A5357 + for ; Fri, 1 Aug 2008 07:54:13 +0000 (UTC) +Received: by rv-out-0708.google.com with SMTP id k29so1014759rvb.30 + for ; Fri, 01 Aug 2008 00:54:10 -0700 (PDT) +Received: by 10.141.162.9 with SMTP id p9mr5789113rvo.199.1217577250118; + Fri, 01 Aug 2008 00:54:10 -0700 (PDT) +Received: by 10.140.171.20 with HTTP; Fri, 1 Aug 2008 00:54:10 -0700 (PDT) +Message-ID: +Date: Fri, 1 Aug 2008 09:54:10 +0200 +From: "=?UTF-8?Q?Herv=C3=A9_Rousseau?=" +To: debian-mentors@lists.debian.org +Subject: RFS: getstream (updated package) +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 7bit +Content-Disposition: inline +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-4.663 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, MENTORSRFS=-0.3, SARE_MSGID_LONG40=0.637] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42434 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Fri, 1 Aug 2008 07:54:30 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.1.74717 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_800_899 0, WEBMAIL_SOURCE 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __PHISH_SPEAR_HTTP_RECEIVED 0, __PHISH_SPEAR_STRUCTURE_1 0, __PHISH_SPEAR_STRUCTURE_2 0, __SANE_MSGID 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +Dear mentors, + +I am looking for a sponsor for the new version 20080426-1 +of my package "getstream". + +It builds these binary packages: +getstream - DVB streaming application + +The package appears to be lintian clean. + +The upload would fix these bugs: 481771 + +The package can be found on mentors.debian.net: +- URL: http://mentors.debian.net/debian/pool/main/g/getstream +- Source repository: deb-src http://mentors.debian.net/debian unstable +main contrib non-free +- dget http://mentors.debian.net/debian/pool/main/g/getstream/getstream_20080426-1.dsc + +I would be glad if someone uploaded this package for me. + +Kind regards + +-- +Herve Rousseau + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/32 b/test/in/mhdir/32 new file mode 100644 index 000000000..2756a7292 --- /dev/null +++ b/test/in/mhdir/32 @@ -0,0 +1,129 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Fri Aug 01 15:24:44 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Fri, 01 Aug 2008 15:24:44 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOzIy-0003f0-Ld + for bremner@pivot.cs.unb.ca; Fri, 01 Aug 2008 15:24:44 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m71IOZZn018340 + for ; Fri, 1 Aug 2008 15:24:39 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 805CEF30D5 + for ; Fri, 1 Aug 2008 15:24:38 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id EA722F2EEB + for ; Fri, 1 Aug 2008 15:24:37 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 7345613A56F9; Fri, 1 Aug 2008 18:24:36 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-12.7 required=4.0 tests=ALL_TRUSTED,LDOSUBSCRIBER, + LDO_WHITELIST,MENTORSRFS autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id BDEAB13A5646 + for ; Fri, 1 Aug 2008 18:24:29 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 13863-25 for ; + Fri, 1 Aug 2008 18:24:26 +0000 (UTC) +Received: from bart.luffy.cx (bart.luffy.cx [IPv6:2a01:198:201::7]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (Client did not present a certificate) + by liszt.debian.org (Postfix) with ESMTP id 0B16913A54D0 + for ; Fri, 1 Aug 2008 18:24:26 +0000 (UTC) +Received: by bart.luffy.cx (Postfix, from userid 65534) + id 5695A1461B; Fri, 1 Aug 2008 20:24:23 +0200 (CEST) +Received: from neo.luffy.cx (cl-350.bru-01.be.sixxs.net [IPv6:2001:6f8:202:15d::2]) + by bart.luffy.cx (Postfix) with ESMTP id 209A114570 + for ; Fri, 1 Aug 2008 20:24:23 +0200 (CEST) +Received: from neo.luffy.cx (localhost.localdomain [127.0.0.1]) + by neo.luffy.cx (Postfix) with ESMTP id E86FC3817C + for ; Fri, 1 Aug 2008 20:24:21 +0200 (CEST) +From: Vincent Bernat +To: debian-mentors@lists.debian.org +Subject: Re: RFS: getstream (updated package) +In-Reply-To: + (=?iso-8859-15?Q?=22Herv=E9?= Rousseau"'s message of "Fri, 1 Aug 2008 + 09:54:10 +0200") +Organization: Debian +References: +User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/22.2 (x86_64-pc-linux-gnu) +X-PGP-KeyID: 0xF22A794E +X-PGP-Fingerprint: 5854 AF2B 65B2 0E96 2161 E32B 285B D7A1 F22A 794E +Mail-Followup-To: =?iso-8859-15?Q?Herv=E9________Rousseau?= + , + debian-mentors@lists.debian.org +Date: Fri, 01 Aug 2008 20:24:17 +0200 +Message-ID: +MIME-Version: 1.0 +Content-Type: multipart/signed; boundary="=-=-="; + micalg=pgp-sha1; protocol="application/pgp-signature" +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-6.66 tagged_above=3.6 required=5.3 + tests=[ALL_TRUSTED=-1.36, LDO_WHITELIST=-5, MENTORSRFS=-0.3] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42438 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Fri, 1 Aug 2008 18:24:36 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.1.180439 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_1099 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CP_URI_IN_BODY 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +--=-=-= +Content-Type: text/plain; charset=iso-8859-15 +Content-Transfer-Encoding: quoted-printable + +OoO En cette matin=E9e ensoleill=E9e du vendredi 01 ao=FBt 2008, vers 09:= +54, +"Herv=E9 Rousseau" disait=A0: + +> - dget http://mentors.debian.net/debian/pool/main/g/getstream/getstream_2= +0080426-1.dsc + +Uploaded. + +For a next version: + - remove the last "." in debian/control. + - CFLAGS is now set automatically by dpkg-buildpackage, you can remove + the "noopt" snippet from the top of debian/rules +=2D-=20 + /* Identify the flock of penguins. */ + 2.2.16 /usr/src/linux/arch/alpha/kernel/setup.c + +--=-=-= +Content-Type: application/pgp-signature + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEARECAAYFAkiTVNUACgkQKFvXofIqeU7PPQCfbixsjqJe58iVdFvRKyXC7ZvG +kmkAoMGJnsA57ha8VZL6cjVTy+auoTPD +=JpV8 +-----END PGP SIGNATURE----- +--=-=-=-- + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/33 b/test/in/mhdir/33 new file mode 100644 index 000000000..b968fe066 --- /dev/null +++ b/test/in/mhdir/33 @@ -0,0 +1,150 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Fri Aug 01 11:50:14 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Fri, 01 Aug 2008 11:50:14 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOvxO-0003Ey-8B + for bremner@pivot.cs.unb.ca; Fri, 01 Aug 2008 11:50:14 -0300 +Received: from mx4.nbpei-ecn.ca (mx4.nbpei-ecn.ca [198.164.163.197]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m71Eo60C009528 + for ; Fri, 1 Aug 2008 11:50:09 -0300 +Received: from mx4.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 8D0BE7C402A + for ; Fri, 1 Aug 2008 11:50:06 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx4.nbpei-ecn.ca (Postfix) with ESMTP id 29BB17C4028 + for ; Fri, 1 Aug 2008 11:50:06 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 9DFD213A56E2; Fri, 1 Aug 2008 14:50:01 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.3 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + MENTORSRFS autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id D37A313A56C4 + for ; Fri, 1 Aug 2008 14:49:54 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 04190-22 for ; + Fri, 1 Aug 2008 14:49:52 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_FROM_MX=-3.1 , rate: -6.1 +Received: from mail.iuculano.it (mail.iuculano.it [89.163.146.213]) + by liszt.debian.org (Postfix) with ESMTP id 1FF7713A56C8 + for ; Fri, 1 Aug 2008 14:49:45 +0000 (UTC) +Received: (qmail 23594 invoked by uid 0); 1 Aug 2008 16:49:41 +0200 +Received: from unknown (HELO ?10.0.0.2?) (10.0.0.2) + by 10.0.0.1 with ESMTPS (DHE-RSA-AES256-SHA encrypted); 1 Aug 2008 16:49:41 +0200 +Message-ID: <48932274.8030000@iuculano.it> +Date: Fri, 01 Aug 2008 16:49:24 +0200 +From: Giuseppe Iuculano +User-Agent: Mozilla-Thunderbird 2.0.0.14 (X11/20080509) +MIME-Version: 1.0 +To: debian-mentors@lists.debian.org +CC: 492807@bugs.debian.org +Subject: RFS: procinfo-ng +X-Enigmail-Version: 0.95.0 +Content-Type: multipart/signed; micalg=pgp-sha1; + protocol="application/pgp-signature"; + boundary="------------enig176BA06CFEEB3170FAABF3E9" +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-5.3 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, MENTORSRFS=-0.3] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42436 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Fri, 1 Aug 2008 14:50:01 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.1.142257 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_2000_2999 0, BODY_SIZE_5000_LESS 0, __BAT_BOUNDARY 0, __CP_URI_IN_BODY 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __STOCK_PHRASE_24 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +This is an OpenPGP/MIME signed message (RFC 2440 and 3156) +--------------enig176BA06CFEEB3170FAABF3E9 +Content-Type: text/plain; charset=ISO-8859-15 +Content-Transfer-Encoding: quoted-printable + +Dear mentors, + +I am looking for a sponsor for my package "procinfo-ng". + +* Package name : procinfo-ng + Version : 2.0.196-1+svn204 + Upstream Author : Thaddeus Messenger +* URL : http://procinfo-ng.sourceforge.net +* License : GPL + Section : utils + +It builds these binary packages: +procinfo-ng - Displays system information from /proc and /sys + +The package appears to be lintian clean. + + +Procinfo-NG is a small program that gathers some system information from +diverse files under /proc and /sys and prints it to the screen. + +Procinfo-NG is a replacement for procinfo. Has most of the same features,= + but is +written in clean C++ and has fixed many of the features that were broken = +due to +changes in the 2.4 and 2.6 kernels. + +Plus, it uses uint64 for almost everything, and thus should be 64-bit saf= +e. + + +The upload would fix these bugs: 492807 + +The package can be found on mentors.debian.net: +- URL: http://mentors.debian.net/debian/pool/main/p/procinfo-ng +- Source repository: deb-src http://mentors.debian.net/debian unstable ma= +in +contrib non-free +- dget +http://mentors.debian.net/debian/pool/main/p/procinfo-ng/procinfo-ng_2.0.= +196-1+svn204.dsc + +I would be glad if someone uploaded this package for me. + +Kind regards + Giuseppe Iuculano + + +--------------enig176BA06CFEEB3170FAABF3E9 +Content-Type: application/pgp-signature; name="signature.asc" +Content-Description: OpenPGP digital signature +Content-Disposition: attachment; filename="signature.asc" + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEARECAAYFAkiTIoIACgkQNxpp46476arJQgCfUJmMnNQpZooJqfgUionqY+IN +f9oAn33u4TI8L8G+aHUjEzSs95gBjwng +=0m2q +-----END PGP SIGNATURE----- + +--------------enig176BA06CFEEB3170FAABF3E9-- + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/34 b/test/in/mhdir/34 new file mode 100644 index 000000000..8962ead93 --- /dev/null +++ b/test/in/mhdir/34 @@ -0,0 +1,137 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Fri Aug 01 20:39:06 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Fri, 01 Aug 2008 20:39:06 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KP4DA-0004Ja-Mw + for bremner@pivot.cs.unb.ca; Fri, 01 Aug 2008 20:39:06 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m71NcuIT004349 + for ; Fri, 1 Aug 2008 20:38:59 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id DFE09F6D17 + for ; Fri, 1 Aug 2008 20:38:56 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id 7ECC3F5142 + for ; Fri, 1 Aug 2008 20:38:56 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 12C1C13A5842; Fri, 1 Aug 2008 23:38:54 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.3 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + MENTORSRFS autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 1E97A13A5806 + for ; Fri, 1 Aug 2008 23:38:48 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 21567-70 for ; + Fri, 1 Aug 2008 23:38:45 +0000 (UTC) +X-policyd-weight: using cached result; rate: -7 +Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) + (using TLSv1 with cipher AES256-SHA (256/256 bits)) + (Client did not present a certificate) + by liszt.debian.org (Postfix) with ESMTP id 37D9A13A57E4 + for ; Fri, 1 Aug 2008 23:38:38 +0000 (UTC) +Received: from list by ciao.gmane.org with local (Exim 4.43) + id 1KP4Cg-0000dR-0f + for debian-mentors@lists.debian.org; Fri, 01 Aug 2008 23:38:34 +0000 +Received: from eth595.vic.adsl.internode.on.net ([150.101.214.82]) + by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) + id 1AlnuQ-0007hv-00 + for ; Fri, 01 Aug 2008 23:38:34 +0000 +Received: from ben+debian by eth595.vic.adsl.internode.on.net with local (Gmexim 0.1 (Debian)) + id 1AlnuQ-0007hv-00 + for ; Fri, 01 Aug 2008 23:38:34 +0000 +X-Injected-Via-Gmane: http://gmane.org/ +To: debian-mentors@lists.debian.org +From: Ben Finney +Subject: Re: RFS: procinfo-ng +Date: Sat, 02 Aug 2008 09:38:24 +1000 +Lines: 30 +Message-ID: <87vdyk9uhb.fsf@benfinney.id.au> +References: <48932274.8030000@iuculano.it> +Mime-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +X-Complaints-To: usenet@ger.gmane.org +X-Gmane-NNTP-Posting-Host: eth595.vic.adsl.internode.on.net +X-Public-Key-ID: 0xBD41714B +X-Public-Key-Fingerprint: 9CFE 12B0 791A 4267 887F 520C B7AC 2E51 BD41 714B +X-Public-Key-URL: http://www.benfinney.id.au/contact/bfinney-gpg.asc +X-Post-From: Ben Finney +User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (gnu/linux) +Cancel-Lock: sha1:GhjBGuy4ddNsknvXddhCRKq5KT8= +Sender: news +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-5.3 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, MENTORSRFS=-0.3] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: <8yPqlWNjCN.A.bAB.N65kIB@liszt> +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42441 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Fri, 1 Aug 2008 23:38:54 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.1.231629 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1200_1299 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __HIGHBITS 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __STOCK_PHRASE_24 0, __USER_AGENT 0' +X-Virus-Status: Clean +Content-Transfer-Encoding: quoted-printable +X-MIME-Autoconverted: from 8bit to quoted-printable by mailserv4.its.unb.ca id m71NcuIT004349 +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +Giuseppe Iuculano writes: + +> Dear mentors, +>=20 +> I am looking for a sponsor for my package "procinfo-ng". +>=20 +> * Package name : procinfo-ng +> Version : 2.0.196-1+svn204 +> Upstream Author : Thaddeus Messenger +> * URL : http://procinfo-ng.sourceforge.net +> * License : GPL +> Section : utils +>=20 +> It builds these binary packages: +> procinfo-ng - Displays system information from /proc and /sys + +Please rewrite the synopsis as guided by the Best Packaging Practices +. +The synopsis should be an appositive clause (see that reference for +more). + +Suggested improved synopsis: + + reporter for system information from /proc and /sys + +--=20 + \ =E2=80=9CTwo possibilities exist: Either we are alone in the Uni= +verse | + `\ or we are not. Both are equally terrifying.=E2=80=9D =E2=80=94Arth= +ur C. Clarke, | +_o__) 1999 | +Ben Finney + + +--=20 +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian= +.org + + diff --git a/test/in/mhdir/35 b/test/in/mhdir/35 new file mode 100644 index 000000000..aff2555cd --- /dev/null +++ b/test/in/mhdir/35 @@ -0,0 +1,125 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Fri Aug 01 20:50:27 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Fri, 01 Aug 2008 20:50:27 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KP4OB-0004Lo-8j + for bremner@pivot.cs.unb.ca; Fri, 01 Aug 2008 20:50:27 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m71NoJaG006858 + for ; Fri, 1 Aug 2008 20:50:22 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 9FF7DEA492 + for ; Fri, 1 Aug 2008 20:50:19 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id 43FD3F5276 + for ; Fri, 1 Aug 2008 20:50:19 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id AC4DE13A5942; Fri, 1 Aug 2008 23:50:17 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-6.7 required=4.0 tests=ALL_TRUSTED,LDO_WHITELIST, + MENTORSRFS autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id AB71D13A57DA + for ; Fri, 1 Aug 2008 23:50:11 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 03435-51 for ; + Fri, 1 Aug 2008 23:50:09 +0000 (UTC) +Received: from dedibox.ebzao.info (ipv6.ebzao.info [IPv6:2001:6f8:385::2]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (Client CN "dedibox.ebzao.info", Issuer "CA Cert Signing Authority" (not verified)) + by liszt.debian.org (Postfix) with ESMTP id EBD4113A593E + for ; Fri, 1 Aug 2008 23:50:06 +0000 (UTC) +Received: from localhost (localhost [127.0.0.1]) + by dedibox.ebzao.info (Postfix) with ESMTP id 267A65D97; + Sat, 2 Aug 2008 01:50:04 +0200 (CEST) +Received: from dedibox.ebzao.info ([127.0.0.1]) + by localhost (dedibox.ebzao.info [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id j4w2tif7Ijl4; Sat, 2 Aug 2008 01:50:03 +0200 (CEST) +Received: from evy.ikibiki.org (localhost [127.0.0.1]) + (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) + (No client certificate requested) + by dedibox.ebzao.info (Postfix) with ESMTPS id E483B1E72; + Sat, 2 Aug 2008 01:50:03 +0200 (CEST) +Received: by evy.ikibiki.org (Postfix, from userid 1000) + id 7D652C85B6; Sat, 2 Aug 2008 01:49:30 +0200 (CEST) +Date: Sat, 2 Aug 2008 01:49:30 +0200 +From: Cyril Brulebois +To: Giuseppe Iuculano +Cc: debian-mentors@lists.debian.org, 492807@bugs.debian.org +Subject: Re: RFS: procinfo-ng +Message-ID: <20080801234930.GP4563@ikibiki.org> +References: <48932274.8030000@iuculano.it> +MIME-Version: 1.0 +Content-Type: multipart/signed; micalg=pgp-sha1; + protocol="application/pgp-signature"; boundary="3OSb9WzKdbgbGDbF" +Content-Disposition: inline +In-Reply-To: <48932274.8030000@iuculano.it> +Organization: Debian +User-Agent: Mutt/1.5.18 (2008-05-17) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-6.66 tagged_above=3.6 required=5.3 + tests=[ALL_TRUSTED=-1.36, LDO_WHITELIST=-5, MENTORSRFS=-0.3] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42444 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Fri, 1 Aug 2008 23:50:17 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.1.233536 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_800_899 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + + +--3OSb9WzKdbgbGDbF +Content-Type: text/plain; charset=us-ascii +Content-Disposition: inline + +Giuseppe Iuculano (01/08/2008): +> I am looking for a sponsor for my package "procinfo-ng". + +I thought the plan was to replace the old procinfo package without +introducing a new one? + +Mraw, +KiBi. + +--3OSb9WzKdbgbGDbF +Content-Type: application/pgp-signature; name="signature.asc" +Content-Description: Digital signature +Content-Disposition: inline + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEARECAAYFAkiToQoACgkQeGfVPHR5Nd1faQCfXtyuzTCMLxesyMd7L6ZwKDf/ +0SQAnRDxf0CY8H7JMb/2HdREbGDx1Ayr +=kzeZ +-----END PGP SIGNATURE----- + +--3OSb9WzKdbgbGDbF-- + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/36 b/test/in/mhdir/36 new file mode 100644 index 000000000..fe34c19d1 --- /dev/null +++ b/test/in/mhdir/36 @@ -0,0 +1,120 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Fri Aug 01 22:11:54 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Fri, 01 Aug 2008 22:11:54 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KP5ez-0004Ts-Tj + for bremner@pivot.cs.unb.ca; Fri, 01 Aug 2008 22:11:54 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m721Bhs6023774 + for ; Fri, 1 Aug 2008 22:11:46 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id EE0E2F77FF + for ; Fri, 1 Aug 2008 22:11:43 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id 8FF3CF78B6 + for ; Fri, 1 Aug 2008 22:11:43 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 21E5313A59E5; Sat, 2 Aug 2008 01:11:41 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.3 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + MENTORSRFS autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 3003413A5139 + for ; Sat, 2 Aug 2008 01:11:35 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 06343-21 for ; + Sat, 2 Aug 2008 01:11:32 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_FROM_MX=-3.1 , rate: -6.1 +Received: from mail.iuculano.it (mail.iuculano.it [89.163.146.213]) + by liszt.debian.org (Postfix) with ESMTP id 5903E13A5479 + for ; Sat, 2 Aug 2008 01:11:26 +0000 (UTC) +Received: (qmail 17854 invoked by uid 0); 2 Aug 2008 03:11:23 +0200 +Received: from unknown (HELO ?10.0.0.2?) (10.0.0.2) + by 10.0.0.1 with ESMTPS (DHE-RSA-AES256-SHA encrypted); 2 Aug 2008 03:11:23 +0200 +Message-ID: <4893B433.2080903@iuculano.it> +Date: Sat, 02 Aug 2008 03:11:15 +0200 +From: Giuseppe Iuculano +User-Agent: Mozilla-Thunderbird 2.0.0.14 (X11/20080509) +MIME-Version: 1.0 +To: Cyril Brulebois +CC: debian-mentors@lists.debian.org, 492807@bugs.debian.org +Subject: Re: RFS: procinfo-ng +References: <48932274.8030000@iuculano.it> <20080801234930.GP4563@ikibiki.org> +In-Reply-To: <20080801234930.GP4563@ikibiki.org> +X-Enigmail-Version: 0.95.0 +Content-Type: multipart/signed; micalg=pgp-sha1; + protocol="application/pgp-signature"; + boundary="------------enigF64C4833EEF0D4192584F24E" +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-5.3 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, MENTORSRFS=-0.3] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42447 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Sat, 2 Aug 2008 01:11:41 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.2.5813 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1100_1199 0, BODY_SIZE_5000_LESS 0, __BAT_BOUNDARY 0, __BOUNCE_CHALLENGE_SUBJ 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +This is an OpenPGP/MIME signed message (RFC 2440 and 3156) +--------------enigF64C4833EEF0D4192584F24E +Content-Type: text/plain; charset=ISO-8859-15 +Content-Transfer-Encoding: quoted-printable + +Cyril Brulebois ha scritto: + +> I thought the plan was to replace the old procinfo package without +> introducing a new one? + +I didn't read about replacing, but my plan was a new package (procinfo-ng= +) and +after some testing, if procinfo maintainer agree, obsoleting procinfo (wi= +th +replace field and a dummy package). + + +Giuseppe. + + +--------------enigF64C4833EEF0D4192584F24E +Content-Type: application/pgp-signature; name="signature.asc" +Content-Description: OpenPGP digital signature +Content-Disposition: attachment; filename="signature.asc" + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEARECAAYFAkiTtDkACgkQNxpp46476aqwRQCcCpBo+/7F/8YPrgf6pl85P0Zn +X2AAoI9FHlXYjBdoYaVb67ffxdehhm0Q +=AmAq +-----END PGP SIGNATURE----- + +--------------enigF64C4833EEF0D4192584F24E-- + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/37 b/test/in/mhdir/37 new file mode 100644 index 000000000..eb7827447 --- /dev/null +++ b/test/in/mhdir/37 @@ -0,0 +1,126 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Fri Aug 01 22:16:42 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Fri, 01 Aug 2008 22:16:42 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KP5je-0004UU-7B + for bremner@pivot.cs.unb.ca; Fri, 01 Aug 2008 22:16:42 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m721GXJ3018614 + for ; Fri, 1 Aug 2008 22:16:37 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 01A7BF7985 + for ; Fri, 1 Aug 2008 22:16:36 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id 9849FF7934 + for ; Fri, 1 Aug 2008 22:16:35 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 7D24613A59EF; Sat, 2 Aug 2008 01:16:34 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-6.7 required=4.0 tests=ALL_TRUSTED,LDO_WHITELIST, + MENTORSRFS autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 7716613A59D2 + for ; Sat, 2 Aug 2008 01:16:28 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 19539-20 for ; + Sat, 2 Aug 2008 01:16:25 +0000 (UTC) +Received: from dedibox.ebzao.info (ipv6.ebzao.info [IPv6:2001:6f8:385::2]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (Client CN "dedibox.ebzao.info", Issuer "CA Cert Signing Authority" (not verified)) + by liszt.debian.org (Postfix) with ESMTP id D8A8C13A59D1 + for ; Sat, 2 Aug 2008 01:16:25 +0000 (UTC) +Received: from localhost (localhost [127.0.0.1]) + by dedibox.ebzao.info (Postfix) with ESMTP id 40FC028A7; + Sat, 2 Aug 2008 03:16:23 +0200 (CEST) +Received: from dedibox.ebzao.info ([127.0.0.1]) + by localhost (dedibox.ebzao.info [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id JBj4pHkRCzdc; Sat, 2 Aug 2008 03:16:23 +0200 (CEST) +Received: from evy.ikibiki.org (localhost [127.0.0.1]) + (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) + (No client certificate requested) + by dedibox.ebzao.info (Postfix) with ESMTPS id 08BA61B02; + Sat, 2 Aug 2008 03:16:22 +0200 (CEST) +Received: by evy.ikibiki.org (Postfix, from userid 1000) + id C636FC80A6; Sat, 2 Aug 2008 03:15:48 +0200 (CEST) +Date: Sat, 2 Aug 2008 03:15:48 +0200 +From: Cyril Brulebois +To: debian-mentors@lists.debian.org +Cc: 492807@bugs.debian.org +Subject: Re: RFS: procinfo-ng +Message-ID: <20080802011548.GR4563@ikibiki.org> +References: <48932274.8030000@iuculano.it> <20080801234930.GP4563@ikibiki.org> <4893B433.2080903@iuculano.it> +MIME-Version: 1.0 +Content-Type: multipart/signed; micalg=pgp-sha1; + protocol="application/pgp-signature"; boundary="OxYbngvnDUoPDb+a" +Content-Disposition: inline +In-Reply-To: <4893B433.2080903@iuculano.it> +Organization: Debian +User-Agent: Mutt/1.5.18 (2008-05-17) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-6.66 tagged_above=3.6 required=5.3 + tests=[ALL_TRUSTED=-1.36, LDO_WHITELIST=-5, MENTORSRFS=-0.3] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: <6krqmIz_KOH.A.SM.yV7kIB@liszt> +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42448 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Sat, 2 Aug 2008 01:16:34 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.2.10115 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_900_999 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + + +--OxYbngvnDUoPDb+a +Content-Type: text/plain; charset=us-ascii +Content-Disposition: inline + +Giuseppe Iuculano (02/08/2008): +> I didn't read about replacing, but my plan was a new package (procinfo-ng) and +> after some testing, if procinfo maintainer agree, obsoleting procinfo (with +> replace field and a dummy package). + +20080729080145.GA32251@wavehammer.waldi.eu.org and below. + +Mraw, +KiBi. + +--OxYbngvnDUoPDb+a +Content-Type: application/pgp-signature; name="signature.asc" +Content-Description: Digital signature +Content-Disposition: inline + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEARECAAYFAkiTtUQACgkQeGfVPHR5Nd3P6wCfewjpJOLVMZ9LPgcrx4LgFH1u +DYsAn20Mo6c1vKcFQuzwd3BGLDPNIWls +=bqez +-----END PGP SIGNATURE----- + +--OxYbngvnDUoPDb+a-- + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/38 b/test/in/mhdir/38 new file mode 100644 index 000000000..6721a3a5b --- /dev/null +++ b/test/in/mhdir/38 @@ -0,0 +1,130 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Fri Aug 01 22:41:22 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Fri, 01 Aug 2008 22:41:22 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KP67W-0004WJ-Gw + for bremner@pivot.cs.unb.ca; Fri, 01 Aug 2008 22:41:22 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m721fE9a022995 + for ; Fri, 1 Aug 2008 22:41:17 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id A215B444099 + for ; Fri, 1 Aug 2008 22:41:14 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 44A2244400D + for ; Fri, 1 Aug 2008 22:41:14 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 6DD2D13A5689; Sat, 2 Aug 2008 01:41:12 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.3 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + MENTORSRFS autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 5080213A55D6 + for ; Sat, 2 Aug 2008 01:41:06 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 06343-45 for ; + Sat, 2 Aug 2008 01:41:03 +0000 (UTC) +X-policyd-weight: using cached result; rate: -6.1 +Received: from mail.iuculano.it (mail.iuculano.it [89.163.146.213]) + by liszt.debian.org (Postfix) with ESMTP id 60BBD13A51D4 + for ; Sat, 2 Aug 2008 01:40:57 +0000 (UTC) +Received: (qmail 19103 invoked by uid 0); 2 Aug 2008 03:40:54 +0200 +Received: from unknown (HELO ?10.0.0.2?) (10.0.0.2) + by 10.0.0.1 with ESMTPS (DHE-RSA-AES256-SHA encrypted); 2 Aug 2008 03:40:54 +0200 +Message-ID: <4893BB15.6050708@iuculano.it> +Date: Sat, 02 Aug 2008 03:40:37 +0200 +From: Giuseppe Iuculano +User-Agent: Mozilla-Thunderbird 2.0.0.14 (X11/20080509) +MIME-Version: 1.0 +To: Cyril Brulebois +CC: debian-mentors@lists.debian.org, waldi@debian.org, 492807@bugs.debian.org +Subject: Re: RFS: procinfo-ng +References: <48932274.8030000@iuculano.it> <20080801234930.GP4563@ikibiki.org> <4893B433.2080903@iuculano.it> <20080802011548.GR4563@ikibiki.org> +In-Reply-To: <20080802011548.GR4563@ikibiki.org> +X-Enigmail-Version: 0.95.0 +Content-Type: multipart/signed; micalg=pgp-sha1; + protocol="application/pgp-signature"; + boundary="------------enig47A75513C4835EE0895D8906" +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-5.3 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, MENTORSRFS=-0.3] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42449 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Sat, 2 Aug 2008 01:41:12 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.2.12600 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1200_1299 0, BODY_SIZE_5000_LESS 0, __BAT_BOUNDARY 0, __BOUNCE_CHALLENGE_SUBJ 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +This is an OpenPGP/MIME signed message (RFC 2440 and 3156) +--------------enig47A75513C4835EE0895D8906 +Content-Type: text/plain; charset=ISO-8859-15 +Content-Transfer-Encoding: quoted-printable + +Cyril Brulebois ha scritto: +>=20 +> 20080729080145.GA32251@wavehammer.waldi.eu.org and below. +>=20 +> Mraw, +> KiBi. + +Thanks. + +> You don't need an ITP to upload the new software as procinfo. +>=20 +> Bastian + +procinfo-ng is not procinfo, upstream changes, copyright changes, code ch= +anges, +is it possible upload a new version of procinfo that actually is procinfo= +-ng, +and so bypass the NEW upload queue? If yes, no problem for me. + + + +Giuseppe. + + + +--------------enig47A75513C4835EE0895D8906 +Content-Type: application/pgp-signature; name="signature.asc" +Content-Description: OpenPGP digital signature +Content-Disposition: attachment; filename="signature.asc" + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEARECAAYFAkiTuxcACgkQNxpp46476apwHACgiX1Z6MZ54p/tybHcg4Fagb89 +veEAn03nFceMdtm8oIHs06hJ+zQ2cBpu +=zRU0 +-----END PGP SIGNATURE----- + +--------------enig47A75513C4835EE0895D8906-- + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/39 b/test/in/mhdir/39 new file mode 100644 index 000000000..4464d762d --- /dev/null +++ b/test/in/mhdir/39 @@ -0,0 +1,111 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Sat Aug 02 01:50:00 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Sat, 02 Aug 2008 01:50:00 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KP944-0004lQ-2f + for bremner@pivot.cs.unb.ca; Sat, 02 Aug 2008 01:50:00 -0300 +Received: from mx4.nbpei-ecn.ca (mx4.nbpei-ecn.ca [198.164.163.197]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m724nq4H028539 + for ; Sat, 2 Aug 2008 01:49:54 -0300 +Received: from mx4.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 33B627C402A + for ; Sat, 2 Aug 2008 01:49:52 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx4.nbpei-ecn.ca (Postfix) with ESMTP id C99327C4014 + for ; Sat, 2 Aug 2008 01:49:51 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 0D57913A57B9; Sat, 2 Aug 2008 04:49:49 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-10.7 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + MENTORSRFS,SARE_MSGID_LONG40 autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id B891A13A57A1 + for ; Sat, 2 Aug 2008 04:49:42 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 04090-09 for ; + Sat, 2 Aug 2008 04:49:40 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .billy. - helo: .wr-out-0506.google. - helo-domain: .google.) FROM/MX_MATCHES_NOT_HELO(DOMAIN)=0 , rate: -5 +Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.234]) + by liszt.debian.org (Postfix) with ESMTP id E875413A5729 + for ; Sat, 2 Aug 2008 04:49:32 +0000 (UTC) +Received: by wr-out-0506.google.com with SMTP id 60so1091145wri.6 + for ; Fri, 01 Aug 2008 21:49:30 -0700 (PDT) +Received: by 10.90.74.7 with SMTP id w7mr10825787aga.59.1217652570371; + Fri, 01 Aug 2008 21:49:30 -0700 (PDT) +Received: by 10.90.63.5 with HTTP; Fri, 1 Aug 2008 21:49:30 -0700 (PDT) +Message-ID: +Date: Fri, 1 Aug 2008 23:49:30 -0500 +From: "William Vera" +To: debian-mentors +Subject: RFS: scrot (updated package) +MIME-Version: 1.0 +Content-Type: text/plain; charset=ISO-8859-1 +Content-Transfer-Encoding: 7bit +Content-Disposition: inline +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-4.663 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, MENTORSRFS=-0.3, SARE_MSGID_LONG40=0.637] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42452 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Sat, 2 Aug 2008 04:49:49 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.2.42942 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_900_999 0, WEBMAIL_SOURCE 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __PHISH_SPEAR_HTTP_RECEIVED 0, __PHISH_SPEAR_STRUCTURE_1 0, __PHISH_SPEAR_STRUCTURE_2 0, __SANE_MSGID 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +Dear mentors, + +I am looking for a sponsor for the new version 0.8-8 +of my package "scrot". + +It builds these binary packages: +scrot - command line screen capture utility + +The package appears to be lintian clean. + +The upload would fix these bugs: 492502 + +The package can be found on mentors.debian.net: +- URL: http://mentors.debian.net/debian/pool/main/s/scrot +- Source repository: deb-src http://mentors.debian.net/debian unstable +main contrib non-free +- dget http://mentors.debian.net/debian/pool/main/s/scrot/scrot_0.8-8.dsc + +I would be glad if someone uploaded this package for me. + +Kind regards + William Vera + + +-- +William Vera +PGP Key: 1024D/F5CC22A4 +Fingerprint: 3E73 FA1F 5C57 6005 0439 4D75 1FD2 BF96 F5CC 22A4 + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/4 b/test/in/mhdir/4 new file mode 100644 index 000000000..9d884530b --- /dev/null +++ b/test/in/mhdir/4 @@ -0,0 +1,122 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Thu Jul 31 03:28:42 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Thu, 31 Jul 2008 03:28:42 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOReU-0000Fh-Ce + for bremner@pivot.cs.unb.ca; Thu, 31 Jul 2008 03:28:42 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6V6SPAq008050 + for ; Thu, 31 Jul 2008 03:28:34 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 07CDC444057 + for ; Thu, 31 Jul 2008 03:28:25 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 9EC30444051 + for ; Thu, 31 Jul 2008 03:28:24 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 0CA3913A621C; Thu, 31 Jul 2008 06:28:22 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.0 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST + autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id BAC9013A6201 + for ; Thu, 31 Jul 2008 06:28:15 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 25844-28 for ; + Thu, 31 Jul 2008 06:28:07 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_FROM_IP=-2 (check from: .marmaro. - helo: .wp091.webpack.hosteurope. - helo-domain: .hosteurope.) FROM/MX_MATCHES_NOT_HELO(DOMAIN)=0 , rate: -5 +Received: from wp091.webpack.hosteurope.de (wp091.webpack.hosteurope.de [80.237.132.98]) + by liszt.debian.org (Postfix) with ESMTP id C6E4A13A6208 + for ; Thu, 31 Jul 2008 06:28:01 +0000 (UTC) +Received: from tbbf7.t.pppool.de ([89.55.187.247] helo=serveme); authenticated + by wp091.webpack.hosteurope.de running ExIM using esmtpa + id 1KORdm-0008EZ-St; Thu, 31 Jul 2008 08:27:59 +0200 +Received: from meillo by serveme with local (masqmail 0.2.21) id + 1KORco-4Z0-00 for ; Thu, 31 Jul 2008 + 08:26:58 +0200 +Date: Thu, 31 Jul 2008 08:26:58 +0200 +From: markus schnalke +To: debian-mentors@lists.debian.org +Subject: Re: pbuilder/pdebuild mini-howto (Was: Building a build environment) +Message-ID: <20080731062658.GD3066@serveme.schnalke.local> +References: <20080730092902.GC3066@serveme.schnalke.local> <20080730193926.GN21393@volo.donarmstrong.com> +MIME-Version: 1.0 +Content-Type: multipart/signed; micalg=pgp-sha1; + protocol="application/pgp-signature"; boundary="1aa3fXZUP8Xb8QnO" +Content-Disposition: inline +In-Reply-To: <20080730193926.GN21393@volo.donarmstrong.com> +User-Agent: Mutt/1.5.13 (2006-08-11) +X-bounce-key: webpack.hosteurope.de;meillo@marmaro.de;1217485687;feb0a6f4; +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-5 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42408 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Thu, 31 Jul 2008 06:28:22 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.31.61637 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_1099 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + + +--1aa3fXZUP8Xb8QnO +Content-Type: text/plain; charset=us-ascii +Content-Disposition: inline +Content-Transfer-Encoding: quoted-printable + +[2008-07-30 12:39] Don Armstrong +> On Wed, 30 Jul 2008, markus schnalke wrote: +> > When I configured pbuilder some time ago, I couldn't manage to use +> > different locations than /var/cache/pbuilder when using +> > cowdancer/cowbuilder with it. +>=20 +> You set BASEPATH instead of BASETGZ (or use --basepath instead of +> --basetgz). + +Thanks ... i'm gonna try this + + +meillo + +--1aa3fXZUP8Xb8QnO +Content-Type: application/pgp-signature; name="signature.asc" +Content-Description: Digital signature +Content-Disposition: inline + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.6 (GNU/Linux) + +iD8DBQFIkVsy6aFpZ+X9qBIRAqCEAJ9H3+7DvcTsXy64TogtqdAJORi2wACfV8sp +mnjxfJEvH4Kldd96zGeRrl0= +=H6j4 +-----END PGP SIGNATURE----- + +--1aa3fXZUP8Xb8QnO-- + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/40 b/test/in/mhdir/40 new file mode 100644 index 000000000..068410332 --- /dev/null +++ b/test/in/mhdir/40 @@ -0,0 +1,137 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Sat Aug 02 02:22:28 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Sat, 02 Aug 2008 02:22:28 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KP9ZU-0004oB-02 + for bremner@pivot.cs.unb.ca; Sat, 02 Aug 2008 02:22:28 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m725MKOM007833 + for ; Sat, 2 Aug 2008 02:22:22 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 172DFF9C1D + for ; Sat, 2 Aug 2008 02:22:20 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id AB2EFF9DA5 + for ; Sat, 2 Aug 2008 02:22:17 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id E5B7D13A572E; Sat, 2 Aug 2008 05:22:15 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-5.3 required=4.0 tests=LDO_WHITELIST,MENTORSRFS, + MURPHY_DRUGS_REL8 autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 9101C13A5718 + for ; Sat, 2 Aug 2008 05:22:09 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 07896-08 for ; + Sat, 2 Aug 2008 05:22:06 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_FROM_MX=-3.1 , rate: -6.1 +Received: from aura.v7w.com (vs832.rosehosting.com [209.135.157.232]) + by liszt.debian.org (Postfix) with ESMTP id 789E813A571C + for ; Sat, 2 Aug 2008 05:21:53 +0000 (UTC) +Received: from elida.v7w.com (60-241-92-80.static.tpgi.com.au [60.241.92.80]) + by aura.v7w.com (Postfix) with ESMTP id 82289188032; + Sat, 2 Aug 2008 05:21:15 +0000 (UTC) +Received: by elida.v7w.com (Postfix, from userid 1000) + id B7A065119B; Sat, 2 Aug 2008 15:20:53 +1000 (EST) +Date: Sat, 2 Aug 2008 15:20:53 +1000 +From: =?iso-8859-1?Q?An=EDbal?= Monsalve Salazar +To: William Vera +Cc: debian-mentors +Subject: Re: RFS: scrot (updated package) +Message-ID: <20080802052053.GO14057@debianrules.debiancolombia.org> +References: +MIME-Version: 1.0 +Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+HwY7O+GdaLKMYOv" +Content-Disposition: inline +In-Reply-To: +User-Agent: Mutt/1.5.18 (2008-05-17) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-5.28 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, MENTORSRFS=-0.3, MURPHY_DRUGS_REL8=0.02] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42453 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Sat, 2 Aug 2008 05:22:15 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.2.50115 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1700_1799 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + + +--+HwY7O+GdaLKMYOv +Content-Type: text/plain; charset=iso-8859-1 +Content-Disposition: inline + +On Fri, Aug 01, 2008 at 11:49:30PM -0500, William Vera wrote: +>I am looking for a sponsor for the new version 0.8-8 of my package +>"scrot". + +Please don't include changes to autotools files in scrot_0.8-8.diff.gz + +All other upstream files should be modified with patches. So, Please put +those cahnges in a series of patches in debian/patches and build depend +on quilt. + +diffstat scrot_0.8-8.diff.gz + Makefile.am | 8 + Makefile.in | 635 +++-- + aclocal.m4 | 1111 +++++++-- + config.guess | 1407 ++++++++++++ + config.sub | 1505 +++++++++++++ + configure | 629 ++++- + debian/changelog | 92 + debian/compat | 1 + debian/control | 16 + debian/copyright | 32 + debian/rules | 4 + depcomp | 479 ++++ + install-sh | 169 - + ltmain.sh | 6322 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + missing | 158 + + mkinstalldirs | 117 - + src/Makefile.am | 4 + src/Makefile.in | 509 ++-- + src/options.c | 4 + 19 files changed, 12247 insertions(+), 955 deletions(-) + +--+HwY7O+GdaLKMYOv +Content-Type: application/pgp-signature; name="signature.asc" +Content-Description: Digital signature +Content-Disposition: inline + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEARECAAYFAkiT7rMACgkQgY5NIXPNpFVYlwCgr+NDPdk2U7FHbYUHGDB7JntB +PtUAn3Ftq3xnlDyeM3k0FZSNLekQw/X5 +=rAZy +-----END PGP SIGNATURE----- + +--+HwY7O+GdaLKMYOv-- + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/41 b/test/in/mhdir/41 new file mode 100644 index 000000000..b5ad3d0fe --- /dev/null +++ b/test/in/mhdir/41 @@ -0,0 +1,128 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Sat Aug 02 20:44:04 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Sat, 02 Aug 2008 20:44:04 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KPQlV-0001fo-27 + for bremner@pivot.cs.unb.ca; Sat, 02 Aug 2008 20:44:04 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m72Nhr6p016863 + for ; Sat, 2 Aug 2008 20:43:55 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 385CD104FE6 + for ; Sat, 2 Aug 2008 20:43:53 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id CDA351044AC + for ; Sat, 2 Aug 2008 20:43:52 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 5FB552D023F; Sat, 2 Aug 2008 23:43:50 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.3 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + MENTORSRFS,MURPHY_DRUGS_REL8 autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 2B8B32D024A + for ; Sat, 2 Aug 2008 23:43:44 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 11018-37 for ; + Sat, 2 Aug 2008 23:43:41 +0000 (UTC) +X-policyd-weight: using cached result; rate: -7 +Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) + (using TLSv1 with cipher AES256-SHA (256/256 bits)) + (Client did not present a certificate) + by liszt.debian.org (Postfix) with ESMTP id 3D9502D023F + for ; Sat, 2 Aug 2008 23:43:36 +0000 (UTC) +Received: from list by ciao.gmane.org with local (Exim 4.43) + id 1KPQl3-0002Km-As + for debian-mentors@lists.debian.org; Sat, 02 Aug 2008 23:43:33 +0000 +Received: from eth595.vic.adsl.internode.on.net ([150.101.214.82]) + by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) + id 1AlnuQ-0007hv-00 + for ; Sat, 02 Aug 2008 23:43:33 +0000 +Received: from ben+debian by eth595.vic.adsl.internode.on.net with local (Gmexim 0.1 (Debian)) + id 1AlnuQ-0007hv-00 + for ; Sat, 02 Aug 2008 23:43:33 +0000 +X-Injected-Via-Gmane: http://gmane.org/ +To: debian-mentors@lists.debian.org +From: Ben Finney +Subject: Re: RFS: scrot (updated package) +Date: Sun, 03 Aug 2008 09:43:24 +1000 +Lines: 23 +Message-ID: <87tze37zkz.fsf@benfinney.id.au> +References: <20080802052053.GO14057@debianrules.debiancolombia.org> +Mime-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +X-Complaints-To: usenet@ger.gmane.org +X-Gmane-NNTP-Posting-Host: eth595.vic.adsl.internode.on.net +X-Public-Key-ID: 0xBD41714B +X-Public-Key-Fingerprint: 9CFE 12B0 791A 4267 887F 520C B7AC 2E51 BD41 714B +X-Public-Key-URL: http://www.benfinney.id.au/contact/bfinney-gpg.asc +X-Post-From: Ben Finney +User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (gnu/linux) +Cancel-Lock: sha1:rtmHH/CEzw3YjJSI0C+WxdKSOFg= +Sender: news +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-7.28 tagged_above=3.6 required=5.3 + tests=[BAYES_00=-2, LDO_WHITELIST=-5, MENTORSRFS=-0.3, + MURPHY_DRUGS_REL8=0.02] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42460 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Sat, 2 Aug 2008 23:43:50 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.2.232604 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_1099 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __HIGHBITS 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +Content-Transfer-Encoding: quoted-printable +X-MIME-Autoconverted: from 8bit to quoted-printable by mailserv2.unb.ca id m72Nhr6p016863 +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +An=C3=ADbal Monsalve Salazar writes: + +> All other upstream files should be modified with patches. + +Or by some other method that results in the Debian source package +format, with a pristine upstream tarball and all maintainer changes in +the .diff.gz. + +> So, Please put those cahnges in a series of patches in +> debian/patches and build depend on quilt. + +Or use some other method (e.g. a VCS and the corresponding command +foovcs-buildpackage) to track differences from upstream and generate +the changes for the Debian package. + +The "quilt" format is favoured by many, but is certainly not mandatory +nor even "best practice". + +--=20 + \ =E2=80=9CFor fast acting relief, try slowing down.=E2=80=9D =E2=80= +=94Jane Wagner, via | + `\ Lily Tomlin | +_o__) | +Ben Finney + + +--=20 +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian= +.org + + diff --git a/test/in/mhdir/42 b/test/in/mhdir/42 new file mode 100644 index 000000000..375c3d89b --- /dev/null +++ b/test/in/mhdir/42 @@ -0,0 +1,128 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Sat Aug 02 20:53:06 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Sat, 02 Aug 2008 20:53:06 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KPQuI-0001gf-57 + for bremner@pivot.cs.unb.ca; Sat, 02 Aug 2008 20:53:06 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m72NqwAq018154 + for ; Sat, 2 Aug 2008 20:53:01 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 86A331050DD + for ; Sat, 2 Aug 2008 20:52:58 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id 2A7BC104EE6 + for ; Sat, 2 Aug 2008 20:52:58 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 4389D13A53BD; Sat, 2 Aug 2008 23:52:53 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-6.7 required=4.0 tests=ALL_TRUSTED,LDO_WHITELIST, + MENTORSRFS,MURPHY_DRUGS_REL8 autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 7F88913A50EA + for ; Sat, 2 Aug 2008 23:52:46 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 11018-42 for ; + Sat, 2 Aug 2008 23:52:43 +0000 (UTC) +Received: from dedibox.ebzao.info (ipv6.ebzao.info [IPv6:2001:6f8:385::2]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (Client CN "dedibox.ebzao.info", Issuer "CA Cert Signing Authority" (not verified)) + by liszt.debian.org (Postfix) with ESMTP id 3485513A529B + for ; Sat, 2 Aug 2008 23:52:43 +0000 (UTC) +Received: from localhost (localhost [127.0.0.1]) + by dedibox.ebzao.info (Postfix) with ESMTP id A78616BC3 + for ; Sun, 3 Aug 2008 01:52:40 +0200 (CEST) +Received: from dedibox.ebzao.info ([127.0.0.1]) + by localhost (dedibox.ebzao.info [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id uCG--XIkewod for ; + Sun, 3 Aug 2008 01:52:40 +0200 (CEST) +Received: from evy.ikibiki.org (localhost [127.0.0.1]) + (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) + (No client certificate requested) + by dedibox.ebzao.info (Postfix) with ESMTPS id 80F48501E + for ; Sun, 3 Aug 2008 01:52:40 +0200 (CEST) +Received: by evy.ikibiki.org (Postfix, from userid 1000) + id 6299D8877; Sun, 3 Aug 2008 01:52:04 +0200 (CEST) +Date: Sun, 3 Aug 2008 01:52:04 +0200 +From: Cyril Brulebois +To: debian-mentors@lists.debian.org +Subject: Re: RFS: scrot (updated package) +Message-ID: <20080802235204.GV4563@ikibiki.org> +References: <20080802052053.GO14057@debianrules.debiancolombia.org> <87tze37zkz.fsf@benfinney.id.au> +MIME-Version: 1.0 +Content-Type: multipart/signed; micalg=pgp-sha1; + protocol="application/pgp-signature"; boundary="fJQl6v7wpCzjkhZo" +Content-Disposition: inline +In-Reply-To: <87tze37zkz.fsf@benfinney.id.au> +Organization: Debian +User-Agent: Mutt/1.5.18 (2008-05-17) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-8.945 tagged_above=3.6 required=5.3 + tests=[ALL_TRUSTED=-1.665, BAYES_00=-2, LDO_WHITELIST=-5, + MENTORSRFS=-0.3, MURPHY_DRUGS_REL8=0.02] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42461 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Sat, 2 Aug 2008 23:52:53 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.2.233611 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_900_999 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + + +--fJQl6v7wpCzjkhZo +Content-Type: text/plain; charset=us-ascii +Content-Disposition: inline + +Ben Finney (03/08/2008): +> The "quilt" format is favoured by many, but is certainly not mandatory +> nor even "best practice". + +That could be understood as the dpkg quilt format. While what is +favoured is only using quilt to manage the patches, which makes a huge +difference. + +Mraw, +KiBi. + +--fJQl6v7wpCzjkhZo +Content-Type: application/pgp-signature; name="signature.asc" +Content-Description: Digital signature +Content-Disposition: inline + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEARECAAYFAkiU8yMACgkQeGfVPHR5Nd2f+gCfdetUIKnuduPRi4FywDJAiJGp +2cYAn2YpAtmjTC4ss4RXiPmw8igmKrPX +=AOum +-----END PGP SIGNATURE----- + +--fJQl6v7wpCzjkhZo-- + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/43 b/test/in/mhdir/43 new file mode 100644 index 000000000..afddb3a19 --- /dev/null +++ b/test/in/mhdir/43 @@ -0,0 +1,119 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Sun Aug 03 04:58:58 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Sun, 03 Aug 2008 04:58:58 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KPYUT-0002JM-Ua + for bremner@pivot.cs.unb.ca; Sun, 03 Aug 2008 04:58:58 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m737woCR016917 + for ; Sun, 3 Aug 2008 04:58:52 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 0AE214440AA + for ; Sun, 3 Aug 2008 04:58:50 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 9DFFE444054 + for ; Sun, 3 Aug 2008 04:58:49 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 464F613A5308; Sun, 3 Aug 2008 07:58:47 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-11.3 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + MENTORSRFS,MURPHY_DRUGS_REL8 autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 4CCF713A5298 + for ; Sun, 3 Aug 2008 07:58:40 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 09870-07 for ; + Sun, 3 Aug 2008 07:58:37 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .spnet. - helo: .s-janus.spnet. - helo-domain: .spnet.) FROM/MX_MATCHES_HELO(DOMAIN)=-2 , rate: -7 +Received: from s-janus.spnet.net (s-janus.spnet.net [212.50.2.36]) + (using TLSv1 with cipher AES256-SHA (256/256 bits)) + (Client did not present a certificate) + by liszt.debian.org (Postfix) with ESMTP id 66BB313A52F5 + for ; Sun, 3 Aug 2008 07:58:27 +0000 (UTC) +Received: from [78.83.82.72] + by s-janus.spnet.net with esmtp (Exim 4.63) + (envelope-from ) + id 1KPYTk-00066S-Pj + for debian-mentors@lists.debian.org; Sun, 03 Aug 2008 10:58:12 +0300 +From: George Danchev +To: debian-mentors@lists.debian.org +Subject: Re: RFS: scrot (updated package) +Date: Sun, 3 Aug 2008 10:58:38 +0300 +User-Agent: KMail/1.9.9 +References: <20080802052053.GO14057@debianrules.debiancolombia.org> <87tze37zkz.fsf@benfinney.id.au> +In-Reply-To: <87tze37zkz.fsf@benfinney.id.au> +MIME-Version: 1.0 +Content-Type: text/plain; + charset="utf-8" +Content-Transfer-Encoding: quoted-printable +Content-Disposition: inline +Message-Id: <200808031058.39211.danchev@spnet.net> +X-bounce-key: spectrumnets-1;danchev@spnet.net;1217750317;4010815d; +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-7.28 tagged_above=3.6 required=5.3 + tests=[BAYES_00=-2, LDO_WHITELIST=-5, MENTORSRFS=-0.3, + MURPHY_DRUGS_REL8=0.02] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: <71IqbOn011O.A.WWE.3UWlIB@liszt> +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42462 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Sun, 3 Aug 2008 07:58:47 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.3.74651 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1200_1299 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_BLIZZARD_RCVD 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +On Sunday 03 August 2008 02:43:24 Ben Finney wrote: +> An=C3=ADbal Monsalve Salazar writes: +> > All other upstream files should be modified with patches. +> +> Or by some other method that results in the Debian source package +> format, with a pristine upstream tarball and all maintainer changes in +> the .diff.gz. +> +> > So, Please put those cahnges in a series of patches in +> > debian/patches and build depend on quilt. +> +> Or use some other method (e.g. a VCS and the corresponding command +> foovcs-buildpackage) to track differences from upstream and generate +> the changes for the Debian package. + +This do not exclude the usage of debian/patches. Make sure to understand th= +at.=20 + +> The "quilt" format is favoured by many, but is certainly not mandatory +> nor even "best practice". + +Using quilt to clearly separate patches does not exclude nor contradicts wi= +th=20 +the usage of a $VCS. Thus I don't see what are you trying to correct in=20 +Anabal's statements. + +=2D-=20 +pub 4096R/0E4BD0AB 2003-03-18 + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/44 b/test/in/mhdir/44 new file mode 100644 index 000000000..ed88bbfca --- /dev/null +++ b/test/in/mhdir/44 @@ -0,0 +1,162 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Sun Aug 03 11:42:19 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Sun, 03 Aug 2008 11:42:19 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KPemp-0007dK-E3 + for bremner@pivot.cs.unb.ca; Sun, 03 Aug 2008 11:42:19 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m73Eg9rN006381 + for ; Sun, 3 Aug 2008 11:42:11 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 38D42444093 + for ; Sun, 3 Aug 2008 11:42:09 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id C476944409C + for ; Sun, 3 Aug 2008 11:42:08 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 2739713A52A1; Sun, 3 Aug 2008 14:42:07 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-2.3 required=4.0 tests=FOURLA,HTML_MESSAGE, + IMPRONONCABLE_1,LDO_WHITELIST,MENTORSRFS,MURPHY_WRONG_WORD2,SARE_MSGID_LONG40 + autolearn=no version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 4B2BB13A52A4 + for ; Sun, 3 Aug 2008 14:24:57 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 14741-99 for ; + Sun, 3 Aug 2008 14:24:51 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .googlemail. - helo: .wf-out-1314.google. - helo-domain: .google.) FROM/MX_MATCHES_HELO(DOMAIN)=-2 , rate: -7 +Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.172]) + by liszt.debian.org (Postfix) with ESMTP id 812D413A524E + for ; Sun, 3 Aug 2008 14:24:44 +0000 (UTC) +Received: by wf-out-1314.google.com with SMTP id 28so1662436wfc.18 + for ; Sun, 03 Aug 2008 07:24:41 -0700 (PDT) +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=googlemail.com; s=gamma; + h=domainkey-signature:received:received:message-id:date:from:sender + :to:subject:mime-version:content-type:x-google-sender-auth; + bh=nPZuDkg6zo5UL30HvCv0LCUURBND7R2NC3l3WeHSOtk=; + b=bXtFZGEjZsBWEb3AqaunG+6kOMC+5imNqP3QKa0BW+M1WuVpC0nlESWbGHHQIotTTw + VpkjTlBLPQiK/Vtkbvd3n3xRUSZecWcKGsgUorK2uX14PfuJnmArhStaAAFT2FQcf95g + xr1VVWDvNlqhqZjNclIgE1WbtHQ2kyrLgR5a0= +DomainKey-Signature: a=rsa-sha1; c=nofws; + d=googlemail.com; s=gamma; + h=message-id:date:from:sender:to:subject:mime-version:content-type + :x-google-sender-auth; + b=cxbPt0ii/LOYxB9c4k1VBYymsER/Nsaau7401adVDLH3/Z7OyqH0eccBZn9lXGNHwb + gFd3uyBM1K+LvefjeaSl+CKLXmZo9Qbl3uoGW71gYthY+XxUaTDwHQdZN78E8ZO+g1f7 + bH6zf0Dr+62wyq2Sqm20kl7XdPbEbMgDRUOQM= +Received: by 10.142.133.8 with SMTP id g8mr4561791wfd.312.1217773481159; + Sun, 03 Aug 2008 07:24:41 -0700 (PDT) +Received: by 10.143.37.2 with HTTP; Sun, 3 Aug 2008 07:24:41 -0700 (PDT) +Message-ID: <3e58361c0808030724h5ad4c814ge8f28e1896fa7d5a@mail.gmail.com> +Date: Sun, 3 Aug 2008 15:24:41 +0100 +From: "Iulian Udrea" +Sender: iulian.udrea@googlemail.com +To: debian-mentors@lists.debian.org +Subject: RFS: gtkmm-utils +MIME-Version: 1.0 +Content-Type: multipart/alternative; + boundary="----=_Part_11931_21897706.1217773481158" +X-Google-Sender-Auth: d3857d6873e3454c +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-4.263 tagged_above=3.6 required=5.3 + tests=[BAYES_00=-2, FOURLA=0.1, HTML_MESSAGE=1.1, IMPRONONCABLE_1=1, + LDO_WHITELIST=-5, MENTORSRFS=-0.3, MURPHY_WRONG_WORD2=0.2, + SARE_MSGID_LONG40=0.637] +X-Rc-Spam: 2007-10-04_01 +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42476 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Sun, 3 Aug 2008 14:42:07 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.3.142125 +X-PerlMx-Spam: Gauge=IIIIIIIII, Probability=9%, Report='WEBMAIL_REPLYTO_NOT_FROM 0.5, BODY_SIZE_3000_3999 0, BODY_SIZE_5000_LESS 0, WEBMAIL_SOURCE 0, __CP_URI_IN_BODY 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __CTYPE_MULTIPART_ALT 0, __FRAUD_419_WEBMAIL 0, __FRAUD_419_WEBMAIL_SENDER 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_HTML 0, __MIME_VERSION 0, __PHISH_SPEAR_HTTP_RECEIVED 0, __PHISH_SPEAR_STRUCTURE_1 0, __PHISH_SPEAR_STRUCTURE_2 0, __SANE_MSGID 0, __STOCK_PHRASE_24 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +------=_Part_11931_21897706.1217773481158 +Content-Type: text/plain; charset=ISO-8859-1 +Content-Transfer-Encoding: 7bit +Content-Disposition: inline + +Dear mentors, + +I am looking for a sponsor for my package "gtkmm-utils". + +gtkmm-utils is a C++ utility and widget library based on glibmm and gtkmm. + +Package name: gtkmm-utils +Version: 0.3.2-1 +Upstream Authors: Marko Anastasov and + Dodji Seketeli +URL: http://savannah.nongnu.org/projects/gtkmm-utils +License: LGPL +Section: libs + +It builds these binary packages: +libglibmm-utils-dev - utility functions, classes and widgets written on top +of glibmm +libglibmm-utils2 - utility functions, classes and widgets written on top of +glibmm +libgtkmm-utils-dev - utility functions, classes and widgets written on top +of gtkmm +libgtkmm-utils2 - utility functions, classes and widgets written on top of +gtkmm + +The package appears to be lintian clean. + +The upload would fix these bugs: 492480 + +The package can be found on mentors.debian.net: +- URL: http://mentors.debian.net/debian/pool/main/g/gtkmm-utils +- Source repository: deb-src http://mentors.debian.net/debian unstable main +contrib non-free +- dget +http://mentors.debian.net/debian/pool/main/g/gtkmm-utils/gtkmm-utils_0.3.2-1.dsc + + +Sincerely, +-- +Iulian + +------=_Part_11931_21897706.1217773481158 +Content-Type: text/html; charset=ISO-8859-1 +Content-Transfer-Encoding: 7bit +Content-Disposition: inline + +
Dear mentors,

I am looking for a sponsor for my package "gtkmm-utils".

gtkmm-utils is a C++ utility and widget library based on glibmm and gtkmm.

Package name: gtkmm-utils
+Version: 0.3.2-1
Upstream Authors: Marko Anastasov <marko@marko.anastasov.name> and
                            Dodji Seketeli <dodji@seketeli.org>
+URL: http://savannah.nongnu.org/projects/gtkmm-utils
License: LGPL
Section: libs

It builds these binary packages:
libglibmm-utils-dev - utility functions, classes and widgets written on top of glibmm
+libglibmm-utils2 - utility functions, classes and widgets written on top of glibmm
libgtkmm-utils-dev - utility functions, classes and widgets written on top of gtkmm
libgtkmm-utils2 - utility functions, classes and widgets written on top of gtkmm
+
The package appears to be lintian clean.

The upload would fix these bugs: 492480

The package can be found on mentors.debian.net:
- URL: http://mentors.debian.net/debian/pool/main/g/gtkmm-utils
+- Source repository: deb-src http://mentors.debian.net/debian unstable main contrib non-free
- dget http://mentors.debian.net/debian/pool/main/g/gtkmm-utils/gtkmm-utils_0.3.2-1.dsc
+

Sincerely,
--
Iulian
+ +------=_Part_11931_21897706.1217773481158-- + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/45 b/test/in/mhdir/45 new file mode 100644 index 000000000..5642dac2e --- /dev/null +++ b/test/in/mhdir/45 @@ -0,0 +1,121 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Sun Aug 03 13:30:21 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Sun, 03 Aug 2008 13:30:21 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KPgTM-0007mt-Ig + for bremner@pivot.cs.unb.ca; Sun, 03 Aug 2008 13:30:21 -0300 +Received: from mx4.nbpei-ecn.ca (mx4.nbpei-ecn.ca [198.164.163.197]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m73GUCOW030628 + for ; Sun, 3 Aug 2008 13:30:15 -0300 +Received: from mx4.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 9C4047C401C + for ; Sun, 3 Aug 2008 13:30:12 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx4.nbpei-ecn.ca (Postfix) with ESMTP id 3D2027C4006 + for ; Sun, 3 Aug 2008 13:30:12 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id D53D613A53B8; Sun, 3 Aug 2008 16:30:08 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-5.3 required=4.0 tests=LDO_WHITELIST,MENTORSRFS, + MURPHY_DRUGS_REL8 autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id A4FF013A5375 + for ; Sun, 3 Aug 2008 16:12:02 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 03643-37 for ; + Sun, 3 Aug 2008 16:11:59 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .web. - helo: .fmmailgate02.web. - helo-domain: .web.) FROM/MX_MATCHES_HELO(DOMAIN)=-2 , rate: -7 +Received: from fmmailgate02.web.de (fmmailgate02.web.de [217.72.192.227]) + by liszt.debian.org (Postfix) with ESMTP id B303513A5086 + for ; Sun, 3 Aug 2008 16:11:51 +0000 (UTC) +Received: from smtp06.web.de (fmsmtp06.dlan.cinetic.de [172.20.5.172]) + by fmmailgate02.web.de (Postfix) with ESMTP id 233E4E7E778F + for ; Sun, 3 Aug 2008 18:11:49 +0200 (CEST) +Received: from [84.16.224.152] (helo=localhost) + by smtp06.web.de with esmtp (TLSv1:AES128-SHA:128) + (WEB.DE 4.109 #226) + id 1KPgBQ-0007aJ-00; Sun, 03 Aug 2008 18:11:49 +0200 +Date: Sun, 3 Aug 2008 18:11:48 +0200 +From: Carsten Hey +To: debian-mentors +Subject: RFS: pal (updated package - new upstream bugfix release) +Message-ID: <20080803161148.GC7301@foghorn.stateful.de> +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +Content-Disposition: inline +User-Agent: Mutt/1.5.16 (2007-06-11) +Sender: c.hey@web.de +X-Sender: c.hey@web.de +X-Provags-ID: V01U2FsdGVkX185ttb2mP9OHPipawfYU1o4wv6aC0qNGF7b2mIn + iBYE2VgizDh7zDKVBydfVfd8fKmBPjY7XogqHUM25aELwrZ/1U + CM4wHywo8= +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-7.28 tagged_above=3.6 required=5.3 + tests=[BAYES_00=-2, LDO_WHITELIST=-5, MENTORSRFS=-0.3, + MURPHY_DRUGS_REL8=0.02] +X-Rc-Spam: 2007-10-04_01 +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42477 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Sun, 3 Aug 2008 16:30:08 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.3.161534 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_900_999 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +Dear mentors, + +I am looking for a sponsor for the new version 0.4.3-1 of my package "pal". + +It builds these binary packages: +pal - command-line calendar program that can keep track of events + +The package is lintian clean. + +The upload would fix these bugs: #492464 + +Changes: + pal (0.4.3-1) unstable; urgency=low + . + * New Upstream Version + - Fix segfault when printing strings not valid in user's locale + (Closes: #492464) + * Removed patches that are included in pal's latest upstream release from + debian/patches. No remaining patches. + +The package can be found on: + - URL: http://debian.stateful.de/pbuilder/sid/ + - dget http://debian.stateful.de/pbuilder/sid/pal_0.4.3-1.dsc + +I would be glad if someone uploaded this package for me. + + +Kind regards, +Carsten + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/46 b/test/in/mhdir/46 new file mode 100644 index 000000000..6123bddca --- /dev/null +++ b/test/in/mhdir/46 @@ -0,0 +1,99 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Sun Aug 03 15:06:20 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Sun, 03 Aug 2008 15:06:20 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KPhyG-0007xf-DY + for bremner@pivot.cs.unb.ca; Sun, 03 Aug 2008 15:06:20 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m73I6CAN021737 + for ; Sun, 3 Aug 2008 15:06:15 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id C54DE444038 + for ; Sun, 3 Aug 2008 15:06:12 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 8FC21444028 + for ; Sun, 3 Aug 2008 15:06:12 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 0004813A512C; Sun, 3 Aug 2008 18:06:10 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-5.3 required=4.0 tests=LDO_WHITELIST,MENTORSRFS + autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id D7E6413A54BD + for ; Sun, 3 Aug 2008 17:49:48 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 32697-65 for ; + Sun, 3 Aug 2008 17:49:46 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .web. - helo: .fmmailgate03.web. - helo-domain: .web.) FROM/MX_MATCHES_HELO(DOMAIN)=-2 , rate: -7 +Received: from fmmailgate03.web.de (fmmailgate03.web.de [217.72.192.234]) + by liszt.debian.org (Postfix) with ESMTP id 21D9613A54A8 + for ; Sun, 3 Aug 2008 17:49:39 +0000 (UTC) +Received: from smtp06.web.de (fmsmtp06.dlan.cinetic.de [172.20.5.172]) + by fmmailgate03.web.de (Postfix) with ESMTP id 828DBE5D78E0 + for ; Sun, 3 Aug 2008 19:49:37 +0200 (CEST) +Received: from [84.16.224.152] (helo=localhost) + by smtp06.web.de with esmtp (TLSv1:AES128-SHA:128) + (WEB.DE 4.109 #226) + id 1KPhi5-00032w-00; Sun, 03 Aug 2008 19:49:37 +0200 +Date: Sun, 3 Aug 2008 19:49:36 +0200 +From: Carsten Hey +To: debian-mentors +Subject: Re: RFS: pal (done) +Message-ID: <20080803174936.GE7301@foghorn.stateful.de> +References: <20080803161148.GC7301@foghorn.stateful.de> +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +Content-Disposition: inline +In-Reply-To: <20080803161148.GC7301@foghorn.stateful.de> +User-Agent: Mutt/1.5.16 (2007-06-11) +Sender: c.hey@web.de +X-Sender: c.hey@web.de +X-Provags-ID: V01U2FsdGVkX19SYyFXU79/HwCHtuVeC/MCvr+hXKjuA6mPxWkK + hLNF0bcjqlDhzNyOsSY/LAdIlUxwn3T53JVIsRyJF374xfZS8f + ie75DLiBk= +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-7.3 tagged_above=3.6 required=5.3 + tests=[BAYES_00=-2, LDO_WHITELIST=-5, MENTORSRFS=-0.3] +X-Rc-Spam: 2007-10-04_01 +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42482 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Sun, 3 Aug 2008 18:06:10 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.8.3.175200 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_LESS 0, BODY_SIZE_300_399 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __CD 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +On Sun, Aug 03, 2008 at 06:11:48PM +0200, Carsten Hey wrote: +> I am looking for a sponsor for the new version 0.4.3-1 of my package "pal". + +I just found a sponsor, thanks! + +Carsten + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/5 b/test/in/mhdir/5 new file mode 100644 index 000000000..5c0a75b70 --- /dev/null +++ b/test/in/mhdir/5 @@ -0,0 +1,97 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 08:51:03 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 08:51:03 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOACt-0005Y2-5y + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 08:51:03 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UBorTA020352 + for ; Wed, 30 Jul 2008 08:50:57 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 7DF15CA5C1 + for ; Wed, 30 Jul 2008 08:50:57 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id 4738DCA5D0 + for ; Wed, 30 Jul 2008 08:50:57 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id B4ED613A6159; Wed, 30 Jul 2008 11:50:19 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-9.0 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + ONEWORD autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 1CCCD13A6060 + for ; Wed, 30 Jul 2008 11:50:13 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 29898-36 for ; + Wed, 30 Jul 2008 11:50:10 +0000 (UTC) +Received: from contrabass.post.ru (contrabass.post.ru [85.21.78.5]) + by liszt.debian.org (Postfix) with ESMTP id D2D5B13A614A + for ; Wed, 30 Jul 2008 11:50:09 +0000 (UTC) +Received: from corbina.ru (mail.post.ru [195.14.50.16]) + by contrabass.post.ru (Postfix) with ESMTP id 9A3AA157B43 + for ; Wed, 30 Jul 2008 15:50:07 +0400 (MSD) +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: by cgpav Uf39PSi9pFi9oFi9 +Received: from [10.120.62.79] (account tsukasa@post.ru HELO localhost.localdomain) + by corbina.ru (CommuniGate Pro SMTP 5.1.14) + with ESMTPSA id 889982506 for debian-mentors@lists.debian.org; Wed, 30 Jul 2008 15:50:07 +0400 +Received: from stas by localhost.localdomain with local (Exim 4.69) + (envelope-from ) + id 1KOAC2-0006ST-Az + for debian-mentors@lists.debian.org; Wed, 30 Jul 2008 15:50:10 +0400 +Date: Wed, 30 Jul 2008 15:50:10 +0400 +From: Stanislav Maslovski +To: debian-mentors@lists.debian.org +Subject: ftp-masters +Message-ID: <20080730115010.GA24515@shota.mine.nu> +Mail-Followup-To: Stanislav Maslovski , + debian-mentors@lists.debian.org +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +Content-Disposition: inline +User-Agent: Mutt/1.5.18 (2008-05-17) +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-3 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, ONEWORD=2] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42386 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 11:50:19 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.113817 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='SUBJ_1WORD 0.1, BODY_SIZE_1000_LESS 0, BODY_SIZE_400_499 0, BODY_SIZE_5000_LESS 0, __C230066_P1_2 0, __CD 0, __CT 0, __CT_TEXT_PLAIN 0, __FRAUD_419_WEBMAIL 0, __FRAUD_419_WEBMAIL_FROM 0, __FROM_GMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +If a package has been uploaded to NEW, but has not been yet approved or +rejected by ftp-masters, and if this package has a mistake that is +better to be corrected before the package gets into unstable, then what +is the official procedure of doing such correction? + +-- +Stanislav + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/6 b/test/in/mhdir/6 new file mode 100644 index 000000000..2986545d1 --- /dev/null +++ b/test/in/mhdir/6 @@ -0,0 +1,143 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 08:54:35 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 08:54:35 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOAGJ-0005YN-KX + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 08:54:35 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UBsSai029949 + for ; Wed, 30 Jul 2008 08:54:30 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 02EFB44408D + for ; Wed, 30 Jul 2008 08:54:28 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 90AF14440A0 + for ; Wed, 30 Jul 2008 08:54:27 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 75D4E13A6166; Wed, 30 Jul 2008 11:54:25 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-9.0 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + ONEWORD autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 7244213A6140 + for ; Wed, 30 Jul 2008 11:54:14 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 13357-70 for ; + Wed, 30 Jul 2008 11:54:11 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .gmail. - helo: .wx-out-0506.google. - helo-domain: .google.) FROM/MX_MATCHES_HELO(DOMAIN)=-2 IN_PM_RFCI=0.1 , rate: -6.9 +Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.225]) + by liszt.debian.org (Postfix) with ESMTP id 2718613A611E + for ; Wed, 30 Jul 2008 11:54:04 +0000 (UTC) +Received: by wx-out-0506.google.com with SMTP id i31so83012wxd.18 + for ; Wed, 30 Jul 2008 04:54:02 -0700 (PDT) +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=gmail.com; s=gamma; + h=domainkey-signature:received:received:message-id:date:from + :user-agent:mime-version:to:subject:references:in-reply-to + :x-enigmail-version:content-type; + bh=QvfJghZfaCt27vvK3NipEn7Wfp7vuO//JYptWTieTXI=; + b=aMI9QAZT9MQORaAdjCjVLnKTW8Vdz582yDwQQYp1DSx732ToVZxfNDcoy0JeLlMAHr + ZUpnyZl5hAY58iNZgyp6muUL0u8SPx8nFYwwu4HEqiVAKtoSaI9t6T+91dFdYtDYNiHB + gS14ivgJxla02wOjejXWSMMoja0ZDz/mjAML4= +DomainKey-Signature: a=rsa-sha1; c=nofws; + d=gmail.com; s=gamma; + h=message-id:date:from:user-agent:mime-version:to:subject:references + :in-reply-to:x-enigmail-version:content-type; + b=Kquwvckh71s+BXciIlo+3yJ3Y12vRFD/n12gSfd8DLQDr6NTz7IqCOj8Q7djApgNAF + ilbB3Jf4+0szGn7ViQRu1vrZAzw910LVJeOQ64+bHSaLwKJGelqBz+uTXEfYUe3nSmMc + NQe2aU9l+bNI05LEuS1ZCrGLV6jWQ2gqITxaQ= +Received: by 10.70.63.12 with SMTP id l12mr3548070wxa.45.1217418841566; + Wed, 30 Jul 2008 04:54:01 -0700 (PDT) +Received: from lyubimkin.sp.tpway.com ( [195.24.150.38]) + by mx.google.com with ESMTPS id h19sm3880491wxd.32.2008.07.30.04.53.59 + (version=TLSv1/SSLv3 cipher=RC4-MD5); + Wed, 30 Jul 2008 04:54:00 -0700 (PDT) +Message-ID: <4890562A.6090209@gmail.com> +Date: Wed, 30 Jul 2008 14:53:14 +0300 +From: "Eugene V. Lyubimkin" +User-Agent: Mozilla-Thunderbird 2.0.0.16 (X11/20080724) +MIME-Version: 1.0 +To: debian-mentors@lists.debian.org +Subject: Re: ftp-masters +References: <20080730115010.GA24515@shota.mine.nu> +In-Reply-To: <20080730115010.GA24515@shota.mine.nu> +X-Enigmail-Version: 0.95.0 +Content-Type: multipart/signed; micalg=pgp-sha1; + protocol="application/pgp-signature"; + boundary="------------enig85D7023A8A4E49C287AB4D06" +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-3 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, ONEWORD=2] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42387 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 11:54:25 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.113817 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1400_1499 0, BODY_SIZE_5000_LESS 0, __BAT_BOUNDARY 0, __BOUNCE_CHALLENGE_SUBJ 0, __C230066_P1_2 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __FRAUD_419_WEBMAIL 0, __FRAUD_419_WEBMAIL_FROM 0, __FROM_GMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +This is an OpenPGP/MIME signed message (RFC 2440 and 3156) +--------------enig85D7023A8A4E49C287AB4D06 +Content-Type: text/plain; charset=ISO-8859-1 +Content-Transfer-Encoding: quoted-printable + +Stanislav Maslovski wrote: +> If a package has been uploaded to NEW, but has not been yet approved or= + +> rejected by ftp-masters, and if this package has a mistake that is +> better to be corrected before the package gets into unstable, then what= + +> is the official procedure of doing such correction?=20 +>=20 +IANADD + +As I know, just simply upload new revision of package. It will go into +NEW too, and ftp-masters will approve or reject latest upload of package + +--=20 +Eugene V. Lyubimkin aka JackYF + + +--------------enig85D7023A8A4E49C287AB4D06 +Content-Type: application/pgp-signature; name="signature.asc" +Content-Description: OpenPGP digital signature +Content-Disposition: attachment; filename="signature.asc" + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) +Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org + +iEYEARECAAYFAkiQVi0ACgkQchorMMFUmYynKQCeIn4mcl73C17y1nVU+f1V7VJX +w7IAoMQX+noUF1kO+dy/BXnaUbtbHOOf +=WGJ7 +-----END PGP SIGNATURE----- + +--------------enig85D7023A8A4E49C287AB4D06-- + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/7 b/test/in/mhdir/7 new file mode 100644 index 000000000..9c73b0e69 --- /dev/null +++ b/test/in/mhdir/7 @@ -0,0 +1,130 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 09:05:22 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 09:05:22 -0300 +Received: from mailserv4.its.unb.ca ([131.202.1.27]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOAQk-0005Zr-Hi + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 09:05:22 -0300 +Received: from mx3.nbpei-ecn.ca (mx3.nbpei-ecn.ca [198.164.163.196]) + by mailserv4.its.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UC5CvZ001219 + for ; Wed, 30 Jul 2008 09:05:17 -0300 +Received: from mx3.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 68BC5CAA14 + for ; Wed, 30 Jul 2008 09:05:16 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx3.nbpei-ecn.ca (Postfix) with ESMTP id 0ACFDCAA05 + for ; Wed, 30 Jul 2008 09:05:16 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id CDBE113A6174; Wed, 30 Jul 2008 12:05:13 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-8.9 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + MDO_DATING14,ONEWORD autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id CA56013A6172 + for ; Wed, 30 Jul 2008 12:05:05 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 13642-68 for ; + Wed, 30 Jul 2008 12:05:02 +0000 (UTC) +X-policyd-weight: DYN_NJABL=ERR NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .gmx. - helo: .mail.gmx. - helo-domain: .gmx.) FROM/MX_MATCHES_HELO(DOMAIN)=-2 , rate: -7 +Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) + by liszt.debian.org (Postfix) with SMTP id A4D7813A616E + for ; Wed, 30 Jul 2008 12:04:54 +0000 (UTC) +Received: (qmail invoked by alias); 30 Jul 2008 12:04:52 -0000 +Received: from e177233152.adsl.alicedsl.de (EHLO donald.local) [85.177.233.152] + by mail.gmx.net (mp062) with SMTP; 30 Jul 2008 14:04:52 +0200 +X-Authenticated: #7842102 +X-Provags-ID: V01U2FsdGVkX1+uRTNOE3GuXaCNf0S0i92BA5F8Im++/3lSVCWYdf + UyWqLcxqRIlWYh +From: Tobias Quathamer +To: Stanislav Maslovski , + debian-mentors@lists.debian.org +Subject: Re: ftp-masters +Date: Wed, 30 Jul 2008 14:04:46 +0200 +User-Agent: KMail/1.9.9 +References: <20080730115010.GA24515@shota.mine.nu> +In-Reply-To: <20080730115010.GA24515@shota.mine.nu> +MIME-Version: 1.0 +Content-Type: multipart/signed; + boundary="nextPart1606570.Y8WxEI8KZm"; + protocol="application/pgp-signature"; + micalg=pgp-sha1 +Content-Transfer-Encoding: 7bit +Message-Id: <200807301404.49015.t.quathamer@gmx.net> +X-Y-GMX-Trusted: 0 +X-FuHaFi: 0.71 +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv4.its.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-2.9 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, MDO_DATING14=0.1, ONEWORD=2] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42389 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 12:05:13 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.115335 +X-PerlMx-Spam: Gauge=IIIIIIIII, Probability=9%, Report='SXL_IP_PROXY_RCVD 0.5, BODY_SIZE_1300_1399 0, BODY_SIZE_5000_LESS 0, __BOUNCE_CHALLENGE_SUBJ 0, __C230066_P1_2 0, __CT 0, __CTE 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +--nextPart1606570.Y8WxEI8KZm +Content-Type: text/plain; + charset="iso-8859-1" +Content-Transfer-Encoding: quoted-printable +Content-Disposition: inline + +On Wednesday 30 July 2008 13:50:10 Stanislav Maslovski wrote: +> If a package has been uploaded to NEW, but has not been yet approved or +> rejected by ftp-masters, and if this package has a mistake that is +> better to be corrected before the package gets into unstable, then what +> is the official procedure of doing such correction? + +You can send an email to ftpmaster@d.o and ask them to REJECT your package= +=20 +now, without doing further checks and then upload again. You can even re-us= +e=20 +the same version number then. + +Regards, +Tobias + +=2D-=20 +Tobias Quathamer | Every 4 seconds a woman has a baby. +Hamburg, Germany | Our problem is to find this woman and stop her. + +--nextPart1606570.Y8WxEI8KZm +Content-Type: application/pgp-signature; name=signature.asc +Content-Description: This is a digitally signed message part. + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.6 (GNU/Linux) + +iD8DBQBIkFjg3UXUABXir9YRAmGXAJ9cae8utiXJ6ynRNe7zX4og0HCA2gCfQs6z +bd8KIzc1AAlizZ4o83bDFGc= +=jX5M +-----END PGP SIGNATURE----- + +--nextPart1606570.Y8WxEI8KZm-- + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + + diff --git a/test/in/mhdir/8 b/test/in/mhdir/8 new file mode 100644 index 000000000..6d159a9fb --- /dev/null +++ b/test/in/mhdir/8 @@ -0,0 +1,121 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 10:12:15 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 10:12:15 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOBTQ-0005mt-CH + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 10:12:15 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UDC4V7016101 + for ; Wed, 30 Jul 2008 10:12:07 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 67A7B4440AA + for ; Wed, 30 Jul 2008 10:12:04 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id 09AE44440A4 + for ; Wed, 30 Jul 2008 10:12:03 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 5D84C13A60B6; Wed, 30 Jul 2008 13:12:02 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-9.0 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + ONEWORD autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 1A7A613A60AC + for ; Wed, 30 Jul 2008 13:11:56 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 07084-09 for ; + Wed, 30 Jul 2008 13:11:53 +0000 (UTC) +X-policyd-weight: using cached result; rate: -7 +Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) + (using TLSv1 with cipher AES256-SHA (256/256 bits)) + (Client did not present a certificate) + by liszt.debian.org (Postfix) with ESMTP id 8DA7113A60A0 + for ; Wed, 30 Jul 2008 13:11:47 +0000 (UTC) +Received: from list by ciao.gmane.org with local (Exim 4.43) + id 1KOBSw-0005my-GW + for debian-mentors@lists.debian.org; Wed, 30 Jul 2008 13:11:42 +0000 +Received: from eth595.vic.adsl.internode.on.net ([150.101.214.82]) + by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) + id 1AlnuQ-0007hv-00 + for ; Wed, 30 Jul 2008 13:11:42 +0000 +Received: from ben+debian by eth595.vic.adsl.internode.on.net with local (Gmexim 0.1 (Debian)) + id 1AlnuQ-0007hv-00 + for ; Wed, 30 Jul 2008 13:11:42 +0000 +X-Injected-Via-Gmane: http://gmane.org/ +To: debian-mentors@lists.debian.org +From: Ben Finney +Subject: Re: ftp-masters +Date: Wed, 30 Jul 2008 23:11:34 +1000 +Lines: 16 +Message-ID: <87tze7bjp5.fsf@benfinney.id.au> +References: <20080730115010.GA24515@shota.mine.nu> <200807301404.49015.t.quathamer@gmx.net> +Mime-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +X-Complaints-To: usenet@ger.gmane.org +X-Gmane-NNTP-Posting-Host: eth595.vic.adsl.internode.on.net +X-Public-Key-ID: 0xBD41714B +X-Public-Key-Fingerprint: 9CFE 12B0 791A 4267 887F 520C B7AC 2E51 BD41 714B +X-Public-Key-URL: http://www.benfinney.id.au/contact/bfinney-gpg.asc +X-Post-From: Ben Finney +User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (gnu/linux) +Cancel-Lock: sha1:DulSO9ADWWkMtaCGpjRDT9qlzro= +Sender: news +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-3 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, ONEWORD=2] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42390 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 13:12:02 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.125822 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_800_899 0, __BOUNCE_CHALLENGE_SUBJ 0, __C230066_P1_2 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __HIGHBITS 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' +X-Virus-Status: Clean +Content-Transfer-Encoding: quoted-printable +X-MIME-Autoconverted: from 8bit to quoted-printable by mailserv2.unb.ca id m6UDC4V7016101 +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +Tobias Quathamer writes: + +> You can send an email to ftpmaster@d.o and ask them to REJECT your +> package now, without doing further checks and then upload again. You +> can even re-use the same version number then. + +Though there's no good reason I can see to re-use a release number +after it's uploaded. It's not as though release numbers are a scarce +resource; just increment to the next one so there's no confusion +between the two. + +--=20 + \ =E2=80=9CDad always thought laughter was the best medicine, wh= +ich I | + `\ guess is why several of us died of tuberculosis.=E2=80=9D =E2=80=94= +Jack Handey | +_o__) | +Ben Finney + + +--=20 +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian= +.org + + diff --git a/test/in/mhdir/9 b/test/in/mhdir/9 new file mode 100644 index 000000000..c3cbd9170 --- /dev/null +++ b/test/in/mhdir/9 @@ -0,0 +1,120 @@ +From bounce-debian-mentors=bremner=unb.ca@lists.debian.org Wed Jul 30 10:16:15 2008 +Return-path: +Envelope-to: bremner@pivot.cs.unb.ca +Delivery-date: Wed, 30 Jul 2008 10:16:15 -0300 +Received: from mailserv2.unb.ca ([131.202.1.10]) + by pivot.cs.unb.ca with esmtp (Exim 4.69) + (envelope-from ) + id 1KOBXL-0005nV-TQ + for bremner@pivot.cs.unb.ca; Wed, 30 Jul 2008 10:16:15 -0300 +Received: from mx2.nbpei-ecn.ca (mx2.nbpei-ecn.ca [198.164.163.195]) + by mailserv2.unb.ca (8.13.6.20060614/8.13.6) with ESMTP id m6UDG8jI017584 + for ; Wed, 30 Jul 2008 10:16:10 -0300 +Received: from mx2.nbpei-ecn.ca (localhost.localdomain [127.0.0.1]) + by localhost (Postfix) with SMTP id 4BB0E4440BB + for ; Wed, 30 Jul 2008 10:16:08 -0300 (ADT) +Received: from liszt.debian.org (liszt.debian.org [82.195.75.100]) + by mx2.nbpei-ecn.ca (Postfix) with ESMTP id ECFFF4440B3 + for ; Wed, 30 Jul 2008 10:16:03 -0300 (ADT) +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with QMQP + id 194A313A60E2; Wed, 30 Jul 2008 13:16:02 +0000 (UTC) +Old-Return-Path: +X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on liszt.debian.org +X-Spam-Level: +X-Spam-Status: No, score=-8.4 required=4.0 tests=LDOSUBSCRIBER,LDO_WHITELIST, + ONEWORD,SARE_MSGID_LONG40 autolearn=failed version=3.2.3 +X-Original-To: lists-debian-mentors@liszt.debian.org +Delivered-To: lists-debian-mentors@liszt.debian.org +Received: from localhost (localhost [127.0.0.1]) + by liszt.debian.org (Postfix) with ESMTP id 38D7113A60CD + for ; Wed, 30 Jul 2008 13:15:55 +0000 (UTC) +Received: from liszt.debian.org ([127.0.0.1]) + by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525) + with ESMTP id 10098-58 for ; + Wed, 30 Jul 2008 13:15:52 +0000 (UTC) +Received: from rv-out-0708.google.com (rv-out-0708.google.com [209.85.198.245]) + by liszt.debian.org (Postfix) with ESMTP id CB65313A609A + for ; Wed, 30 Jul 2008 13:15:51 +0000 (UTC) +Received: by rv-out-0708.google.com with SMTP id k29so7171rvb.30 + for ; Wed, 30 Jul 2008 06:15:48 -0700 (PDT) +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=gmail.com; s=gamma; + h=domainkey-signature:received:received:message-id:date:from:to + :subject:in-reply-to:mime-version:content-type + :content-transfer-encoding:content-disposition:references; + bh=PHG4uLfQsq6cpxCbPLDLfL/M8ffjEF61U/4+S5T2qIc=; + b=FpqURWqY6wZxddht0og94RxAM3yGc50RLHoJwcYGFjEVSzXZmASwAB1nM25Qketeje + 7Epv4AqU+/7NlrVs+zumFE6XssJOX42v3NeJTxCQQ5QWfTN/mmrIKkBrWV80gzNXz2q7 + AoDP4V/wGh2lFgcruP7GrYOPN7fH3Nr7trq38= +DomainKey-Signature: a=rsa-sha1; c=nofws; + d=gmail.com; s=gamma; + h=message-id:date:from:to:subject:in-reply-to:mime-version + :content-type:content-transfer-encoding:content-disposition + :references; + b=X/mMKN6ckKnwy7IQok3XfBca1j0LxzLN/F/8dIHrewlphrT0zO0lBA2cbg61npsXLs + XFu+2r3IBC79pEIwGIrKIQ872hT0I9e5whiMdmEXPvAlsOD5m32CeWlYB2U7pBMorNx7 + KrYg0SlCSSC+ZN+9A+4wHQLM3wijYOBh8sJAc= +Received: by 10.141.129.14 with SMTP id g14mr4225154rvn.50.1217423748775; + Wed, 30 Jul 2008 06:15:48 -0700 (PDT) +Received: by 10.141.202.10 with HTTP; Wed, 30 Jul 2008 06:15:48 -0700 (PDT) +Message-ID: <8b2d7b4d0807300615m129c35f8x7789b376b958e35a@mail.gmail.com> +Date: Wed, 30 Jul 2008 15:15:48 +0200 +From: "Sandro Tosi" +To: debian-mentors +Subject: Re: ftp-masters +In-Reply-To: <87tze7bjp5.fsf@benfinney.id.au> +MIME-Version: 1.0 +Content-Type: text/plain; charset=ISO-8859-1 +Content-Transfer-Encoding: 7bit +Content-Disposition: inline +References: <20080730115010.GA24515@shota.mine.nu> + <200807301404.49015.t.quathamer@gmx.net> + <87tze7bjp5.fsf@benfinney.id.au> +X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mailserv2.unb.ca +X-Virus-Scanned: at lists.debian.org with policy bank en-lt +X-Amavis-Spam-Status: No, score=-2.363 tagged_above=3.6 required=5.3 + tests=[LDO_WHITELIST=-5, ONEWORD=2, SARE_MSGID_LONG40=0.637] +X-Rc-Virus: 2007-09-13_01 +X-Rc-Spam: 2007-10-04_01 +Resent-Message-ID: +Resent-From: debian-mentors@lists.debian.org +X-Mailing-List: archive/latest/42391 +X-Loop: debian-mentors@lists.debian.org +List-Id: +List-Post: +List-Help: +List-Subscribe: +List-Unsubscribe: +Precedence: list +Resent-Sender: debian-mentors-request@lists.debian.org +Resent-Date: Wed, 30 Jul 2008 13:16:02 +0000 (UTC) +X-PMX-Version: 5.4.2.338381, Antispam-Engine: 2.6.0.325393, Antispam-Data: 2008.7.30.130500 +X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_1000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_800_899 0, WEBMAIL_SOURCE 0, __BOUNCE_CHALLENGE_SUBJ 0, __C230066_P1_2 0, __CD 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __FRAUD_419_WEBMAIL 0, __FRAUD_419_WEBMAIL_FROM 0, __FROM_GMAIL 0, __HAS_LIST_HEADER 0, __HAS_LIST_HELP 0, __HAS_LIST_SUBSCRIBE 0, __HAS_LIST_UNSUBSCRIBE 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __PHISH_SPEAR_HTTP_RECEIVED 0, __PHISH_SPEAR_STRUCTURE_1 0, __PHISH_SPEAR_STRUCTURE_2 0, __SANE_MSGID 0, __SXL_SIG_TIMEOUT , __SXL_URI_TIMEOUT ' +X-Virus-Status: Clean +X-Sender-Verified: bounce-debian-mentors=bremner=unb.ca@lists.debian.org + +On Wed, Jul 30, 2008 at 15:11, Ben Finney wrote: +> Tobias Quathamer writes: +> +>> You can send an email to ftpmaster@d.o and ask them to REJECT your +>> package now, without doing further checks and then upload again. You +>> can even re-use the same version number then. +> +> Though there's no good reason I can see to re-use a release number +> after it's uploaded. + +Because it never reach the archive, so it's better to keep the same +version for a REJECTED package: jumping revision is useless. + +-- +Sandro Tosi (aka morph, Morpheus, matrixhasu) +My website: http://matrixhasu.altervista.org/ +Me at Debian: http://wiki.debian.org/SandroTosi + + +-- +To UNSUBSCRIBE, email to debian-mentors-REQUEST@lists.debian.org +with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org + +