Bug#321889: aptitude: Fix for FTBFS

2005-08-17 Thread Tom Parker
Package: aptitude
Version: 0.3.3-1.1
Tags: patch
Followup-For: Bug #321889

Attempting to self-compile Aptitude results in FTBFS with newer
libapt-pkg, libsigc++ and gcc 4.0. Attached patch fixes this.

-- System Information:
Debian Release: 3.1
  APT prefers stable
  APT policy: (990, 'stable'), (103, 'testing'), (102, 'unstable'), (99, 
'experimental'), (98, 'hoary'), (97, 'breezy')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.10
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages aptitude depends on:
ii  apt [libapt-pkg-libc6.3-6-3.1 0.6.40.1   Advanced front-end for dpkg
ii  libc6 2.3.5-3GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.1-4  GCC support library
ii  libncursesw5  5.4-9  Shared libraries for terminal hand
ii  libsigc++-2.0-0c2 2.0.10-3   type-safe Signal Framework for C++
ii  libstdc++64.0.1-4The GNU Standard C++ Library v3

Versions of packages aptitude recommends:
pn  aptitude-doc-en | aptitude-do  (no description available)

-- no debconf information
diff -ur aptitude-0.3.3/src/generic/problemresolver/problemresolver.h aptitude-0.3.3-noftbfs/src/generic/problemresolver/problemresolver.h
--- aptitude-0.3.3/src/generic/problemresolver/problemresolver.h	2005-05-04 18:54:40.0 +0200
+++ aptitude-0.3.3-noftbfs/src/generic/problemresolver/problemresolver.h	2005-08-17 18:18:53.0 +0200
@@ -235,8 +235,6 @@
   return forbidden_versions;
 }
 
-const action &get_action() {return my_action;}
-
 int get_score() const {return score;}
 int get_action_score() const {return action_score;}
 
