Report forwarded to debian-bugs-dist@lists.debian.org, Wichert Akkerman <wakkerma@debian.org>:
Bug#77828; Package dpkg.   debian-bugs-dist@lists.debian.orgWichert Akkerman  Subject: Bug#77828: dpkg: [PATCH]: users should be able to use update-alternatives (not only root) Reply-To: Martin Quinson , 77828@bugs.debian.org Resent-From: Martin Quinson Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: Wichert Akkerman Resent-Date: Thu, 23 Nov 2000 15:05:12 GMT Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: report 77828 X-Debian-PR-Package: dpkg X-Debian-PR-Keywords: X-Loop: owner@bugs.debian.org Received: via spool by bugs@bugs.debian.org id=B.97499133327988 (code B ref -1); Thu, 23 Nov 2000 15:05:12 GMT From: Martin Quinson To: submit@bugs.debian.org X-Mailer: bug 3.3.7 Message-Id: Date: Sat, 25 Nov 2000 15:59:11 +0100 Delivered-To: submit@bugs.debian.org Package: dpkg Version: 1.7.1 Severity: wishlist Hello, Here is an (unified) patch against update-alternatives.pl as found today in the CVS. Its purpose is to allow the users to manage an "alternative" system on their account. But, don't dream, anything is not possible for users. They can just call update-alternatives for actions "--display", "--config" or "--install". So, they can't add new alternative neither remove old ones. (Doing so, I don't have to manage a DB for users) Second problem, users who want to use it will have to add to their .bashrc something like: PATH=$HOME/etc/alternatives:$PATH MANPATH=$HOME/etc/alternatives:$PATH The problem is that anything (binaries and man pages) will be mixed up in this directory (good news in the bad new: you can change the dir used). Third problem: so far, the programm is located in /usr/sbin So, you'll have to change that to give the users the ability to use it. Enough with problems. How does it work ? When you run the programm as user (uid != 0), /etc/alternatives is not changed (sure, I do not have the right to do so). It's the ~/etc/altenatives which changes. When I (as user) put an alternative to "auto", it removes the corresponding link from my subdir, putting the setting to the system-wide one by the same occasion. When I (as user) run display, I got information about my own personal setting, and about the system-wide one. When I (as user) run config, and if I got a personnal setting for this alternative, this is the default one, and it is marked by a '@'. (so, we have three column: '@' on first one for the user settings (not visible when root) '*' on second one for system-wide one '+' on third one for 'best' one Ok, I've just read that I can't make attachements to bug repports because the system dislikes MIME, so I dumbly copy/paste my patch here... >>>>>>>>>>>>>>> BEGIN OF PATCH --- DEBIAN/dpkg/scripts/update-alternatives.pl Sat Nov 25 09:58:52 2000 +++ update-alternatives.pl Sat Nov 25 15:49:00 2000 @@ -45,6 +45,7 @@ Options: --verbose|--quiet --test --help --version --altdir --admindir + --localaltdir END || &quit("failed to write usage: $!"); } @@ -103,6 +104,9 @@ } elsif (m/^--altdir$/) { @ARGV || &badusage("--altdir needs a argument"); $altdir= shift(@ARGV); + } elsif (m/^--localaltdir$/) { + @ARGV || &badusage("--localaltdir needs a argument"); + $localaltdir= shift(@ARGV); } elsif (m/^--admindir$/) { @ARGV || &badusage("--admindir needs a argument"); $admindir= shift(@ARGV); @@ -115,6 +119,19 @@ $aslavelinkcount{$alink} && &badusage("link $link is both primary and slave"); $mode || &badusage("need --display, --config, --install, --remove or --auto"); +if (getpwnam(getpwuid($<))) { # check if user is root + $mode eq "auto" || $mode eq "config" || $mode eq "display" + || &badusage("If you're not root, you're only allowed to run --config, --auto or --display"); + $localaltdir=$ENV{"HOME"}.$altdir unless $localaltdir; + $localaltdir || &quit("Unable to determine localaltdir. Giving up"); + &pr("Any changes will apply to $localaltdir.") + if $verbosemode > 0; + -e $localaltdir || &quit("$localaltdir does not exist. Please create it."); + $rootaltdir=$altdir;$altdir=$localaltdir; +} else { + $rootaltdir=''; + $localaltdir && &badusage("You can't specify a localaltdir option when running as root"); +} $mode eq 'install' || !%slavelink || &badusage("--slave only allowed with --install"); if (open(AF,"$admindir/$name")) { @@ -159,10 +176,20 @@ if ($mode eq 'display') { if (!$dataread) { - &pr("No alternatives for $name."); + &pr("No alternatives for $name."); } else { - &pr("$name - status is $manual."); - if (defined($linkname= readlink("$altdir/$name"))) { + if (getpwnam(getpwuid($<))) { + if (defined($linkname= readlink("$altdir/$name"))) { + &pr("$name - user alternative link currently points to $linkname"); + } elsif ($! == &ENOENT) { + &pr("$name - using system-wide settings"); + } + } + $tmp=getpwnam(getpwuid($<))? "\nSystem wide":"$name - "; + $tmp2=getpwnam(getpwuid($<))? " BUT DISCARDED in flavor of user settings":""; + &pr("$tmp status is $manual$tmp2."); + if ((getpwnam(getpwuid($<))&& defined($linkname = readlink("$rootaltdir/$name"))) + || defined($linkname= readlink("$altdir/$name"))) { &pr(" link currently points to $linkname"); } elsif ($! == &ENOENT) { &pr(" link currently absent"); @@ -225,6 +252,22 @@ # all independent if ($mode eq 'auto') { + if (getpwnam(getpwuid($<)) != 0) { # check if user is root + &pr("Setting up selection of $name to site setting.") + if $verbosemode > 0; + &quit("$name already set to site setting. Nothing done") + unless -e "$altdir/$name"; + &pr("You are not root: I won't change the system wide settings, but only yours.\n"); + unlink("$altdir/$name") || $! == &ENOENT || + &quit("unable to remove $altdir/$name"); + for ($j=0; $j<=$#slavenames; $j++) { + &pr("Discarding obsolete slave link $slavenames[$j] ($slavelinks[$j]).") + if $verbosemode > 0; + unlink("$altdir/$slavenames[$j]") || $! == &ENOENT || + &quit("unable to remove $slavenames[$j]: $!"); + } + exit 0; + } &pr("Setting up automatic selection of $name.") if $verbosemode > 0; unlink("$altdir/$name.dpkg-tmp") || $! == &ENOENT || @@ -366,6 +409,7 @@ # state=unexpected => manual=manual # manual=auto => state!=expected-inprogress && state!=unexpected +exit 0 if (getpwnam(getpwuid($<))); # non-root don't save the DB open(AF,">$admindir/$name.dpkg-new") || &quit("unable to open $admindir/$name.dpkg-new for write: $!"); &paf($manual); @@ -482,15 +526,32 @@ return; } printf(STDOUT "\nThere are %s programs which provide \`$name'.\n\n", $#versions+1); - printf(STDOUT " Selection Command\n"); + printf(STDOUT " Selection Command\n"); printf(STDOUT "-----------------------------------------------\n"); + $userfixed=0; for ($i=0; $i<=$#versions; $i++) { - printf(STDOUT "%s%s %s %s\n", - (readlink("$altdir/$name") eq $versions[$i]) ? '*' : ' ', + $userfixed = $userfixed || + (-e "$altdir/$name" && (readlink("$altdir/$name") eq $versions[$i])); + printf(STDOUT "%s%s%s %s %s\n", + (getpwnam(getpwuid($<)) ? #non root + (-e "$altdir/$name" && (readlink("$altdir/$name") eq $versions[$i]) ? '@' : ' ') + : # root => no user specified + ' '), + (getpwnam(getpwuid($<)) ? #non root + ((readlink("$rootaltdir/$name") eq $versions[$i]) ? '*' : ' ') + : # root + (readlink("$altdir/$name") eq $versions[$i]) ? '*' : ' '), ($best eq $versions[$i]) ? '+' : ' ', $i+1, $versions[$i]); } - printf(STDOUT "\nEnter to keep the default[*], or type selection number: "); + &pr("\n"); + + &pr("(You are not root: I won't change the system wide settings, but only yours)\n") + if (getpwnam(getpwuid($<))); + + printf(STDOUT "Enter to keep the %sdefault[%s], or type selection number: ", + (getpwnam(getpwuid($<)) ? ($userfixed ? "user-specified " : "system-wide ") : ""), + (getpwnam(getpwuid($<)) ? ($userfixed ? "@" : "*") : "*")); } sub config_alternatives { @@ -559,3 +620,8 @@ exit(0); # vim: nowrap ts=8 sw=4 + + + + + <<<<<<<<<<<<<< END OF PATCH When this is the wrong way to give a patch, please say it, and I'll resend it. Bye, Mt. -- System Information Debian Release: woody Kernel Version: Linux pixies 2.2.17 #1 Thu Sep 21 17:08:01 CEST 2000 i686 unknown Versions of the packages dpkg depends on: ii libc6 2.2-1 GNU C Library: Shared libraries and Timezone ii libncurses5 5.0-7 Shared libraries for terminal handling ii libstdc++2.10- 2.95.2-17 The GNU stdc++ library   Acknowledgement sent to Martin Quinson <mquinson@pixies.ens-lyon.fr>:
New Bug report received and forwarded. Copy sent to Wichert Akkerman <wakkerma@debian.org>.   -t  From: owner@bugs.debian.org (Debian Bug Tracking System) To: Martin Quinson Subject: Bug#77828: Acknowledgement (dpkg: [PATCH]: users should be able to use update-alternatives (not only root)) Message-ID: In-Reply-To: References: X-Debian-PR-Message: ack 77828 Thank you for the problem report you have sent regarding Debian. This is an automatically generated reply, to let you know your message has been received. It is being forwarded to the developers mailing list for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Wichert Akkerman If you wish to submit further information on your problem, please send it to 77828@bugs.debian.org (and *not* to bugs@bugs.debian.org). Please do not reply to the address at the top of this message, unless you wish to report a problem with the Bug-tracking system. Darren Benham (administrator, Debian Bugs database)   Received: (at submit) by bugs.debian.org; 23 Nov 2000 14:55:33 +0000 From mquinson@pixies.ens-lyon.fr Thu Nov 23 08:55:32 2000 Return-path: Received: from pixies.ens-lyon.fr (pixies) [140.77.13.230] (mail) by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 13yxmd-0007GO-00; Thu, 23 Nov 2000 08:55:31 -0600 Received: from mquinson by pixies with local (Exim 3.16 #1 (Debian)) id 13zgnH-0008MG-00; Sat, 25 Nov 2000 15:59:11 +0100 From: Martin Quinson Subject: dpkg: [PATCH]: users should be able to use update-alternatives (not only root) To: submit@bugs.debian.org X-Mailer: bug 3.3.7 Message-Id: Date: Sat, 25 Nov 2000 15:59:11 +0100 Delivered-To: submit@bugs.debian.org Package: dpkg Version: 1.7.1 Severity: wishlist Hello, Here is an (unified) patch against update-alternatives.pl as found today in the CVS. Its purpose is to allow the users to manage an "alternative" system on their account. But, don't dream, anything is not possible for users. They can just call update-alternatives for actions "--display", "--config" or "--install". So, they can't add new alternative neither remove old ones. (Doing so, I don't have to manage a DB for users) Second problem, users who want to use it will have to add to their .bashrc something like: PATH=$HOME/etc/alternatives:$PATH MANPATH=$HOME/etc/alternatives:$PATH The problem is that anything (binaries and man pages) will be mixed up in this directory (good news in the bad new: you can change the dir used). Third problem: so far, the programm is located in /usr/sbin So, you'll have to change that to give the users the ability to use it. Enough with problems. How does it work ? When you run the programm as user (uid != 0), /etc/alternatives is not changed (sure, I do not have the right to do so). It's the ~/etc/altenatives which changes. When I (as user) put an alternative to "auto", it removes the corresponding link from my subdir, putting the setting to the system-wide one by the same occasion. When I (as user) run display, I got information about my own personal setting, and about the system-wide one. When I (as user) run config, and if I got a personnal setting for this alternative, this is the default one, and it is marked by a '@'. (so, we have three column: '@' on first one for the user settings (not visible when root) '*' on second one for system-wide one '+' on third one for 'best' one Ok, I've just read that I can't make attachements to bug repports because the system dislikes MIME, so I dumbly copy/paste my patch here... >>>>>>>>>>>>>>> BEGIN OF PATCH --- DEBIAN/dpkg/scripts/update-alternatives.pl Sat Nov 25 09:58:52 2000 +++ update-alternatives.pl Sat Nov 25 15:49:00 2000 @@ -45,6 +45,7 @@ Options: --verbose|--quiet --test --help --version --altdir --admindir + --localaltdir END || &quit("failed to write usage: $!"); } @@ -103,6 +104,9 @@ } elsif (m/^--altdir$/) { @ARGV || &badusage("--altdir needs a argument"); $altdir= shift(@ARGV); + } elsif (m/^--localaltdir$/) { + @ARGV || &badusage("--localaltdir needs a argument"); + $localaltdir= shift(@ARGV); } elsif (m/^--admindir$/) { @ARGV || &badusage("--admindir needs a argument"); $admindir= shift(@ARGV); @@ -115,6 +119,19 @@ $aslavelinkcount{$alink} && &badusage("link $link is both primary and slave"); $mode || &badusage("need --display, --config, --install, --remove or --auto"); +if (getpwnam(getpwuid($<))) { # check if user is root + $mode eq "auto" || $mode eq "config" || $mode eq "display" + || &badusage("If you're not root, you're only allowed to run --config, --auto or --display"); + $localaltdir=$ENV{"HOME"}.$altdir unless $localaltdir; + $localaltdir || &quit("Unable to determine localaltdir. Giving up"); + &pr("Any changes will apply to $localaltdir.") + if $verbosemode > 0; + -e $localaltdir || &quit("$localaltdir does not exist. Please create it."); + $rootaltdir=$altdir;$altdir=$localaltdir; +} else { + $rootaltdir=''; + $localaltdir && &badusage("You can't specify a localaltdir option when running as root"); +} $mode eq 'install' || !%slavelink || &badusage("--slave only allowed with --install"); if (open(AF,"$admindir/$name")) { @@ -159,10 +176,20 @@ if ($mode eq 'display') { if (!$dataread) { - &pr("No alternatives for $name."); + &pr("No alternatives for $name."); } else { - &pr("$name - status is $manual."); - if (defined($linkname= readlink("$altdir/$name"))) { + if (getpwnam(getpwuid($<))) { + if (defined($linkname= readlink("$altdir/$name"))) { + &pr("$name - user alternative link currently points to $linkname"); + } elsif ($! == &ENOENT) { + &pr("$name - using system-wide settings"); + } + } + $tmp=getpwnam(getpwuid($<))? "\nSystem wide":"$name - "; + $tmp2=getpwnam(getpwuid($<))? " BUT DISCARDED in flavor of user settings":""; + &pr("$tmp status is $manual$tmp2."); + if ((getpwnam(getpwuid($<))&& defined($linkname = readlink("$rootaltdir/$name"))) + || defined($linkname= readlink("$altdir/$name"))) { &pr(" link currently points to $linkname"); } elsif ($! == &ENOENT) { &pr(" link currently absent"); @@ -225,6 +252,22 @@ # all independent if ($mode eq 'auto') { + if (getpwnam(getpwuid($<)) != 0) { # check if user is root + &pr("Setting up selection of $name to site setting.") + if $verbosemode > 0; + &quit("$name already set to site setting. Nothing done") + unless -e "$altdir/$name"; + &pr("You are not root: I won't change the system wide settings, but only yours.\n"); + unlink("$altdir/$name") || $! == &ENOENT || + &quit("unable to remove $altdir/$name"); + for ($j=0; $j<=$#slavenames; $j++) { + &pr("Discarding obsolete slave link $slavenames[$j] ($slavelinks[$j]).") + if $verbosemode > 0; + unlink("$altdir/$slavenames[$j]") || $! == &ENOENT || + &quit("unable to remove $slavenames[$j]: $!"); + } + exit 0; + } &pr("Setting up automatic selection of $name.") if $verbosemode > 0; unlink("$altdir/$name.dpkg-tmp") || $! == &ENOENT || @@ -366,6 +409,7 @@ # state=unexpected => manual=manual # manual=auto => state!=expected-inprogress && state!=unexpected +exit 0 if (getpwnam(getpwuid($<))); # non-root don't save the DB open(AF,">$admindir/$name.dpkg-new") || &quit("unable to open $admindir/$name.dpkg-new for write: $!"); &paf($manual); @@ -482,15 +526,32 @@ return; } printf(STDOUT "\nThere are %s programs which provide \`$name'.\n\n", $#versions+1); - printf(STDOUT " Selection Command\n"); + printf(STDOUT " Selection Command\n"); printf(STDOUT "-----------------------------------------------\n"); + $userfixed=0; for ($i=0; $i<=$#versions; $i++) { - printf(STDOUT "%s%s %s %s\n", - (readlink("$altdir/$name") eq $versions[$i]) ? '*' : ' ', + $userfixed = $userfixed || + (-e "$altdir/$name" && (readlink("$altdir/$name") eq $versions[$i])); + printf(STDOUT "%s%s%s %s %s\n", + (getpwnam(getpwuid($<)) ? #non root + (-e "$altdir/$name" && (readlink("$altdir/$name") eq $versions[$i]) ? '@' : ' ') + : # root => no user specified + ' '), + (getpwnam(getpwuid($<)) ? #non root + ((readlink("$rootaltdir/$name") eq $versions[$i]) ? '*' : ' ') + : # root + (readlink("$altdir/$name") eq $versions[$i]) ? '*' : ' '), ($best eq $versions[$i]) ? '+' : ' ', $i+1, $versions[$i]); } - printf(STDOUT "\nEnter to keep the default[*], or type selection number: "); + &pr("\n"); + + &pr("(You are not root: I won't change the system wide settings, but only yours)\n") + if (getpwnam(getpwuid($<))); + + printf(STDOUT "Enter to keep the %sdefault[%s], or type selection number: ", + (getpwnam(getpwuid($<)) ? ($userfixed ? "user-specified " : "system-wide ") : ""), + (getpwnam(getpwuid($<)) ? ($userfixed ? "@" : "*") : "*")); } sub config_alternatives { @@ -559,3 +620,8 @@ exit(0); # vim: nowrap ts=8 sw=4 + + + + + <<<<<<<<<<<<<< END OF PATCH When this is the wrong way to give a patch, please say it, and I'll resend it. Bye, Mt. -- System Information Debian Release: woody Kernel Version: Linux pixies 2.2.17 #1 Thu Sep 21 17:08:01 CEST 2000 i686 unknown Versions of the packages dpkg depends on: ii libc6 2.2-1 GNU C Library: Shared libraries and Timezone ii libncurses5 5.0-7 Shared libraries for terminal handling ii libstdc++2.10- 2.95.2-17 The GNU stdc++ library   Information forwarded to debian-bugs-dist@lists.debian.org, Wichert Akkerman <wakkerma@debian.org>:
Bug#77828; Package dpkg.   debian-bugs-dist@lists.debian.orgWichert Akkerman  Subject: Bug#77828: Correction of email adress Reply-To: Martin Quinson , 77828@bugs.debian.org Resent-From: Martin Quinson Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: Wichert Akkerman Resent-Date: Fri, 24 Nov 2000 15:03:02 GMT Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: report 77828 X-Debian-PR-Package: dpkg X-Debian-PR-Keywords: X-Loop: owner@bugs.debian.org Received: via spool by 77828-bugs@bugs.debian.org id=B77828.97507768718082 (code B ref 77828); Fri, 24 Nov 2000 15:03:02 GMT Date: Fri, 24 Nov 2000 15:54:35 +0100 (MET) From: Martin Quinson X-Sender: mquinson@info To: 77828@bugs.debian.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Delivered-To: 77828@bugs.debian.org Well, sorry, I sent the report from a misconfigured machine. My (valid) email is the one used in this mail. Thanks, Mt.   Acknowledgement sent to Martin Quinson <mquinson@ens-lyon.fr>:
Extra info received and forwarded to list. Copy sent to Wichert Akkerman <wakkerma@debian.org>.   -t  From: owner@bugs.debian.org (Debian Bug Tracking System) To: Martin Quinson Subject: Bug#77828: Info received (was Correction of email adress) Message-ID: In-Reply-To: References: X-Debian-PR-Message: ack-info-maintonly 77828 Thank you for the additional information you have supplied regarding this problem report. It has been forwarded to the developer(s) and to the developers mailing list to accompany the original report. Your message has been sent to the package maintainer(s): Wichert Akkerman If you wish to continue to submit further information on your problem, please send it to 77828@bugs.debian.org, as before. Please do not reply to the address at the top of this message, unless you wish to report a problem with the Bug-tracking system. Darren Benham (administrator, Debian Bugs database)   Received: (at 77828) by bugs.debian.org; 24 Nov 2000 14:54:47 +0000 From mquinson@ens-lyon.fr Fri Nov 24 08:54:47 2000 Return-path: Received: from buffalo.ens-lyon.fr [140.77.1.8] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 13zKFQ-0004hH-00; Fri, 24 Nov 2000 08:54:45 -0600 Received: from info (info [140.77.11.6]) by buffalo.ens-lyon.fr (8.9.1a/8.9.1) with ESMTP id PAA17515 for <77828@bugs.debian.org>; Fri, 24 Nov 2000 15:54:35 +0100 (MET) Date: Fri, 24 Nov 2000 15:54:35 +0100 (MET) From: Martin Quinson X-Sender: mquinson@info To: 77828@bugs.debian.org Subject: Correction of email adress Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Delivered-To: 77828@bugs.debian.org Well, sorry, I sent the report from a misconfigured machine. My (valid) email is the one used in this mail. Thanks, Mt.   Merged 77828 79292. Request was from Adam Heath <adam@doogie.org> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 23 Dec 2000 22:40:56 +0000 From adam@doogie.org Sat Dec 23 16:40:56 2000 Return-path: Received: from c304216-a.alntn1.tx.home.com (yakko) [24.4.56.191] (mail) by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 149xLK-0002vr-00; Sat, 23 Dec 2000 16:40:46 -0600 Received: from yakko (localhost) [127.0.0.1] (adam) by yakko with esmtp (Exim 3.20 1 (Debian)) id 149xL9-00057Q-00; Sat, 23 Dec 2000 16:40:35 -0600 Date: Sat, 23 Dec 2000 16:40:35 -0600 (CST) From: Adam Heath X-Sender: adam@yakko To: control@bugs.debian.org Subject: So it is written, so it shall be done. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Delivered-To: control@bugs.debian.org merge 77828 79292 thanks ----BEGIN GEEK CODE BLOCK---- Version: 3.12 GCS d- s: a-- c+++ UL++++ P+ L++++ !E W+ M o+ K- W--- !O M- !V PS-- PE++ Y+ PGP++ t* 5++ X+ tv b+ D++ G e h*! !r z? -----END GEEK CODE BLOCK----- ----BEGIN PGP INFO---- Adam Heath Finger Print | KeyID 67 01 42 93 CA 37 FB 1E 63 C9 80 1D 08 CF 84 0A | DE656B05 PGP AD46 C888 F587 F8A3 A6DA 3261 8A2C 7DC2 8BD4 A489 | 8BD4A489 GPG -----END PGP INFO-----   Tags added: patch Request was from Adam Heath <adam@doogie.org> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 23 Dec 2000 22:41:37 +0000 From adam@doogie.org Sat Dec 23 16:41:37 2000 Return-path: Received: from c304216-a.alntn1.tx.home.com (yakko) [24.4.56.191] (mail) by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 149xLz-0002wZ-00; Sat, 23 Dec 2000 16:41:27 -0600 Received: from yakko (localhost) [127.0.0.1] (adam) by yakko with esmtp (Exim 3.20 1 (Debian)) id 149xLp-00057d-00; Sat, 23 Dec 2000 16:41:17 -0600 Date: Sat, 23 Dec 2000 16:41:17 -0600 (CST) From: Adam Heath X-Sender: adam@yakko To: control@bugs.debian.org Subject: and another Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Delivered-To: control@bugs.debian.org tag 77828 patch ----BEGIN GEEK CODE BLOCK---- Version: 3.12 GCS d- s: a-- c+++ UL++++ P+ L++++ !E W+ M o+ K- W--- !O M- !V PS-- PE++ Y+ PGP++ t* 5++ X+ tv b+ D++ G e h*! !r z? -----END GEEK CODE BLOCK----- ----BEGIN PGP INFO---- Adam Heath Finger Print | KeyID 67 01 42 93 CA 37 FB 1E 63 C9 80 1D 08 CF 84 0A | DE656B05 PGP AD46 C888 F587 F8A3 A6DA 3261 8A2C 7DC2 8BD4 A489 | 8BD4A489 GPG -----END PGP INFO-----   Merged 77828 79292. Request was from wichert@cistron.nl (Wichert Akkerman) to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 25 Dec 2000 16:17:34 +0000 From wichert@cistron.nl Mon Dec 25 10:17:34 2000 Return-path: Received: from soong.cistron.net (smtp.cistron.nl) [195.64.68.35] (mail) by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 14AaJa-0004ns-00; Mon, 25 Dec 2000 10:17:34 -0600 Received: from cabal.wiggy.net ([195.64.66.141] helo=lightning.mors.wiggy.net) by smtp.cistron.nl with esmtp (Exim 3.13 #1 (Debian)) id 14AaJZ-0002ep-00 for ; Mon, 25 Dec 2000 17:17:33 +0100 Received: from tornado.mors.wiggy.net (postfix@tornado.mors.wiggy.net [192.168.1.50]) by lightning.mors.wiggy.net (8.11.0.Beta1/8.11.0.Beta1/Debian 8.11.0-1) with ESMTP id eBPGCNE04665 for ; Mon, 25 Dec 2000 17:12:24 +0100 Received: by tornado.mors.wiggy.net (Postfix, from userid 1000) id 8747049088; Mon, 25 Dec 2000 17:12:23 +0100 (CET) To: control@bugs.debian.org Message-Id: <20001225161223.8747049088@tornado.mors.wiggy.net> Date: Mon, 25 Dec 2000 17:12:23 +0100 (CET) From: wichert@cistron.nl (Wichert Akkerman) Delivered-To: control@bugs.debian.org merge 77828 79292   Merged 77828 79292 79941. Request was from Christian Marillat <marillat@debian.org> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 23 Dec 2001 14:41:43 +0000 From marillat@wanadoo.fr Sun Dec 23 08:41:43 2001 Return-path: Received: from smtp-rt-7.wanadoo.fr (embelia.wanadoo.fr) [193.252.19.161] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 16I9ot-000814-00; Sun, 23 Dec 2001 08:41:43 -0600 Received: from mel-rta10.wanadoo.fr (193.252.19.193) by embelia.wanadoo.fr; 23 Dec 2001 15:41:12 +0100 Received: from falcon.wanadoo.fr (217.128.202.78) by mel-rta10.wanadoo.fr; 23 Dec 2001 15:40:52 +0100 Received: from marillat by falcon.wanadoo.fr with local (Exim 3.33 #1 (Debian)) id 16I9nz-0002ho-00 for ; Sun, 23 Dec 2001 15:40:47 +0100 From: Christian Marillat To: control@bugs.debian.org Subject: merging 79941 77828 Date: Sun, 23 Dec 2001 15:40:47 +0100 Message-Id: Sender: Christian Marillat Delivered-To: control@bugs.debian.org merge 79941 77828   Changed Bug title. Request was from Adam Heath <doogie@brainfood.com> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 13 Sep 2003 23:13:40 +0000 From doogie@brainfood.com Sat Sep 13 18:13:37 2003 Return-path: Received: from boof.brainfood.com (gradall.private.brainfood.com) [146.82.138.61] by master.debian.org with esmtp (Exim 3.35 1 (Debian)) id 19yJaD-0000J6-00; Sat, 13 Sep 2003 18:13:37 -0500 Received: from localhost ([127.0.0.1] ident=adam) by gradall.private.brainfood.com with esmtp (Exim 3.35 #1 (Debian)) id 19yJaC-0003p3-00 for ; Sat, 13 Sep 2003 18:13:36 -0500 Date: Sat, 13 Sep 2003 18:13:35 -0500 (CDT) From: Adam Heath X-X-Sender: adam@gradall.private.brainfood.com To: control@bugs.debian.org Subject: retitling Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Delivered-To: control@bugs.debian.org X-Spam-Status: No, hits=3.0 required=4.0 tests=HTML_MESSAGE version=2.53-bugs.debian.org_2003_9_13 X-Spam-Level: *** X-Spam-Checker-Version: SpamAssassin 2.53-bugs.debian.org_2003_9_13 (1.174.2.15-2003-03-30-exp) retitle 206163 [DOC] /usr/share/man/man8/dselect.8.gz: mention dselect update as the prefered way to keep the available fresh retitle 207758 [INTL] completed dutch po file retitle 208014 [DOC] dpkg: Improvements to the update-alternatives manpage retitle 197177 [ARCH] dpkg support for /lib64 and /usr/lib64 locations on 64 bit platforms retitle 196158 [ARCH] dpkg: support for GNU/FreeBSD in retitle 166052 [INTL] Updated spanish translation retitle 165843 [INTL] Please localize perl programs as well. retitle 164906 [INTL] dpkg: add deb.5 french translation retitle 154633 [DOC] install-info: --help should use stdout retitle 154277 [ARCH] OpenBSD patch retitle 153096 [DOC] dpkg: -S on man page should further metion what it wont find retitle 134358 [INTL] dpkg: german translation: bad grammar retitle 133745 [U-A] dpkg: [patch] update-alternatives is not scriptable retitle 126621 [U-A] [patch] update-alternatives --all (configure all) retitle 115759 [DOC] man-page update-alternatives(8) SuX0r retitle 110520 [DOC] dpkg manpage over 3 years old retitle 100135 [U-A] dpkg: update-alternatives should create the -> /etc/alternatives/ link anyway retitle 87677 [U-A] problems with update-alternatives when link no longer exists retitle 77828 [U-A] dpkg: [PATCH]: users should be able to use update-alternatives (not only root) retitle 76295 [U-A] update-alternative doesn't check consistency if only one alternative retitle 61156 [DOC] document the fact that dpkg downgrades without checking dependencies retitle 48895 [U-A] problems with update-alternatives retitle 24514 [ARCH] 3 diff's to compile dpkg-1.4.0.24 on HP-UX retitle 208894 [DOC] dpkg: start-stop-daemon printing (null) as process-name retitle 207259 [DOC] dpkg-dev: typo in dpkg-source(1) retitle 206164 [DOC] /usr/share/man/man8/dselect.8.gz: "dselect is the primary user interface for managing packages on a Debian system." retitle 204123 [DOC] typo in manpage for dpkg-buildpackage -nc retitle 203582 [U-A] dpkg: links to /etc/alternatives not generated if alternatives exit already retitle 203560 [U-A] /etc/alternatives/README: some alternatives are a big mystery retitle 203557 [U-A] /usr/sbin/update-alternatives: prompt unclear retitle 199204 [INTL] install-info: gives a hint only when using english retitle 192972 [INTL] dselect: Danish translation of dselect retitle 192102 [INTL] dselect: cosmetic problem, item 3 on pt_BR retitle 189492 [DOC] start-stop-daemon: manpage incorrect for --nicelevel retitle 187952 [INTL] dpkg: German translation for a warning isn't right retitle 183840 [DOC] dpkg-dev: word repeated in deb-control(5) retitle 183164 [DOC] dpkg: start-stop-daemon man page -- doesn't show shortened --exec syntax retitle 179648 [DOC] dpkg: Error in update-alternatives(8) man page re: --install args retitle 175770 [DOC] dpkg-dev: dpkg-scansources man page "prog" retitle 174971 [DOC] dpkg(8) should point the user towards retitle 173463 [DOC] dpkg-dev: deb-control(5) does not document Bugs: and Origin: retitle 171489 [INTL] dpkg: Spanish manpages available retitle 168500 [DOC] dpkg: --help show unpaired pairs retitle 167426 [DOC] dpkg-dev: typo in man page for dpkg-buildpackage: "imlies" retitle 165099 [DOC] dpkg man page: --no-act non-optimal retitle 163621 [DOC] dpkg-architecture documentation wrong retitle 162897 [INTL] dpkg: [l10n:fr] missing space in downgrading message retitle 162154 [INTL] dpkg: translation in french for diverted package is unclear retitle 161819 [DOC] dpkg-dev: Small typo in deb-control(5) retitle 157973 [DOC] dselect: man page out of date retitle 157819 [INTL] typo in dpkg --force-help (LANG=ja_JP.EUC-JP) retitle 155822 [DOC] dpkg-parsechangelog: s/dpkg-source/dpkg-parsechangelog/ in help retitle 151845 [DOC] dpkg: typo in dpkg-source(1) retitle 151799 [INTL] small mistake in Dutch translation retitle 151578 [DOC] dselect: help screen isn't updated retitel 150642 [DOC] Small typo in dpkg-deb retitle 149142 [INTL] dpkg: missing space in french l10n message retitle 142370 [INTL] dpkg: update for Polish translation retitle 140695 [DOC] Incorrect info in dpkg-divert man page retitle 138244 [INTL] dpkg: Typo in italina po file retitle 137315 [U-A] dpkg: update-alternatives: creation of `link' doesn't respect `Replaces:'. retitle 137313 [U-A] dpkg: update-alternatives: various minor reporting bugs retitle 127342 [DOC] start-stop-daemon: Reference in man page to nonexistent '--group' option. retitle 126068 [DOC] minor typo in dpkg-divert(8) retitle 122910 [DOC] Debian Packaging Manual is obsolete retitle 120970 [DOC] dpkg-doc description refers to MIA packaging-manual retitle 117518 [INTL] incorrect warnings in Czech translation retitle 115352 [INTL] German translation for "suggests" seems crude retitle 112057 [INTL] dpkg: Polish translation correction retitle 111711 [INTL] dpkg: Wording error in description for -O in dpkg(8) retitle 109669 [INTL] German translation for "suggests" is far from perfect retitle 102094 [INTL] Dutch translation has issues retitle 98822 [U-A] dpkg: update-alternatives is noisy when fixing old slave symlinks that were broken due to past update-alternatives brain-damage retitle 91348 [DOC] dpkg: desinformation regarding /usr/share/doc/dpkg/THANKS retitle 64471 [DOC] dpkg(1) refers to nonexistent info pages retitle 208992 [INTL] dselect: German localization broken retitle 199360 [ARCH] Please add alphaev68-linux-gnu to the archtable retitle 192954 [U-A] dpkg: update-alternatives doesn't work when cd'd to a directory root can't write to retitle 175236 [DOC] dpkg: man page should suggest how to install selected packages retitle 173205 [ARCH] dpkg-dev: dpkg-architecture revert to i386 retitle 169619 [DOC] dpkg: documents unavailable --command-fd option retitle 166812 [DOC] pt_BR manpage installs at wrong place retitle 158973 [U-A] update-alternatives: resets state to "auto" after preventive removing of non-existent binary retitle 144515 [ARCH] dpkg --print-architecture on i386 sometimes prints i386-none retitle 141325 [U-A] lam-runtime: the link /etc/alternatives/mpirun ends up pointing to /usr/bin/mpirun_lam retitle 115655 [ARCH] dpkg-architecture outputs non-canonical GNU system type retitle 114946 [DOC] dpkg-scan* man pages: section8 -> section1? retitle 99870 [U-A] "Invalid cross-device link" error from update-alternatives retitle 85502 [U-A] update-alternatives: old broken link shouldn't force manual mode retitle 80144 [U-A] dpkg: bad times when replacing an alternative with a single file retitle 37254 [U-A] update-alternatives: don't go to manual mode when targets missing retitle 164214 [U-A] dpkg: update-alternatives still wrong, methinks retitle 143302 [U-A] /usr/man/man1 missing, update-alternatives dies thanks   Changed Bug title. Request was from Martin Quinson <mquinson@ens-lyon.fr> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 16 Sep 2003 06:42:53 +0000 From mquinson@ens-lyon.fr Tue Sep 16 01:42:50 2003 Return-path: Received: from wifi247.wlan.ens-lyon.fr (localhost) [140.77.32.247] by master.debian.org with esmtp (Exim 3.35 1 (Debian)) id 19z9Y2-0008LU-00; Tue, 16 Sep 2003 01:42:50 -0500 Received: from mquinson by localhost with local (Exim 3.36 #1 (Debian)) id 19z9Y0-0001h9-00; Tue, 16 Sep 2003 08:42:48 +0200 Date: Tue, 16 Sep 2003 08:42:48 +0200 To: control@bugs.debian.org Cc: debian-dpkg@lists.debian.org Subject: Remove the [PATCH] pseudo-tag since there is a real tag for it Message-ID: <20030916064248.GI4781@galadriel> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.4i From: Martin Quinson Delivered-To: control@bugs.debian.org X-Spam-Status: No, hits=0.0 required=4.0 tests=none version=2.53-bugs.debian.org_2003_9_14 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.53-bugs.debian.org_2003_9_14 (1.174.2.15-2003-03-30-exp) retitle 62529 Support binary only recompilations retitle 53393 dpkg now uses itself to build tag 53393 patch retitle 74259 [PERF] dpkg: a couple of memory leaks retitle 48208 dpkg-shlibdeps can't cope with bins linked against libfoo.so retitle 77828 [U-A] users should be able to use u-a (not only root) retitle 112824 dpkg-signpackage   Blocking bugs added: 216606 Request was from Guillem Jover <guillem@debian.org> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 16 Jun 2006 06:59:29 +0000 From guillem@hadrons.org Thu Jun 15 23:59:29 2006 Return-path: Received: from 159.red-81-184-118.user.auna.net ([81.184.118.159] helo=pulsar.hadrons.org) by spohr.debian.org with esmtp (Exim 4.50) id 1Fr8Ij-0005N9-56 for control@bugs.debian.org; Thu, 15 Jun 2006 23:59:29 -0700 Received: from guillem by pulsar.hadrons.org with local (Exim 4.50) id 1Fr8LP-0005gf-Rm for control@bugs.debian.org; Fri, 16 Jun 2006 09:02:16 +0200 Date: Fri, 16 Jun 2006 09:59:41 +0300 From: Guillem Jover To: control@bugs.debian.org Subject: control and command Message-ID: <20060616065941.GB30082@zulo.hadrons.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11+cvs20060403 Delivered-To: control@bugs.debian.org X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-5.0 required=4.0 tests=BAYES_00,VALID_BTS_CONTROL autolearn=no version=2.60-bugs.debian.org_2005_01_02 severity 367251 minor merge 367251 367254 367255 merge 372812 367052 block 77828 by 216606 reopen 336669 close 336669 1.13.19 thanks   Changed Bug submitter from Martin Quinson <mquinson@pixies.ens-lyon.fr> to Martin Quinson <mquinson@ens-lyon.fr>. Request was from Raphael Hertzog <hertzog@debian.org> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 1 Jun 2008 17:29:19 +0000 From raphael@ouaza.com Sun Jun 01 17:29:19 2008 X-Spam-Checker-Version: SpamAssassin 3.1.4-bugs.debian.org_2005_01_02 (2006-07-26) on rietz.debian.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=4.0 tests=BAYES_00,FROMDEVELOPER, MDO_AUTORESP3,VALID_BTS_CONTROL autolearn=no version=3.1.4-bugs.debian.org_2005_01_02 Return-path: Received: from arrakeen.ouaza.com ([212.85.152.62]) by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1K2rMs-000845-QF for control@bugs.debian.org; Sun, 01 Jun 2008 17:29:19 +0000 Received: from localhost (localhost [127.0.0.1]) by arrakeen.ouaza.com (Postfix) with ESMTP id 0E85433269 for ; Sun, 1 Jun 2008 19:29:13 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at ouaza.com Received: from arrakeen.ouaza.com ([127.0.0.1]) by localhost (arrakeen.ouaza.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 1K5z57HxSUNt for ; Sun, 1 Jun 2008 19:29:12 +0200 (CEST) Received: from soleymieux.ouaza.com (soleymieux.ouaza.com [81.56.130.55]) by arrakeen.ouaza.com (Postfix) with ESMTP id D10B233261 for ; Sun, 1 Jun 2008 19:29:12 +0200 (CEST) Received: by soleymieux.ouaza.com (Postfix, from userid 1000) id D87E48F2E6; Sun, 1 Jun 2008 19:29:10 +0200 (CEST) From: Raphael Hertzog To: control@bugs.debian.org Subject: submitter 77828 Date: Sun, 01 Jun 2008 19:29:10 +0200 X-BTS-Version: 2.10.28 Message-ID: <1212341350-2745-bts-hertzog@debian.org> Delivered-To: control@bugs.debian.org # Automatically generated email from bts, devscripts version 2.10.28 submitter 77828 Martin Quinson   Information forwarded to debian-bugs-dist@lists.debian.org, Dpkg Developers <debian-dpkg@lists.debian.org>:
Bug#77828; Package dpkg.   debian-bugs-dist@lists.debian.orgDpkg Developers  X-Loop: owner@bugs.debian.org Subject: Bug#77828: dpkg: [PATCH]: users should be able to use update-alternatives (not only root) Reply-To: Raphael Hertzog , 77828@bugs.debian.org Resent-From: Raphael Hertzog Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: Dpkg Developers Resent-Date: Sun, 06 Jul 2008 15:54:05 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: followup 77828 X-Debian-PR-Package: dpkg X-Debian-PR-Keywords: patch X-Debian-PR-Source: dpkg Received: via spool by 77828-submit@bugs.debian.org id=B77828.121535937231496 (code B ref 77828); Sun, 06 Jul 2008 15:54:05 +0000 Received: (at 77828) by bugs.debian.org; 6 Jul 2008 15:49:32 +0000 X-Spam-Checker-Version: SpamAssassin 3.1.4-bugs.debian.org_2005_01_02 (2006-07-26) on rietz.debian.org X-Spam-Level: X-Spam-Status: No, score=-10.9 required=4.0 tests=BAYES_00,FOURLA, FROMDEVELOPER,HAS_BUG_NUMBER,MURPHY_DRUGS_REL8,VALID_BTS_CONTROL autolearn=no version=3.1.4-bugs.debian.org_2005_01_02 Received: from arrakeen.ouaza.com ([212.85.152.62]) by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1KFWUW-0007zj-Dt; Sun, 06 Jul 2008 15:49:32 +0000 Received: from localhost (localhost [127.0.0.1]) by arrakeen.ouaza.com (Postfix) with ESMTP id A51C633356; Sun, 6 Jul 2008 17:49:26 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at ouaza.com Received: from arrakeen.ouaza.com ([127.0.0.1]) by localhost (arrakeen.ouaza.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id N9YwMoyNaCTl; Sun, 6 Jul 2008 17:49:26 +0200 (CEST) Received: from soleymieux.ouaza.com (soleymieux.ouaza.com [81.56.130.55]) by arrakeen.ouaza.com (Postfix) with ESMTP id 7326133355; Sun, 6 Jul 2008 17:49:26 +0200 (CEST) Received: by soleymieux.ouaza.com (Postfix, from userid 1000) id E458D4BB9F; Sun, 6 Jul 2008 17:49:25 +0200 (CEST) Date: Sun, 6 Jul 2008 17:49:25 +0200 From: Raphael Hertzog To: Martin Quinson , 77828@bugs.debian.org Message-ID: <20080706154925.GA22180@ouaza.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Content-Transfer-Encoding: quoted-printable X-CrossAssassin-Score: 2 tags 77828 - patch tags 77828 + wontfix thanks On Sat, 25 Nov 2000, Martin Quinson wrote: > Here is an (unified) patch against update-alternatives.pl as found toda= y in > the CVS. Its purpose is to allow the users to manage an "alternative" s= ystem > on their account. I'm not really inclined to support such a feature. I have yet to see a valid use case. When the user wants to override a system-wide setting, there are already dozens of solutions going from using some environment variable to changing the PATH so that ~/bin/ is looked first. And ~/bin/ can contain symlinks corresponding to the various name of alternatives and have them point to their program of choice. Cheers, --=20 Rapha=EBl Hertzog Le best-seller fran=E7ais mis =E0 jour pour Debian Etch : http://www.ouaza.com/livre/admin-debian/   Acknowledgement sent to Raphael Hertzog <hertzog@debian.org>:
Extra info received and forwarded to list. Copy sent to Dpkg Developers <debian-dpkg@lists.debian.org>.   -t  Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.420 (Entity 5.420) Content-Type: text/plain; charset=utf-8 X-Loop: owner@bugs.debian.org From: owner@bugs.debian.org (Debian Bug Tracking System) To: Raphael Hertzog Subject: Bug#77828: Info received (Bug#77828: dpkg: [PATCH]: users should be able to use update-alternatives (not only root)) Message-ID: References: <20080706154925.GA22180@ouaza.com> X-Debian-PR-Message: ack-info 77828 X-Debian-PR-Package: dpkg X-Debian-PR-Keywords: patch X-Debian-PR-Source: dpkg Reply-To: 77828@bugs.debian.org Thank you for the additional information you have supplied regarding this Bug report. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Dpkg Developers If you wish to submit further information on this problem, please send it to 77828@bugs.debian.org, as before. Please do not send mail to owner@bugs.debian.org unless you wish to report a problem with the Bug-tracking system. --=20 77828: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D77828 Debian Bug Tracking System Contact owner@bugs.debian.org with problems   Received: (at 77828) by bugs.debian.org; 6 Jul 2008 15:49:32 +0000 From raphael@ouaza.com Sun Jul 06 15:49:32 2008 X-Spam-Checker-Version: SpamAssassin 3.1.4-bugs.debian.org_2005_01_02 (2006-07-26) on rietz.debian.org X-Spam-Level: X-Spam-Status: No, score=-10.9 required=4.0 tests=BAYES_00,FOURLA, FROMDEVELOPER,HAS_BUG_NUMBER,MURPHY_DRUGS_REL8,VALID_BTS_CONTROL autolearn=no version=3.1.4-bugs.debian.org_2005_01_02 Return-path: Received: from arrakeen.ouaza.com ([212.85.152.62]) by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1KFWUW-0007zj-Dt; Sun, 06 Jul 2008 15:49:32 +0000 Received: from localhost (localhost [127.0.0.1]) by arrakeen.ouaza.com (Postfix) with ESMTP id A51C633356; Sun, 6 Jul 2008 17:49:26 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at ouaza.com Received: from arrakeen.ouaza.com ([127.0.0.1]) by localhost (arrakeen.ouaza.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id N9YwMoyNaCTl; Sun, 6 Jul 2008 17:49:26 +0200 (CEST) Received: from soleymieux.ouaza.com (soleymieux.ouaza.com [81.56.130.55]) by arrakeen.ouaza.com (Postfix) with ESMTP id 7326133355; Sun, 6 Jul 2008 17:49:26 +0200 (CEST) Received: by soleymieux.ouaza.com (Postfix, from userid 1000) id E458D4BB9F; Sun, 6 Jul 2008 17:49:25 +0200 (CEST) Date: Sun, 6 Jul 2008 17:49:25 +0200 From: Raphael Hertzog To: Martin Quinson , 77828@bugs.debian.org Subject: Re: Bug#77828: dpkg: [PATCH]: users should be able to use update-alternatives (not only root) Message-ID: <20080706154925.GA22180@ouaza.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Content-Transfer-Encoding: quoted-printable X-CrossAssassin-Score: 2 tags 77828 - patch tags 77828 + wontfix thanks On Sat, 25 Nov 2000, Martin Quinson wrote: > Here is an (unified) patch against update-alternatives.pl as found toda= y in > the CVS. Its purpose is to allow the users to manage an "alternative" s= ystem > on their account. I'm not really inclined to support such a feature. I have yet to see a valid use case. When the user wants to override a system-wide setting, there are already dozens of solutions going from using some environment variable to changing the PATH so that ~/bin/ is looked first. And ~/bin/ can contain symlinks corresponding to the various name of alternatives and have them point to their program of choice. Cheers, --=20 Rapha=EBl Hertzog Le best-seller fran=E7ais mis =E0 jour pour Debian Etch : http://www.ouaza.com/livre/admin-debian/   Tags removed: patch Request was from Raphael Hertzog <hertzog@debian.org> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 6 Jul 2008 15:49:32 +0000 From raphael@ouaza.com Sun Jul 06 15:49:32 2008 X-Spam-Checker-Version: SpamAssassin 3.1.4-bugs.debian.org_2005_01_02 (2006-07-26) on rietz.debian.org X-Spam-Level: X-Spam-Status: No, score=-10.9 required=4.0 tests=BAYES_00,FOURLA, FROMDEVELOPER,HAS_BUG_NUMBER,MURPHY_DRUGS_REL8,VALID_BTS_CONTROL autolearn=no version=3.1.4-bugs.debian.org_2005_01_02 Return-path: Received: from arrakeen.ouaza.com ([212.85.152.62]) by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1KFWUW-0007zj-Dt; Sun, 06 Jul 2008 15:49:32 +0000 Received: from localhost (localhost [127.0.0.1]) by arrakeen.ouaza.com (Postfix) with ESMTP id A51C633356; Sun, 6 Jul 2008 17:49:26 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at ouaza.com Received: from arrakeen.ouaza.com ([127.0.0.1]) by localhost (arrakeen.ouaza.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id N9YwMoyNaCTl; Sun, 6 Jul 2008 17:49:26 +0200 (CEST) Received: from soleymieux.ouaza.com (soleymieux.ouaza.com [81.56.130.55]) by arrakeen.ouaza.com (Postfix) with ESMTP id 7326133355; Sun, 6 Jul 2008 17:49:26 +0200 (CEST) Received: by soleymieux.ouaza.com (Postfix, from userid 1000) id E458D4BB9F; Sun, 6 Jul 2008 17:49:25 +0200 (CEST) Date: Sun, 6 Jul 2008 17:49:25 +0200 From: Raphael Hertzog To: Martin Quinson , 77828@bugs.debian.org Subject: Re: Bug#77828: dpkg: [PATCH]: users should be able to use update-alternatives (not only root) Message-ID: <20080706154925.GA22180@ouaza.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Content-Transfer-Encoding: quoted-printable Delivered-To: control@bugs.debian.org tags 77828 - patch tags 77828 + wontfix thanks On Sat, 25 Nov 2000, Martin Quinson wrote: > Here is an (unified) patch against update-alternatives.pl as found toda= y in > the CVS. Its purpose is to allow the users to manage an "alternative" s= ystem > on their account. I'm not really inclined to support such a feature. I have yet to see a valid use case. When the user wants to override a system-wide setting, there are already dozens of solutions going from using some environment variable to changing the PATH so that ~/bin/ is looked first. And ~/bin/ can contain symlinks corresponding to the various name of alternatives and have them point to their program of choice. Cheers, --=20 Rapha=EBl Hertzog Le best-seller fran=E7ais mis =E0 jour pour Debian Etch : http://www.ouaza.com/livre/admin-debian/   Tags added: wontfix Request was from Raphael Hertzog <hertzog@debian.org> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 6 Jul 2008 15:49:32 +0000 From raphael@ouaza.com Sun Jul 06 15:49:32 2008 X-Spam-Checker-Version: SpamAssassin 3.1.4-bugs.debian.org_2005_01_02 (2006-07-26) on rietz.debian.org X-Spam-Level: X-Spam-Status: No, score=-10.9 required=4.0 tests=BAYES_00,FOURLA, FROMDEVELOPER,HAS_BUG_NUMBER,MURPHY_DRUGS_REL8,VALID_BTS_CONTROL autolearn=no version=3.1.4-bugs.debian.org_2005_01_02 Return-path: Received: from arrakeen.ouaza.com ([212.85.152.62]) by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1KFWUW-0007zj-Dt; Sun, 06 Jul 2008 15:49:32 +0000 Received: from localhost (localhost [127.0.0.1]) by arrakeen.ouaza.com (Postfix) with ESMTP id A51C633356; Sun, 6 Jul 2008 17:49:26 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at ouaza.com Received: from arrakeen.ouaza.com ([127.0.0.1]) by localhost (arrakeen.ouaza.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id N9YwMoyNaCTl; Sun, 6 Jul 2008 17:49:26 +0200 (CEST) Received: from soleymieux.ouaza.com (soleymieux.ouaza.com [81.56.130.55]) by arrakeen.ouaza.com (Postfix) with ESMTP id 7326133355; Sun, 6 Jul 2008 17:49:26 +0200 (CEST) Received: by soleymieux.ouaza.com (Postfix, from userid 1000) id E458D4BB9F; Sun, 6 Jul 2008 17:49:25 +0200 (CEST) Date: Sun, 6 Jul 2008 17:49:25 +0200 From: Raphael Hertzog To: Martin Quinson , 77828@bugs.debian.org Subject: Re: Bug#77828: dpkg: [PATCH]: users should be able to use update-alternatives (not only root) Message-ID: <20080706154925.GA22180@ouaza.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Content-Transfer-Encoding: quoted-printable Delivered-To: control@bugs.debian.org tags 77828 - patch tags 77828 + wontfix thanks On Sat, 25 Nov 2000, Martin Quinson wrote: > Here is an (unified) patch against update-alternatives.pl as found toda= y in > the CVS. Its purpose is to allow the users to manage an "alternative" s= ystem > on their account. I'm not really inclined to support such a feature. I have yet to see a valid use case. When the user wants to override a system-wide setting, there are already dozens of solutions going from using some environment variable to changing the PATH so that ~/bin/ is looked first. And ~/bin/ can contain symlinks corresponding to the various name of alternatives and have them point to their program of choice. Cheers, --=20 Rapha=EBl Hertzog Le best-seller fran=E7ais mis =E0 jour pour Debian Etch : http://www.ouaza.com/livre/admin-debian/   Information forwarded to debian-bugs-dist@lists.debian.org, Dpkg Developers <debian-dpkg@lists.debian.org>:
Bug#77828; Package dpkg.   debian-bugs-dist@lists.debian.orgDpkg Developers  X-Loop: owner@bugs.debian.org Subject: Bug#77828: dpkg: [PATCH]: users should be able to use update-alternatives (not only root) Reply-To: Michelle Konzack , 77828@bugs.debian.org Resent-From: Michelle Konzack Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: Dpkg Developers Resent-Date: Fri, 11 Jul 2008 17:12:02 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: followup 77828 X-Debian-PR-Package: dpkg X-Debian-PR-Keywords: wontfix X-Debian-PR-Source: dpkg Received: via spool by 77828-submit@bugs.debian.org id=B77828.12157962897826 (code B ref 77828); Fri, 11 Jul 2008 17:12:02 +0000 Received: (at 77828) by bugs.debian.org; 11 Jul 2008 17:11:29 +0000 X-Spam-Checker-Version: SpamAssassin 3.1.4-bugs.debian.org_2005_01_02 (2006-07-26) on rietz.debian.org X-Spam-Level: X-Spam-Status: No, score=-6.7 required=4.0 tests=BAYES_00,FORGED_RCVD_HELO, FOURLA,HAS_BUG_NUMBER,MURPHY_DRUGS_REL8 autolearn=no version=3.1.4-bugs.debian.org_2005_01_02 Received: from server4.pinguin-hosting.de ([88.198.11.108]) by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1KHM9Y-00021n-Dg for 77828@bugs.debian.org; Fri, 11 Jul 2008 17:11:28 +0000 Received: from tp570.private.tamay-dogan.net (lec67-1-81-56-104-13.fbx.proxad.net [81.56.104.13]) (Authenticated sender: linux4michelle@tamay-dogan.net) by server4.pinguin-hosting.de (Postfix) with ESMTP id 0709E57BFCD; Fri, 11 Jul 2008 19:11:32 +0200 (CEST) Received: by tp570.private.tamay-dogan.net (sSMTP sendmail emulation); Fri, 11 Jul 2008 19:11:09 +0200 Received: by tp570.private.tamay-dogan.net (TDSSMTP outspool); Fri, 11 Jul 2008 14:36:46 +0200 Date: Fri, 11 Jul 2008 14:36:45 +0200 From: Michelle Konzack To: Raphael Hertzog , 77828@bugs.debian.org Message-ID: <20080711123645.GB24649@freenet.de> References: <20080706154925.GA22180@ouaza.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="rS8CxjVDS/+yyDmU" Content-Disposition: inline In-Reply-To: <20080706154925.GA22180@ouaza.com> X-PTS-Approved: linux4michelle@tamay-dogan.net User-Agent: Mutt/1.5.9i --rS8CxjVDS/+yyDmU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hallo Raphael and *, Am 2008-07-06 17:49:25, schrieb Raphael Hertzog: > tags 77828 - patch > tags 77828 + wontfix > thanks >=20 > On Sat, 25 Nov 2000, Martin Quinson wrote: > > Here is an (unified) patch against update-alternatives.pl as found toda= y in > > the CVS. Its purpose is to allow the users to manage an "alternative" s= ystem > > on their account. >=20 > I'm not really inclined to support such a feature. I have yet to see a > valid use case. >=20 > When the user wants to override a system-wide setting, there are already > dozens of solutions going from using some environment variable to > changing the PATH so that ~/bin/ is looked first. And ~/bin/ can contain > symlinks corresponding to the various name of alternatives and have them > point to their program of choice. I would support this whishlist bug since update-alternatives.pl support already an infrastructure and yes, ~/bin should be used. I have written for some time an tool which is based on "update-alternatives" Not sure for now (no fsck Web-Access currently), but AFAIK I have it as Debian Package on my website and use (X)dialog which can easyly used under the X-Window-System. I have writen it, because there are "noobs" which are USER-ONLY and have no clue about system configuration. So my Xdialog Tool has helped many peoples already, even it is very simple coded. Thanks, Greetings and nice Day/Evening Michelle Konzack Systemadministrator 24V Electronic Engineer Tamay Dogan Network Debian GNU/Linux Consultant --=20 Linux-User #280138 with the Linux Counter, http://counter.li.org/ ##################### Debian GNU/Linux Consultant ##################### Michelle Konzack Apt. 917 ICQ #328449886 +49/177/9351947 50, rue de Soultz MSN LinuxMichi +33/6/61925193 67100 Strasbourg/France IRC #Debian (irc.icq.com) --rS8CxjVDS/+yyDmU Content-Type: application/pgp-signature; name="signature.pgp" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFId1PdC0FPBMSS+BIRAs2nAKDXfDu4ExZXeHCMY7qNvqTZdUw9LwCcCVb5 Ad4LwMA/gLREt7nz8d2cxao= =WkcN -----END PGP SIGNATURE----- --rS8CxjVDS/+yyDmU--   Acknowledgement sent to Michelle Konzack <linux4michelle@tamay-dogan.net>:
Extra info received and forwarded to list. Copy sent to Dpkg Developers <debian-dpkg@lists.debian.org>.   -t  Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.420 (Entity 5.420) Content-Type: text/plain; charset=utf-8 X-Loop: owner@bugs.debian.org From: owner@bugs.debian.org (Debian Bug Tracking System) To: Michelle Konzack Subject: Bug#77828: Info received (Bug#77828: dpkg: [PATCH]: users should be able to use update-alternatives (not only root)) Message-ID: References: <20080711123645.GB24649@freenet.de> X-Debian-PR-Message: ack-info 77828 X-Debian-PR-Package: dpkg X-Debian-PR-Keywords: wontfix X-Debian-PR-Source: dpkg Reply-To: 77828@bugs.debian.org Thank you for the additional information you have supplied regarding this Bug report. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Dpkg Developers If you wish to submit further information on this problem, please send it to 77828@bugs.debian.org, as before. Please do not send mail to owner@bugs.debian.org unless you wish to report a problem with the Bug-tracking system. --=20 77828: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D77828 Debian Bug Tracking System Contact owner@bugs.debian.org with problems   Received: (at 77828) by bugs.debian.org; 11 Jul 2008 17:11:29 +0000 From linux4michelle@tamay-dogan.net Fri Jul 11 17:11:28 2008 X-Spam-Checker-Version: SpamAssassin 3.1.4-bugs.debian.org_2005_01_02 (2006-07-26) on rietz.debian.org X-Spam-Level: X-Spam-Status: No, score=-6.7 required=4.0 tests=BAYES_00,FORGED_RCVD_HELO, FOURLA,HAS_BUG_NUMBER,MURPHY_DRUGS_REL8 autolearn=no version=3.1.4-bugs.debian.org_2005_01_02 Return-path: Received: from server4.pinguin-hosting.de ([88.198.11.108]) by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1KHM9Y-00021n-Dg for 77828@bugs.debian.org; Fri, 11 Jul 2008 17:11:28 +0000 Received: from tp570.private.tamay-dogan.net (lec67-1-81-56-104-13.fbx.proxad.net [81.56.104.13]) (Authenticated sender: linux4michelle@tamay-dogan.net) by server4.pinguin-hosting.de (Postfix) with ESMTP id 0709E57BFCD; Fri, 11 Jul 2008 19:11:32 +0200 (CEST) Received: by tp570.private.tamay-dogan.net (sSMTP sendmail emulation); Fri, 11 Jul 2008 19:11:09 +0200 Received: by tp570.private.tamay-dogan.net (TDSSMTP outspool); Fri, 11 Jul 2008 14:36:46 +0200 Date: Fri, 11 Jul 2008 14:36:45 +0200 From: Michelle Konzack To: Raphael Hertzog , 77828@bugs.debian.org Subject: Re: Bug#77828: dpkg: [PATCH]: users should be able to use update-alternatives (not only root) Message-ID: <20080711123645.GB24649@freenet.de> References: <20080706154925.GA22180@ouaza.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="rS8CxjVDS/+yyDmU" Content-Disposition: inline In-Reply-To: <20080706154925.GA22180@ouaza.com> X-PTS-Approved: linux4michelle@tamay-dogan.net User-Agent: Mutt/1.5.9i --rS8CxjVDS/+yyDmU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hallo Raphael and *, Am 2008-07-06 17:49:25, schrieb Raphael Hertzog: > tags 77828 - patch > tags 77828 + wontfix > thanks >=20 > On Sat, 25 Nov 2000, Martin Quinson wrote: > > Here is an (unified) patch against update-alternatives.pl as found toda= y in > > the CVS. Its purpose is to allow the users to manage an "alternative" s= ystem > > on their account. >=20 > I'm not really inclined to support such a feature. I have yet to see a > valid use case. >=20 > When the user wants to override a system-wide setting, there are already > dozens of solutions going from using some environment variable to > changing the PATH so that ~/bin/ is looked first. And ~/bin/ can contain > symlinks corresponding to the various name of alternatives and have them > point to their program of choice. I would support this whishlist bug since update-alternatives.pl support already an infrastructure and yes, ~/bin should be used. I have written for some time an tool which is based on "update-alternatives" Not sure for now (no fsck Web-Access currently), but AFAIK I have it as Debian Package on my website and use (X)dialog which can easyly used under the X-Window-System. I have writen it, because there are "noobs" which are USER-ONLY and have no clue about system configuration. So my Xdialog Tool has helped many peoples already, even it is very simple coded. Thanks, Greetings and nice Day/Evening Michelle Konzack Systemadministrator 24V Electronic Engineer Tamay Dogan Network Debian GNU/Linux Consultant --=20 Linux-User #280138 with the Linux Counter, http://counter.li.org/ ##################### Debian GNU/Linux Consultant ##################### Michelle Konzack Apt. 917 ICQ #328449886 +49/177/9351947 50, rue de Soultz MSN LinuxMichi +33/6/61925193 67100 Strasbourg/France IRC #Debian (irc.icq.com) --rS8CxjVDS/+yyDmU Content-Type: application/pgp-signature; name="signature.pgp" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFId1PdC0FPBMSS+BIRAs2nAKDXfDu4ExZXeHCMY7qNvqTZdUw9LwCcCVb5 Ad4LwMA/gLREt7nz8d2cxao= =WkcN -----END PGP SIGNATURE----- --rS8CxjVDS/+yyDmU--   Information forwarded to debian-bugs-dist@lists.debian.org, Dpkg Developers <debian-dpkg@lists.debian.org>:
Bug#77828; Package dpkg.   debian-bugs-dist@lists.debian.orgDpkg Developers  X-Loop: owner@bugs.debian.org Subject: Bug#77828: Wii version 3 launched with greater size Reply-To: Ataev , 77828@bugs.debian.org Resent-From: Ataev Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: Dpkg Developers Resent-Date: Tue, 29 Jul 2008 13:09:10 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: followup 77828 X-Debian-PR-Package: dpkg X-Debian-PR-Keywords: wontfix X-Debian-PR-Source: dpkg Received: via spool by 77828-submit@bugs.debian.org id=B77828.121733676926644 (code B ref 77828); Tue, 29 Jul 2008 13:09:10 +0000 Received: (at 77828) by bugs.debian.org; 29 Jul 2008 13:06:09 +0000 X-Spam-Checker-Version: SpamAssassin 3.1.4-bugs.debian.org_2005_01_02 (2006-07-26) on rietz.debian.org X-Spam-Level: * X-Spam-Status: No, score=1.1 required=4.0 tests=BAYES_50,RCVD_IN_SORBS_WEB autolearn=no version=3.1.4-bugs.debian.org_2005_01_02 Received: from [118.120.226.219] by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1KNott-0005mp-Op for 77828@bugs.debian.org; Tue, 29 Jul 2008 13:06:09 +0000 Message-ID: <9595AEF7.E685FD3D@addressingyourdreams.com> Date: Tue, 29 Jul 2008 21:06:48 +0800 From: Ataev User-Agent: Thunderbird 2.0.0.14 (Windows/20080421) MIME-Version: 1.0 To: 77828@bugs.debian.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit McCain criticizes Obama for lack of empathy http://grupoestudio.com/default.html   Acknowledgement sent to Ataev <ankantte_1972@addressingyourdreams.com>:
Extra info received and forwarded to list. Copy sent to Dpkg Developers <debian-dpkg@lists.debian.org>.   -t  Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.420 (Entity 5.420) Content-Type: text/plain; charset=utf-8 X-Loop: owner@bugs.debian.org From: owner@bugs.debian.org (Debian Bug Tracking System) To: Ataev Subject: Bug#77828: Info received (Wii version 3 launched with greater size) Message-ID: References: <9595AEF7.E685FD3D@addressingyourdreams.com> X-Debian-PR-Message: ack-info 77828 X-Debian-PR-Package: dpkg X-Debian-PR-Keywords: wontfix X-Debian-PR-Source: dpkg Reply-To: 77828@bugs.debian.org Thank you for the additional information you have supplied regarding this Bug report. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Dpkg Developers If you wish to submit further information on this problem, please send it to 77828@bugs.debian.org, as before. Please do not send mail to owner@bugs.debian.org unless you wish to report a problem with the Bug-tracking system. --=20 77828: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D77828 Debian Bug Tracking System Contact owner@bugs.debian.org with problems   Received: (at 77828) by bugs.debian.org; 29 Jul 2008 13:06:09 +0000 From ankantte_1972@addressingyourdreams.com Tue Jul 29 13:06:09 2008 X-Spam-Checker-Version: SpamAssassin 3.1.4-bugs.debian.org_2005_01_02 (2006-07-26) on rietz.debian.org X-Spam-Level: * X-Spam-Status: No, score=1.1 required=4.0 tests=BAYES_50,RCVD_IN_SORBS_WEB autolearn=no version=3.1.4-bugs.debian.org_2005_01_02 Return-path: Received: from [118.120.226.219] by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1KNott-0005mp-Op for 77828@bugs.debian.org; Tue, 29 Jul 2008 13:06:09 +0000 Message-ID: <9595AEF7.E685FD3D@addressingyourdreams.com> Date: Tue, 29 Jul 2008 21:06:48 +0800 From: Ataev User-Agent: Thunderbird 2.0.0.14 (Windows/20080421) MIME-Version: 1.0 To: 77828@bugs.debian.org Subject: Wii version 3 launched with greater size Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit McCain criticizes Obama for lack of empathy http://grupoestudio.com/default.html