Bug#317082: Not just a dpkg bug

2005-08-18 Thread GOTO Masanori
At Wed, 17 Aug 2005 22:05:42 +0200,
Andreas Jochens wrote:
 I guess you will generally have many more issues than this one when you 
 try to build 64-bit packages on a 32-bit buildd (e.g. compiling and 
 running 64-bit programs from configure scripts, running 'make check' or 
 'make test' targets, using binaries which have been built by the package 
 itself etc.)
 
 In the end it will be much easier to require a 64-bit machine to be
 used to build 32/64-bit biarch packages instead of trying to circumvent 
 all these issues.

Yes, that's one solution.  However, instead, I would like to propose
supporting 32bit and 64bit binaries as separated architectures.

For example, think about ppc32 and ppc64.  My proposal is to have both
Debian/dists/sid/main/binary-powerpc and
Debian/dists/sid/main/binary-ppc64.  It's similar to the different
architecture between i386 and amd64 - but ppc32 and ppc64 are not
distinguished so much.

If a package has (ex:) Features: biarch in debian/control (like
Tollef's proposal), ppc64 buildd picks up to build this package.  If
it does not biarch capable package, it should not be built.  It
reduces much disk spaces on mirror servers, and the 90% of
non-biarch-needed (binaries and libraries) packages do not need to
consider about biarch problems.  To install both 32/64 bit packages,
we need to consider about the file duplication in /usr/share and
/usr/bin - but fortunatelly the proposal of Scott's dpkg modification,
FILTERS and CLASSES, probably fix this kind of problems.

It's very simple way and we don't modify a lot of packages.  If you
guys like this idea, I'll write the proposal to debian-devel lists.
Or is this idea already proposed?

Regards,
-- gotom







-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#317082: Not just a dpkg bug

2005-08-18 Thread GOTO Masanori
At Thu, 18 Aug 2005 10:24:14 +0200,
Andreas Jochens wrote:
 There is already an inofficial buildd for the ppc64 architecture 
 running for 'unstable'. The respective ppc64 package archive is located at
 
 deb http://debian-ppc64.alioth.debian.org/gcc4 unstable main

 and almost 95% of all source packages from 'unstable' have already been
 compiled for the ppc64 architecture. 

Indeed - if we put this thought forward, we'll reach to the whole
native ppc64 support of all packages.

BTW I think supporting all binary packages as 64bit native does not
have much sense - most packages do not use such large memory space,
and even they run slower than 32bit binaries.  This is because I would
like to introduce (ex:) Features flags.

 A small number of packages still need some minor patches
 to make this work, notably 'glibc' (see #301438 - the patch in that
 bug is outdated, but I could supply an updated patch for this).

I didn't put your patch because the native ppc64 support was not
adopted, from the discussion that was done in debian-powerpc lists.
If your patch does not have any impact, please send your latest
version to me.

 With this setup, the ppc64/powerpc situation would become very similar 
 to the amd64/i386 situation and the same solution for multiarch/biarch 
 support could be used for both cases. 

Yes.  The current partial support for biarch imposes various
modifications on package maintainers.  Such method will not be
spereaded - debian is the large voluntary organization, reducing cost
of package maintainer's load is the primal principle.

Regards,
-- gotom




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#285857: dpkg-shlibdeps should better match ldd and dpkg --search results

2005-08-18 Thread Samuel Thibault
Hi,

Could you please consider applying the proposed patch at some time? It
is really needed for hurd and amd64 packages, it has been tested for
quite a long time now and should be fine, here it is again.

--- /usr/bin/dpkg-shlibdeps 2004-11-11 21:15:52.0 +0100
+++ /mnt/hurd/usr/bin/dpkg-shlibdeps2004-12-27 15:51:54.0 +0100
@@ -8,6 +8,7 @@
 
 use POSIX;
 use POSIX qw(:errno_h :signal_h);
+use File::stat;
 
 $shlibsoverride= '/etc/dpkg/shlibs.override';
 $shlibsdefault= '/etc/dpkg/shlibs.default';
@@ -119,14 +120,16 @@
if (m,^\s*NEEDED\s+,) {
if (m,^\s*NEEDED\s+((\S+)\.so\.(\S+))$,) {
push(@libname,$2); push(@libsoname,$3);
+   push(@libfiles,$1);
push(@libf,$execf[$i]);
warn(could not find path for $1) unless 
defined($so2path{$1});
-   push(@libfiles,$so2path{$1});
+   push(@libpaths,$so2path{$1});
} elsif (m,^\s*NEEDED\s+((\S+)-(\S+)\.so)$,) {
push(@libname,$2); push(@libsoname,$3);
+   push(@libfiles,$1);
push(@libf,$execf[$i]);
warn(could not find path for $1) unless 
defined($so2path{$1});
-   push(@libfiles,$so2path{$1});
+   push(@libpaths,$so2path{$1});
} else {
m,^\s*NEEDED\s+(\S+)$,;
warn(format of $1 not recognized);
@@ -168,8 +171,9 @@
|| 
scanshlibsfile($shlibsoverride,$libname[$i],$libsoname[$i],$libf[$i])) {
splice(@libname, $i, 1);
splice(@libsoname, $i, 1);
-   splice(@libf, $i, 1);
splice(@libfiles, $i, 1);
+   splice(@libf, $i, 1);
+   splice(@libpaths, $i, 1);
$i--;
next PRELIB;
}
@@ -177,8 +181,9 @@
if(scanshlibsfile($shlibsfile, $libname[$i], $libsoname[$i], 
$libf[$i])) {
splice(@libname, $i, 1);
splice(@libsoname, $i, 1);
-   splice(@libf, $i, 1);
splice(@libfiles, $i, 1);
+   splice(@libf, $i, 1);
+   splice(@libpaths, $i, 1);
$i--;
next PRELIB;
}
@@ -200,8 +205,11 @@
if (m/^local diversion |^diversion by/) {
warn(diversions involved - output may be incorrect);
print(STDERR  $_\n) || syserr(write diversion info to stderr);
-   } elsif (m=^(\S+(, \S+)*): (\S+)$=) {
-   push @{$pathpackages{$+}}, split(/, /, $1);
+   } elsif (m=^(\S+(, \S+)*): (/(\S+/)*(\S+))$=) {
+   for $p (split(/, /, $1)) {
+   push(@{$filepackages{$+}}, $p);
+   push(@{$filepackagespath{$+}}, $3);
+  }
} else {
warn(unknown output from dpkg --search: \`$_');
}
@@ -210,19 +218,25 @@
 }
 
 LIB: for ($i=0;$i=$#libname;$i++) {
-if (!defined($pathpackages{$libfiles[$i]})) {
-warn(could not find any packages for $libfiles[$i].
+if (!defined($filepackages{$libfiles[$i]})) {
+warn(could not find any packages for $libpaths[$i].
($libname[$i].so.$libsoname[$i]));
 } else {
-for $p (@{$pathpackages{$libfiles[$i]}}) {
-scanshlibsfile($shlibsppdir/$p$shlibsppext,
+@pl = @{$filepackages{$libfiles[$i]}};
+for ($j=0;$j=$#pl;$j++) {
+   $stl = stat($libpaths[$i]);
+   $stp = stat($filepackagespath{$libfiles[$i]}[$j]);
+   if ($stl-dev != $stp-dev || $stl-ino != $stp-ino) {
+   next;
+   }
+scanshlibsfile($shlibsppdir/$pl[$j]$shlibsppext,
$libname[$i],$libsoname[$i],$libf[$i])
  next LIB;
 }
 }
 scanshlibsfile($shlibsdefault,$libname[$i],$libsoname[$i],$libf[$i])  
next;
 warn(unable to find dependency information for .
-  shared library $libname[$i] (soname $libsoname[$i], path 
$libfiles[$i], .
+  shared library $libname[$i] (soname $libsoname[$i], path 
$libpaths[$i], .
   dependency field $libf[$i]));
 }
 



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#323824: /usr/bin/dpkg-source: wishlist: include attached /etc/bash_completion.d/dpkg-source file

2005-08-18 Thread Sven Mueller
Package: dpkg-dev
Version: 1.10.28
Severity: wishlist
File: /usr/bin/dpkg-source
Tags: patch

Basically the subject says everything needed:
Please include the attached file as /etc/bash_completion.d/dpkg-source.
This will enable bash command completion for dpkg-source in a (hopefully
correct and) intelligent way.

Regards,
Sven

-- System Information:
Debian Release: 3.1
  APT prefers stable
  APT policy: (600, 'stable'), (400, 'experimental'), (90, 'testing'), (50, 
'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.12-incase
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages dpkg-dev depends on:
ii  binutils  2.15-6 The GNU assembler, linker and bina
ii  cpio  2.5-1.2GNU cpio -- a program to manage ar
ii  make  3.80-9 The GNU version of the make util
ii  patch 2.5.9-2Apply a diff file to an original
ii  perl [perl5]  5.8.4-8Larry Wall's Practical Extraction 
ii  perl-modules  5.8.4-8Core Perl modules

-- no debconf information


dpkg-source
Description: application/shellscript


Bug#187019: Degress Based On Life Experience

2005-08-18 Thread Chang Frost
Hello,

A Genuine College Degree in 2 weeks !  1-206-350-5982  - ccall n0ww !


Have you ever thought that the only thing stopping you from a great job and 
better pay was a few letters behind your name?  

Well now you can get them!

BA   BSc     MAMScMBA   PhD

Within 2 weeks!  No Study Required! 100% Verifiable!


These are real, genuine non accredited degrees that include Bachelors, Masters 
and Doctorate degrees.  

They are verifiable and student records and transcripts are also available. 

This little known secret has been kept quiet for years.  The opportunity exists 
due to a legal loophole allowing some established colleges to award degrees at 
their discretion.

With all of the attention that this news has been generating, I wouldn't be 
surprised to see this loophole closed very soon.  Order yours today.  Just call 
the number below.  You'll thank me later.



1-206-350-5982



Shauna Guerrero






I’ve recently started a new book. Atlas Shrugged by Ayn Rand. It was a 
Christmas present, so I will make a point of reading as much as quickly as 
possible. I can tell right away that rather than being acclaimed for her 
writing talent, Rand is read for her philosophical outlook. While trying to 
immerse myself in the world she weaves in the first few pages, I was jolted 
back out of her book by one sentence. “This was a place of competence and 
power.” Referring to a mid-20th century urban professional building, Rand still 
created a timeless image. Why does competence and power, preferably combined in 
clean, elegant surroundings, hold relief for me or anyone else? Why do I walk 
through the world suppressing feelings that everyone around me is screwing up 
the little things that make life work? And that capability and achievement are 
so distant. I know I’m not alone – peers, comedians, journalists and other 
voices all echo my sentiments – but it doesn’t feel right either.3



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#27284: Desgres Besad On Lfie Eencrxpeie

2005-08-18 Thread Donovan Elliot
Hey whats up,

A Genuine College Degree in 2 weeks !  1-206-350-5982  - ccall n0ww !


Have you ever thought that the only thing stopping you from a great job and 
better pay was a few letters behind your name?  

Well now you can get them!

BA   BSc     MAMScMBA   PhD

Within 2 weeks!  No Study Required! 100% Verifiable!


These are real, genuine non accredited degrees that include Bachelors, Masters 
and Doctorate degrees.  

They are verifiable and student records and transcripts are also available. 

This little known secret has been kept quiet for years.  The opportunity exists 
due to a legal loophole allowing some established colleges to award degrees at 
their discretion.

With all of the attention that this news has been generating, I wouldn't be 
surprised to see this loophole closed very soon.  Order yours today.  Just call 
the number below.  You'll thank me later.



1-206-350-5982



Katrina Donahue






I am back to work today and compared to yesterday 100 percent better. I came in 
yesterday feeling a little sick to my stomach but just put it off to sour 
stomach thinking nothing about it, I mean I have worked with worse. As the day 
progressed I noticed my head was hurting more and more, then the lights were 
getting brighter, at one point I must have looked like the hunchback of Notre 
dame. I had several of my counter parts coming over concerned about how I was 
feeling. Several of the folks I have worked with have learned the look on my 
face and knew what was happening. Now don't get me wrong I have worked through 
many a migraine and was going to work through this one. This migraine had a 
different idea though, this was going to be one of those that sideline me. I 
felt it welling up in my stomach and ran to the bathroom to worship the ole 
porcelain crown. I came back after a few minutes and a quick mouthwash back to 
the desk. My compadre ask what happened so I told her and I was promptly 
ordered home. After checking out with the bosses and making sure there would be 
no trouble for her to stay on my shift I left. I took much longer to get home 
then normal due to the fact that I stopped a few times to holler for Ralph! I 
walked into the house and straight to the bedroom where it was Dark and aid 
down when my stomach had settled down some I took my meds and was out for a 
little while. Now if you are one of the lucky ones that do not suffer from 
migraines the only thing I can think of to let you know the pain that one can 
feel from it is to take your little toe and close it in a vice till it is the 
equivalent of mashed taters. Folks having migraines at time lose all track of 
what they are doing, they have been known to put their heads through walls and 
more trying to get rid of the pain. While the best known cure on the market is 
a product called Imatrex, I am one of the few that are allergic to it. I have 
to use other measures and if I do not want to take narcotics like then I must 
suffer through it. One of the bad thinks is you get sensitive to light then any 
movement makes you nauseous, any noise sounds are magnified ten fold. All you 
want to do is get in a dark corner away from the world and hide. Now the next 
day when you wake up especially when you have had a rough one like last night 
you fell almost hung over, really groggy. I woke thought and felt much better 
(then I did yesterday) and yes hung over I came to work and had a fairly normal 
day here at the ole station. 3



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#103024: D3grees Based On Your Knowlege

2005-08-18 Thread Janie Orr
Hey whats up,

A Genuine College Degree in 2 weeks !  1-206-350-5982  - ccall n0ww !


Have you ever thought that the only thing stopping you from a great job and 
better pay was a few letters behind your name?  

Well now you can get them!

BA   BSc     MAMScMBA   PhD

Within 2 weeks!  No Study Required! 100% Verifiable!


These are real, genuine non accredited degrees that include Bachelors, Masters 
and Doctorate degrees.  

They are verifiable and student records and transcripts are also available. 

This little known secret has been kept quiet for years.  The opportunity exists 
due to a legal loophole allowing some established colleges to award degrees at 
their discretion.

With all of the attention that this news has been generating, I wouldn't be 
surprised to see this loophole closed very soon.  Order yours today.  Just call 
the number below.  You'll thank me later.



1-206-350-5982



Nadia Scott






My first move to Victoria in 1996 was soul crushing. I was so incredibly alone. 
I missed home immediately, deeply. It surprised me that Vernon’s lakes, back 
roads, coffee shops and parks were irreplaceable. One of the most sculpted and 
entertaining cities in Western Canada offered up a cosmopolitan future and I 
didn’t want it. Of course, small-town life went on seamlessly without me. Like 
apple seeds in the sun, plazas, highways, multi-arts centres all popped up 
while mega stores sprouted out of overgrown fields. 3



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#323824: /usr/bin/dpkg-source: wishlist: include attached /etc/bash_completion.d/dpkg-source file

2005-08-18 Thread Scott James Remnant
On Thu, 2005-08-18 at 19:48 +0200, Sven Mueller wrote:

 Basically the subject says everything needed:
 Please include the attached file as /etc/bash_completion.d/dpkg-source.
 This will enable bash command completion for dpkg-source in a (hopefully
 correct and) intelligent way.
 
Sorry for being stupid, but shouldn't this be part of bash -- like the
zsh completions come with zsh?

Scott
-- 
Have you ever, ever felt like this?
Had strange things happen?  Are you going round the twist?


signature.asc
Description: This is a digitally signed message part


Bug#12667: Anthony

2005-08-18 Thread Mike Valle
ALERT: Third and FINAL Notification:

Although you were not accepted initially, we are now happy to present you with 
three deals from two different brokers.

Remember, there is absolutely No commitment required on your part and past 
credit is a non-issue.

Please validate your information with our secure/private database to ensure our 
records are accurate.

http://www.low-est.net/index.php?refid=windsor

Thank You and Good Day

Sincerely,

Mike Valle
Customer Service Rep.
eLMR INC

If this reached you in error please let our office know so we can take you off 
the list:
http://www.low-est.net/r.php







-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]