diff -ur aptitude-0.3.3/src/generic/strhash.h aptitude-0.3.3-noftbfs/src/generic/strhash.h
--- aptitude-0.3.3/src/generic/strhash.h	2004-12-04 01:57:13.0 +0100
+++ aptitude-0.3.3-noftbfs/src/generic/strhash.h	2005-08-17 18:20:04.0 +0200
@@ -28,7 +28,7 @@
 #if defined(HAVE_HASH_MAP) || defined(HAVE_EXT_HASH_MAP)
 namespace HASH_NAMESPACE
 {
-  struct hash
+  template <> struct hash
   {
 inline size_t operator()(const std::string &s) const
 {


Bug#323624: fig2sty: festure request: pdflatex + better layout

2005-08-17 Thread nokos
Package: fig2sty
Version: 1:0.1-6
Severity: minor
Tags: patch

fig2sty does not work with pdflatex, and the background does not have
the same geometry as in xfig.

patch: better pt2fig<->fig2pt, background in eps and pdf, and reasonable
default for baselineskip

-- System Information:
Debian Release: testing/unstable
  APT prefers hoary-security
  APT policy: (500, 'hoary-security'), (500, 'hoary'), (500, 'unstable'), (500, 
'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.1
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages fig2sty depends on:
ii  perl  5.8.7-4Larry Wall's Practical Extraction 

fig2sty recommends no packages.

-- no debconf information
-- 
nokos <[EMAIL PROTECTED]>
--- fig2sty.old 2005-07-26 16:53:15.0 +0200
+++ fig2sty 2005-08-13 18:44:36.0 +0200
@@ -218,7 +218,7 @@
 use Getopt::Long;
 
 my $debug = 0;
-my $defbaselineskip = 12;
+my $defbaselineskip = "any";
 my $deffontsize = 12;
 my $defreference= 'grid';
 my $defoffset   = 0;
@@ -244,7 +244,7 @@
 die "Unknown extension $extension" 
   if ($jobname && ($extension !~ /^fig$/));
 my $texname= "$jobname.sty";
-my $background = "${jobname}back.ps";
+my $background = "${jobname}back";
 
 if ($debug) {
   print STDERR "jobname: $jobname\n";
@@ -294,8 +294,6 @@
 my %vinfo = ();# vertical info
 my @hinfo = ();# horizontal info ([indentation, linewidth] ...)
 my $baselineskip;
-my $figscale;  # FIG version dependent scaling factor
-$figscale = ($fig->{'version'} > '3.1')?0.95:1.0;
 
 # Write style header
 print TEX <<"EOTEX";
@@ -333,6 +331,7 @@
 %   \\parbox\{$hinfo->[0]pt\}\\bgroup
   \\hsize=$hinfo->[0]pt
   \\setlength\{\\textwidth\}\{$hinfo->[0]pt\}
+  \\setlength\{\\columnwidth\}\{$hinfo->[0]pt\}
 EOTEX
 
   } else { # complex frame -> parshape
@@ -367,7 +366,7 @@
 
 # Placement of frames
 print TEX "\{\\setbox1=\\vbox\{\\noindent",
-  "\\includegraphics\[scale=$figscale\]\{$background\}\}\n",
+  "\\includegraphics\{$background\}\}\n",
   "\\dimendef\\w=0 \\w=\\wd1\n",
   "\\dimendef\\h=0 \\h=\\ht1\n",
   "\\splittopskip=0pt\n",
@@ -399,10 +398,12 @@
   my $tmpfile;
   $tmpfile = "/tmp/fig2sty$$.tmp";
   $fig->writefile(">$tmpfile");
-  `$fig2dev -Leps -p dummy $tmpfile > $background`;
+  `$fig2dev -Leps -p dummy $tmpfile > $background.eps`;
+  `$fig2dev -Lpdf -p dummy $tmpfile > $background.pdf`;
   unlink $tmpfile;
 } else {
-  $fig->writefile("|$fig2dev -Leps -p dummy > $background");
+  $fig->writefile("|$fig2dev -Leps -p dummy > $background.eps");
+  $fig->writefile("|$fig2dev -Lpdf -p dummy > $background.pdf");
   die "fig2dev failed" if $?;
 };
 
@@ -627,10 +628,18 @@
 # Conversion pt <-> fig
 sub pt2fig {
   my $pts = shift;
-  return $pts * $fig->{'resolution'} / 72.27;
+  if ($fig->{'version'} > '3.1') {
+return $pts * $fig->{'resolution'} / 76;
+  } else {
+return $pts * $fig->{'resolution'} / 72.27;
+  }
 }
 
 sub fig2pt {
   my $figs = shift;
-  return $figs * 72.27 / $fig->{'resolution'};
+  if ($fig->{'version'} > '3.1') {
+return $figs * 76 / $fig->{'resolution'};
+  } else {
+return $figs * 72.27 / $fig->{'resolution'};
+  }
 }


Bug#323623: laptop-mode-tools: cpufreq stuff

2005-08-17 Thread nokos
Package: laptop-mode-tools
Version: 1.08-1
Severity: wishlist
Tags: patch

laptop-mode-tools only handles the max frequency. The patch adds handing
the min frequency and the governor.

-- System Information:
Debian Release: testing/unstable
  APT prefers hoary-security
  APT policy: (500, 'hoary-security'), (500, 'hoary'), (500, 'unstable'), (500, 
'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.1
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages laptop-mode-tools depends on:
ii  powermgmt-base1.22   Common utils and configs for power

Versions of packages laptop-mode-tools recommends:
ii  acpid 1.0.4-2Utilities for using ACPI power man
ii  hdparm6.1-4  tune hard disk parameters for high

-- no debconf information
-- 
nokos <[EMAIL PROTECTED]>
--- laptop_mode.org	2005-08-13 17:43:18.0 +0200
+++ laptop_mode	2005-08-14 12:25:31.0 +0200
@@ -61,9 +61,15 @@
 	NOLM_DIRTY_BACKGROUND_RATIO=10
 	NOLM_DIRTY_RATIO=40
 	LM_SECONDS_BEFORE_SYNC=2	
-	BATT_CPU_MAXFREQ=slowest
+	BATT_CPU_MAXFREQ=fastest
+	BATT_CPU_MINFREQ=slowest
+	BATT_CPU_GOVENOR=conservative
 	LM_AC_CPU_MAXFREQ=fastest
+	LM_AC_CPU_MINFREQ=slowest
+	NOLM_AC_CPU_GOVERNOR=performance
 	NOLM_AC_CPU_MAXFREQ=fastest
+	NOLM_AC_CPU_MINFREQ=slowest
+	NOLM_AC_CPU_GOVERNOR=ondemand
 	CONTROL_CPU_MAXFREQ=0
 	HD="/dev/[hs]d[abcdefgh]"
 	CONTROL_SYSLOG_CONF=0
@@ -685,25 +691,41 @@
 
 if [ $CONTROL_CPU_MAXFREQ -eq 1 ] ; then
 	if [ $ON_AC -eq 1 ] ; then
-		if [ "$ACTION" = "start"] ; then
+		if [ "$ACTION" = "start" ] ; then
 			CPU_MAXFREQ="$LM_AC_CPU_MAXFREQ"
+			CPU_MINFREQ="$LM_AC_CPU_MINFREQ"
+			CPU_GOVERNOR="$LM_AC_CPU_GOVERNOR"
 		else
 			CPU_MAXFREQ="$NOLM_AC_CPU_MAXFREQ"
+			CPU_MINFREQ="$NOLM_AC_CPU_MINFREQ"
+			CPU_GOVERNOR="$NOLM_AC_CPU_GOVERNOR"
 		fi
 	else
 		CPU_MAXFREQ="$BATT_CPU_MAXFREQ"
+		CPU_MINFREQ="$BATT_CPU_MINFREQ"
+		CPU_GOVERNOR="$BATT_CPU_GOVERNOR"
 	fi
 	for THISCPU in /sys/devices/system/cpu/* ; do
 		if [ -e $THISCPU/cpufreq/cpuinfo_min_freq ]; then
 			THIS_CPU_MAXFREQ="$CPU_MAXFREQ"
+			THIS_CPU_MINFREQ="$CPU_MINFREQ"
+			THIS_CPU_GOVERNOR="$CPU_GOVERNOR"
 			if [ "$CPU_MAXFREQ" = 'slowest' ]; then
 THIS_CPU_MAXFREQ=`cat $THISCPU/cpufreq/cpuinfo_min_freq`
 			fi
+			if [ "$CPU_MINFREQ" = 'slowest' ]; then
+THIS_CPU_MINFREQ=`cat $THISCPU/cpufreq/cpuinfo_min_freq`
+			fi
 			if [ "$CPU_MAXFREQ" = "fastest" ] ; then
 THIS_CPU_MAXFREQ=`cat $THISCPU/cpufreq/cpuinfo_max_freq`
 			fi
+			if [ "$CPU_MINFREQ" = "fastest" ] ; then
+THIS_CPU_MINFREQ=`cat $THISCPU/cpufreq/cpuinfo_max_freq`
+			fi
 			echo "Setting CPU maximum frequency for cpu $THISCPU to $THIS_CPU_MAXFREQ." > $OUTPUT
 			echo $THIS_CPU_MAXFREQ > $THISCPU/cpufreq/scaling_max_freq
+			echo $THIS_CPU_MINFREQ > $THISCPU/cpufreq/scaling_min_freq
+			echo $THIS_GOVERNOR > $THISCPU/cpufreq/scaling_governor
 		fi
 	done
 fi


Bug#322937: libusb-0.1-4 - issues error messages during installation

2005-08-17 Thread Bastian Blank
On Wed, Aug 17, 2005 at 06:06:27PM +0200, Aurelien Jarno wrote:
> > This checks if the kernel is compiled with usb support, not if there is
> > support for usb.
> The check to see if there is support of usb is done in the next test.
> This first one is just done to issue a different message if there is no
> USB support in the kernel (in that case, it is sure USB won't work).

There are many machines which have no USB at all, this is missing in the
test.

> > This package is more or less base now so a warning that it may not work
> > is just annoying for anybody.
> The test was added because maintainers of packages using libusb were
> receiving too much bug reports of people having either no USB support in
> their kernel or /proc/bus/usb not mounted. But I could disable the error
> message, after all that's not me who receive such bugs.

Use README.Debian.

On the other side, I have no problem with the definition that the
kernel have to conflict with this lib as it clearly stats it does not
work.

Bastian

-- 
The man on tops walks a lonely street; the "chain" of command is often a noose.


signature.asc
Description: Digital signature


Bug#323588: gksu: [INTL:fr] French translation

2005-08-17 Thread Gustavo Noronha Silva
Em Qua, 2005-08-17 às 14:31 +0200, Thomas Huriaux escreveu:
> Please find attached the french translation, proofread by the
> debian-l10n-french mailing list contributors.

Thanks a lot!

> This file should be put as fr.po in the appropriate place in
> your package build tree.

Sure. I can grant you an account on the gksu alioth project so you can
commit and maintain the translation there yourself. Are you interested?

Thanks,

-- 
[EMAIL PROTECTED]: Gustavo Noronha 
Debian:    *  



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


Bug#323586: [stripped Russian text].

2005-08-17 Thread Stepan Golosunov
On Wed, Aug 17, 2005 at 05:03:47PM +0200, David Martínez Moreno wrote:
> El Miércoles, 17 de Agosto de 2005 14:12, Антон escribió:
> > Package:Xfree86-common
> > Version: 4.3.0
> 
>   Hello. Apart from explaining your problem in English, could you please 
> send 
> us the exact version of your XFree86 packages? You know:
> 
> dpkg -l |grep dfsg
This can show wrong version. For example, 4.3.0.dfsg.1-1 while actual
version is 4.3.0.dfsg.1-14.

Better use
COLUMNS=100 dpkg -l |grep dfsg



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



Bug#323353: jwm: 0.23 has been packaged. A sample *.deb available

2005-08-17 Thread David Moreno Garza
On Wed, 2005-08-17 at 18:49 +0300, Jari Aalto wrote:
> I have now uploaded the sources as well. Please use:
> 
>   deb-src http://debian.cante.net/source/debian unstable main

I get 404 while updating and while browsing it directly. Please, fix
this.

-- 
David Moreno Garza <[EMAIL PROTECTED]> | http://www.damog.net/
 GPG: C671257D - 6EF6 C284 C95D 78F6 0B78 FFD3 981C 5FD7 C671 257D
 Signed mail welcome. Encrypted mail preferred.


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


Bug#170825: Checking if old version's dependencies break on update

2005-08-17 Thread Kari Pahula
On Wed, Aug 17, 2005 at 03:07:57PM +0200, Henry Jensen wrote:
> dpkg: ../../src/packages.c:191: process_queue: Assertion `dependtry <= 4' 
> failed.
> E: Sub-process /usr/bin/dpkg exited unexpectedly
> 
> Tried with patched dpkg 1.10.28 and 1.13.10

How did you run dpkg?  What was the command line?

At least I didn't get that error with the test cases I ran on the patched dpkg.


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



Bug#323628: zsh: subversion completion doesn't work on the prop* commands

2005-08-17 Thread Vincent Lefevre
Package: zsh
Version: 4.2.5-13
Severity: normal

The subversion completion no longer works with the commands

  propdel   propedit  propget   proplist  propset

when I try to complete on the filename (3rd argument).
There was no problem with zsh 4.2.5-7.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11.10-20050517
Locale: LANG=POSIX, LC_CTYPE=en_US.ISO8859-1 (charmap=ISO-8859-1)

Versions of packages zsh depends on:
ii  debconf [debconf-2.0] 1.4.57 Debian configuration management sy
ii  libc6 2.3.5-3GNU C Library: Shared libraries an
ii  libncurses5   5.4-9  Shared libraries for terminal hand
ii  passwd1:4.0.3-39 change and administer password and

Versions of packages zsh recommends:
ii  libcap1   1:1.10-14  support for getting/setting POSIX.
ii  libpcre3  5.0-1.1Perl 5 Compatible Regular Expressi

-- debconf information excluded


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



Bug#323626: apt-listbugs: unusable with new versioned BTS

2005-08-17 Thread Frank Küster
Package: apt-listbugs
Version: 0.0.48
Severity: important

It seems to me that on sarge, with the new versioned BTS (or whatever
change in the BTS), apt-listbugs displays every open RC bug as relevant
for the current upgrade, even if was only in a version in unstable.

This makes it actually nearly useless or even harmful, since if 90% are
false positives, what you gain by pressing ENTER once more?

I haven't systematically investigated this, it's just my impression on
my sarge system.  If it is really a general problem that happens all the
time, I'd consider this to be a grave bug with even security
implications (because if you're used to pressing ENTER to apt-listbugs
upon every security upgrade, you might easily do it also in the rare
case where a security update only fixes one of two security holes, the
unfixed being the more severe in your situation).

Regards, Frank


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-386
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages apt-listbugs depends on:
ii  apt0.5.28.6  Advanced front-end for dpkg
ii  libdpkg-ruby1.80.3.1 modules/classes for dpkg on ruby 1
ii  libintl-gettext-ruby1.80.11-5Gettext wrapper for Ruby 1.8
ii  libruby1.8 [libzlib-ruby1. 1.8.2-7sarge1 Libraries necessary to run Ruby 1.
ii  libxml-parser-ruby1.8  0.6.8-1   Interface of expat for the scripti
ii  ruby   1.8.2-1   An interpreter of object-oriented 

-- no debconf information

-- 
Frank Küster
Inst. f. Biochemie der Univ. Zürich
Debian Developer




Bug#323627: ssh: wrong exit status

2005-08-17 Thread Alejandro Forero Cuervo
Package: ssh
Version: 1:3.8.1p1-8.sarge.4
Severity: normal


The manual for ssh reads:

> ssh exits with the exit status of the remote command or with 255 if an
> error occurred.

However, ssh is wrongly exiting with 1 sometimes when an error that
prevents the connection from being established occurs (such as getting
ECONNREFUSED or ENETUNREACH):

$ ssh -p  localhost ; echo $?
ssh: connect to host localhost port 24823: Connection refused
1

Another example (after ifdown eth1):

$ ssh bachue.com ; echo $?
ssh: connect to host bachue.com port 22: Network is unreachable
1

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11
Locale: LANG=C, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages ssh depends on:
ii  adduser 3.63 Add and remove users and groups
ii  debconf 1.4.50   Debian configuration management sy
ii  dpkg1.10.28  Package maintenance system for Deb
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libpam-modules  0.76-22  Pluggable Authentication Modules f
ii  libpam-runtime  0.76-22  Runtime support for the PAM librar
ii  libpam0g0.76-22  Pluggable Authentication Modules l
ii  libssl0.9.7 0.9.7g-1 SSL shared libraries
ii  libwrap07.6.dbs-8Wietse Venema's TCP wrappers libra
ii  zlib1g  1:1.2.2-4compression library - runtime

-- debconf information excluded


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



Bug#285159: ITA: display-dhammapada -- Displays verses from the Dhammapada.

2005-08-17 Thread Petr Gajdusek
On Mon, Aug 15, 2005 at 05:57:47PM +0200, Matej Vela wrote:
> On Wed, Feb 23, 2005 at 08:50:50PM +0100, Petr Gajd??ek wrote:
> > # my first attempt to maintain package
> > retitle 285159 ITA: display-dhammapada -- Displays verses from the 
> > Dhammapada.
> 
> Do you still intend to adopt display-dhammapada?  (This is just a ping,
> I'm not interested in adopting it myself.)
> 
> Thanks,
> 
> Matej
> 

Yes, I still intend. The package is made, i have problem with copyright
clearance, i will try to deal with it soon.

Petr


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



Bug#323554: emacs-snapshot-gtk: Ediff crashes Emacs under X

2005-08-17 Thread Sven Joachim

Romain Francoise wrote:


Running ediff reprodrucibly crashes the GTK+-enabled version of Emacs
under X. Simply try "M-x ediff-files" or "M-x ediff-buffers" and the
Emacs window disappears as soon as ediff starts. Or try the command



emacs-snapshot-gtk -Q -D --eval '(ediff-files "/etc/passwd" "/etc/group")'



Works here on several machines running unstable (ediff in general, and
your command).

However, the following information could be useful:
- does it work if you build with gcc-3.3? (remove -Wno-pointer-sign from
  debian/rules)


Building with gcc-3.3 makes no difference, as I had expected.


- what does the backtrace look like?


What do you exactly mean with "backtrace"? Typing in the above command
gives only the message "Segmentation fault". Running strace produces a
huge output, but does not show anything meaningful to me.

However, I noticed something which might be interesting: The Ediff
window appears at the bottom of the screen, rather than attaching
itself to the Emacs window as it's supposed to do. So I tried if
changing the window manager could make a difference, started KDE
instead of my preferred IceWM -- and voila, now Ediff runs fine! Then
I installed some lightweight window managers (9wm, twm, tvwm,
blackbox, fvwm95), and under all of them Ediff works.

So, you may want to try out if you can reproduce the crash under IceWM
and, if so, report a bug against the IceWM package.

My IceWM version for reference:

ii  icewm   1.2.20+21pre1-3 wonderful Win95-OS/2-Motif-like window 
manager
ii  icewm-common1.2.20+21pre1-3 wonderful Win95-OS/2-Motif-like window 
manager

Regards,

--

 Sven Joachim








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



Bug#323582: Fails to build on ubuntu

2005-08-17 Thread Björn Torkelsson
On Wed, 2005-08-17 at 07:52 -0700, Russ Allbery wrote:

> Ugh, I'm pretty sure Ubuntu is not the problem, but rather the problem is
> my naive assumption that globs respect case.  The PAM Makefile tries to
> exclude AFS_component_version_number from shlibafsrpc with the following
> expression:
> 
> ../shlibafsrpc/[a-z]*.o
> 
> and I bet that's not doing the right thing in some locale.  Could you try
> the build again with LC_ALL=C and see if it works any better?  If so, I'll
> try to get a fix into the next upload, which I'm planning on doing within
> a week or so.

Yep, works with a sane locale. I should have figured that one out
myself.

/torkel



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



Bug#323353: jwm: 0.23 has been packaged. A sample *.deb available

2005-08-17 Thread Jari Aalto
| 
| --=-We6prauQ77ebEupqKLAP
| Content-Type: text/plain
| Content-Transfer-Encoding: quoted-printable
| 
| On Wed, 2005-08-17 at 18:49 +0300, Jari Aalto wrote:
| > I have now uploaded the sources as well. Please use:
| >=20
| >   deb-src http://debian.cante.net/source/debian unstable main
| 
| I get 404 while updating and while browsing it directly. Please, fix
| this.

The permissions do now allow direct http browsing due to abuse and
search engines. The repository should be accessible with standard apt
commands:

  apt-get -o Debug::nolocking=true --download-only --reinstall install jwm
  apt-get source jwm

The /etc/apt/sources.list need appropriate entries. 

Jari


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



Bug#323629: ITP: smarty-gettext -- provides gettext support for smarty

2005-08-17 Thread Cyril Bouthors
Package: wnpp
Severity: wishlist

* Package name: smarty-gettext
  Version : 1.0b1
  Upstream Author : Sagi Bashari 
* URL or Web page : http://sf.net/projects/smarty-gettext/
* License : GPL
  Description : provides gettext support for smarty
-- 
Cyril Bouthors


pgpNqmfj6kubH.pgp
Description: PGP signature


Bug#323630: ace: FTBFS: Missing build dependency on bzip2.

2005-08-17 Thread Kurt Roeckx
Package: ace
Version: 5.4.7-2
Severity: serious

Hi,

Your package seems to have a missing build dependency on bzip2:
 debian/rules build
tar -xjf "ACE+TAO+CIAO-5.4.7.tar.bz2"
tar: bzip2: Cannot exec: No such file or directory


Kurt



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



Bug#323631: bins: javaScriptPreloadImage preloads the wrong sized image

2005-08-17 Thread Malcolm Parsons
Package: bins
Version: 1.1.28-1
Severity: normal
Tags: patch

The doc says that javaScriptPreloadImage preloads the next image of the
same size:

javaScriptPreloadImage
If  set  to  1,  add  some javascript code in image pages to
preload the next image of the same size when current one  is
loaded, to speed up the album browsing.

It actually preloads the next image at maximum size, slowing down album
browsing.

Patch based on the other use of $sizeLink in bins:

 #my ($xbase, $xpath, $xtype) =
 #fileparse($imagesToDisplay[$nextImageNum], '\.[^.]+\z');

 my $sizeLink = $imageData[$nextImageNum]->{'maxSize'};
+if ($sizeLink >= $size ) {
+$sizeLink = $size;
+}

 $imageData[$i]{$j}{'nextHTML'} =
 getHTMLImagePageLink($imageData[$nextImageNum], $j,
 $nextImageNum);

 $imageData[$i]{$j}{'preloadIMG'} =
 jssafe_uri_escape($imageData[$nextImageNum]{'basename'})."_".
 $imageData[$nextImageNum]{configuration}{sizeNames}[$sizeLink].

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.3
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages bins depends on:
ii  libhtml-clean-perl  0.8-8Cleans up HTML code for web browse
ii  libhtml-parser-perl 3.45-2   A collection of modules that parse
ii  libhtml-template-perl   2.6-2HTML::Template : A module for usin
ii  libimage-info-perl  1.16-2   allows extraction of meta informat
ii  libimage-size-perl  2.992-1  determine the size of images in se
ii  libio-string-perl   1.05-1   Emulate IO::File interface for in-
ii  libjpeg-progs   6b-10Programs for manipulating JPEG fil
ii  liblocale-gettext-perl  1.05-1   Using libc functions for internati
ii  libtext-iconv-perl  1.4-1converts between character sets in
ii  libtimedate-perl1.1600-4 Time and date functions for Perl
ii  liburi-perl 1.35-1   Manipulates and accesses URI strin
ii  libxml-grove-perl   0.46alpha-11 Perl module for accessing parsed *
ii  libxml-handler-yawriter-per 0.23-5   Perl module for writing XML docume
ii  libxml-perl 0.08-1   Perl modules for working with XML
ii  libxml-writer-perl  0.600-1  Perl module for writing XML docume
ii  libxml-xql-perl 0.68-4   Perl module for querying XML tree 
ii  perlmagick  6:6.2.3.6-3  A perl interface to the libMagick 

bins recommends no packages.

-- no debconf information


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



Bug#323632: xspecs: missing XIE and XKB docs

2005-08-17 Thread Ilya Anfimov
Package: xspecs
Version: 4.3.0.dfsg.1-14
Severity: normal


 The xfree86 sources contains specifications on XKB (X Keyboard
extension, in xc/{hardcopy,specs}/XKB) and on XIE (X Image extension,
in xc/{hardcopy,specs}/XIE. But it appear that there is no such
documentation packaged in Debian XFree86 package.


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.7-1-386
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)

-- no debconf information


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



Bug#294350: coreutils: sort(1)'s +$num flag is not mentioned in the man page

2005-08-17 Thread Edward Welbourne
Package: coreutils
Version: 5.2.1-2
Followup-For: Bug #294350

I am used to sort historically supporting a +$num option.
This would appear to be supported by the present coreutils sort.
It is not, however, mentioned in the manual page.

This is related to #294350: having now done some experiments, I find
that +$n is an undocumented form of -k $(( 1 + $n )).  If it is
deprecated, then the man page should say so (both to help us old dogs
learn new tricks and to explain to anyone who's inherited scripts from
us what we thought we were doing).  But the description of -k (aside
from being split between where -k appears in the option list and the
paragraph which follows the last options) is ... probably perfectly
clear to someone who already knows what -k does ... but was so
mysterious I had to conduct experiments to find out what -k really
does.  Have pity on the poor newcomers with less prior knowledge !

Saying "(origin 1)" meant something to me, but I suspect a newcomer
would be more likely to understand "(left-most field is number 1)".
It would probably be better to say (see below) at the end of -k's
description, and explain the numbering after "F is the field number"
in the later paragraph.

Furthermore, in -k's description, POS2 is mis-spelt "POS 2".
And the later paragraph appears to claim I can give options to both
POS1 and POS2; but applicable options would apply to the whole key,
so this seems somewhat spurious ... though possibly correct.

-- System Information:
Debian Release: 3.1
  APT prefers experimental
  APT policy: (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686-smp
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages coreutils depends on:
ii  libacl1 2.2.23-1 Access control list shared library
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an

-- no debconf information


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



Bug#323110: [Pkg-nagios-devel] Bug#323110: nagios should build-dep on traceroute or hardcode traceroute path

2005-08-17 Thread sean finney
hi ben,

On Sun, Aug 14, 2005 at 03:12:41PM -0400, Ben Winslow wrote:
> Nagios has a WML interface (statuswml.cgi) that allows traceroute to be
> run, but the path to traceroute is set to "" at compile time (presumably
> because configure doesn't detect traceroute on the build system.)
> Obvious options seem to be to make traceroute a build dependency or to
> hardcode the path to traceroute.

i think hardcoding the path makes the most sense, and i'll add a patch
to do so in the next upload.


thanks,
sean



signature.asc
Description: Digital signature


Bug#323547: moc: wrong theme directory

2005-08-17 Thread Elimar Riesebieter
On Wed, 17 Aug 2005 the mental interface of
Christian Häggström told:

[...]
> A strace shows that is tries to open
> /usr/share/doc/moc/themes/nightly_theme, but it should look under
> /usr/share/moc/themes/ instead.
>
> I have "Theme = nightly_theme" in my ~/.moc/config
What tells dpkg -L moc | grep themes ?

Elimar

-- 
  Alles was viel bedacht wird ist bedenklich!;-)
 Friedrich Nietzsche


pgpmKuTglfAwo.pgp
Description: PGP signature


Bug#323586: [stripped Russian text].

2005-08-17 Thread David Martínez Moreno
El Miércoles, 17 de Agosto de 2005 18:47, Stepan Golosunov escribió:
> On Wed, Aug 17, 2005 at 05:03:47PM +0200, David Martínez Moreno wrote:
> > El Miércoles, 17 de Agosto de 2005 14:12, Антон escribió:
> > > Package:Xfree86-common
> > > Version: 4.3.0
> >
> > Hello. Apart from explaining your problem in English, could you please
> > send us the exact version of your XFree86 packages? You know:
> >
> > dpkg -l |grep dfsg
>
> This can show wrong version. For example, 4.3.0.dfsg.1-1 while actual
> version is 4.3.0.dfsg.1-14.
>
> Better use
> COLUMNS=100 dpkg -l |grep dfsg

I thought that the new dpkg coped with this, but it is likely that the 
version in sarge have npot got these changes. Thank you.

Anton, please use the second command, it is safer than mine.

Best regards,


Ender.
-- 
You idiots, you've captured their stunt doubles.
-- Dark Helmet (Spaceballs).
--
Debian developer


pgp3ah9yRNdNW.pgp
Description: PGP signature


Bug#282492: iproute: "ip -4 neigh flush dev eth0" hangs up

2005-08-17 Thread Piotr Roszatycki
I've found that the latest snapshot does work:

./ip -4 neigh flush dev eth0
*** Flush not complete bailing out after 10 rounds

It doesn't hang up completly. I hope this solution can be backported to the 
Debian's version. The bug is very annoying and important for me.

-- 
 .''`.Piotr Roszatycki, Netia SA
: :' :mailto:[EMAIL PROTECTED]
`. `' mailto:[EMAIL PROTECTED]
  `-


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



Bug#323634: scite unusable: probably a gtk error, but here also a report

2005-08-17 Thread Dino
Package: scite
Version: 1.64-1
Severity: important

My scite is unusable... while i'm typing everything in the "textbox"
flies throw it :x
i have take a screenshot.. i think a move would be better to understand,
but lasts... Two of my friends have same / similar problems since about
beginning of august.

http://195.225.105.180/~dino/tmp/scite_bug.png

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.2
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages scite depends on:
ii  libatk1.0-0   1.10.1-2   The ATK accessibility toolkit
ii  libc6 2.3.5-3GNU C Library: Shared
libraries an
ii  libgcc1   1:4.0.1-4  GCC support library
ii  libglib2.0-0  2.8.0-1The GLib library of C routines
ii  libgtk2.0-0   2.6.9-1The GTK+ graphical user
interface
ii  libpango1.0-0 1.8.2-1Layout and rendering of
internatio
ii  libstdc++51:3.3.6-8  The GNU Standard C++ Library v3

scite recommends no packages.

-- no debconf information



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



Bug#323353: jwm: 0.23 has been packaged. A sample *.deb available

2005-08-17 Thread David Moreno Garza
On Wed, 2005-08-17 at 20:11 +0300, Jari Aalto wrote:
> | 
> | --=-We6prauQ77ebEupqKLAP
> | Content-Type: text/plain
> | Content-Transfer-Encoding: quoted-printable
> | 
> | On Wed, 2005-08-17 at 18:49 +0300, Jari Aalto wrote:
> | > I have now uploaded the sources as well. Please use:
> | >=20
> | >   deb-src http://debian.cante.net/source/debian unstable main
> | 
> | I get 404 while updating and while browsing it directly. Please, fix
> | this.
> 
> The permissions do now allow direct http browsing due to abuse and
> search engines. The repository should be accessible with standard apt
> commands:
> 
>   apt-get -o Debug::nolocking=true --download-only --reinstall install jwm
>   apt-get source jwm
> 
> The /etc/apt/sources.list need appropriate entries. 

Err http://debian.cante.net unstable/main Sources
  404 Not Found
Fetched 378B in 2s (181B/s)
Failed to fetch
http://debian.cante.net/source/debian/dists/unstable/main/source/Sources.gz  
404 Not Found

-- 
David Moreno Garza <[EMAIL PROTECTED]> | http://www.damog.net/
 GPG: C671257D - 6EF6 C284 C95D 78F6 0B78 FFD3 981C 5FD7 C671 257D
 Signed mail welcome. Encrypted mail preferred.


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


Bug#323616: [Pkg-zope-developers] Bug#323616: workflow missing from package

2005-08-17 Thread Fabio Tranchitella
Il giorno mer, 17/08/2005 alle 10.39 -0500, Doug Grainger ha scritto:
> Package: zope3-lib
> Version: 3.0.91-1
> 
> zope.app.workflow does not exist in the package, and is not included in the 
> tarball that the package 
> was created with (apparently Zope-3.1.0b1).
> 
> It *is* included in the Zope-3.1.0b1 tag at svn.zope.org, though, so I'm 
> somewhat confused as to why 
> it's not included in the package.  I also can't find any documentation in the 
> package regarding its 
> removal.

Is it the same as the one listed on the zope.org website [1] ?
The page says that "This is the workflow implementation that is
maintained in the Zope 3 trunk. It was not included in the Zope X3 3.0
release, so that it is distributed separately here."

[1] http://www.zope.org/Products/Zope3-Packages

-- 
Fabio Tranchitella <[EMAIL PROTECTED]>.''`.
Proud Debian GNU/Linux developer, admin and user.: :'  :
 `. `'`
   http://people.debian.org/~kobold/   `-
_
1024D/7F961564, fpr 5465 6E69 E559 6466 BF3D 9F01 2BF8 EE2B 7F96 1564


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


Bug#323452: "hda: dma_timer_expiry: dma status == 0x21" errors + freeze (VIA VT82C686 chipset)

2005-08-17 Thread Vincent Lefevre
On 2005-08-17 12:11:24 -0400, Andres Salomon wrote:
> What exactly are the SMART errors?  If you force a smart short or long test, 
> do you get errors?

No errors for short and long tests.
I've attached the output of "smartctl -a".

-- 
Vincent Lefèvre <[EMAIL PROTECTED]> - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / SPACES project at LORIA
smartctl version 5.32 Copyright (C) 2002-4 Bruce Allen
Home page is http://smartmontools.sourceforge.net/

=== START OF INFORMATION SECTION ===
Device Model: Maxtor 91360U4
Serial Number:C40EF2RC
Firmware Version: MA540RR0
Device is:Not in smartctl database [for details use: -P showall]
ATA Version is:   4
ATA Standard is:  ATA/ATAPI-4 T13 1153D revision 17
Local Time is:Wed Aug 17 19:06:54 2005 CEST
SMART support is: Available - device has SMART capability.
SMART support is: Enabled

=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED

General SMART Values:
Offline data collection status:  (0x00) Offline data collection activity
was never started.
Auto Offline Data Collection: Disabled.
Self-test execution status:  (   0) The previous self-test routine completed
without error or no self-test has ever 
been run.
Total time to complete Offline 
data collection: (   0) seconds.
Offline data collection
capabilities:(0x1b) SMART execute Offline immediate.
Auto Offline data collection on/off 
support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
No Conveyance Self-test supported.
No Selective Self-test supported.
SMART capabilities:(0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability:(0x00) Error logging NOT supported.
No General Purpose Logging support.
Short self-test routine 
recommended polling time:(   2) minutes.
Extended self-test routine
recommended polling time:(  14) minutes.

SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME  FLAG VALUE WORST THRESH TYPE  UPDATED  
WHEN_FAILED RAW_VALUE
  1 Raw_Read_Error_Rate 0x000a   253   252   000Old_age   Always   
-   4295265052
  3 Spin_Up_Time0x0027   234   234   063Pre-fail  Always   
-   50
  4 Start_Stop_Count0x0032   252   252   000Old_age   Always   
-   3252
  5 Reallocated_Sector_Ct   0x0033   253   253   063Pre-fail  Always   
-   0
  6 Read_Channel_Margin 0x0001   253   253   100Pre-fail  Offline  
-   0
  7 Seek_Error_Rate 0x000a   253   251   000Old_age   Always   
-   51826
  8 Seek_Time_Performance   0x0027   250   237   187Pre-fail  Always   
-   163419211169726
  9 Power_On_Hours  0x0032   237   237   000Old_age   Always   
-   346205
 10 Spin_Retry_Count0x002b   253   252   223Pre-fail  Always   
-   89
 11 Calibration_Retry_Count 0x002b   253   252   223Pre-fail  Always   
-   77
 12 Power_Cycle_Count   0x0032   249   249   000Old_age   Always   
-   1884
196 Reallocated_Event_Count 0x0008   253   253   000Old_age   Offline  
-   0
197 Current_Pending_Sector  0x0008   253   253   000Old_age   Offline  
-   0
198 Offline_Uncorrectable   0x0008   253   253   000Old_age   Offline  
-   0
199 UDMA_CRC_Error_Count0x0008   199   199   000Old_age   Offline  
-   4920
200 Multi_Zone_Error_Rate   0x000a   253   252   000Old_age   Always   
-   279723
201 Soft_Read_Error_Rate0x000a   253   251   000Old_age   Always   
-   25770101532
202 TA_Increase_Count   0x000a   253   252   000Old_age   Always   
-   297756
203 Run_Out_Cancel  0x000b   253   252   180Pre-fail  Always   
-   297756
204 Shock_Count_Write_Opern 0x000a   253   252   000Old_age   Always   
-   297756
205 Shock_Rate_Write_Opern  0x000a   253   252   000Old_age   Always   
-   297756
207 Spin_High_Current   0x002a   253   252   000Old_age   Always   
-   89
208 Spin_Buzz   0x002a   253   252   000Old_age   Always 

Bug#92354: be the boss

2005-08-17 Thread Ricardo

Hello Jill ,

Would you like at least $1500.00 to $3500.00 per day just for returning phone 
calls?  
I do! If you have a telephone and can return calls you are fully qualified for 
this program.


Give Us A Call 800-671-9012


phosphorescent somnolent mountainous adjacent demography menstruate married 
rodney commando decaffeinate springe spice topnotch copperfield exposit idaho 
locutor convention discernible jehovah numismatist aura covet dread pave 
communion coverage penthouse earnest nicholas breakaway mecca era flip 
climatology euclid accompanist 


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



Bug#92810: Give Us A Call

2005-08-17 Thread Ben
Hello Rhonda ,

Would you like at least $1500.00 to $3500.00 per day just for returning phone 
calls?  
I do! If you have a telephone and can return calls you are fully qualified for 
this program.


Give Us A Call 800-671-9012


siena bernadine heliotrope sara remorse amateur defrock processor statutory de 
affine crux boatload vacuous gules apogee fare flowerpot shako lullaby send 
breastwork dart osseous 



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



Bug#323353: jwm: 0.23 has been packaged. A sample *.deb available

2005-08-17 Thread Jari Aalto
| >   apt-get -o Debug::nolocking=3Dtrue --download-only --reinstall install jwm
| >   apt-get source jwm
| >
| > The /etc/apt/sources.list need appropriate entries.
| 
| Err http://debian.cante.net unstable/main Sources
|   404 Not Found
| Fetched 378B in 2s (181B/s)
| Failed to fetch
| http://debian.cante.net/source/debian/dists/unstable/main/source/Sources.gz=
|   404 Not Found

My mistake on the url, it should be without the 'source' in path:

   deb http://debian.cante.net/debian unstable main
   deb-src http://debian.cante.net/debian unstable main

Jari


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



Bug#322638: comments on afs-newcell

2005-08-17 Thread Russ Allbery
Sergio Gelato <[EMAIL PROTECTED]> writes:

> I have now tested it, and it does work. I can submit my modified
> afs-rootvol on request; it's not quite done yet, since I coded if(1) and
> unless(1) instead of computing and testing whether we have dynroot.
> (How to do that test? I'd say vos create root.cell unconditionally, then
> see if /afs/$cell/. exists. If it does, mount root.afs at
> /afs/$cell/.root.afs and work from there; else try the old approach.)

This sounds great to me.  If you get a chance to finish coding this,
please do send a patch; otherwise, I'll probably implement it.

-- 
Russ Allbery ([EMAIL PROTECTED]) 


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



Bug#291058: Matrikon Open Letter: Subscription Verification

2005-08-17 Thread Randy Kondor - VP of Marketing
To Our Valued Readers and Clients,

The problem of unsolicited email has become more than just an
annoyance to individuals and industry. To combat this issue,
we have integrated a new Email Verification Process so only
those who want to receive and download our software, industry
resources, multimedia tutorials and documents are able to so.

[Email verification link below]
 
Matrikon's resources are designed for engineers, IT personnel, 
maintenance & operations managers, project supervisors, executives
and others working in power, petrochemical, oil & gas, pulp & paper,
mining and other industries.
 
Our new mandate is to allow only those who verify their email 
address access to:

 - Industrial connectivity software
 - Troubleshooting and testing utilities
 - Process control trending and reporting software
 - Demonstration software
 - Multimedia tutorials
 - Whitepapers & datasheets
 
With the primary focus on:
 
 - Alarm management
 - Advanced process control
 - Industrial connectivity
 - Asset management
 - IT security
 - Process monitoring and data analysis
 


Email Verification Process

You are currently subscribed as [EMAIL PROTECTED]

To continue to access Matrikon software, resources, and technical
documents, automatically verify your email address by sending us
an email using the following link:

Link: mailto:[EMAIL PROTECTED] 
(Do not modify the subject line. If you are unable to use this 
link, please send an email to [EMAIL PROTECTED] and type 
'Subscribe' in the subject.)

Please Note: If you do NOT click on this link, you will NOT 
receive any further mailings from Matrikon.


 
This new Email Verification Process illustrates Matrikon's continued
commitment to ensure you only receive information that is important
to you.  Please contact me directly if you have any questions.

Kind regards,
 
Randy Kondor
Vice President of Marketing
Matrikon Inc.
Tel: (780) 448-1010
[EMAIL PROTECTED]

***

This open letter is a one-time request to verify that you wish to
receive access to Matrikon resources.
 
Matrikon, Inc. 10405 Jasper Avenue
Edmonton, Alberta, Canada, T5J 3N4
We protect your privacy:
http://www.matrikon.com/main/privacy.asp



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



Bug#251061: Matrikon Open Letter: Subscription Verification

2005-08-17 Thread Randy Kondor - VP of Marketing
To Our Valued Readers and Clients,

The problem of unsolicited email has become more than just an
annoyance to individuals and industry. To combat this issue,
we have integrated a new Email Verification Process so only
those who want to receive and download our software, industry
resources, multimedia tutorials and documents are able to so.

[Email verification link below]
 
Matrikon's resources are designed for engineers, IT personnel, 
maintenance & operations managers, project supervisors, executives
and others working in power, petrochemical, oil & gas, pulp & paper,
mining and other industries.
 
Our new mandate is to allow only those who verify their email 
address access to:

 - Industrial connectivity software
 - Troubleshooting and testing utilities
 - Process control trending and reporting software
 - Demonstration software
 - Multimedia tutorials
 - Whitepapers & datasheets
 
With the primary focus on:
 
 - Alarm management
 - Advanced process control
 - Industrial connectivity
 - Asset management
 - IT security
 - Process monitoring and data analysis
 


Email Verification Process

You are currently subscribed as [EMAIL PROTECTED]

To continue to access Matrikon software, resources, and technical
documents, automatically verify your email address by sending us
an email using the following link:

Link: mailto:[EMAIL PROTECTED] 
(Do not modify the subject line. If you are unable to use this 
link, please send an email to [EMAIL PROTECTED] and type 
'Subscribe' in the subject.)

Please Note: If you do NOT click on this link, you will NOT 
receive any further mailings from Matrikon.


 
This new Email Verification Process illustrates Matrikon's continued
commitment to ensure you only receive information that is important
to you.  Please contact me directly if you have any questions.

Kind regards,
 
Randy Kondor
Vice President of Marketing
Matrikon Inc.
Tel: (780) 448-1010
[EMAIL PROTECTED]

***

This open letter is a one-time request to verify that you wish to
receive access to Matrikon resources.
 
Matrikon, Inc. 10405 Jasper Avenue
Edmonton, Alberta, Canada, T5J 3N4
We protect your privacy:
http://www.matrikon.com/main/privacy.asp



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



Bug#323635: python2.1: syntax error in email/_compat22.py

2005-08-17 Thread Bastian Kleineidam
Package: python2.1
Version: 2.1.3dfsg-2
Severity: normal

Hi,

during install of python2.1 I got this error:
Setting up python2.1 (2.1.3dfsg-2) ...
Compiling python modules in /usr/lib/python2.1 ...
  File "/usr/lib/python2.1/site-packages/TMDA/pythonlib/email/_compat22.py", 
line 28
yield self
 ^
SyntaxError: invalid syntax
Compiling optimized python modules in /usr/lib/python2.1 ...
  File "/usr/lib/python2.1/site-packages/TMDA/pythonlib/email/_compat22.py", 
line 28
yield self
 ^
SyntaxError: invalid syntax


The installation went ok though, the postinst script did not fail.
I suspect that the compat22.py does not belong in the python2.1 package
but in the python2.2 package.


Regards,
  Bastian

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-treasure6
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages python2.1 depends on:
ii  libc6 2.3.5-3GNU C Library: Shared libraries an
ii  libdb4.3  4.3.28-3   Berkeley v4.3 Database Libraries [
ii  libncurses5   5.4-9  Shared libraries for terminal hand
ii  libreadline5  5.0-10 GNU readline and history libraries
ii  libssl0.9.7   0.9.7g-1   SSL shared libraries
ii  zlib1g1:1.2.3-3  compression library - runtime

python2.1 recommends no packages.

-- no debconf information


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



Bug#131318: Ugly Teeth Looks Bad 6Tnu

2005-08-17 Thread Stella Stratton

The revolution "Whitelight" teeth whitening 
which guarantees:

- Fast Results and easy to use
- works great against all sorts of stains (coffee, smoking)
- Boost your confidence with great white smile
- Used by dentist and millions worldwide
- Satisfaction Guarantees...NO Risk!

Why waiting? Check us out!
http://iglobalproducts.net/wlr


Hvq


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



Bug#30340: Desgres Besad On Lfie Eencrxpeie

2005-08-17 Thread Sheldon Blankenship
Good day,

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



Gary Vega






Work has been quite tonight a good thing I hate busy Mondays. Found out that my 
PTO for family reunion has been approved I can't wait till July. I have some 
extra time off and have already sent my pops an email so we can plan a fishing 
trip after the reunion. I love fishing with my pops, after all the fights we 
had when I was a BRAT, and then I finally found the friend in him and respect I 
was looking for I truly love hanging with him. Moms is a blast she has always 
been, I think she gets a little jealous sometimes because she always stayed in 
between dad and I when we fought, Now that we get along Pops and I do more 
things together. I really enjoy when I get in the kitchen and help her out with 
the meal, and we talk about all kinds of things, she really helps me whenever I 
ask and there is nothing I wouldn't do for her, I can talk to her about things 
I can not talk to Pops about. I look forward to sneaking away on the weekends 
to see them and get some QT time with them. well gonna run for now. 3


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



Bug#323618: Virtual memory ulimit

2005-08-17 Thread Seo Sanghyeon
Hello, I am "another user" Greg mentioned. We discussed this, and I
think we found the problem:

As noted, dpkg -L sun-j2sdk1.5 reports exactly same except classes.jsa.
Also, diff'ing java-package log shows no difference other than temporary
directory name and "Testing extracted archive..." success vs. failure.
This means, classes.jsa doesn't appear in extraction log even if run is
successful.

As a matter of fact, jdk-1_5_0_03-linux-i586.bin includes the following
code:

  $javahome/bin/java -client -Xshare:dump > /dev/null 2>&1

According to Google search, this command generates classes.jsa. So this
file is not extracted, but generated at install time.

Somehow, this generation is failing on some people's machine, and
classes.jsa is not being generated, and as this file is 13 M big,
expected_min_size is not met.

Greg ran "java -client -Xshare:dump" after installing the package built
with workaround (i.e. editing sun-j2sdk.sh and change 130 to 128), and
it failed with:

  Error occurred during initialization of VM
  Could not reserve enough space for object heap
  Could not create the Java virtual machine.

I measured the command's memory usage with top, and it reports 763 M.
Consistent with this, Greg reports "ulimit -v 70; java..." fails,
but "ulimit -v 80; java..." succeeds. Greg had virtual memory limit
set to 30 when he ran java-package.

It is likely that this can explain #300546 too.

I suggest displaying a warning to user if user has virtual memory limit
set, just like "Probably not enough free disk space" warning.

Seo Sanghyeon


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



Bug#305252: [EMAIL PROTECTED]: I don' t understand]

2005-08-17 Thread Dan Jacobson
Run this script and save the output into pt.html. Install pt.html on
your Palm. You'll see in plucker that clicking on these links we put in
the top of the file will not bring one to the anchors.

#!/usr/bin/perl -w
print <<'EOF';

plucker anchor test

EOF

for ( $i = 20 ; $i <= 400 ; $i += 20 ) { print "$i\n" }

for ( $i = 1 ; $i <= 400 ; $i++ ) {
if ( !( $i % 20 ) ) { print "$i\n"; }
else { print "$i\n"; }
}
print "\n"


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



Bug#195721: Deerges Baesd On Yuor Kgwonlee

2005-08-17 Thread Faye Dale
How have you been,

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



Elva Kim






I got mad today at those panhandler groups, I stopped at a red light and here 
came one of the (recovering) drug Addicts from some groups home selling M&M's 
to raise money, I told him I had no money, he continued trying to get something 
from me, C'mon on man a dime helps me out a lot...I said NO I got no money, 
well he continued, I finally asked him if he could hear when he said yeah I sad 
then listen, I am broke, I barely make ends meet, why do you think I am heading 
to work, I can;t get out on the street and beg for money, go find a job! The 
light turned green and I left.3


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



Bug#177940: Eran Yuor Dreege Now

2005-08-17 Thread Nannie Sweet
Good day to you sir,

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



Alonzo Latham






Well I'm back for another installment. If you are in the media business then 
you may already know what the title means. 3


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



Bug#177897: D3grees Based On Your Knowlege

2005-08-17 Thread Keri Hester
How have you been,

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



Brock Stevenson






Work has been quite tonight a good thing I hate busy Mondays. Found out that my 
PTO for family reunion has been approved I can't wait till July. I have some 
extra time off and have already sent my pops an email so we can plan a fishing 
trip after the reunion. I love fishing with my pops, after all the fights we 
had when I was a BRAT, and then I finally found the friend in him and respect I 
was looking for I truly love hanging with him. Moms is a blast she has always 
been, I think she gets a little jealous sometimes because she always stayed in 
between dad and I when we fought, Now that we get along Pops and I do more 
things together. I really enjoy when I get in the kitchen and help her out with 
the meal, and we talk about all kinds of things, she really helps me whenever I 
ask and there is nothing I wouldn't do for her, I can talk to her about things 
I can not talk to Pops about. I look forward to sneaking away on the weekends 
to see them and get some QT time with them. well gonna run for now. 3


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



Bug#323637: init.d/fetchmail: say if didn't start anything

2005-08-17 Thread Dan Jacobson
Package: fetchmail
Version: 6.2.5-18
Severity: wishlist
File: /etc/init.d/fetchmail

I wish it would tell the truth, that it didn't start anything, as one
was already running.

# pidof fetchmail
7021
# /etc/init.d/fetchmail start
Starting mail retrieval agent: fetchmail.
# pidof fetchmail
7021

Also tell the truth, that you didn't stop anything:
# pidof fetchmail
# /etc/init.d/fetchmail stop
Stopping mail retrieval agent: fetchmail.
#

The Truth, else debugging is even tougher.

-- debconf information:
* fetchmail/confwarn:
* fetchmail/systemwide: true
* fetchmail/initdefaultswarn:
* fetchmail/runasroot: false
  fetchmail/fetchidswarn:


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



Bug#323418: Please package skippy-xd.

2005-08-17 Thread xaiki

I'm currently MIA, for at least another month, so there will be no
action until then. 

anyways, about skippy-xd, a package 'out of source' will require
xcompmgr, witch I absolutly don't want to package nor maintain as it's
a hack and works (decently) only in rare limit cases.

However, here are David Nusinow's words:
"Some people have also been asking about xcompmgr/transset packages.  
It's still not packaged for Debian because it's either slow or crashy,
  depending on your driver, although fixes are in the works. I may have
found  someone to maintain it for Debian, and I'll try and keep people
posted  about it when I know more."

When/if xcompmgr gets uploaded I might consider uploading a (raw from
source) package of skippy-xd.

Anyways, there are 2 things that skippy-xd does (differently than the
'classic' tree):
- use the XDamage extention to know when a window is changed.
- use xcompmgr to get the snapshot of the window at this moment.

The buggy/slow feature is only the second one, and I believe it's
possible to use XDamage to know when the window has changed to take a
new screenshot using the skippy(-noxd) code to get the snapshot. I'm
intrested in patching skippy on this way (and maybe on merging
everything in a package that could detect if xcompmgr is installed and
use it if configured to do so), but I'm not sure on when I'll get the
time to do it, and the upstream author is not intrested at all about
this.

If anyone is intrested in doing this, I'll read the patches.

Regards,
--
Niv Sardi-Altivanik


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



Bug#301398: Matrikon Open Letter: Subscription Verification

2005-08-17 Thread Randy Kondor - VP of Marketing
To Our Valued Readers and Clients,

The problem of unsolicited email has become more than just an
annoyance to individuals and industry. To combat this issue,
we have integrated a new Email Verification Process so only
those who want to receive and download our software, industry
resources, multimedia tutorials and documents are able to so.

[Email verification link below]
 
Matrikon's resources are designed for engineers, IT personnel, 
maintenance & operations managers, project supervisors, executives
and others working in power, petrochemical, oil & gas, pulp & paper,
mining and other industries.
 
Our new mandate is to allow only those who verify their email 
address access to:

 - Industrial connectivity software
 - Troubleshooting and testing utilities
 - Process control trending and reporting software
 - Demonstration software
 - Multimedia tutorials
 - Whitepapers & datasheets
 
With the primary focus on:
 
 - Alarm management
 - Advanced process control
 - Industrial connectivity
 - Asset management
 - IT security
 - Process monitoring and data analysis
 


Email Verification Process

You are currently subscribed as [EMAIL PROTECTED]

To continue to access Matrikon software, resources, and technical
documents, automatically verify your email address by sending us
an email using the following link:

Link: mailto:[EMAIL PROTECTED] 
(Do not modify the subject line. If you are unable to use this 
link, please send an email to [EMAIL PROTECTED] and type 
'Subscribe' in the subject.)

Please Note: If you do NOT click on this link, you will NOT 
receive any further mailings from Matrikon.


 
This new Email Verification Process illustrates Matrikon's continued
commitment to ensure you only receive information that is important
to you.  Please contact me directly if you have any questions.

Kind regards,
 
Randy Kondor
Vice President of Marketing
Matrikon Inc.
Tel: (780) 448-1010
[EMAIL PROTECTED]

***

This open letter is a one-time request to verify that you wish to
receive access to Matrikon resources.
 
Matrikon, Inc. 10405 Jasper Avenue
Edmonton, Alberta, Canada, T5J 3N4
We protect your privacy:
http://www.matrikon.com/main/privacy.asp



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



Bug#323636: xlibmesa-gl-dev: missing word in glColorTable.3

2005-08-17 Thread Justin Pryzby
Package: xlibmesa-gl-dev
Severity: normal
Version: 4.3.0.dfsg.1-14

   format  The   of the pixel data in table.  The allowable values
  ^^^
   are GL_RED, GL_GREEN, GL_BLUE, GL_ALPHA,  GL_LUMINANCE,
   GL_LUMINANCE_ALPHA,   GL_RGB,   GL_BGR,   GL_RGBA,  and
   GL_BGRA.


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



Bug#323638: man-db: Please find manpages in /usr/X11R6/

2005-08-17 Thread Justin Pryzby
Package: man-db
Severity: normal
Version: 2.4.3-1

Please make apropos find stuff in /usr/X11R6/.


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



Bug#230509: mozilla-dev: xpidl segfaults when no .idl file is given

2005-08-17 Thread Bastian Kleineidam
Hi,

I noticed that the mozilla-firefox xpidl has the same problem as
described here:
$ /usr/lib/mozilla-firefox/xpidl -m typelib
ERROR: extra arguments after input file
segmentation fault

So I wrote a patch that applies against mozilla-firefox 1.0.6-2.
It just exits if extra arguments are detected.

Regards,
  Bastian
-- 
  ,''`.  Bastian Kleineidam
 : :' :GnuPG Schlüssel
 `. `'gpg --keyserver wwwkeys.pgp.net --recv-keys 32EC6F3E
   `-

--- xpcom/typelib/xpidl/xpidl.c.orig2005-08-17 20:05:24.159976161 +0200
+++ xpcom/typelib/xpidl/xpidl.c 2005-08-17 20:05:33.686535333 +0200
@@ -262,6 +262,8 @@
 }
 if (argc != i + 1) {
 fprintf(stderr, "ERROR: extra arguments after input file\n");
+xpidl_usage(argc, argv);
+return 1;
 }
 
 /*


signature.asc
Description: Digital signature


Bug#74865: Desgres Besad On Lfie Eencrxpeie

2005-08-17 Thread Marvin Clark
Good day,

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



Daphne Rudd






In my final year of undergraduate classes at UVic I had a theory. It should 
have been written as a psychology paper, but since I was in a creative 
non-fiction course, it was a writing prof that told me I wasn't functioning 
with all cylinders. I wrote a paper about baby dreams interviewing women 
between the ages of 18 and 24 and quoting excerpts from their accounts.3


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



Bug#74672: Eran Yuor Dreege Now

2005-08-17 Thread Lydia Stinson
How are you,

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



Carrie Summers






I could see in her eyes that she was sizing up just how much of a sinner and 
sexual deviant I could potentially be. It makes me sad that this girl feels 
that way because statistically, there are likely to be many more of this 
persuasion. Rather than thinking, "I'm glad I'm not gay," I'd rather tell 
people, "I may not be hate, but it's an insulting way of stating that gays 
aren't equal to tell them they can't get married like every other person."3


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



Bug#318996: poker-network: Debconf templates do not follow Developer's Reference recommendations

2005-08-17 Thread Christian Perrier
reopen 318996
thanks

>  > Many thanks for your packaging work in the Debian Project...
> 
> Please feel free to reopen this bug with a precise description
> of the problem at a later time.


Using the PO file as reference because I don't have the templates file
handy, but I think you'll get the point:

#. Type: boolean
#. Description
#: ../python2.3-poker-network.templates:4
msgid "poker-network server installation."
msgstr "Voulez-vous installer poker-network en mode serveur?"


#. Type: boolean
#. Description
#: ../python2.3-poker-network.templates:4
msgid ""
"Do you want to configure and run the poker-network server ? If you do, make "
"sure you already have administrative rights on a running MySQL server. If "
"you do not want to run the poker-network server on this machine, you will be "
"prompted for the hostname or the IP of a running poker-network server."
msgstr ""


Boolean template: should use a question in the short part and no
question in the long part.

#. Type: note
#. Description
#: ../python2.3-poker-network.templates:13
msgid "Skipping poker-network server installation."

#. Type: note
#. Description
#: ../python2.3-poker-network.templates:13
msgid ""
"If you want to run poker-network at a later time, you will need to configure "
"it by hand or by running dpkg-reconfigure python2.3-poker-network."

Note template: short description should not use an ending dot

#. Type: string
#. Description
#: ../python2.3-poker-network.templates:21
msgid "Please enter the hostname or IP of the default poker-network server."

String template: recommended form is an "open prompt" such as
"Hostname or IP address of the default server:"

And so onall this is explained in the relevant part of the
developer's reference.

When back from holidays on Aug 22th, I'll be able to give you more
details.




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



Bug#317082: Not just a dpkg bug

2005-08-17 Thread Andreas Jochens
On 05-Aug-17 17:00, Scott James Remnant wrote:
> For those following, the problem is that people are building 64-bit
> libraries on a 32-bit platform (or the other way around) as part of the
> package build.  dpkg-shlibdeps uses plain old "ldd" to find out the
> dependencies of a binary or shared library, but the ldd on the system
> won't be able to identify the impostor libraries.

> This'll fail with:
>   dpkg_shlibdeps -p lib64z1 -lbuild-tree/zlib-1.2.3
>   /usr/bin/ldd: line 161: /lib64/ld-linux-x86-64.so.2: cannot execute 
> binary file
>   dpkg-shlibdeps: failure: ldd on 
> `debian/lib64z1/usr/lib64/libz.so.1.2.3' gave error exit status 1
>   dh_shlibdeps: command returned error code 256
> 
> 
> In this example, the 32-bit i386 ldd on my system can't read the amd64
> binaries that have been generated.

Please 'apt-get install amd64-libs' and try this again. 'ldd' should
work then.

The current 'ldd' already supports biarch. 

However, to work for 64-bit binaries, 'ldd' needs the 64-bit linker 
'/lib64/ld-linux-x86-64.so.2'. This linker is currently in 'amd64-libs'
(this may change to 'libc6-amd64' later).

This means that the problem can be solved by always installing
'amd64-libs' (or 'libc6-amd64') before dpkg-shlibdeps is used for
a 64-bit binary.

Generally, a package which creates 64-bit binaries on i386 will have to 
Build-Depend on 'amd64-libs-dev' or 'libc6-dev-amd64' anyway, because
it needs to link to a 64-bit libc. In this case there is no problem.

In the case of the 'glibc' package itself, I think a Build-Depends
on 'amd64-libs-dev [i386]' (or 'libc6-dev-amd64 [i386]') should be 
added.

The same applies to the other biarch cases (powerpc, sparc, s390).

This should fix the bug.

Regards
Andreas Jochens


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



Bug#148655: Life Experience Degrees

2005-08-17 Thread Mia Elder
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



Jaime Post






I recently read an article in Bitch magazine titled, "Dear Female Friendship 
Culture". The author laments her lack of a tight circle of friends and I 
sympathize with her. She criticized Sex and the City for portraying quality and 
quantity of friendships as a measurement of personal worth. I don't think Sarah 
Jessica Parker has the market cornered in pressuring us to bond with our peers. 
But this isn't an individual problem. It's not a matter of a few uncool people 
having turned into friendless losers. The fact that you’re reading this blog, 
whether you know me or not, indicates a shift in the way we socialize. Dialogue 
that takes place electronically didn't exist in my younger coffee shop days. It 
seems common for 20 and 30 something adults to experience a depressing 
disconnection from their social lives whether the cause is career, family or 
other. Many of our acquaintanceships and friendships now exist in intangible 
transmissions and white noise. The need for human contact can and will never be 
fullfilled.3


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



Bug#118337: Eran Yuor Dreege Now

2005-08-17 Thread Bobbie Ham
Hi [EMAIL PROTECTED],

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



Wendi Hooker






I'm leaving my hometown again. Again for Victoria. This time, packing up my 
belongings, I know just how much I'm going to miss my smalltown life. All 
around me people, scenery and landmarks trigger the constant carbonation of 
memory. And I’m glad. I've been a part of Vernon since 1985. I enjoy seeing 
subtle layers of time in the architecture, politics and economy (or lack of) in 
my community.3


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



Bug#118337: Life Experience D3grees

2005-08-17 Thread Riley Obrien
Good day to you sir,

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



Shirley Alfaro






Now I want you to think back, to when you were younger. Did you ever wonder 
what magic your mother had in her, I did once I got older, How is it they were 
able to ease the pain of a skinned knee just by blowing on it and giving it a 
little kiss through their hands. It seemed once that was done I can remember 
the pain virtually just disappearing. They could mend hurt feeling with nothing 
more then a hug and no matter how dark a day you thought you were having mom 
always knew what to do or say to brighten it up. Face it mom had a tough job, 
she had to be the cook, cleaner, Dr. Wife to dad and most important referee all 
the while working an outside job as well. When you think mom was all soft it 
would never fail someone or something would threaten her child and she would 
jump in to the rescue and nothing could stop her. I mean there isn't a force on 
mother earth that can stop a mom when it comes to her child. 3


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



Bug#157305: FW: Life Experience Degrees

2005-08-17 Thread Wm Blackmon
Good day,

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



Elbert Staton






Now all I need to do is fully recover from the surgery. I am scheduled to go 
back to work on July 26th. I am sooo ready to go back to work. I get a call 
the Thursday before I go back to work, there is a staff meeting I need to try 
and attend if at all possible Friday morning. So I go expecting to hear that we 
may have hired a new News Director. Instead I get the shock of my life, They 
are shutting down my news station immediately. I am totally blown away.3


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



Bug#102120: Lfie Expirecene Deeergs

2005-08-17 Thread Clifford Masters
Hey [EMAIL PROTECTED],

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



Janet Hogue






Do you read food labels? I do. And I'm not sure it's for the right reasons. I 
think I may be deluding myself when I dawdle in the dairy isle looking for the 
healthiest cheese. The more I contemplate the subject, the more I doubt that 
I'll be able to stave off a heart attack or diabetes with the exact right 
balance of preservative-ridden packaged chemicals masquerading as food. Yet, in 
the hopes that I have a chance of resembling a healthy person, I take a multi 
vitamin, exercise as often as possible and try to restrain myself from flinging 
the contents of my desk on the floor and running down to the bistro BBQ that 
wafts up from the street with the sax music.3


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



Bug#102006: D3gress Based On Life Experience

2005-08-17 Thread Candy Bender
Hello [EMAIL PROTECTED],

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



Derrick Buck






Saturday when I got up not a lot happening, I checked the mail and the missus 
had a b-day card from my parents. Inside was 50 buckaroos, now most would go 
and spend that money on themselves which is what I expected her to do. 
NOPE..Instead she took me out to lunch we had some fun just her and I sitting 
around talking about nothing in general. Time alone is a rare thing. 3


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



Bug#37515: Lfie Expirecene Deeergs

2005-08-17 Thread Alma Palmer
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



Christie Keen






Well it is about 2:45am here so I am going to sign off and hit the hay. See you 
in my dreams!3


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



Bug#43640: Lfie Expirecene Deeergs

2005-08-17 Thread Sidney Bingham
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



Beryl Swain






My compadres are back from their vacations so We talked about Spain and Florida 
and pretty much caught up. I was glad today was not a major pain since I was 
not looking forward to it. I could use a few more days off just too sleep. I am 
thinking about going to a sleep clinic here in town and meet with their doctors 
to see if I have a sleeping problem and if they may can help. 3


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



Bug#323641: apt-file: More manpage errors

2005-08-17 Thread Frederic Briere
Package: apt-file
Version: 2.0.6
Severity: minor

The apt-file(1) manpage states that the "list" action "is very close to
the dpkg -S command", yet dpkg -S searches for *files*, not packages.
Shouldn't this attribution be moved to the "search" action?

Also, this part:

  list   Alias for list.

Should probably read "show" instead.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-2
Locale: LANG=en_CA, LC_CTYPE=en_CA (charmap=ISO-8859-1)

Versions of packages apt-file depends on:
ii  gzip  1.3.5-12   The GNU compression utility
ii  libapt-pkg-perl   0.1.17 Perl interface to libapt-pkg
ii  libconfigfile-perl1.2.1  Parses simple configuration files
ii  perl  5.8.7-4Larry Wall's Practical Extraction 

Versions of packages apt-file recommends:
pn  curl   (no description available)
ii  wget  1.10-3+1.10.1beta1 retrieves files from the web

-- debconf-show failed


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



Bug#315340: ITA: kbear -- graphical ftp client for KDE

2005-08-17 Thread Ben Burton

Hi,

> i'm interested in adopting this package.
> if there's no problem, i'll apply the patch available [1], and
> repackage a new revision.

Thanks for taking care of this.  Note that you should also submit patch [1]
to upstream via the sourceforge.net bug tracker, so that if they ever make
a new release then this patch may be included in it.

> I don't know if you are available for sponsoring this package.

I'm afraid not -- not so much time available these days. :/

Ben.



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



Bug#323554: emacs-snapshot-gtk: Ediff crashes Emacs under X

2005-08-17 Thread Romain Francoise
reopen 323554 2005081214-2
retitle 323554 emacs-snapshot-gtk: Ediff crashes Emacs under IceWM
kthxbye

Sven Joachim <[EMAIL PROTECTED]> writes:

> What do you exactly mean with "backtrace"? Typing in the above command
> gives only the message "Segmentation fault". Running strace produces a
> huge output, but does not show anything meaningful to me.

I meant a backtrace in gdb, of course.

> So, you may want to try out if you can reproduce the crash under IceWM
> and, if so, report a bug against the IceWM package.

If Emacs crashes, it's probably a bug in Emacs.

I can reproduce the problem under IceWM, thanks for the report!

-- 
  ,''`.
 : :' :Romain Francoise <[EMAIL PROTECTED]>
 `. `' http://people.debian.org/~rfrancoise/
   `-


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



Bug#115109: Earn Your Degree Now

2005-08-17 Thread Jacqueline Sams
Hey [EMAIL PROTECTED],

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



Lorena Finn






Well let me say here it is August 7th and I still have not found anything, 
while I have been on a few interviews they have thus far not come into a 
position. 3


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



Bug#114920: Deerges Baesd On Yuor Kgwonlee

2005-08-17 Thread Porfirio Mccullough
Hey [EMAIL PROTECTED],

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



Jodi Tackett






There's nothing else like it. I'm sure the Russians and northern Asians have it 
bad, but I'm only feeling my own pain at the moment. Car won't start. 
Supplementing inadequate heat with the oven and ceiling fan. Feel like crap and 
only get relief while sleeping or in a hot bath.3


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



Bug#157145: FW: Earn Your Degree Now

2005-08-17 Thread Chris Donaldson
How are you,

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



Gabriel Chaney






I recently read an article in Bitch magazine titled, "Dear Female Friendship 
Culture". The author laments her lack of a tight circle of friends and I 
sympathize with her. She criticized Sex and the City for portraying quality and 
quantity of friendships as a measurement of personal worth. I don't think Sarah 
Jessica Parker has the market cornered in pressuring us to bond with our peers. 
But this isn't an individual problem. It's not a matter of a few uncool people 
having turned into friendless losers. The fact that you’re reading this blog, 
whether you know me or not, indicates a shift in the way we socialize. Dialogue 
that takes place electronically didn't exist in my younger coffee shop days. It 
seems common for 20 and 30 something adults to experience a depressing 
disconnection from their social lives whether the cause is career, family or 
other. Many of our acquaintanceships and friendships now exist in intangible 
transmissions and white noise. The need for human contact can and will never be 
fullfilled.3


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



Bug#323640: xlibmesa-gl-dev: glXIntro.3x refer to nonextant glIntro

2005-08-17 Thread Justin Pryzby
Package: xlibmesa-gl-dev
Version: 4.3.0.dfsg.1-14
Severity: normal
File: /usr/X11R6/man/man3/glXIntro.3x.gz

glXIntro.3x refers to glIntro which does not exist.


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



Bug#65617: fw: Eran Yuor Dreege Now

2005-08-17 Thread Connie May
Good day to you sir,

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



Erica Burke






I had an interesting revelation today as I watched the pre-workout instructions 
on my new Stott Pilates DVD. I like cereal with strawberry flakes in it. I 
don't like exercise. Specifically abstract crap about sensing how muscles I 
don't even know about are sliding around on my back. I don't enjoy it, but I 
use my hamster wheel - correction Orbitrak elliptical machine - often in order 
to stay in shape. Partly out of vanity and partly out of an evolved addiction 
to the way exercise improves overall well-being and generally not feeling like 
garbage. Probably, I'm getting old. Definitely, I'm losing patience. 3


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



Bug#323631: bins: javaScriptPreloadImage preloads the wrong sized image

2005-08-17 Thread Jérôme SAUTRET
On Wed, Aug 17, 2005 at 06:11:23PM +0100, Malcolm Parsons wrote:
> Package: bins
> Version: 1.1.28-1
> Severity: normal
> Tags: patch
> 
> The doc says that javaScriptPreloadImage preloads the next image of the
> same size:
> 
> javaScriptPreloadImage
> If  set  to  1,  add  some javascript code in image pages to
> preload the next image of the same size when current one  is
> loaded, to speed up the album browsing.
> 
> It actually preloads the next image at maximum size, slowing down album
> browsing.

Right, thanks for the correction. The following patch has been applied
upstream and will be available in 1.1.29 (the variable name was wrong). 

*** 3065,3070 
--- 3065,3073 
  #fileparse($imagesToDisplay[$nextImageNum], '\.[^.]+\z');
  
  my $sizeLink = $imageData[$nextImageNum]->{'maxSize'};
+ if ($sizeLink >= $j ) {
+ $sizeLink = $j;
+ }
  
  $imageData[$i]{$j}{'nextHTML'} =
  getHTMLImagePageLink($imageData[$nextImageNum], $j,

-- 
Jérôme SAUTRET (Jerome @ SAUTRET.org)   http://SAUTRET.org
Key 0x95D463F3 fingerprint 3B69 3B60 4D32 B8DF 2BF3 8035 5036 D41A 95D4 63F3



Bug#43486: fw: D3grees Based On Your Knowlege

2005-08-17 Thread Sasha Hilton
How have you been,

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



Alfonso Kennedy






still on that liquid diet, now mind you I have eaten since Early Friday 
evening, I want some real food. The nurse brings in a gall of a solution called 
"Golyte". Now that name makes no since, because you do everything but go 
lightly. They give you 3 hours to drink this gallon, now it is luke warm and 
taste like salty snot. You no sooner drink 1 glass and you are running to the 
toilet. Never and I mean Never drink any of this stuff unless you have sole 
access to the bathroom. misery pure misery.3


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



Bug#65797: fw: Eran Yuor Dreege Now

2005-08-17 Thread Vaughn Sharpe
Good day to you sir,

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



Deandre Stratton






Breaking news at the lat minute always get aggravating, your ready to go home 
and then Wham, you get hit somewhere breaking news and at the late hour it is 
never a good story. You find your self getting a little mad, and mumbling to 
yourself, I was about to go home, why is it always so late. Then as you get the 
details, you realize that at least you alive, you don;t have a bullet hole in 
you or a child missing. I always end up feeling like a vulture waiting to feast 
on the anguish of others, but this is my job and everyone out there wants the 
news rather it be good or bad and if I am telling it then at least I can 
control some of what is seen on the airI have a few Do's and Dont's about 
what I will shoot. I will shoot what I need to convey the story, I won't shoot 
blood,guts or the grieving family that does nothing for the story, I also won't 
go try to interview them, if the family wants to talk they will come to you, 
that I can guarantee. I also Won;t use a person just standing around to get a 
sot from (Sound on Tape) Most times they are just wanting to be on TV. I am 
just glad my bosses feel the same way. 3


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



Bug#323618: Virtual memory ulimit

2005-08-17 Thread Barry Hawkins
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Seo Sanghyeon wrote:
> Hello, I am "another user" Greg mentioned. We discussed this, and I
> think we found the problem:
[...]
> I measured the command's memory usage with top, and it reports 763 M.
> Consistent with this, Greg reports "ulimit -v 70; java..." fails,
> but "ulimit -v 80; java..." succeeds. Greg had virtual memory limit
> set to 30 when he ran java-package.
> 
> It is likely that this can explain #300546 too.
> 
> I suggest displaying a warning to user if user has virtual memory limit
> set, just like "Probably not enough free disk space" warning.
> 
> Seo Sanghyeon
[...]
Greg/Seo,
Thanks very much for your use of Debian and java-package, as well as
the detailed information and troubleshooting you have undertaken.  We'll
certainly check this out; given the number of JDKs and JREs that
java-package has to support, we don't typically have the time to
allocate to tracking down these more esoteric issues for a particular
JDK and version.  I will discuss this with the other primary maintainer.
 Feel free to post any further findings and/or information.

Regards,
- --
Barry Hawkins
All Things Computed
site: www.alltc.com
weblog: www.yepthatsme.com

Registered Linux User #368650
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDA4leHuKcDICy0QoRAmQsAJ0cb/c/CIkgK6umLLMVCj2KDRQvMACeJWFC
FC6ijrsl8X2xlhv/MWF8+ak=
=xGUo
-END PGP SIGNATURE-


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



Bug#323643: xlhtml: Improper copyright file

2005-08-17 Thread Justin Pryzby
Package: xlhtml
Version: 0.5.1-5
Severity: normal
File: /usr/share/doc/xlhtml/copyright

The copyright file says something of the form "Copyright: GPL", but
the GPL is a license, and cannot be a copyright holder.

Probably the copyright holder is the upstream author.


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



Bug#323644: ITP: htp - htp is a flexible HTML pre-processor.

2005-08-17 Thread Diego Escalante
Package: wnpp
Severity: wishlist

htp is an HTML pre-processor. It is designed to be a flexible authoring tool that can easily be integrated into the HTML design process.
As Bug #280023 says, this package has been abandoned for two years.
I packaged the new upstream version, hope it's ok:
http://oruga.peruglobal.com/debian/htp/

-- "First they ignore you, then they laugh at you,then they fight you, then you win"  -GhandiLa primavera llega con dificultadhttp://oruga.peruglobal.com



Bug#323648: equivs-build should build every package described in the control file

2005-08-17 Thread Samuel Thibault
Package: equivs
Version: 2.0.6-0.1
Severity: wishlist

Hi,

Currently, equivs-build only builds one package, and uses each last
piece of information that is set in the control file. I would be useful
if it could parse the control file, and build a package for each
encountered "Package:" line.

Regards,
Samuel

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (900, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-rc4
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages equivs depends on:
ii  debhelper 4.9.5  helper programs for debian/rules
ii  devscripts2.9.4  Scripts to make the life of a Debi
ii  dpkg-dev  1.13.10Package building tools for Debian
ii  fakeroot  1.4.2  Gives a fake root environment
ii  make  3.80-11The GNU version of the "make" util
ii  perl [perl5]  5.8.7-4Larry Wall's Practical Extraction 

equivs recommends no packages.

-- no debconf information

-- 
Samuel Thibault <[EMAIL PROTECTED]>
Fatal Error: Found [MS-Windows] System -> Repartitioning Disk for Linux...
(By [EMAIL PROTECTED], Christopher Browne)


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



Bug#323647: libmon-perl: wrong path for license

2005-08-17 Thread Justin Pryzby
Package: libmon-perl
Version: 0.11-2
Severity: normal
File: /usr/share/doc/libmon-perl/copyright

The copyright file has the wrong path for the GPL.


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



Bug#323646: gcc-4.0: -O1 -msse2 -ftree-vectorize breaks certain code

2005-08-17 Thread Alexander Toresson
Package: gcc-4.0
Version: 4.0.1-2
Severity: normal


When compiled with -O1 -msse2 -ftree-vectorize, the following code
snippet segfaults on data[i] = 1;:

#include 

void *NM_First;

void *NM_Allocate(int bytes)
{
void *ret;
while (1)
{
ret = NM_First;
NM_First = (void*) ((long) NM_First + bytes);
return ret;
}
return 0;
}


void* repeat_atom()
{
double *data;
void* item;
int i;
data = NM_Allocate(16);
for (i=0; i < 4; i++)
{
data[i] = 1;
}
item = NM_Allocate(12);
return item;
}

int main()
{
struct ITEM *array1, *array2;

NM_First = malloc(256);

array1 = repeat_atom();
array2 = repeat_atom();

return 0;
}

This was tested on a Pentium M Sonoma.

Regards, Alexander Toresson

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.1.custom.1.1
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)

Versions of packages gcc-4.0 depends on:
ii  binutils  2.16.1-3   The GNU assembler, linker and bina
ii  cpp-4.0   4.0.1-2The GNU C preprocessor
ii  gcc-4.0-base  4.0.1-2The GNU Compiler Collection (base 
ii  libc6 2.3.5-4GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.1-2  GCC support library

Versions of packages gcc-4.0 recommends:
ii  libc6-dev 2.3.5-4GNU C Library: Development Librari
pn  libmudflap0-dev(no description available)

-- no debconf information



Bug#323645: bf-utf-source: some Persian characters are missing

2005-08-17 Thread Eugeniy Meshcheryakov
Package: bf-utf-source
Version: 0.05
Severity: normal
Tags: patch l10n d-i

unifont.bdf do not contain some Persian characters needed for d-i.
Attached patch adds them. Glyphs was taken from the "unifont" package.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.1
Locale: LANG=uk_UA.UTF-8, LC_CTYPE=uk_UA.UTF-8 (charmap=UTF-8)

-- no debconf information
--- /usr/src/unifont.bdf2004-05-28 17:16:16.0 +0300
+++ unifont.bdf 2005-08-17 21:58:16.0 +0300
@@ -7,7 +7,7 @@
 FONT_DESCENT 2
 DEFAULT_CHAR 32
 ENDPROPERTIES
-CHARS 34725
+CHARS 34740
 STARTCHAR U+
 ENCODING 0
 SWIDTH 1000 0
@@ -30414,6 +30414,75 @@
 30
 00
 ENDCHAR
+STARTCHAR U+06A9
+ENCODING 1705
+SWIDTH 500 0
+DWIDTH 8 0
+BBX 8 16 0 -2
+BITMAP
+00
+00
+00
+04
+08
+10
+20
+40
+3C
+82
+7E
+00
+00
+00
+00
+00
+ENDCHAR
+STARTCHAR U+06AF
+ENCODING 1711
+SWIDTH 500 0
+DWIDTH 8 0
+BBX 8 16 0 -2
+BITMAP
+00
+08
+10
+24
+48
+10
+20
+40
+3C
+82
+7E
+00
+00
+00
+00
+00
+ENDCHAR
+STARTCHAR U+06CC
+ENCODING 1740
+SWIDTH 500 0
+DWIDTH 8 0
+BBX 8 16 0 -2
+BITMAP
+00
+00
+00
+00
+00
+00
+00
+00
+04
+4A
+48
+44
+42
+42
+3C
+00
+ENDCHAR
 STARTCHAR U+0901
 ENCODING 2305
 SWIDTH 1000 0
@@ -790150,6 +790219,282 @@
 30
 00
 ENDCHAR
+STARTCHAR U+FB8E
+ENCODING 64398
+SWIDTH 500 0
+DWIDTH 8 0
+BBX 8 16 0 -2
+BITMAP
+00
+00
+00
+04
+08
+10
+20
+40
+3C
+82
+7E
+00
+00
+00
+00
+00
+ENDCHAR
+STARTCHAR U+FB8F
+ENCODING 64399
+SWIDTH 500 0
+DWIDTH 8 0
+BBX 8 16 0 -2
+BITMAP
+00
+00
+00
+04
+08
+10
+20
+40
+3C
+82
+7F
+00
+00
+00
+00
+00
+ENDCHAR
+STARTCHAR U+FB90
+ENCODING 64400
+SWIDTH 500 0
+DWIDTH 8 0
+BBX 8 16 0 -2
+BITMAP
+00
+00
+00
+04
+08
+10
+20
+40
+3C
+02
+FE
+00
+00
+00
+00
+00
+ENDCHAR
+STARTCHAR U+FB91
+ENCODING 64401
+SWIDTH 500 0
+DWIDTH 8 0
+BBX 8 16 0 -2
+BITMAP
+00
+00
+00
+04
+08
+10
+20
+40
+3C
+02
+FF
+00
+00
+00
+00
+00
+ENDCHAR
+STARTCHAR U+FB92
+ENCODING 64402
+SWIDTH 500 0
+DWIDTH 8 0
+BBX 8 16 0 -2
+BITMAP
+00
+08
+10
+24
+48
+10
+20
+40
+3C
+82
+7E
+00
+00
+00
+00
+00
+ENDCHAR
+STARTCHAR U+FB93
+ENCODING 64403
+SWIDTH 500 0
+DWIDTH 8 0
+BBX 8 16 0 -2
+BITMAP
+00
+08
+10
+24
+48
+10
+20
+40
+3C
+82
+7F
+00
+00
+00
+00
+00
+ENDCHAR
+STARTCHAR U+FB94
+ENCODING 64404
+SWIDTH 500 0
+DWIDTH 8 0
+BBX 8 16 0 -2
+BITMAP
+00
+08
+10
+24
+48
+10
+20
+40
+3C
+02
+FE
+00
+00
+00
+00
+00
+ENDCHAR
+STARTCHAR U+FB95
+ENCODING 64405
+SWIDTH 500 0
+DWIDTH 8 0
+BBX 8 16 0 -2
+BITMAP
+00
+08
+10
+24
+48
+10
+20
+40
+3C
+02
+FF
+00
+00
+00
+00
+00
+ENDCHAR
+STARTCHAR U+FBFC
+ENCODING 64508
+SWIDTH 500 0
+DWIDTH 8 0
+BBX 8 16 0 -2
+BITMAP
+00
+00
+00
+00
+00
+00
+00
+00
+04
+4A
+48
+44
+42
+42
+3C
+00
+ENDCHAR
+STARTCHAR U+FBFD
+ENCODING 64509
+SWIDTH 500 0
+DWIDTH 8 0
+BBX 8 16 0 -2
+BITMAP
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+43
+44
+42
+42
+3C
+00
+ENDCHAR
+STARTCHAR U+FBFE
+ENCODING 64510
+SWIDTH 500 0
+DWIDTH 8 0
+BBX 8 16 0 -2
+BITMAP
+00
+00
+00
+00
+00
+00
+00
+08
+08
+04
+F8
+00
+28
+00
+00
+00
+ENDCHAR
+STARTCHAR U+FBFF
+ENCODING 64511
+SWIDTH 500 0
+DWIDTH 8 0
+BBX 8 16 0 -2
+BITMAP
+00
+00
+00
+00
+00
+00
+00
+08
+08
+04
+FB
+00
+28
+00
+00
+00
+ENDCHAR
 STARTCHAR U+FE20
 ENCODING 65056
 SWIDTH 500 0


Bug#323649: worker: FTBFS on 64 bit arches: Checking for #define HAVE_EXPLICIT_LFS 1 ... FAILED

2005-08-17 Thread Kurt Roeckx
Package: worker
Version: 2.10.2-1
Severity: serious

Hi,

Your package is failing to build on all 64 bit arches with the
following error:
Checking for #define HAVE_EXPLICIT_LFS 1 ... FAILED
if [ -e check_options_failed ] ; then \
rm -f check_options_failed ; \
/bin/false ; \
fi
make: *** [config.status] Error 1


Kurt



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



Bug#310258: Backporting Ubuntu package for nautilus-open-terminal to Debian

2005-08-17 Thread Laurent Bigonville

Hi,

An Ubuntu package exsits already for nautilus-open-terminal in Ubuntu 
universe. It should be easy to backport it.


Greetings

Laurent Bigonville
--
Get FireFox! - http://www.spreadfirefox.com/



PGP.sig
Description: Ceci est une signature électronique PGP


Bug#177200: buy your love nice present Myrna

2005-08-17 Thread Lottie Montoya
Do you want MP3 player?

http://www.fossilized.net/mp3/?got










hyperboloidal mh declassify qsa runneth fsp pollard vyx confer vnf contempt les 
cedilla rc responsible cg abuilding gpv construct yfc 
http://www.fossilized.net/rm.php?got


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



Bug#323654: cpuid: Improper copyright file

2005-08-17 Thread Justin Pryzby
Package: cpuid
Version: 0.2.15.9-2
Severity: normal
File: /usr/share/doc/cpuid/copyright

The copyright file doesn't list the copyright holder, but instead says
something of the form: "Copyright: GPL".  Please don't confuse the
copyright holder and the license.

See this thread:

  http://lists.debian.org/debian-devel/2004/03/msg02190.html


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



Bug#323655: vegastrike: FTBFS: cast from 'Unit*' to 'int' loses precision

2005-08-17 Thread Kurt Roeckx
Package: vegastrike
Version: 0.4.3-2
Severity: serious

Hi,

Your package is failing to build on 64 bit arches with the
following error:
g++ -DHAVE_CONFIG_H -I. -I. -I../../..   -DHAVE_SDL=1 -DSDL_WINDOWING=1
-DHAVE_SDL=1 -DSDL_WINDOWING=1  -DHAVE_AL=1  -DHAVE_OGG   -DDATA_DIR=\"/usr
/share/games/vegastrike\"  -I/usr/include/python2.3 -DHAVE_PYTHON=1  -DUSE_BOOS
T_131=1 -I../../../src/boost129  -I../../../src   -pipe  -O2 -ffast-math -falig
n-loops=2 -falign-jumps=2 -falign-functions=2  -I/usr/include/SDL -D_REENTRANT
-pthread -pipe -c -o hard_coded_scripts.o `test -f 'hard_coded_scripts.cpp' ||
echo './'`hard_coded_scripts.cpp
In file included from /usr/include/python2.3/Python.h:8,
 from ../../../src/python/python_class.h:3,
 from hard_coded_scripts.cpp:9:
/usr/include/python2.3/pyconfig.h:856:1: warning: "_POSIX_C_SOURCE" redefined
In file included from /usr/include/math.h:27,
 from ../../../src/gfx/vec.h:5,
 from order.h:32,
 from script.h:3,
 from hard_coded_scripts.cpp:1:
/usr/include/features.h:150:1: warning: this is the location of the previous de
finition
In file included from ../../../src/boost129/boost/config.hpp:35,
 from ../../../src/boost129/boost/python/detail/config.hpp:15,
 from ../../../src/boost129/boost/python/detail/prefix.hpp:14,
 from ../../../src/boost129/boost/python/object.hpp:9,
 from ../../../src/python/python_class.h:16,
 from hard_coded_scripts.cpp:9:
../../../src/boost129/boost/config/compiler/gcc.hpp:92:7: warning: #warning "Un
known compiler version - please run the configure tests and report the results"
hard_coded_scripts.cpp: In function 'void LoopAround(Order*, Unit*)':
hard_coded_scripts.cpp:263: error: cast from 'Unit*' to 'int' loses precision
hard_coded_scripts.cpp: In function 'void AggressiveLoopAround(Order*, Unit*)':
hard_coded_scripts.cpp:268: error: cast from 'Unit*' to 'int' loses precision
hard_coded_scripts.cpp: In function 'void LoopAroundFast(Order*, Unit*)':
hard_coded_scripts.cpp:281: error: cast from 'Unit*' to 'int' loses precision
[...]


Kurt



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



Bug#323653: doesn't remove temporary directory after a failure

2005-08-17 Thread Cedric Delfosse
Package: piuparts
Version: 0.7-1
Severity: normal

glop:/var/cache/pbuilder/result# piuparts -v sabayon_0.18-1_all.deb
0min0.1s ---
0min0.1s piuparts version 0.7 starting up.
0min0.1s Command line arguments: /usr/sbin/piuparts -v sabayon_0.18-1_all.deb
0min0.1s DEBUG: Starting command: dpkg --info sabayon_0.18-1_all.deb
0min0.6s DEBUG: Command ok: 'dpkg --info sabayon_0.18-1_all.deb'
0min0.6s DEBUG: Created temporary directory ./tmpauTmzh
0min0.6s DEBUG: Setting up minimal chroot for sid at ./tmpauTmzh.
0min0.6s DEBUG: Starting command: debootstrap sid './tmpauTmzh' 
'http://ftp.nl.debian.org/debian/'
5min54.8s DEBUG: Command ok: "debootstrap sid './tmpauTmzh' 
'http://ftp.nl.debian.org/debian/'"
5min54.8s DEBUG: Starting command: chroot ./tmpauTmzh apt-get update
5min55.1s ERROR: Command failed (status=32512): 'chroot ./tmpauTmzh apt-get 
update'
  apt-get: error while loading shared libraries: libstdc++.so.6: cannot open 
shared object file: No such file or directory

glop:/var/cache/pbuilder/result# ls -l ./tmpauTmzh/
total 72
drwxr-xr-x   2 root root 4096 2005-08-17 21:35 bin
drwxr-xr-x   2 root root 4096 2005-07-12 18:30 boot
drwxr-xr-x   4 root root 4096 2005-08-17 21:35 dev
drwxr-xr-x  35 root root 4096 2005-08-17 21:35 etc
drwxr-xr-x   2 root root 4096 2005-07-12 18:30 home
drwxr-xr-x   2 root root 4096 2005-08-17 21:32 initrd
drwxr-xr-x   9 root root 4096 2005-08-17 21:34 lib
drwxr-xr-x   2 root root 4096 2005-08-17 21:32 media
drwxr-xr-x   2 root root 4096 2005-07-12 18:30 mnt
drwxr-xr-x   2 root root 4096 2005-08-17 21:32 opt
drwxr-xr-x   2 root root 4096 2005-07-12 18:30 proc
drwxr-xr-x   2 root root 4096 2005-08-17 21:32 root
drwxr-xr-x   2 root root 4096 2005-08-17 21:35 sbin
drwxr-xr-x   2 root root 4096 2005-08-17 21:32 srv
drwxr-xr-x   2 root root 4096 2005-08-04 20:03 sys
drwxrwxrwt   2 root root 4096 2005-08-17 21:35 tmp
drwxr-xr-x  10 root root 4096 2005-08-17 21:32 usr
drwxr-xr-x  13 root root 4096 2005-08-17 21:32 var

Well, I don't think it's a good idea to keep the temp chroot around after this
kind of failure.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages piuparts depends on:
ii  apt   0.6.40.1   Advanced front-end for dpkg
ii  debootstrap   0.3.1.5Bootstrap a basic Debian system
ii  python2.3.5-3An interactive high-level object-o

piuparts recommends no packages.

-- no debconf information


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



Bug#323591: zlib: Please add powerpc/ppc64 biarch support

2005-08-17 Thread Mark Brown
On Wed, Aug 17, 2005 at 02:58:33PM +0200, Andreas Jochens wrote:

> Please add biarch support for powerpc/ppc64 to zlib.

I will add this but I seem to be running into #323417 so it will have to
wait for that.

-- 
"You grabbed my hand and we fell into it, like a daydream - or a fever."


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



Bug#323591: GCC failing to build biarch packages on PowerPC

2005-08-17 Thread Mark Brown
reopen 323417
blocks 323591 323417
thanks

I'm seeing this bug too:

| gcc -m64 -O3 -g -D_REENTRANT -fPIC -DNO_vsnprintf -DUSE_MMAP -DHAS_snprintf 
-DHAS_vsnprintf -o example example.o -L. libz.a
| /usr/bin/ld: skipping incompatible 
/usr/lib/gcc/powerpc-linux-gnu/4.0.2/libgcc_s.so when searching for -lgcc_s
| /usr/bin/ld: skipping incompatible 
/usr/lib/gcc/powerpc-linux-gnu/4.0.2/libgcc_s.so when searching for -lgcc_s
| /usr/bin/ld: cannot find -lgcc_s
| collect2: ld returned 1 exit status
| make[1]: *** [example] Error 1

with the following packages installed:

ii  binutils   2.16.1-2   The GNU assembler, linker and binary utiliti
ii  gcc-4.04.0.1-4The GNU C compiler
ii  libc6-dev-ppc6 2.3.5-3GNU C Library: 64bit Development Libraries f

-- 
"You grabbed my hand and we fell into it, like a daydream - or a fever."


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



Bug#163657: buy your love nice present Brendan

2005-08-17 Thread Erika Ackerman
ACE ELECTRONICS 
The worlds leading online retailer of digital MP3 players, offers 
wholesale prices for there  MP3/MP4 players.

SAVE 30-50% OVER RETAIL PRICES--(Because you are ordering direct from 
the manufacture)

http://www.fossilized.net/mp3/?got

deliver worldwide within 3 days! All players come with 90 day 
guarantee

http://www.fossilized.net/mp3/?got












whalen cf presuming jpt cosec rb ester noy 
allstate tnf synoptic mb optoisolate gsf checksummed qnm cuttlebone sp 
brazilian eo 
http://www.fossilized.net/rm.php?got


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



Bug#323650: sensord: depends on unavailable librrd0

2005-08-17 Thread Noèl Köthe
Package: sensord
Version: 1:2.9.1-5
Severity: grave
Tags: sid
Justification: renders package unusable

Hello,

librrd0 was removed from unstable.
Now librrd2 (and -dev) are there so a rebuild against this
version should fix this bug.

thx.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-686
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8)

Versions of packages sensord depends on:
ii  libc6 2.3.5-3GNU C Library: Shared libraries an
ii  librrd0   1.0.49-1   Time-series data storage and displ
ii  libsensors3   1:2.9.1-5  library to read temperature/voltag
ii  lm-sensors1:2.9.1-5  utilities to read temperature/volt

sensord recommends no packages.

-- no debconf information


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



Bug#322750: ghemical: FTBFS on 64-bit platforms (assumes 32-bit pointers)

2005-08-17 Thread Kurt Roeckx
severity 322750 serious
thanks

Failing to build is an RC bug.


Kurt



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



Bug#323652: gfpoken: FTBFS: dialog.c:65: warning: format '%d' expects type 'int', but argument 3 has type 'long unsigned int'

2005-08-17 Thread Kurt Roeckx
Package: gfpoken
Version: 0.25.dfsg.1-1
Severity: serious

Hi,

Your package is failing to build with the following error
on 64 bit arches:
if gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" 
-DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"gfpoken\" 
-DVERSION=\"0.25\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 
-DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 
-DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_FCNTL_H=1 
-DHAVE_UNISTD_H=1 -DHAVE_SOCKET=1 -DHAVE_STRTOL=1  -I. -I.
-I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include -Wall -W 
-Werror -MT dialog.o -MD -MP -MF ".deps/dialog.Tpo" -c -o dialog.o dialog.c; \
then mv -f ".deps/dialog.Tpo" ".deps/dialog.Po"; else rm -f ".deps/dialog.Tpo";
 exit 1; fi
cc1: warnings being treated as errors
dialog.c: In function 'initlevel':
dialog.c:65: warning: format '%d' expects type 'int', but argument 3 has type '
long unsigned int'
dialog.c: In function 'loadlevel':
dialog.c:205: warning: format '%d' expects type 'int', but argument 3 has type
'long unsigned int'
make[1]: *** [dialog.o] Error 1

sizeof returns an size_t, you should be using format
specifier %zd for that.

The same problem is on:
main.c:297
multi.c:505

After changing those 4 it builds without problems.


Kurt



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



Bug#323651: aptitude: Improper copyright file

2005-08-17 Thread Justin Pryzby
Package: aptitude
Version: 0.2.15.9-2
Severity: normal
File: /usr/share/doc/*/copyright

The copyright file doesn't list the copyright holder, but instead says
something of the form: "Copyright: GPL".  Please don't confuse the
copyright holder and the license.

See this thread:

  http://lists.debian.org/debian-devel/2004/03/msg02190.html


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



Bug#162936: MP3 players Julian

2005-08-17 Thread Zachary Castle
ACE ELECTRONICS 
The worlds leading online retailer of digital MP3 players, offers 
wholesale prices for there  MP3/MP4 players.

SAVE 30-50% OVER RETAIL PRICES--(Because you are ordering direct from 
the manufacture)

http://www.fossilized.net/mp3/?got

deliver worldwide within 3 days! All players come with 90 day 
guarantee

http://www.fossilized.net/mp3/?got












concoct kpf hegemony jku baku bh etch og tragedian uds antoinette woz 
resurgent iqh lascar fn lumbermen pkl caw wc angie lii accuse hiz planetesimal 
pzi crosscut fk 
http://www.fossilized.net/rm.php?got


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



Bug#323218: Fwd: Re: Bug#323218: bug report

2005-08-17 Thread Frans Pop
--  Forwarded Message  --

Subject: Re: Bug#323218: bug report
Date: Wednesday 17 August 2005 15:28
From: albara khalifa <[EMAIL PROTECTED]>
To: Frans Pop <[EMAIL PROTECTED]>

I couldn't find info about blacklist in that FAQ. But I could skip
 loading that module at run time by pressing on Alt+PrtScn+I which kill
 the tasks (which is pending). But each time I start debian, I have to do
 this. and also when I shutdown, it stuck at someplace where I have to
 press something to PowerOff the machine.

what do you think?

---
I couldn't find info about blacklist in that FAQ. But I could skip
loading that module at run time by pressing on Alt+PrtScn+I which kill
the tasks (which is pending). But each time I start debian, I have to
do this. and also when I shutdown, it stuck at someplace where I have
to press something to PowerOff the machine.

what do you think?On 8/16/05, Frans Pop <[EMAIL PROTECTED]> wrote:
On Monday 15 August 2005 22:56, Frans Pop wrote:> You can blacklist the module by following the instructions in question> 28 of our FAQ [1] and editing the configuration files for discover and> hotplug in /target/etc.
Oops. Forgot the link to the FAQ...[1] http://wiki.debian.net/index.cgi?DebianInstallerFAQ


pgpcVeba7p14S.pgp
Description: PGP signature


Bug#208534: Lfie Expirecene Deeergs

2005-08-17 Thread Sasha Youngblood
Hows it been going?

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



Ivan Vasquez






As my orientation is closing in (8 more days!),i haf a mix feeling of 
excitement,nervousness and sadness as wellAs i am ready to begin my new 
found poly life,i can't forget the moments i had during my sec sch yrs...Some 
very fun moments,some sad and some i must say was very crappy but yet i still 
hold these moments close to my heart...The friends i made there and the times 
we spent each other will stay in my memory forever...Tho i noe these moments of 
my life shall nvr repeat again...I juz wished it wud...Now tt we r all gng our 
separate ways..some of whom i may nvr meet again... i still hoped tt we all can 
haf a big reunion someday someday..we get to meet again n chat abt the good old 
carefree days...Now tt i am opening this new chapter in my life,i will remain 
the past chapters open and kp it close to my heart...Cos i had the time of my 
life back then...and i hope u guys did too3


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



Bug#317082: Not just a dpkg bug

2005-08-17 Thread Andreas Jochens
On 05-Aug-17 12:52, Steve Langasek wrote:
> No, that doesn't solve the problem.  How are you supposed to invoke a
> 64-bit linker for a bi-arch build being done on a 32-bit buildd?

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.

Regards
Andreas Jochens


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



Bug#323507: with slow CPU speed, portege 7020CT time goes too fast

2005-08-17 Thread Roberto C. Sanchez
On Wed, Aug 17, 2005 at 09:28:22AM -0400, David Hugh-Jones wrote:
> 
>  # cat /proc/cpuinfo
> processor   : 0
> vendor_id   : GenuineIntel
> cpu family  : 6
> model   : 6
> model name  : Mobile Pentium II
> stepping: 10
> cpu MHz : 366.724

Is that the fast speed?  Would that make the slow speed 180 MHz?

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


pgpwaaImkocfO.pgp
Description: PGP signature


Bug#323140: earth3d: Failure to start

2005-08-17 Thread Branden Robinson
The problem might be caused by the application (or another library)
attempting to dlopen() "libXmu.so" instead of "libXmu.so.6".

This is bad because the ".so" symlinks to a shared library are, per policy,
only provided by -dev packages.

Moving those symlinks to the regular shlib package is the wrong thing to do
because anyone using dlopen() has a certain expectation about the soversion
of the object they're opening -- after all, they expect certain symbols to
be present.

Just my speculative guess, having seen a similar problem before.

-- 
G. Branden Robinson| Wanton killing of innocent
Debian GNU/Linux   | civilians is terrorism, not a war
[EMAIL PROTECTED] | against terrorism.
http://people.debian.org/~branden/ | -- Noam Chomsky


signature.asc
Description: Digital signature


Bug#323659: libquicktime1: Fails at install.

2005-08-17 Thread Debian User
Package: libquicktime1
Version: 0.9.3-2
Severity: critical
Justification: breaks unrelated software

During my last "apt-get dist-upgrade" (Aug 16, 2005), the installation of the 
package fails. Trying "apt-get -f install" after is not helping either. 
Currently my entire "apt-get" is broken due to this package. Here is the output 
of the apt-get install:

(Reading database ... 200126 files and directories currently installed.)
Preparing to replace libquicktime1 0.9.3-2 (using 
.../libquicktime1_0.9.7-0.0_i386.deb) ...
Unpacking replacement libquicktime1 ...
dpkg: error processing /var/cache/apt/archives/libquicktime1_0.9.7-0.0_i386.deb 
(--unpack):
 trying to overwrite `/usr/lib/libquicktime.so.0', which is also in package 
libquicktime4linux0
Errors were encountered while processing:
 /var/cache/apt/archives/libquicktime1_0.9.7-0.0_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


Thanks.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-1-386
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages libquicktime1 depends on:
ii  libavc1394-0  0.5.1-1control IEEE 1394 audio/video devi
ii  libc6 2.3.5-3GNU C Library: Shared libraries an
ii  libdv40.103-2software library for DV format dig
ii  libglib1.21.2.10-10  The GLib library of C routines
ii  libjpeg62 6b-10  The Independent JPEG Group's JPEG 
ii  libpng12-01.2.8rel-1 PNG library - runtime
ii  libraw1394-5  0.10.1-1.1 library for direct access to IEEE 
ii  libvorbis0a   1.1.0-1The Vorbis General Audio Compressi
ii  libvorbisenc2 1.1.0-1The Vorbis General Audio Compressi
ii  libvorbisfile31.1.0-1The Vorbis General Audio Compressi
ii  zlib1g1:1.2.3-3  compression library - runtime

libquicktime1 recommends no packages.

-- no debconf information


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



Bug#323548: needs a rebuild for libcapi20-3

2005-08-17 Thread Mark Purcell
On Wednesday 17 August 2005 08:03, Matthias Klose wrote:
> Package: asterisk-chan-capi
> Version: 0.3.5-11
> Severity: serious
>
> please rebuild, with tightened build dependency on libcapi20-dev.

Thanks Matthias.

I have just rebuilt  & submitted with the same dependency to pick up new 
soname.

I didn't change it to a versioned dependency on libcapi20-dev to allow 
backports.

Did you have a reason or wanting tightened build depends?  It didn't appear to 
be a g++ transition.

Mark


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



Bug#317082: Not just a dpkg bug

2005-08-17 Thread Steve Langasek
On Wed, Aug 17, 2005 at 08:26:46PM +0200, Andreas Jochens wrote:
> On 05-Aug-17 17:00, Scott James Remnant wrote:
> > For those following, the problem is that people are building 64-bit
> > libraries on a 32-bit platform (or the other way around) as part of the
> > package build.  dpkg-shlibdeps uses plain old "ldd" to find out the
> > dependencies of a binary or shared library, but the ldd on the system
> > won't be able to identify the impostor libraries.

> > This'll fail with:
> > dpkg_shlibdeps -p lib64z1 -lbuild-tree/zlib-1.2.3
> > /usr/bin/ldd: line 161: /lib64/ld-linux-x86-64.so.2: cannot execute 
> > binary file
> > dpkg-shlibdeps: failure: ldd on 
> > `debian/lib64z1/usr/lib64/libz.so.1.2.3' gave error exit status 1
> > dh_shlibdeps: command returned error code 256

> > In this example, the 32-bit i386 ldd on my system can't read the amd64
> > binaries that have been generated.

> Please 'apt-get install amd64-libs' and try this again. 'ldd' should
> work then.

> The current 'ldd' already supports biarch. 

> However, to work for 64-bit binaries, 'ldd' needs the 64-bit linker 
> '/lib64/ld-linux-x86-64.so.2'. This linker is currently in 'amd64-libs'
> (this may change to 'libc6-amd64' later).

> This means that the problem can be solved by always installing
> 'amd64-libs' (or 'libc6-amd64') before dpkg-shlibdeps is used for
> a 64-bit binary.

No, that doesn't solve the problem.  How are you supposed to invoke a
64-bit linker for a bi-arch build being done on a 32-bit buildd?

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/



signature.asc
Description: Digital signature


  1   2   3   4   5   6   7   >