Bug#409971: xfce4-battery-plugin: It doesn't work after upgrading to linux kernel 2.6.21

2007-04-27 Thread Matteo Vescovi

Hi Evgeni,

On 4/27/07, Evgeni Golov [EMAIL PROTECTED] wrote:

Works here without any problems. Could you be more specific on not to
work at all? Does it load and show garbage, or don't load, or show
wrong percentage/time?


Oh, well... I provided a screenshot of it; you can find it at:
http://mfv.altervista.org/desktop.png

I can load it on the panel, but it doesn't work correctly; it shows always
the image you see on the screenshot.
The linux kernel module works perfectly, it shows the right battery
charge percentage
and switch between charging on AC and discharging like it's supposed to.
The plugin, instead, is steady on the same situation, kinda freezing :-(
No right percentage/time/charging state... nothing.

Hope this could help fixing the bug.

Regards,

mfv


--
Imagine a red swirl here.


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



Bug#409288: nscd: not installable in sid

2007-04-27 Thread Laurent Bonnaud
Hi,

I am going to reopen this bug because now that libssp0 has been removed
from Debian, nscd is not installable:

# apt-get install nscd
Reading package lists... Done
Building dependency tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  nscd: Depends: libssp0 (= 4.1.1-12) but it is not going to be
installed
E: Broken packages


-- 
Laurent Bonnaud.
http://www.lis.inpg.fr/pages_perso/bonnaud/




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



Bug#409971: xfce4-battery-plugin: It doesn't work after upgrading to linux kernel 2.6.21

2007-04-27 Thread Evgeni Golov
On Fri, 27 Apr 2007 08:21:19 +0200 Matteo Vescovi wrote:

 Hi Evgeni,

 On 4/27/07, Evgeni Golov [EMAIL PROTECTED] wrote:
  Works here without any problems. Could you be more specific on not to
  work at all? Does it load and show garbage, or don't load, or show
  wrong percentage/time?

 Oh, well... I provided a screenshot of it; you can find it at:
 http://mfv.altervista.org/desktop.png

 I can load it on the panel, but it doesn't work correctly; it shows always
 the image you see on the screenshot.
 The linux kernel module works perfectly, it shows the right battery
 charge percentage
 and switch between charging on AC and discharging like it's supposed to.
 The plugin, instead, is steady on the same situation, kinda freezing :-(
 No right percentage/time/charging state... nothing.

Hm, well, usual questions as:
1. it will work again if you boot 2.6.20?
2. it neither works for a new created user with no config?

I provide my config, maybe you have some bugs there?
display_label=false
display_icon=false
display_power=true
display_percentage=true
display_time=true
tooltip_display_percentage=true
tooltip_display_time=true
low_percentage=10
critical_percentage=5
action_on_low=1
action_on_critical=1
hide_when_full=1
command_on_low=
command_on_critical=

However, Yves or Simon should point out how to run th panel/plugin in
debug mode, I bett you'll find some hints there.

 --
 Imagine a red swirl here.

LOL, nice signature ;)

--
   ^^^| Evgeni -SargentD- Golov ([EMAIL PROTECTED])
 d(O_o)b  | GPG/PGP-Key-ID: 0xAC15B50C
  -|-   | 0C04 F872 0963 ADC9 AA83 882B 24A0 1418 AC15 B50C
   / \| http://www.die-welt.net - [EMAIL PROTECTED]

Viele geniale Leute sind schwierig und kommen mit Gott und der Welt
nicht klar. Leider folgern daraus viele Leute, die mit Gott und der
Welt nicht klar kommen, dass sie genial sind. (CodeWicht @ heise.de)


pgpW3MjQy9zCP.pgp
Description: PGP signature


Bug#421200: NIS: Add support for MAXUID/MAXGID in /var/yp/Makefile

2007-04-27 Thread Arno van Amersfoort

Package: nis
Version: 3.13-2

Besides having MINUID  MINGID in /var/yp/Makefile, it is quite handy to 
 also have MAXUID  MAXGID. For my case that is mainly to filter out 
the Samba domain machines that also live in our /etc/passwd. I've added 
a patch (which I've been using for quite some time now) to implement 
this feature. Hopefully it is usefull for others too..


regards,

Arno


--
Ing. A.C.J. van Amersfoort (Arno)
Department Of Electronics (ELD, k1007)
Huygens Laboratory
Leiden University
P.O. Box 9504
Niels Bohrweg 2
2333 CA Leiden
The Netherlands

Phone : +31-(0)71-527.1894   Fax: +31-(0)71-527.5819
E-mail: [EMAIL PROTECTED]

Arno's (Linux firewall) homepage: http://rocky.eld.leidenuniv.nl





*** /tmp/Makefile.dpkg-dist 2007-03-26 15:20:30.0 +0200
--- /var/yp/Makefile2007-02-26 11:19:29.0 +0100
***
*** 34,41 
  # the passwd file. If no entry is found, this shadow entry is
  # ignored.
  # MINGID is the lowest gid that will be included in the group maps.
! MINUID=1000
! MINGID=1000

  # Don't export this uid/guid (nfsnobody).
  # Set to 0 if you want to
--- 35,44 
  # the passwd file. If no entry is found, this shadow entry is
  # ignored.
  # MINGID is the lowest gid that will be included in the group maps.
! MINUID=111
! MAXUID=1999
! MINGID=120
! MAXGID=1999

  # Don't export this uid/guid (nfsnobody).
  # Set to 0 if you want to
***
*** 309,315 
@echo Updating [EMAIL PROTECTED]
@$(UMASK); \
$(MERGER) -p $(PASSWD) $(SHADOW) | \
!  $(AWK) -F: '!/^[-+#]/ { if ($$1 !=   $$3 = $(MINUID)  $$3 != 
$(NFSNOBODYUID) ) \
   print $$1\t$$0 }' | $(DBLOAD) -i $(PASSWD) \
-o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
--- 313,319 
@echo Updating [EMAIL PROTECTED]
@$(UMASK); \
$(MERGER) -p $(PASSWD) $(SHADOW) | \
!  $(AWK) -F: '!/^[-+#]/ { if ($$1 !=   $$3 = $(MINUID)  $$3 = 
$(MAXUID)  $$3 != $(NFSNOBODYUID) ) \
   print $$1\t$$0 }' | $(DBLOAD) -i $(PASSWD) \
-o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
***
*** 318,324 
@echo Updating [EMAIL PROTECTED]
@$(UMASK); \
$(MERGER) -p $(PASSWD) $(SHADOW) | \
!  $(AWK) -F: '!/^[-+#]/ { if ($$1 !=   $$3 = $(MINUID)  $$3 != 
$(NFSNOBODYUID) ) \
   print $$3\t$$0 }' | $(DBLOAD) -i $(PASSWD) \
 -o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
--- 322,328 
@echo Updating [EMAIL PROTECTED]
@$(UMASK); \
$(MERGER) -p $(PASSWD) $(SHADOW) | \
!  $(AWK) -F: '!/^[-+#]/ { if ($$1 !=   $$3 = $(MINUID)  $$3 = 
$(MAXUID)  $$3 != $(NFSNOBODYUID) ) \
   print $$3\t$$0 }' | $(DBLOAD) -i $(PASSWD) \
 -o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
***
*** 332,338 
  passwd.byname: $(PASSWD) $(YPDIR)/Makefile
@echo Updating [EMAIL PROTECTED]
@$(UMASK); \
!   $(AWK) -F: '!/^[-+#]/ { if ($$1 !=   $$3 = $(MINUID)  $$3 != 
$(NFSNOBODYUID) ) \
   print $$1\t$$0 }' $(PASSWD) | $(DBLOAD) -i $(PASSWD) \
-o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
--- 336,342 
  passwd.byname: $(PASSWD) $(YPDIR)/Makefile
@echo Updating [EMAIL PROTECTED]
@$(UMASK); \
!   $(AWK) -F: '!/^[-+#]/ { if ($$1 !=   $$3 = $(MINUID)  $$3 = 
$(MAXUID)  $$3 != $(NFSNOBODYUID) ) \
   print $$1\t$$0 }' $(PASSWD) | $(DBLOAD) -i $(PASSWD) \
-o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
***
*** 340,346 
  passwd.byuid: $(PASSWD) $(YPDIR)/Makefile
@echo Updating [EMAIL PROTECTED]
@$(UMASK); \
!   $(AWK) -F: '!/^[-+#]/ { if ($$1 !=   $$3 = $(MINUID)  $$3 != 
$(NFSNOBODYUID) ) \
   print $$3\t$$0 }' $(PASSWD) | $(DBLOAD) -i $(PASSWD) \
 -o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
--- 344,350 
  passwd.byuid: $(PASSWD) $(YPDIR)/Makefile
@echo Updating [EMAIL PROTECTED]
@$(UMASK); \
!   $(AWK) -F: '!/^[-+#]/ { if ($$1 !=   $$3 = $(MINUID)  $$3 = 
$(MAXUID)  $$3 != $(NFSNOBODYUID) ) \
   print $$3\t$$0 }' $(PASSWD) | $(DBLOAD) -i $(PASSWD) \
 -o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
***
*** 349,355 
@echo Updating [EMAIL PROTECTED]
@$(UMASK); \
$(AWK) -F: '{ if (FILENAME ~ /shadow$$/) { \
!   if (UID[$$1] = $(MINUID)  UID[$$1] != $(NFSNOBODYUID)) print 
$$1\t$$0; \
} else UID[$$1] = $$3; }' $(PASSWD) 

Bug#421201: SpamAssassin: Various error messages in /var/log/mail.err

2007-04-27 Thread Arno van Amersfoort

Package: spamassassin
Version: 3.1.7-2

Since I've upgraded my machine to Debian Etch I'm getting these error 
messages in my /var/log/mail.err :


Apr 24 03:28:05 rocky spamd[3835]: Can't locate Math/BigInt/FastCalc.pm 
in @INC (@INC contains: ../lib /usr/share/perl5 /etc/p
erl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 
/usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/


AND

Apr 24 03:28:05 rocky spamd[3835]: Can't locate IO/Socket/INET6.pm in 
@INC (@INC contains: ../lib /usr/share/perl5 /etc/perl /
usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 
/usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_
perl /usr/local/lib/perl/5.8.4 /usr/local/share/perl/5.8.4) at 
/usr/lib/perl5/Net/DNS/Resolver/Base.pm line 62, GEN22 line 4

4.

I don't know whether this is an issue I should worry about but it seems 
like SpamAssassin is missing some Perl modules/dependencies.(?)


regards,

Arno


--
Ing. A.C.J. van Amersfoort (Arno)
Department Of Electronics (ELD, k1007)
Huygens Laboratory
Leiden University
P.O. Box 9504
Niels Bohrweg 2
2333 CA Leiden
The Netherlands

Phone : +31-(0)71-527.1894   Fax: +31-(0)71-527.5819
E-mail: [EMAIL PROTECTED]

Arno's (Linux firewall) homepage: http://rocky.eld.leidenuniv.nl







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



Bug#412275: no display and system freezes after adjusting time with KDE clock on 945GM graphic chip

2007-04-27 Thread Ralph Plawetzki

Hi Brice,

I installed the package using 'APT::Default-Release stable;' in 
/etc/apt/apt.conf to keep my installalation stable with only the 
required packages from unstable.


This gave me:

laptop-rpl:~# apt-get -t unstable install xserver-xorg-core
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut... Fertig
Die folgenden zusätzlichen Pakete werden installiert:
  libc6 libc6-amd64 libc6-i686 libdrm2 locales
Vorgeschlagene Pakete:
  glibc-doc
Die folgenden Pakete werden ENTFERNT:
  tzdata util-linux
Die folgenden Pakete werden aktualisiert:
  libc6 libc6-amd64 libc6-i686 libdrm2 locales xserver-xorg-core
WARNUNG: Die folgenden essentiellen Pakete werden entfernt.
Dies sollte NICHT geschehen, wenn Sie nicht genau wissen, was Sie tun!
  util-linux tzdata (wegen util-linux)
6 aktualisiert, 0 neu installiert, 2 zu entfernen und 420 nicht 
aktualisiert.

Es müssen 17,1MB Archive geholt werden.
Nach dem Auspacken werden 5247kB Plattenplatz freigegeben worden sein.
Sie sind im Begriff, etwas potenziell Schädliches zu tun.
Zum Fortfahren geben Sie bitte „Ja, tu was ich sage!“ ein.

After upgrading the 6 packages I used the 'Adjust Date  Time...' from 
KDE clock and changed the time in the 'Configure - KDE Control Module' 
dialogue. I decreased the shown time for two hours. After pressing 'OK' 
the screen went dark, but it came back after pressing a key. The new 
time was accepted.


So it gone better, but in my mind it is still not OK.

I recorded the session, if this is of any help.

Ralph



Bug#421197: gcc-4.1: Please build-depends on binutils (= 2.17.50) on hppa

2007-04-27 Thread Aurelien Jarno
retitle 421197 gcc-4.1: Please build-depends on binutils (= 2.17cvs20070426-1)

On Fri, Apr 27, 2007 at 07:02:48AM +0200, Aurelien Jarno wrote:
 Package: gcc-4.1
 Version: 4.1.2-4
 Severity: important
 
 Could you please change the build-depends on binutils to (= 2.17.50) on
 hppa? This will ensure that the TLS support is always activated.

This actually won't work, the correct version is (= 2.17cvs20070426-1).

-- 
  .''`.  Aurelien Jarno | GPG: 1024D/F1BCDB73
 : :' :  Debian developer   | Electrical Engineer
 `. `'   [EMAIL PROTECTED] | [EMAIL PROTECTED]
   `-people.debian.org/~aurel32 | www.aurel32.net


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



Bug#409971: [Pkg-xfce-devel] Bug#409971: xfce4-battery-plugin: It doesn't work after upgrading to linux kernel 2.6.21

2007-04-27 Thread Emanuele Rocca
Ciao Matte,

* Matteo Vescovi [EMAIL PROTECTED], [2007-04-26 22:29 +0200]:
  After upgrading linux kernel to version 2.6.21, the battery plugin seems
  not to work at all.

Please take a look to what you have in /proc/acpi with 2.6.21 and with
former kernels.

grep proc/acpi xfce4-battery-plugin-0.5.0/panel-plugin/libacpi.c will
give you some hints about what to look for.

ciao,
ema


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



Bug#421202: libghc6-happs-dev: postinst failure related to HaXml-1.13.2

2007-04-27 Thread Laurent Bonnaud
Package: libghc6-happs-dev
Version: 0.8.8+darcs20070329-1
Severity: grave
Justification: renders package unusable


Hi,

here is the problem:

Setting up libghc6-happs-dev (0.8.8+darcs20070329-1) ...
Reading package info from stdin ... done.
ghc-pkg: dependency HaXml-1.13.2 doesn't exist (use --force to override)
dpkg: error processing libghc6-happs-dev (--configure):
 subprocess post-installation script returned error exit status 1


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (100, 'unstable'), (99, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.20-1-686 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libghc6-happs-dev depends on:
ii  ghc6 [libghc6-base-dev]   6.6-3  GHC - the Glasgow Haskell Compilat
ii  ghc6-prof [libghc6-base-prof] 6.6-3  Profiling libraries for the Glasgo
ii  libghc6-binary-dev0.3-1  Haskell library for binary seriali
ii  libghc6-haxml-dev 1.17-4 GHC6 libraries for using XML docum
ii  libghc6-mtl-dev   1.0-3  Haskell monad transformer library 
ii  libghc6-network-dev   2.0-3  Haskell network library for GHC

libghc6-happs-dev recommends no packages.

-- no debconf information


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



Bug#419324: closed by Agustin Martin Domingo [EMAIL PROTECTED] (Bug#419324: fixed in linuxdoc-tools 0.9.21-0.7)

2007-04-27 Thread David Lawyer
On Thu, Apr 26, 2007 at 03:03:09PM +, Debian Bug Tracking System wrote:
  - -P-c is passed to grotty as default, unless something
else is set from the command line. This should fallback
to the old (overstriking) grotty behavior and avoid escape
sequences unless explicitely desired. Thanks David Lawyer
for the hint (closes: #175575, #419324).
You mean that -c is passed to grotty by default by passing -P-c to
groff.
David Lawyer


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



Bug#421167: quodlibet: fails to start, claiming 'filesrc' cannot be found

2007-04-27 Thread Sebastian Dröge
reassign 421167 gstreamer0.10
thanks

Am Donnerstag, den 26.04.2007, 20:09 -0700 schrieb Joe Wreschnig:
 On Thu, 2007-04-26 at 23:21 +0200, Martin wrote:
  Package: quodlibet
  Version: 0.23.1-1
  Severity: grave
  Justification: renders package unusable
  
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
  
  Quod Libet fails to start, pops up a message saying Quod Libet could
  not find the 'filesrc' GStreamer element. Check your GStreamer
  installation. It used to work fine before/during the freeze.
  ...
  Versions of packages quodlibet recommends:
  ii  gstreamer0.10-alsa0.10.12-2  GStreamer plugin for ALSA
  pn  gstreamer0.10-gnomevfsnone (no description available)
 
 ^-- This would be why. In 0.10.10 and all previous versions, a filesrc
 object would be returned:
 
  gst.element_make_from_uri(gst.URI_SRC, file://, )
 __main__.GstFileSrc object () at 0x402076bc
 
 Now, in unstable:
  gst.element_make_from_uri(gst.URI_SRC, file://, )
 __main__.GstGnomeVFSSrc object () at 0xb7d6393c
 
 And if I remove gstreamer0.10-gnomevfs:
  gst.element_make_from_uri(gst.URI_SRC, file://, )
 
 
 So, filesrc is in fact broken.
 
 Blah blah API compatibility, blah blah you need unit tests, blah blah,
 no one listens to me, blah STOP BREAKING MY SOFTWARE DAMNIT.
 
 The GStreamer changelog says:
 
 2007-02-13  Sebastian Dröge  [EMAIL PROTECTED]
 
 * plugins/elements/gstfilesink.c: (gst_file_sink_uri_set_uri):
 * plugins/elements/gstfilesrc.c: (gst_file_src_uri_set_uri):
 Also check for an absolute path following file:// in the filesrc
 element. Remove redundant check and call g_path_is_absolute() on the
 unescaped location.
 
 Sebastian, do you understand what an API is, and why changes like that
 ARE NOT ALLOWED, especially in point releases?

Sure, this was just to break the software of Joe Wreschnig. Could you
please calm down so we can talk about how to get this fixed properly?
Thanks

First lets get this change in the correct context, this is only a
continuation of another change by Sébastien Moutte:

 2007-02-10  Sébastien Moutte  [EMAIL PROTECTED]

 * plugins/elements/gstfilesrc.c:(gst_file_src_uri_set_uri):
 Fix a bug on Windows in uri format check. Now the prefix checked
 is file:// and next we check if the path after file:// is absolute.

which OTOH is a fix needed for my first change in that direction:

 2007-02-02  Sebastian Dröge  [EMAIL PROTECTED]
 
 reviewed by: Wim Taymans [EMAIL PROTECTED]
 
 * plugins/elements/gstfilesink.c: (gst_file_sink_uri_set_uri):
 * plugins/elements/gstfilesrc.c: (gst_file_src_uri_set_uri):
 Allow file://localhost/foo/bar URLs and correctly fail for every other
 hostname that one sets. This was gnomevfssrc is linked for those if
 installed as it can handle it (#403172)

As you can see this change wasn't only decided by me and it also wasn't 
intentional
that it breaks things in that way. Also please read the corresponding upstream
bugreport.

I agree that the fix for this bug was not at all complete and this special
case should be handled too. Is file:// the only URL that causes a problem for
you or is quodlibet using file://blabla/bla in general? (note that there are 
only
two slashes after the colon)

file:// is not a valid URI, it's only the protocol part of some URI. Then 
according
to rfc1738 file://blabla/bla corresponds to the location /bla on the host 
blabla.

Then, if quodlibet wants to check for the element filesrc it should just 
check if it
can create a filesrc element and not check if there is some random element 
that might
support the file:// protocol.

Apart from that, would you be fine if I just special case file:// and allow 
that as
a valid URI for filesrc as a workaround for this? file://blabla/bla would 
still not
be handled and this could be argued as an API change too. Not that using an
file://blabla/bla URI worked before but you could at least set it on the 
element and
the same applies for file:// too btw

I talked with Wim about this on IRC now and he also has the opinion that a) 
file:// is
simply not a valid URI but b) that this needs to be fixed by special casing the
file:// URI for API stability reasons only. I'll change that in CVS for now and 
also
upload a new gstreamer0.10 package with that change.

If there's still an issue then please first calm down and then file a bug 
against
the relevant package.

Bye

PS: For better checking if an URI protocol is support by any element I'll also 
add
a gst_uri_protocol_is_supported() function later btw...


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#421205: typo3: mod_rewrite - problem: internal server error

2007-04-27 Thread Andreas Rittershofer
Package: typo3
Version: 4.0.2+debian-3
Severity: grave
Justification: renders package unusable


After installing typo3 via aptitude I get in my browser:

Internal Server Error

The logfile says:
mod_rewrite: maximum number of internal redirects reached. Assuming 
configuration error. Use
RewriteOptions MaxRedirects to increase the limit if neccessary.


But this seems not to be the problem, which I assume is a loop in the redirects.

mfg ar



-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Kernel: Linux 2.4.27-2-386
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages typo3 depends on:
ii  graphicsmagick   1.1.7-13collection of image processing too
ii  php4-gd  6:4.4.4-8+etch1 GD module for php4
ii  sendmail-bin [mail-trans 8.13.4-3sarge3  powerful, efficient, and scalable 
ii  typo3-dummy  4.0.2-2 Empty TYPO3 site package for start
ii  typo3-src-4.04.0.2+debian-3  Powerful content management framew

-- no debconf information


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



Bug#421203: bind9-host: host segfault when timeout occurs while looking for a SOA record

2007-04-27 Thread Yannick Gingras
Package: bind9-host
Version: 1:9.3.4-2
Severity: normal


/usr/bin/host segfault when a timeout occurs while looking for a SOA record.

The problem is easy to reproduce.  Those queries segfault most of the time:
  host -C aften.com
  host -C agart.net
  host -C aptil.net
  host -C arent.com
  host -C crint.com
  host -C evider.com
  host -C firing.com
  host -C horth.org
  host -C huntes.com
  host -C libes.com
  host -C listings.com
  host -C nings.com
  host -C saccom.com
  host -C shich.com
  host -C siten.org
  host -C stratin.info
  host -C theirs.com
  host -C thich.com
  host -C tower.info
  host -C tried.com
  host -C whouse.net
  host -C wined.info
  host -C wrace.org

I don't know what is special with those domains, sometimes host will timeout 
normally.  I can provide a longer list.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-amd64
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)

Versions of packages bind9-host depends on:
ii  libbind9-0  1:9.3.4-2BIND9 Shared Library used by BIND
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libdns221:9.3.4-2DNS Shared Library used by BIND
ii  libisc111:9.3.4-2ISC Shared Library used by BIND
ii  libisccfg1  1:9.3.4-2Config File Handling Library used 
ii  liblwres9   1:9.3.4-2Lightweight Resolver Library used 
ii  libssl0.9.8 0.9.8c-4 SSL shared libraries

bind9-host recommends no packages.

-- no debconf information


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



Bug#421204: FTBFS: ctangle: Command not found

2007-04-27 Thread Martin Michlmayr
Package: matanza
Version: 0.13-3.3
Severity: serious

This package fails to build because of the tetex-texlive transition.
You need a build-depends on texlive-extra-utils.

 Automatic build of matanza_0.13-3.3 on coconut0 by sbuild/ia64 0.49
...
 creating ./config.status
 creating Makefile
 creating config.h
 /usr/bin/make CFLAGS=-Wall -g -O2
 make[1]: Entering directory `/build/tbm/matanza-0.13'
 ctangle matanza.w
 make[1]: ctangle: Command not found
 make[1]: *** [matanza.c] Error 127
 make[1]: Leaving directory `/build/tbm/matanza-0.13'
 make: *** [build-stamp] Error 2

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#383316: Could you please forward this proposed license to Teosto? (was: Re: Choosing a license for Frets on Fire songs)

2007-04-27 Thread Jacobo Tarrio
El jueves, 26 de abril de 2007 a las 16:25:40 -0400, Jason Spiro escribía:

 I have dropped Tommi, Sami and Joonas from the Cc because I don't think
they want to be bothered too much with this kind of things, and only care
about the results. Feel free to correct me if that isn't the case.

 * Persons distributing the Work to the general public may only do so
 if the Work is distributed and/or bundled with game software.

 If the songs must be distributed and/or bundled with the game, then it is
not allowed to distribute the game in main and the songs in non-free. In
fact, one could say they cannot even be in different packages.

 If I were to draft such a license, I'd allow unlimited distribution, allow
to change the storage format and/or medium of the songs but only allow use,
public performance, etc., in games.

 Also, I'd suggest not making a non-free license look similar to a free
license :-)

-- 
   Jacobo Tarrío | http://jacobo.tarrio.org/


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



Bug#417178: Log for failed build of ecasound2.2_2.4.5-1 (dist=unstable3)

2007-04-27 Thread Martin Michlmayr
found 417178 2.4.5-1
thanks

There's a new problem:

 Automatic build of ecasound2.2_2.4.5-1 on em64t by sbuild/amd64 0.53
...
  g++ -DHAVE_CONFIG_H -I. -I. -I.. -I. -I.. -I../kvutils -D_REENTRANT 
 -DECA_PKGDATADIR=\/usr/share/ecasound2.2/ecasound\ -ffast-math 
 -fstrict-aliasing -funroll-loops -DNDEBUG -DENABLE_DBC -D_FILE_OFFSET_BITS=64 
 -D_LARGEFILE_SOURCE -g -O2 -D_REENTRANT -DNDEBUG -ffast-math 
 -fstrict-aliasing -funroll-loops -MT eca-object-factory.lo -MD -MP -MF 
 .deps/eca-object-factory.Tpo -c eca-object-factory.cpp -o eca-object-factory.o
 eca-object-factory.cpp: In static member function 'static std::string 
 ECA_OBJECT_FACTORY::audio_object_to_eos(const AUDIO_IO*, const std::string)':
 eca-object-factory.cpp:743: error: no matching function for call to 
 'find(__gnu_cxx::__normal_iteratorchar*, std::basic_stringchar, 
 std::char_traitschar, std::allocatorchar  , 
 __gnu_cxx::__normal_iteratorchar*, std::basic_stringchar, 
 std::char_traitschar, std::allocatorchar  , char)'
 eca-object-factory.cpp:744: error: no matching function for call to 
 'find(__gnu_cxx::__normal_iteratorchar*, std::basic_stringchar, 
 std::char_traitschar, std::allocatorchar  , 
 __gnu_cxx::__normal_iteratorchar*, std::basic_stringchar, 
 std::char_traitschar, std::allocatorchar  , char)'
 eca-object-factory.cpp:745: error: no matching function for call to 
 'find(__gnu_cxx::__normal_iteratorchar*, std::basic_stringchar, 
 std::char_traitschar, std::allocatorchar  , 
 __gnu_cxx::__normal_iteratorchar*, std::basic_stringchar, 
 std::char_traitschar, std::allocatorchar  , char)'
 make[4]: *** [eca-object-factory.lo] Error 1
 make[4]: Leaving directory `/build/tbm/ecasound2.2-2.4.5/libecasound'

--- libecasound/eca-object-factory.cpp~ 2007-04-27 07:04:45.0 +
+++ libecasound/eca-object-factory.cpp  2007-04-27 07:04:56.0 +
@@ -25,6 +25,7 @@
 #include config.h
 #endif
 
+#include algorithm
 #include list
 #include map
 #include string

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#421144: FTBFS with GCC 4.3: missing #includes

2007-04-27 Thread Krzysztof Burghardt
Martin Michlmayr wrote:
 Your package fails to build with GCC 4.3.  Version 4.3 has not been
 released yet but I'm building with a snapshot in order to find errors

Thanks! I have forwarded this to upstream as #1708529 on SF.net.

-- 
Krzysztof Burghardt [EMAIL PROTECTED]
http://www.burghardt.pl/





Bug#421206: metacity: prerm script lakes an upgrade option, which causes warnings during upgrade

2007-04-27 Thread Lior Kaplan
Package: metacity
Version: 1:2.18.2-3
Severity: normal

While upgrading:

Preparing to replace metacity 1:2.18.2-2 (using 
.../metacity_1%3a2.18.2-3_i386.deb) ...
prerm called with unknown argument `upgrade'
dpkg: warning - old pre-removal script returned error exit status 1
dpkg - trying script from the new package instead ...
dpkg: ... it looks like that went OK.
Unpacking replacement metacity ...



-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.18-4-k7 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages metacity depends on:
ii  libatk1.0-0   1.18.0-2   The ATK accessibility toolkit
ii  libc6 2.5-4  GNU C Library: Shared libraries
ii  libcairo2 1.4.4-1The Cairo 2D vector graphics libra
ii  libgconf2-4   2.18.0.1-3 GNOME configuration database syste
ii  libglib2.0-0  2.12.11-3  The GLib library of C routines
ii  libgtk2.0-0   2.10.11-2  The GTK+ graphical user interface 
ii  libice6   1:1.0.3-2  X11 Inter-Client Exchange library
ii  libmetacity0  1:2.18.2-3 library of lightweight GTK2 based 
ii  libpango1.0-0 1.16.2-2   Layout and rendering of internatio
ii  libsm61:1.0.2-2  X11 Session Management library
ii  libstartup-notification0  0.9-1  library for program launch feedbac
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxcursor1   1:1.1.8-2  X cursor management library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxinerama1  1:1.0.2-1  X11 Xinerama extension library
ii  libxrandr22:1.2.1-1  X11 RandR extension library
ii  libxrender1   1:0.9.2-1  X Rendering Extension client libra
ii  metacity-common   1:2.18.2-3 Shared files of lightweight GTK2 b

metacity recommends no packages.

-- no debconf information


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



Bug#421207: FTBFS with GCC 4.3: missing #include

2007-04-27 Thread Martin Michlmayr
Package: asymptote
Version: 1.23-1
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).

You can reproduce this problem with gcc-snapshot (20070422-1 or higher)
from unstable. (Currently not available for i386, but for amd64 and
and ia64.  I hope to have i386 binaries in the archive in the near
future.)


 Automatic build of asymptote_1.23-1 on em64t by sbuild/amd64 0.53
...
 make[1]: Leaving directory `/build/tbm/asymptote-1.23'
 make[1]: Entering directory `/build/tbm/asymptote-1.23'
 g++ -Wall -ansi -DHAVE_CONFIG_H -DUSEGC  -I/usr/include/gc -g -Wall -O2  -I . 
 -I /usr/include/gc -o camperror.o -c camperror.cc
 In file included from settings.h:15,
  from errormsg.h:13,
  from vm.h:11,
  from camperror.cc:15:
 item.h: In member function 'bool vm::item::empty()':
 item.h:24: error: must #include typeinfo before using typeid
 item.h: In constructor 'vm::item::item()':
 item.h:27: error: must #include typeinfo before using typeid
 item.h: In constructor 'vm::item::item(int)':
 item.h:30: error: must #include typeinfo before using typeid
 item.h: In constructor 'vm::item::item(double)':
 item.h:32: error: must #include typeinfo before using typeid
 item.h: In constructor 'vm::item::item(bool)':
 item.h:34: error: must #include typeinfo before using typeid
 item.h: In member function 'vm::item vm::item::operator=(int)':
 item.h:37: error: must #include typeinfo before using typeid
 item.h: In member function 'vm::item vm::item::operator=(double)':
 item.h:39: error: must #include typeinfo before using typeid
 item.h: In member function 'vm::item vm::item::operator=(bool)':
 item.h:41: error: must #include typeinfo before using typeid
 item.h: In constructor 'vm::item::item(T*)':
 item.h:45: error: must #include typeinfo before using typeid
 item.h: In constructor 'vm::item::item(const T)':
 item.h:49: error: must #include typeinfo before using typeid
 item.h: In member function 'vm::item vm::item::operator=(T*)':
 item.h:53: error: must #include typeinfo before using typeid
 item.h: In member function 'vm::item vm::item::operator=(const T)':
 item.h:57: error: must #include typeinfo before using typeid
 item.h: In static member function 'static T* vm::item::helpT*::unwrap(const 
 vm::item)':
 item.h:83: error: must #include typeinfo before using typeid
 item.h: In static member function 'static T vm::item::helpT::unwrap(const 
 vm::item)':
 item.h:93: error: must #include typeinfo before using typeid
 item.h: In function 'T vm::get(const vm::item) [with T = int]':
 item.h:132: error: must #include typeinfo before using typeid
 item.h: In function 'T vm::get(const vm::item) [with T = double]':
 item.h:140: error: must #include typeinfo before using typeid
 item.h: In function 'T vm::get(const vm::item) [with T = bool]':
 item.h:148: error: must #include typeinfo before using typeid
 item.h: In function 'bool vm::isdefault(const vm::item)':
 item.h:158: error: must #include typeinfo before using typeid
 make[1]: *** [camperror.o] Error 1
 make[1]: Leaving directory `/build/tbm/asymptote-1.23'
 make: *** [debian/stamp-makefile-build] Error 2
 **
 Build finished at 20070427-0012
 FAILED [dpkg-buildpackage died]

--- item.h~ 2007-04-27 07:21:35.0 +
+++ item.h  2007-04-27 07:21:48.0 +
@@ -10,6 +10,8 @@
 
 #include common.h
 
+#include typeinfo
+
 namespace vm {
 
 class item;
--- fftw++.h~   2007-04-27 07:33:44.0 +
+++ fftw++.h2007-04-27 07:33:54.0 +
@@ -20,6 +20,7 @@
 
 #define __FFTWPP_H_VERSION__ 1.03
 
+#include cstdlib
 #include fstream
 #include iostream
 #include fftw3.h

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#421208: gstreamer0.10-ffmpeg: crashes on startup

2007-04-27 Thread Matijs van Zuijlen
Package: gstreamer0.10-ffmpeg
Version: 0.10.2-2
Severity: important

Hello,

This gstreamer plugin crashes on startup, hence crashing gstreamer, hence
crashing gnome-settings-daemon. After determining the problem was somewhere
in gstreamer, I ran:

  gst-launch-0.10 --gst-debug-level=5 2 ~/err.log

This dumps core.
Here is a backtrace of the resulting core dump:

Core was generated by `gst-launch-0.10 --gst-debug-level=5'.
Program terminated with signal 4, Illegal instruction.
#0  0x0f5c530c in ?? () from /usr/lib/gstreamer-0.10/libgstffmpeg.so
#0  0x0f5c530c in ?? () from /usr/lib/gstreamer-0.10/libgstffmpeg.so
#1  0x0f5ad4d4 in ?? () from /usr/lib/gstreamer-0.10/libgstffmpeg.so
#2  0x0f5ad4cc in ?? () from /usr/lib/gstreamer-0.10/libgstffmpeg.so
#3  0x0ff84580 in ?? () from /usr/lib/libgstreamer-0.10.so.0
#4  0x0ff84b60 in gst_plugin_load_file () from /usr/lib/libgstreamer-0.10.so.0
#5  0x0ff8af90 in ?? () from /usr/lib/libgstreamer-0.10.so.0
#6  0x0ff8b3ec in gst_registry_scan_path () from /usr/lib/libgstreamer-0.10.so.0
#7  0x0ff46e5c in ?? () from /usr/lib/libgstreamer-0.10.so.0
#8  0x0ff474fc in ?? () from /usr/lib/libgstreamer-0.10.so.0
#9  0x0ff484d0 in ?? () from /usr/lib/libgstreamer-0.10.so.0
#10 0x0fdca020 in g_option_context_parse () from /usr/lib/libglib-2.0.so.0
#11 0x100036f8 in ?? ()
#12 0x0fbf8728 in generic_start_main () from /lib/libc.so.6
#13 0x0fbf8978 in __libc_start_main () from /lib/libc.so.6
#14 0x in ?? ()

Here are the last lines of ~/err.log:

  0:00:00.951392000 27432 0x10016050 DEBUG GST_REGISTRY 
gstregistry.c:450:gst_registry_add_feature:registry0 adding feature 
0x1009a5a0 (ffdemux_yuv4mpegpipe)
  0:00:00.951469000 27432 0x10016050 LOGGST_REFCOUNTING 
gstobject.c:325:gst_object_ref:ffdemux_yuv4mpegpipe 0x1009a5a0 ref 1-2
  0:00:00.951513000 27432 0x10016050 LOGGST_REFCOUNTING 
gstobject.c:379:gst_object_sink:ffdemux_yuv4mpegpipe sink
  0:00:00.951551000 27432 0x10016050 LOGGST_REFCOUNTING 
gstobject.c:383:gst_object_sink:ffdemux_yuv4mpegpipe clear floating flag
  0:00:00.951588000 27432 0x10016050 LOGGST_REFCOUNTING 
gstobject.c:352:gst_object_unref:ffdemux_yuv4mpegpipe 0x1009a5a0 unref 2-1
  0:00:00.951623000 27432 0x10016050 LOG   GST_REGISTRY 
gstregistry.c:458:gst_registry_add_feature:registry0 emitting feature-added 
for ffdemux_yuv4mpegpipe
  0:00:00.951664000 27432 0x10016050 INFO  GST_TYPEFIND 
gsttypefind.c:83:gst_type_find_register: registering typefind function for 
fftype_yuv4mpegpipe
  0:00:00.951729000 27432 0x10016050 LOGGST_REFCOUNTING 
gstobject.c:293:gst_object_init:[EMAIL PROTECTED] 0x10046168 new
  0:00:00.951803000 27432 0x10016050 DEBUG GST_TYPEFIND 
gsttypefind.c:86:gst_type_find_register:typefindfactory151 using new typefind 
factory for fftype_yuv4mpegpipe
  0:00:00.951848000 27432 0x10016050 LOGGST_REFCOUNTING 
gstcaps.c:373:gst_caps_ref: 0x100defc0 1-2
  0:00:00.951973000 27432 0x10016050 DEBUG GST_REGISTRY 
gstregistry.c:450:gst_registry_add_feature:registry0 adding feature 
0x10046168 (fftype_yuv4mpegpipe)
  0:00:00.952036000 27432 0x10016050 LOGGST_REFCOUNTING 
gstobject.c:325:gst_object_ref:fftype_yuv4mpegpipe 0x10046168 ref 1-2
  0:00:00.952078000 27432 0x10016050 LOGGST_REFCOUNTING 
gstobject.c:379:gst_object_sink:fftype_yuv4mpegpipe sink
  0:00:00.952177000 27432 0x10016050 LOGGST_REFCOUNTING 
gstobject.c:383:gst_object_sink:fftype_yuv4mpegpipe clear floating flag
  0:00:00.952219000 27432 0x10016050 LOGGST_REFCOUNTING 
gstobject.c:352:gst_object_unref:fftype_yuv4mpegpipe 0x10046168 unref 2-1
  0:00:00.952253000 27432 0x10016050 LOG   GST_REGISTRY 
gstregistry.c:458:gst_registry_add_feature:registry0 emitting feature-added 
for fftype_yuv4mpegpipe
  0:00:00.970796000 27431 0x10016050 DEBUG GST_INIT 
gst.c:827:ensure_current_registry_forking: parent waiting on child
  0:00:00.971603000 27431 0x10016050 DEBUG GST_INIT 
gst.c:829:ensure_current_registry_forking: parent done waiting on child
  0:00:00.971675000 27431 0x10016050 ERROR GST_INIT 
gst.c:832:ensure_current_registry_forking: child did not exit normally, 
terminated by signal

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.18-4-powerpc
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gstreamer0.10-ffmpeg depends on:
ii  libc6  2.5-4 GNU C Library: Shared libraries
ii  libglib2.0-0   2.12.11-3 The GLib library of C routines
ii  libgstreamer-plugins-base0 0.10.12-2 GStreamer libraries from the base
ii  libgstreamer0.10-0 0.10.12-3 Core GStreamer libraries and eleme
ii  liboil0.3  0.3.11-1  Library of Optimized Inner Loops
ii  libxml22.6.28.dfsg-1 

Bug#420611: xserver-xorg-core: Composite extension not available?

2007-04-27 Thread Michel Dänzer
On Fre, 2007-04-27 at 00:21 +0100, Adam Spragg wrote:
 Brice Goglin wrote:
  Adam Spragg wrote:
  With or without an Option Composite Enable line in my xorg.conf,

FWIW, I have just

Option Composite

(without Enable), but IIRC that shouldn't make a difference.

As you don't have the

(**) Extension Composite is enabled

line, it appears like the config file parser doesn't even see the
option... Another possibility would be that it gets disabled on the
command line, can you check that with ps? That probably should be
indicated in the log file as well though...

  Xorg.0.log claims that the Composite extension is initialized. At least,
  no errors are reported.
  
  I guess initialized is different from enabled...
 
 It says it's initializing it, and then gives no warnings or errors. I'm
 assuming under the unix be silent on success, noisy on error rule,
 along with the fact that most of the other extensions are initialized
 without problems  output no warnings and that there are plenty of other
 warnings in the log, that the Composite extension is being initialized
 without problems.

No, as Brice said, that line doesn't mean an extension actually gets
enabled.


-- 
Earthling Michel Dänzer   |  http://tungstengraphics.com
Libre software enthusiast |  Debian, X and DRI developer



Bug#421209: FTBFS with GCC 4.3: missing #includes

2007-04-27 Thread Martin Michlmayr
Package: basket
Version: 1.0.2-1
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).  Some background of this can be found at
http://gcc.gnu.org/PR28080

You can reproduce this problem with gcc-snapshot (20070326-1 or higher)
from unstable. (Currently not available for i386, but for amd64, powerpc
and ia64.  I hope to have i386 binaries in the archive in the near
future.)

 Automatic build of basket_1.0.2-1 on em64t by sbuild/amd64 0.53
...
 bnpview.cpp: In member function 'QPopupMenu* BNPView::popupMenu(const 
 QString)':
 bnpview.cpp:1551: error: 'exit' was not declared in this scope

--- src/bnpview.cpp~2007-04-27 07:41:33.0 +
+++ src/bnpview.cpp 2007-04-27 07:41:43.0 +
@@ -49,6 +49,7 @@
 #include kkeydialog.h
 #include dcopclient.h
 #include kdebug.h
+#include cstdlib
 #include iostream
 #include bnpview.h
 #include basket.h
--- src/backup.cpp~ 2007-04-27 07:46:52.0 +
+++ src/backup.cpp  2007-04-27 07:47:02.0 +
@@ -43,6 +43,7 @@
 #include kfiledialog.h
 #include kprogress.h
 #include kmessagebox.h
+#include cstdlib
 #include unistd.h // usleep()
 
 /**

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#420014: mutt: s/mime, openssl supresses a signed message body when verification fails

2007-04-27 Thread Václav Ovsík
Hello Alain,

On Thu, Apr 26, 2007 at 02:10:08PM +0200, Alain Bench wrote:
 ...
 Why dirty? This seems to be a quite proper solution. I would just
 remove the second %C because -noverify doesn't check CA certificates.
 To me this seems appropriate, both for Debian /etc/Muttrc and upstream
 contrib/smime.rc
 ...

I wrote dirty because I didn't found anything about this behaviour in
smime man page and I didn't test of this with older openssl 0.9.7
(perhaps not interesting for Debian). I hope this behaviour (supressing
output on failure) will be consistent from 0.9.8 and up.

Thanks for your reply and corrections.

Regards
-- 
Zito


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



Bug#421071: [Pkg-scicomp-devel] Bug#421071: FTBFS: ! LaTeX Error: File `fancyheadings.sty' not found.

2007-04-27 Thread Rafael Laboissiere
package freefem
tags 421071 upstream patch
thanks

* Jérémy Bobbio [EMAIL PROTECTED] [2007-04-26 11:04]:

 Package: freefem
 Version: 3.5.8-3
 Severity: serious
 Justification: no longer builds from source
 
 Hi!
 
 freefem currently fails to build from source in sid [1]:
 
 [snip]
 
 ! LaTeX Error: File `fancyheadings.sty' not found.
 
 [snip]

The patch (actually a debdiff) attached below fixes the problem.  We should
use fancyhdr instead of fancyheadings.  Also, we should replace the
build-dependencies on the teTeX packages by the corresponding ones in
TeXLive.  

-- 
Rafael
diff -u freefem-3.5.8/debian/control freefem-3.5.8/debian/control
--- freefem-3.5.8/debian/control
+++ freefem-3.5.8/debian/control
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian Scientific Computing Team [EMAIL PROTECTED]
 Uploaders: Christophe Prud'homme [EMAIL PROTECTED]
-Build-Depends: cdbs, debhelper (= 5.0), autoconf ( 2.50), libtool, 
automake1.9, libxt-dev, doxygen( 1.2.10), tetex-bin, tetex-extra, hevea, 
doc-base
+Build-Depends: cdbs, debhelper (= 5.0), autoconf ( 2.50), libtool, 
automake1.9, libxt-dev, doxygen( 1.2.10), hevea, texlive-latex-base, 
texlive-latex-recommended
 Standards-Version: 3.7.2
 
 Package: freefem
diff -u freefem-3.5.8/debian/changelog freefem-3.5.8/debian/changelog
--- freefem-3.5.8/debian/changelog
+++ freefem-3.5.8/debian/changelog
@@ -1,3 +1,13 @@
+freefem (3.5.8-4) unstable; urgency=low
+
+  * debian/control: 
++ Replaced build-dependencies on teTeX by the corresponding TeXLive ones
++ Removed useless build-dependency on doc-base
+  * doc/freefem.tex: Use fancyhdr.sty instead of the deprecated
+fancyheadings.sty (closes: #421071)
+
+ -- Rafael Laboissiere [EMAIL PROTECTED]  Fri, 27 Apr 2007 08:30:18 +0200
+
 freefem (3.5.8-3) unstable; urgency=low
 
   * Build-Depends on automake1.9
--- freefem-3.5.8.orig/doc/freefem.tex
+++ freefem-3.5.8/doc/freefem.tex
@@ -31,7 +31,7 @@
   FEM, X11, graphical interface},
 letterpaper}{hyperref}
 \usepackage{makeidx}
-\usepackage{fancyheadings,fancyvrb,multicol} 
+\usepackage{fancyhdr,fancyvrb,multicol} 
 \usepackage{html}
 \usepackage{xspace}
 \usepackage[pdftex]{graphicx}


Bug#421212: FTBFS with GCC 4.3: error: extra ';'

2007-04-27 Thread Martin Michlmayr
Package: crawl
Version: 2:0.2.4-1
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.

You can reproduce this problem with gcc-snapshot (20070422-1 or higher)
from unstable. (Currently not available for i386, but for amd64, powerpc
and ia64.  I hope to have i386 binaries in the archive in the near
future.)

(Sorry for sending yet another bug report bug this issue is new in
current gcc 4.3 snapshots.)

 Automatic build of crawl_2:0.2.4-1 on em64t by sbuild/amd64 0.53
...
 g++ -I/usr/include/ncurses -Iutil -I. -Wall -Wwrite-strings -Wshadow 
 -pedantic -fsigned-char -DUNIX -O2 -g '-DSAVE_DIR_PATH=/var/games/crawl/' 
 '-DDATA_DIR_PATH=/usr/share/games/crawl/' -c abl-show.cc
 In file included from AppHdr.h:401,
  from abl-show.cc:24:
 libutil.h:258: error: extra ';'
 In file included from abl-show.cc:59:
 stuff.h:21: warning: type qualifiers ignored on function return type

--- source/libutil.h~   2007-04-27 08:02:05.0 +
+++ source/libutil.h2007-04-27 08:02:09.0 +
@@ -255,7 +255,7 @@
 class base_pattern
 {
 public:
-virtual ~base_pattern() { };
+virtual ~base_pattern() { }
 
 virtual bool valid() const = 0;
 virtual bool matches(const std::string s) const = 0;

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#421211: FTBFS with GCC 4.3: missing #includes

2007-04-27 Thread Martin Michlmayr
Package: chuck
Version: 1.2.0.8.dfsg-1
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).  Some background of this can be found at
http://gcc.gnu.org/PR28080

You can reproduce this problem with gcc-snapshot (20070326-1 or higher)
from unstable. (Currently not available for i386, but for amd64, powerpc
and ia64.  I hope to have i386 binaries in the archive in the near
future.)


 Automatic build of chuck_1.2.0.8.dfsg-1 on em64t by sbuild/amd64 0.53
...
 rterror.h:62: warning: type qualifiers ignored on function return type
 chuck_vm.cpp: In member function 'long unsigned int 
 Chuck_VM::process_msg(Chuck_Msg*)':
 chuck_vm.cpp:950: warning: format '%d' expects type 'int', but argument 3 has 
 type 'long unsigned int'
 chuck_vm.cpp: In member function 'long unsigned int 
 Chuck_VM_Stack::initialize(long unsigned int)':
 chuck_vm.cpp:1238: warning: too few arguments for format
 chuck_vm.cpp: In member function 'void 
 Chuck_VM_Shreduler::status(Chuck_VM_Status*)':
 chuck_vm.cpp:1920: error: 'sort' is not a member of 'std'
 make[2]: *** [chuck_vm.o] Error 1
 make[2]: Leaving directory `/build/tbm/chuck-1.2.0.8.dfsg/src'

--- src/chuck_vm.h~ 2007-04-27 07:50:51.0 +
+++ src/chuck_vm.h  2007-04-27 07:52:13.0 +
@@ -41,6 +41,7 @@
 #include chuck_stats.h
 #endif
 
+#include algorithm
 #include string
 #include map
 #include vector
--- src/rtaudio.cpp~2007-04-27 07:54:42.0 +
+++ src/rtaudio.cpp 2007-04-27 07:54:53.0 +
@@ -50,6 +50,7 @@
 #include chuck_errmsg.h
 #include digiio_rtaudio.h
 #include stdio.h
+#include climits
 // old
 // #include RtAudio.h
 // #include iostream
--- src/ugen_stk.cpp~   2007-04-27 07:55:37.0 +
+++ src/ugen_stk.cpp2007-04-27 07:55:55.0 +
@@ -41,6 +41,7 @@
 #include string.h
 #include time.h
 #include float.h
+#include climits
 
 
 
--- src/util_hid.cpp~   2007-04-27 07:57:33.0 +
+++ src/util_hid.cpp2007-04-27 07:57:39.0 +
@@ -37,6 +37,7 @@
 
 #include vector
 #include map
+#include climits
 
 using namespace std;
 

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#421213: libgstreamer0.10-0: please don't crash if plugins crash

2007-04-27 Thread Matijs van Zuijlen
Package: libgstreamer0.10-0
Version: 0.10.12-3
Severity: wishlist

Hello,

I just filed a bug report on gstreamer0.10-ffmpeg, because it crashes,
bringing down gstreamer, hence gnome-settings-daemon, causing gnome to
break (bug #421208).

Could gstreamer please not abort when some random plugin is broken?

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.18-4-powerpc
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libgstreamer0.10-0 depends on:
ii  libc6  2.5-4 GNU C Library: Shared libraries
ii  libglib2.0-0   2.12.11-3 The GLib library of C routines
ii  libxml22.6.28.dfsg-1 GNOME XML library

libgstreamer0.10-0 recommends no packages.

-- no debconf information


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



Bug#421214: ldapvi: startup incredibly slow with TLS/SSL

2007-04-27 Thread Christoph Scheurer
Package: ldapvi
Version: 1.6-3
Severity: important

Hello,

we are using Kerberos 5 and LDAP for user authentificationa and management at
our site. The KDC and LDAP servers are still running sarge. So far we used a
locally built version of ldapvi (1.3pfn_sasl, with the SASL patches applied)
on sarge clients for administration and everything was fine. We wanted to
update to etch and use the regular ldapvi 1.6 Debian package now.

When ldapvi is started with SSL (by URL) or TLS
ldapvi -Z --tls strict -Y GSSAPI '(uid=)'
it takes about 40-50 seconds until the actual editor is opened. During this
time the CPU has 100% load (2GHz Athlon) from ldapvi. This does not happen and
the editor is opened immediately when no SSL/TLS is used.

For comparison
ldapsearch -ZZ -Y GSSAPI '(uid=)'
which, as I understand, does exactly the same as ldapvi until the editor is
opened, yields a search result immediately and does not use a noticable amount
of CPU on the exact same client machine.

An strace of a running ldapvi with TLS shows that during the 40 second period
ldapvi is going trough the certificates in /etc/ssl/certs, which is what
ldapsearch also does on startup, yet ldapvi is using considerably more
resources and time.

I mark this bug as important since it renders ldapvi practicably unusable for
administration and general LDAP editing at sites that employ either SSL (-h
ldaps://hostname) or STARTTLS (-Z).

Kind regards,

Ch. Scheurer



-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-k7
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages ldapvi depends on:
ii  emacs21 [editor]21.4a+1-3The GNU Emacs editor
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libglib2.0-02.12.4-2 The GLib library of C routines
ii  libldap22.1.30-13.3  OpenLDAP libraries
ii  libncurses5 5.5-5Shared libraries for terminal hand
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  libreadline55.2-2GNU readline and history libraries
ii  nano [editor]   2.0.2-1  free Pico clone with some new feat
ii  vim [editor]1:7.0-122+1etch2 Vi IMproved - enhanced vi editor

ldapvi recommends no packages.

-- no debconf information


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



Bug#414932: Info received (Bug#414932: linux-image-2.6.18-4-ixp4xx: xfs partition from x86 system can not be used on arm)

2007-04-27 Thread Lennert Buytenhek
On Thu, Apr 26, 2007 at 11:57:40PM -0500, Eric Sandeen wrote:

 Maybe the alignment isn't broken; it's just special - I guess there 
 are no actual rules on how the structure must be aligned...  hmm...

Yep.  Padding rules on old-ABI ARM systems are 'special', but still
spec-compliant.  See:

http://www.simplemachines.it/arm-linux/book/afaq.html

For example, this means that sizeof(struct { char a; char b; }) == 4
on old-ABI ARM systems.  This is the main cause of pain when porting
applications to ARM platforms.  (#2 is the fact that chars are unsigned
by default on ARM, which is also something that the relevant specs
allow but not a lot of people expect.)

The new ARM ABI (EABI) changes both of these things (and a couple more,
such as 64 bit type alignment and the floating point calling convention)
to be more in line with other deployed Linux platforms.  There is a
preliminary Debian EABI port available here:

http://wiki.debian.org/ArmEabiPort

But Debian EABI uptake has been very slow, and most people are still on
old-ABI systems.


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



Bug#421215: FTBFS with GCC 4.3: error: extra ';'

2007-04-27 Thread Martin Michlmayr
Package: gphpedit
Version: 0.9.91-3
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.

You can reproduce this problem with gcc-snapshot (20070422-1 or higher)
from unstable. (Currently not available for i386, but for amd64, powerpc
and ia64.  I hope to have i386 binaries in the archive in the near
future.)

 Automatic build of gphpedit_0.9.91-3 on em64t by sbuild/amd64 0.53
...
 g++ `pkg-config --cflags gtk+-2.0` -DNDEBUG -Os -Wall -Wno-missing-braces 
 -Wno-char-subscripts -pedantic -Os -DGTK -DSCI_LEXER -I ../include -I ../src  
 -c ../src/DocumentAccessor.cxx
 In file included from ../src/DocumentAccessor.cxx:13:
 ../include/Platform.h:305: error: extra ';'
 ../include/Platform.h:306: error: extra ';'
 ../include/Platform.h:446: error: extra ';'
 In file included from ../src/DocumentAccessor.cxx:18:
 ../src/DocumentAccessor.h:61: error: extra ';'
 In file included from ../src/DocumentAccessor.cxx:22:
 ../src/Document.h:31: error: extra ';'
 ../src/Document.h:34: error: extra ';'
 make[5]: *** [DocumentAccessor.o] Error 1
 make[5]: Leaving directory 
 `/build/tbm/gphpedit-0.9.91/src/gtkscintilla2/scintilla/gtk'

--- src/gtkscintilla2/scintilla/src/Document.h~ 2007-04-27 08:13:37.0 
+
+++ src/gtkscintilla2/scintilla/src/Document.h  2007-04-27 08:13:42.0 
+
@@ -28,10 +28,10 @@
 

Range(Position pos=0) :

start(pos), end(pos) {

-   };

+   }

Range(Position start_, Position end_) :

start(start_), end(end_) {

-   };

+   }

 

bool Valid() const {

return (start != invalidPosition)  (end != invalidPosition);

--- src/gtkscintilla2/scintilla/src/DocumentAccessor.h~ 2007-04-27 
08:13:48.0 +
+++ src/gtkscintilla2/scintilla/src/DocumentAccessor.h  2007-04-27 
08:13:51.0 +
@@ -58,7 +58,7 @@
WindowID GetWindow() { return id; }

 

void StartAt(unsigned int start, char chMask=31);

-   void SetFlags(char chFlags_, char chWhile_) {chFlags = chFlags_; 
chWhile = chWhile_; };

+   void SetFlags(char chFlags_, char chWhile_) {chFlags = chFlags_; 
chWhile = chWhile_; }

unsigned int GetStartSegment() { return startSeg; }

void StartSegment(unsigned int pos);

void ColourTo(unsigned int pos, int chAttr);

--- src/gtkscintilla2/scintilla/src/Style.h~2007-04-27 08:14:58.0 
+
+++ src/gtkscintilla2/scintilla/src/Style.h 2007-04-27 08:15:04.0 
+
@@ -50,7 +50,7 @@
void ClearTo(const Style source);

bool EquivalentFontTo(const Style *other) const;

void Realise(Surface surface, int zoomLevel, Style *defaultStyle = 0, 
bool extraFontFlag = false);

-   bool IsProtected() const { return !(changeable  visible);};

+   bool IsProtected() const { return !(changeable  visible);}

 };

 

 #endif

--- src/gtkscintilla2/scintilla/src/ExternalLexer.h~2007-04-27 
08:15:32.0 +
+++ src/gtkscintilla2/scintilla/src/ExternalLexer.h 2007-04-27 
08:15:36.0 +
@@ -37,7 +37,7 @@
const char *languageName_=0, LexerFunction fnFolder_=0) : 
LexerModule(language_, fnLexer_, 0, fnFolder_){

strncpy(name, languageName_, sizeof(name));

languageName = name;

-   };

+   }

virtual void Lex(unsigned int startPos, int lengthDoc, int initStyle,

WordList *keywordlists[], Accessor 
styler) const;

virtual void Fold(unsigned int startPos, int lengthDoc, int initStyle,

--- src/gtkscintilla2/scintilla/include/Platform.h~ 2007-04-27 
08:13:12.0 +
+++ src/gtkscintilla2/scintilla/include/Platform.h  2007-04-27 
08:13:24.0 +
@@ -302,8 +302,8 @@
Surface(const Surface ) {}

Surface operator=(const Surface ) { return *this; }

 public:

-   Surface() {};

-   virtual ~Surface() {};

+   Surface() {}

+   virtual ~Surface() {}

static Surface *Allocate();

 

virtual void Init(WindowID wid)=0;

@@ -443,7 +443,7 @@
  */

 class DynamicLibrary {

 public:

-   virtual ~DynamicLibrary() {};

+   virtual ~DynamicLibrary() {}

 

/// @return Pointer to function name, or NULL on failure.

virtual Function FindFunction(const char *name) = 0;

--- src/gtkscintilla2/scintilla/include/WindowAccessor.h~   2007-04-27 
08:14:01.0 +
+++ src/gtkscintilla2/scintilla/include/WindowAccessor.h2007-04-27 
08:14:05.0 +
@@ -48,7 +48,7 @@
}

 

void StartAt(unsigned int start, char chMask=31);

-   void SetFlags(char chFlags_, char chWhile_) {chFlags = chFlags_; 
chWhile = chWhile_; };

+   void SetFlags(char chFlags_, char chWhile_) {chFlags = chFlags_; 
chWhile = chWhile_; }

   

Bug#421217: installation report

2007-04-27 Thread Sarge lilo

Package: kernel-image-2.68-3-386

Debian-installer-version:  kernel-image-2.68-3-386
uname -a: Linux ubuntu 2.6.15-23-386 #1 PREEMPT Tue May 23 13:49:40
UTC 2006 i686 GNU/Linux



Date: 2007-27-04
Method: debootstrap
Machine: Description of machine (eg, IBM Thinkpad R32)
Processor:
Memory:
Root Device: SATA
Root Size/partition table:

   Disk /dev/sda: 160.0 GB, 160041885696 bytes
   255 heads, 63 sectors/track, 19457 cylinders
   Units = cylinders of 16065 * 512 = 8225280 bytes

  Device Boot  Start End  Blocks   Id  System
   /dev/sda1   1 996 8000338+  83  Linux
   /dev/sda2   * 99722411462+   c  W95 FAT32 (LBA)
   /dev/sda32242   19457   138287520f  W95 Ext'd (LBA)
   /dev/sda522422365  995998+  82  Linux swap / Solaris
   /dev/sda62366423214996646   83  Linux
   /dev/sda74233   19457   1222947817  HPFS/NTFS



Output of lspci and lspci -n:

$lspci
pcilib: Cannot open /sys/bus/pci/devices
:00:00.0 RAM memory: nVidia Corporation: Unknown device 0369 (rev a1)
:00:01.0 ISA bridge: nVidia Corporation: Unknown device 0360 (rev a2)
:00:01.1 SMBus: nVidia Corporation: Unknown device 0368 (rev a2)
:00:01.2 RAM memory: nVidia Corporation: Unknown device 036a (rev a2)
:00:02.0 USB Controller: nVidia Corporation: Unknown device 036c (rev a1)
:00:02.1 USB Controller: nVidia Corporation: Unknown device 036d (rev a2)
:00:04.0 IDE interface: nVidia Corporation: Unknown device 036e (rev a1)
:00:05.0 IDE interface: nVidia Corporation: Unknown device 037f (rev a2)
:00:05.1 IDE interface: nVidia Corporation: Unknown device 037f (rev a2)
:00:05.2 IDE interface: nVidia Corporation: Unknown device 037f (rev a2)
:00:06.0 PCI bridge: nVidia Corporation: Unknown device 0370 (rev a2)
:00:06.1 0403: nVidia Corporation: Unknown device 0371 (rev a2)
:00:08.0 Bridge: nVidia Corporation: Unknown device 0373 (rev a2)
:00:0a.0 PCI bridge: nVidia Corporation: Unknown device 0376 (rev a2)
:00:0b.0 PCI bridge: nVidia Corporation: Unknown device 0374 (rev a2)
:00:0c.0 PCI bridge: nVidia Corporation: Unknown device 0374 (rev a2)
:00:0d.0 PCI bridge: nVidia Corporation: Unknown device 0378 (rev a2)
:00:0e.0 PCI bridge: nVidia Corporation: Unknown device 0375 (rev a2)
:00:0f.0 PCI bridge: nVidia Corporation: Unknown device 0377 (rev a2)
:00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 NorthBridge
:00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 NorthBridge
:00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 NorthBridge
:00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 NorthBridge
:01:06.0 Ethernet controller: Realtek Semiconductor Co., Ltd.
RTL-8139/8139C/8139C+ (rev 10)
:07:00.0 VGA compatible controller: nVidia Corporation: Unknown
device 0393 (rev a1)


$lspci -n
pcilib: Cannot open /sys/bus/pci/devices
:00:00.0 0500: 10de:0369 (rev a1)
:00:01.0 0601: 10de:0360 (rev a2)
:00:01.1 0c05: 10de:0368 (rev a2)
:00:01.2 0500: 10de:036a (rev a2)
:00:02.0 0c03: 10de:036c (rev a1)
:00:02.1 0c03: 10de:036d (rev a2)
:00:04.0 0101: 10de:036e (rev a1)
:00:05.0 0101: 10de:037f (rev a2)
:00:05.1 0101: 10de:037f (rev a2)
:00:05.2 0101: 10de:037f (rev a2)
:00:06.0 0604: 10de:0370 (rev a2)
:00:06.1 0403: 10de:0371 (rev a2)
:00:08.0 0680: 10de:0373 (rev a2)
:00:0a.0 0604: 10de:0376 (rev a2)
:00:0b.0 0604: 10de:0374 (rev a2)
:00:0c.0 0604: 10de:0374 (rev a2)
:00:0d.0 0604: 10de:0378 (rev a2)
:00:0e.0 0604: 10de:0375 (rev a2)
:00:0f.0 0604: 10de:0377 (rev a2)
:00:18.0 0600: 1022:1100
:00:18.1 0600: 1022:1101
:00:18.2 0600: 1022:1102
:00:18.3 0600: 1022:1103
:01:06.0 0200: 10ec:8139 (rev 10)
:07:00.0 0300: 10de:0393 (rev a1)


Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot worked:[ ]
Configure network HW:   [ ]
Config network: [ ]
Detect CD:  [ ]
Load installer modules: [ ]
Detect hard drives: [ ]
Partition hard drives:  [ ]
Create file systems:[ ]
Mount partitions:   [ ]
Install base system:[ ]
Install boot loader:[ ]
Reboot: [ ]

Comments/Problems:


mkfs.ext3 /dev/sda1
mount /dev/sda1 /mnt

apt-get install debootstrap
debootstrap --arch i386 sarge /mnt http://debian.cn99.com/debian

chroot /mnt /bin/bash

mount -t proc proc /proc
vi /etc/apt/source.list
apt-get update
apt-get locales
apt-get upgrade
apt-get kernel-image-2.6.8-3-386 -y

perl: warning: Falling back to the standard locale (C).
/usr/sbin/mkinitrd: device /dev/sda1 is not a block device
Failed to create initrd image.
dpkg: error processing kernel-image-2.6.8-3-386 (--configure):
subprocess post-installation script returned error exit status 9
Errors were encountered while processing:

Bug#421216: FTBFS with GCC 4.3: missing #includes

2007-04-27 Thread Martin Michlmayr
Package: hedgewars
Version: 0.9.0-6
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).  Some background of this can be found at
http://gcc.gnu.org/PR28080

You can reproduce this problem with gcc-snapshot (20070422-1 or higher)
from unstable. (Currently not available for i386, but for amd64, powerpc
and ia64.  I hope to have i386 binaries in the archive in the near
future.)

 Automatic build of hedgewars_0.9.0-6 on em64t by sbuild/amd64 0.53
...
 [ 38%] Building CXX object QTfrontend/CMakeFiles/hedgewars.dir/teamselect.o
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
 'void TeamSelWidget::hhNumChanged(const HWTeam)':
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:61: error: no matching 
 function for call to 'find(QListHWTeam::iterator, QListHWTeam::iterator, 
 const HWTeam)'
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
 'void TeamSelWidget::proxyTeamColorChanged(const HWTeam)':
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:68: error: no matching 
 function for call to 'find(QListHWTeam::iterator, QListHWTeam::iterator, 
 const HWTeam)'
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
 'void TeamSelWidget::changeHHNum(const HWTeam)':
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:75: error: no matching 
 function for call to 'find(QListHWTeam::iterator, QListHWTeam::iterator, 
 const HWTeam)'
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
 'void TeamSelWidget::changeTeamColor(const HWTeam)':
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:84: error: no matching 
 function for call to 'find(QListHWTeam::iterator, QListHWTeam::iterator, 
 const HWTeam)'
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
 'void TeamSelWidget::removeNetTeam(const HWTeam)':
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:94: error: no matching 
 function for call to 'find(QListHWTeam::iterator, QListHWTeam::iterator, 
 const HWTeam)'
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
 'void TeamSelWidget::netTeamStatusChanged(const HWTeam)':
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:108: error: no matching 
 function for call to 'find(QListHWTeam::iterator, QListHWTeam::iterator, 
 const HWTeam)'
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
 'void TeamSelWidget::changeTeamStatus(HWTeam)':
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:119: error: no matching 
 function for call to 'find(QListHWTeam::iterator, QListHWTeam::iterator, 
 HWTeam)'
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:120: error: no matching 
 function for call to 'find(QListHWTeam::iterator, QListHWTeam::iterator, 
 HWTeam)'
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
 'bool TeamSelWidget::isPlaying(HWTeam) const':
 /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:230: error: no matching 
 function for call to 'find(QListHWTeam::const_iterator, 
 QListHWTeam::const_iterator, HWTeam)'
 make[3]: *** [QTfrontend/CMakeFiles/hedgewars.dir/teamselect.o] Error 1
 make[3]: Leaving directory `/build/tbm/hedgewars-0.9.0'
 make[2]: *** [QTfrontend/CMakeFiles/hedgewars.dir/all] Error 2
 make[2]: Leaving directory `/build/tbm/hedgewars-0.9.0'
 make[1]: *** [all] Error 2
 make[1]: Leaving directory `/build/tbm/hedgewars-0.9.0'
 make: *** [build-stamp] Error 2

--- QTfrontend/teamselect.cpp~  2007-04-27 08:15:11.0 +
+++ QTfrontend/teamselect.cpp   2007-04-27 08:15:48.0 +
@@ -16,6 +16,8 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+#include algorithm
+
 #include QLabel
 #include QPixmap
 #include QPushButton
--- QTfrontend/teamselhelper.cpp~   2007-04-27 08:16:02.0 +
+++ QTfrontend/teamselhelper.cpp2007-04-27 08:16:08.0 +
@@ -16,6 +16,8 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+#include algorithm
+
 #include teamselhelper.h
 #include hwconsts.h
 

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#414932: linux-image-2.6.18-4-ixp4xx: xfs partition from x86 system can not be used on arm

2007-04-27 Thread Lennert Buytenhek
On Thu, Apr 26, 2007 at 11:34:56PM -0500, Eric Sandeen wrote:

 Root cause seems to be gcc misaligning the xfs shortform directory 
 structures.  In the example below, bar.parent has offset 4, while 
 boo.parent has offset 2.  The union seems to cause extra padding - I 
 believe c should be at offset 2 in both structures.
 
 This is leading to trouble in xfs_dir2_sf_hdr_t and others, and is 
 unfortunately leading to on-disk corruption, I think.  The patch that's 
 been floating around to fix this probably only masks the problem, by 
 accommodating the extra padding when calculating sizes.
 
 #include stdio.h
 
 struct bar {
 unsigned char   a;
 unsigned char   b;
 union {
 unsigned char x;
 unsigned char y;
 } c;
 };
 
 struct boo {
 unsigned char   a;
 unsigned char   b;
 unsigned char   c;
 };
 
 
 #define offsetof(TYPE, MEMBER) ((size_t) ((TYPE *)0)-MEMBER)
 
 int main(int argc, char ** argv) {
 
 printf(a: %d\n, offsetof(struct bar, a));
 printf(b: %d\n, offsetof(struct bar, b));
 printf(c: %d\n, offsetof(struct bar, c));
 
 printf(a: %d\n, offsetof(struct boo, a));
 printf(b: %d\n, offsetof(struct boo, b));
 printf(c: %d\n, offsetof(struct boo, c));
 
 return 0;
 }
 
 [EMAIL PROTECTED]:~$ ./gcc-test
 a: 0
 b: 1
 c: 4
 a: 0
 b: 1
 c: 2

On an EABI ARM system:

$ ./x
a: 0
b: 1
c: 2
a: 0
b: 1
c: 2


 [EMAIL PROTECTED]:~$ gcc -v
 Using built-in specs.
 Target: arm-linux-gnu
 Configured with: ../src/configure -v 
 --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr 
 --enable-shared --with-system-zlib --libexecdir=/usr/lib 
 --without-included-gettext --enable-threads=posix --enable-nls 
 --program-suffix=-4.1 --enable-__cxa_atexit --enable-clocale=gnu 
 --enable-libstdcxx-debug --enable-mpfr --enable-checking=release 
 arm-linux-gnu
 Thread model: posix
 gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)

iop0:~# gcc -v
Using built-in specs.
Target: arm-linux-gnueabi
Configured with: ../src/configure -v
--enable-languages=c,c++,treelang --prefix=/usr
--enable-shared --with-system-zlib --libexecdir=/usr/lib
--without-included-gettext --enable-threads=posix --enable-nls
--program-suffix=-4.1 --enable-__cxa_atexit --enable-clocale=gnu
--enable-libstdcxx-debug --enable-checking=release
arm-linux-gnueabi
Thread model: posix
gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)


 [EMAIL PROTECTED]:~$ uname -a
 Linux all6500-arm 2.6.18-4-iop32x #1 Thu Feb 22 03:51:25 UTC 2007 
 armv5tel GNU/Linux

iop0:~# uname -a
Linux iop0.wantstofly.org 2.6.20 #9 Thu Mar 29 04:35:38 CEST 2007
armv5tel GNU/Linux


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



Bug#313520: Reopening

2007-04-27 Thread Martin Pitt
reopen 313520
thanks

Debian Bug Tracking System [2007-04-24 15:06 +]:
 I'm closing this bug as there have been no activity, or no response to
 followup questions, and new releases of the package in question which
 likely has fixed this bug or made it obsolete.
 
 Feel free to reopen the report if you think the bug still is valid.

This bug is entirely valid still, debian/rules does not call
intltool-update -p and neither does the upstream build system.

Martin
-- 
Martin Pitthttp://www.piware.de
Ubuntu Developer   http://www.ubuntu.com
Debian Developer   http://www.debian.org


signature.asc
Description: Digital signature


Bug#421218: FTBFS with GCC 4.3: must #include typeinfo before using typeid

2007-04-27 Thread Martin Michlmayr
Package: octplot
Version: 0.3.9-3
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).

You can reproduce this problem with gcc-snapshot (20070422-1 or higher)
from unstable. (Currently not available for i386, but for amd64 and
and ia64.  I hope to have i386 binaries in the archive in the near
future.)

 Automatic build of octplot_0.3.9-3 on em64t by sbuild/amd64 0.53
...
 g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/freetype2 
 -I/usr/include/freetype2 -g -Wall -O2 -fPIC -c -o octplot-object.o `test -f 
 'object.cpp' || echo './'`object.cpp
 object.cpp: In member function 'void Object::SetProperty(const char*, 
 Property*)':
 object.cpp:91: error: must #include typeinfo before using typeid
 object.cpp:91: error: must #include typeinfo before using typeid
 make[3]: *** [octplot-object.o] Error 1

--- src/object.cpp~ 2007-04-27 08:19:48.0 +
+++ src/object.cpp  2007-04-27 08:19:58.0 +
@@ -17,6 +17,7 @@
 
 #include stdio.h
 #include string.h
+#include typeinfo
 #include globals.h
 #include object.h
 #include octplotapp.h

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#412275: no display and system freezes after adjusting time with KDE clock on 945GM graphic chip

2007-04-27 Thread Michel Dänzer
On Fri, 2007-04-27 at 09:02 +, Ralph Plawetzki wrote:
 
 After upgrading the 6 packages I used the 'Adjust Date  Time...' from 
 KDE clock and changed the time in the 'Configure - KDE Control Module' 
 dialogue. I decreased the shown time for two hours. After pressing 'OK' 
 the screen went dark, but it came back after pressing a key.

That could be a KDE screensaver issue, although it could also be in the
X server's screensaver code.


-- 
Earthling Michel Dänzer   |  http://tungstengraphics.com
Libre software enthusiast |  Debian, X and DRI developer



Bug#421220: FTBFS with GCC 4.3: error: extra ';'

2007-04-27 Thread Martin Michlmayr
Package: vbs
Version: 1.4.0-10
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning. (Sorry for yet another bug
report...)

You can reproduce this problem with gcc-snapshot (20070422-1 or higher)
from unstable. (Currently not available for i386, but for amd64, powerpc
and ia64.  I hope to have i386 binaries in the archive in the near
future.)

 Automatic build of vbs_1.4.0-10 on em64t by sbuild/amd64 0.53
...
 g++ -DHAVE_CONFIG_H -Isrc -I. -g -O2 -ansi -pedantic -Wall -fPIC -DVBS_DEBUG 
 -c src/swig/vbs_api.cc
 In file included from src/common/sym_tab.h:26,
  from src/swig/vbs_api.cc:21:
 src/common/st_node.h:55: warning: type qualifiers ignored on function return 
 type
 src/common/st_node.h:59: warning: type qualifiers ignored on function return 
 type
 In file included from src/common/st_net.h:19,
  from src/swig/vbs_api.cc:23:
 src/stmt/stmtbase.h:51: error: extra ';'
 src/stmt/stmtbase.h:52: error: extra ';'
 src/stmt/stmtbase.h:53: error: extra ';'
 src/stmt/stmtbase.h:54: error: extra ';'
 src/stmt/stmtbase.h:55: error: extra ';'
 src/stmt/stmtbase.h:76: error: extra ';'
 src/stmt/stmtbase.h:77: error: extra ';'
 src/stmt/stmtbase.h:78: error: extra ';'
 src/stmt/stmtbase.h:79: error: extra ';'
 src/stmt/stmtbase.h:80: error: extra ';'

--- src/stmt/stmtbase.h~2007-04-27 08:26:20.0 +
+++ src/stmt/stmtbase.h 2007-04-27 08:27:15.0 +
@@ -48,11 +48,11 @@
virtual void operator()(systask_readmemb *) const {}
virtual void operator()(systask_readmemh *) const {}
virtual void operator()(systask_strobe *) const {}
-   virtual void operator()(systask_dumpon *) const {};
-   virtual void operator()(systask_dumpoff *) const {};
-   virtual void operator()(systask_dumpall *) const {};
-   virtual void operator()(systask_dumpvars *) const {};
-   virtual void operator()(systask_dumpfile *) const {}; 
+   virtual void operator()(systask_dumpon *) const {}
+   virtual void operator()(systask_dumpoff *) const {}
+   virtual void operator()(systask_dumpall *) const {}
+   virtual void operator()(systask_dumpvars *) const {}
+   virtual void operator()(systask_dumpfile *) const {} 
virtual void operator()(sysfunc_time *) const {}
virtual void operator()(sysfunc_random *) const {}
virtual void operator()(task_enable_stmt *) const {}
@@ -73,11 +73,11 @@
virtual bool operator()(systask_readmemb *) const { return true; }
virtual bool operator()(systask_readmemh *) const { return true; }
virtual bool operator()(systask_strobe *) const { return true; }
-   virtual bool operator()(systask_dumpon *) const {return true ;};
-   virtual bool operator()(systask_dumpoff *) const {return true ;};
-   virtual bool operator()(systask_dumpall *) const {return true ;};
-   virtual bool operator()(systask_dumpvars *) const {return true ;};
-   virtual bool operator()(systask_dumpfile *) const {return true ;}; 
+   virtual bool operator()(systask_dumpon *) const {return true ;}
+   virtual bool operator()(systask_dumpoff *) const {return true ;}
+   virtual bool operator()(systask_dumpall *) const {return true ;}
+   virtual bool operator()(systask_dumpvars *) const {return true ;}
+   virtual bool operator()(systask_dumpfile *) const {return true ;} 
virtual bool operator()(sysfunc_time *) const { return true; }
virtual bool operator()(sysfunc_random *) const { return true; }
virtual bool operator()(task_enable_stmt *) const { return true; }

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#421223: phpmyadmin: [INTL:eu] Basque debconf update

2007-04-27 Thread Piarres Beobide
Package: phpmyadmin
Version: 4:2.10.0.2-1
Severity: wishlist
Tags: patch l10n

Hi

Atached phpmyadmin debconf templates basque translation update, please commit 
it.

thx


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.20
Locale: LANG=eu_ES, LC_CTYPE=eu_ES (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages phpmyadmin depends on:
ii  debconf [debconf-2.0] 1.5.13 Debian configuration management sy
hi  libapache-mod-php55.2.0-10   server-side, HTML-embedded scripti
hi  libapache2-mod-php5   5.2.0-10   server-side, HTML-embedded scripti
ii  perl  5.8.8-7Larry Wall's Practical Extraction 
ii  php4-cgi  6:4.4.4-9  server-side, HTML-embedded scripti
ii  php4-mysql6:4.4.4-9  MySQL module for php4
hi  php5  5.2.0-10   server-side, HTML-embedded scripti
hi  php5-cgi  5.2.0-10   server-side, HTML-embedded scripti
ii  php5-mysql5.2.0-10   MySQL module for php5

Versions of packages phpmyadmin recommends:
ii  apache [httpd]1.3.34-4.1 versatile, high-performance HTTP s
ii  apache2-mpm-prefork [httpd]   2.2.3-4+b1 Traditional model for Apache HTTPD
ii  php5-gd   5.2.0-10   GD module for php5
pn  php5-mcrypt | php4-mcrypt none (no description available)

-- debconf information excluded
# translation of phpmyadmin-eu.po to librezale
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Piarres Beobide [EMAIL PROTECTED], 2006.
msgid 
msgstr 
Project-Id-Version: phpmyadmin-eu\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2007-04-26 11:48+0200\n
PO-Revision-Date: 2006-10-11 16:32+0200\n
Last-Translator: Piarres Beobide [EMAIL PROTECTED]\n
Language-Team: librezale [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: KBabel 1.11.4\n
Plural-Forms: nplurals=2; plural=(n != 1)\n

#. Type: multiselect
#. Description
#: ../templates:1001
msgid Web server to reconfigure automatically:
msgstr Automatikoki birkonfigruatu behar den web zerbitzaria:

#. Type: multiselect
#. Description
#: ../templates:1001
msgid 
phpMyAdmin supports any web server that PHP does, but this automatic 
configuration process only supports Apache.
msgstr 
phpMyAdmin-ek PHP berak onartzen duen edozein zerbitzari erabil dezake , 
baina konfigurazio automatiko prozesu honek Apache bakarrik onartzen du.

#. Type: string
#. Description
#: ../templates:2001
msgid User name for web-based setup system:
msgstr Web bidezko konfigurazio sistemaren erabiltzaile izena:

#. Type: string
#. Description
#. Type: password
#. Description
#: ../templates:2001 ../templates:3001
msgid 
phpMyAdmin comes with a setup script that can help you with creating a 
configuration. The script is located at http://localhost/phpmyadmin/scripts/;
setup.php. For security reasons it requires authorization.
msgstr 
phpMyAdmin konfigurazioa sortzen lagun dezaken  script bat dakar. Script hau 
http://localhost/phpmyadmin/scripts/setup.php -en kokaturik dago. Segurtasun 
arrazoiak medio baimena beharrezkoa da.

#. Type: string
#. Description
#: ../templates:2001
msgid Leave empty if you want to use the default user name 'admin'.
msgstr Hutsik utzi lehenetsiriko 'admin' erabiltzaile erabili nahi ezkero.

#. Type: password
#. Description
#: ../templates:3001
msgid Password for web-based setup system:
msgstr Web bidezko konfigurazio sistemaren pasahitza:

#. Type: password
#. Description
#: ../templates:3001
msgid 
You can manage the usernames and passwords with the `htpasswd' command. They 
are stored in the file /etc/phpmyadmin/htpasswd.setup
msgstr 
Erabiltzaile izen eta pasahitzak `htpasswd' komandoaz kudea daitezke. /etc/
phpmyadmin/htpasswd.setup fitxategian gordetzen dira.

#. Type: password
#. Description
#: ../templates:3001
msgid Leave empty if you want to disable access to the web-based setup.
msgstr Hutsik utzi web bidezko konfiguraziora sarrera ezgaitu nahi ezkero.

#~ msgid Do you want me to restart ${webserver} now?
#~ msgstr ${webserver} orain berrabiaraztea nahi al duzu?

#~ msgid 
#~ Remember that in order to activate the new configuration ${webserver} has 
#~ to be restarted. You can also restart ${webserver} by manually executing /
#~ etc/init.d/${webserver} restart
#~ msgstr 
#~ Gogoratu konfigurazio berria martxan ipintzeko ${webserver} berrabiarazi 
#~ behar duzula. ${webserver}eskuz ere berrabiarazi dezakezu \/etc/init.d/
#~ ${webserver} restart \ eginaz


Bug#421222: vino: requires access to gnome keyring making unattended remote connection impossible

2007-04-27 Thread Richard Antony Burton
Package: vino
Version: 2.18.1-2
Severity: important

Trying to connect to system running vino remotely causes popup on host
requesting vino-server permission to access keyring. If you click the always
allow option you don't need to do this again, though that first time you hit
this from a remote location it's pretty bad. On future connections you are
prompted to unlock your keyring, if it hasn't been unlocked recently. Again,
when this happen from a remote location it makes the connection impossible.

In previous version of vino this was not a problem as it did not use gnome
keyring. It looks to me like gnome keyring is the wrong place to store the vino
password as it is not suitable for non-interactive use.

Richard.


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.20-1-686 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages vino depends on:
ii  gconf2  2.18.0.1-3   GNOME configuration database syste
ii  libavahi-client30.6.18-3 Avahi client library
ii  libavahi-common30.6.18-3 Avahi common library
ii  libavahi-glib1  0.6.18-3 Avahi glib integration library
ii  libbonobo2-02.18.0-2 Bonobo CORBA interfaces library
ii  libc6   2.5-4GNU C Library: Shared libraries
ii  libdbus-1-3 1.0.2-4  simple interprocess messaging syst
ii  libdbus-glib-1-20.73-2   simple interprocess messaging syst
ii  libgconf2-4 2.18.0.1-3   GNOME configuration database syste
ii  libgcrypt11 1.2.4-2  LGPL Crypto library - runtime libr
ii  libglade2-0 1:2.6.0-4library to load .glade files at ru
ii  libglib2.0-02.12.11-3The GLib library of C routines
ii  libgnome-keyring0   0.8.1-2  GNOME keyring services library
ii  libgnome2-0 2.18.0-4 The GNOME 2 library - runtime file
ii  libgnomeui-02.18.1-2 The GNOME 2 libraries (User Interf
ii  libgnutls13 1.6.2-1  the GNU TLS library - runtime libr
ii  libgtk2.0-0 2.10.11-2The GTK+ graphical user interface 
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libnotify1 [libnotify1-gtk2 0.4.4-3  sends desktop notifications to a n
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxdamage1 1:1.1.1-3X11 damaged region extension libra
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxtst61:1.0.1-5X11 Testing -- Resource extension 
ii  zlib1g  1:1.2.3-13   compression library - runtime

vino recommends no packages.

-- no debconf information


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



Bug#421224: Please remove scw from the archive

2007-04-27 Thread Ross Burton
Package: ftp.debian.org

Please remove the source package scw from the archive.  It has no
reverse dependencies, has had no bugs, and I think I was the only person
to use it briefly.

Ross
-- 
Ross Burton mail: [EMAIL PROTECTED]
  jabber: [EMAIL PROTECTED]
 www: http://www.burtonini.com./
 PGP Fingerprint: 1A21 F5B0 D8D0 CFE3 81D4 E25A 2D09 E447 D0B4 33DF





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



Bug#421221: Log for failed build of qgit_1.5.5-1 (dist=unstable1)

2007-04-27 Thread Martin Michlmayr
Package: qgit
Version: 1.5.5-1
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.

You can reproduce this problem with gcc-snapshot (20070422-1 or higher)
from unstable. (Currently not available for i386, but for amd64, powerpc
and ia64.  I hope to have i386 binaries in the archive in the near
future.)

 Automatic build of qgit_1.5.5-1 on em64t by sbuild/amd64 0.53
...
 if x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I..   -g -O2 
 -I/usr/share/qt3/include -D_REENTRANT -DQT_THREAD_SUPPORT  -g -O2 -Wall 
 -Wno-non-virtual-dtor -W -Wno-long-long -pedantic -frepo -MT annotate.o -MD 
 -MP -MF .deps/annotate.Tpo -c -o annotate.o annotate.cpp; \
   then mv -f .deps/annotate.Tpo .deps/annotate.Po; else rm -f 
 .deps/annotate.Tpo; exit 1; fi
 In file included from /usr/share/qt3/include/qobject.h:45,
  from /usr/share/qt3/include/qwidget.h:43,
  from /usr/share/qt3/include/qdesktopwidget.h:40,
  from /usr/share/qt3/include/qapplication.h:42,
  from annotate.cpp:9:
 In file included from annotate.cpp:11:
 annotate.h:22: error: extra ';'
 annotate.h:23: error: extra ';'
 annotate.h:32: error: extra ';'
 annotate.h:33: error: extra ';'
 annotate.h:34: error: extra ';'
 annotate.h:46: error: extra ';'
 annotate.h:47: error: extra ';'
 annotate.h:48: error: extra ';'
 annotate.h:49: error: extra ';'
 annotate.h:50: error: extra ';'
 annotate.cpp: In member function 'void Annotate::setAnnotation(const 
 QString, const QString, const QStringList, QStringList, int)':

--- src/annotate.h~ 2007-04-27 08:20:07.0 +
+++ src/annotate.h  2007-04-27 08:20:28.0 +
@@ -19,8 +19,8 @@
 
 class ReachInfo {
 public:
-   ReachInfo() {};
-   ReachInfo(SCRef s, int i, int t) : sha(s), id(i), type(t) {};
+   ReachInfo() {}
+   ReachInfo(SCRef s, int i, int t) : sha(s), id(i), type(t) {}
const QString sha;
int id, type;
QStringList roots;
@@ -29,9 +29,9 @@
 
 class RangeInfo {
 public:
-   RangeInfo() { clear(); };
-   RangeInfo(int s, int e, bool m) : start(s), end(e), modified(m) {};
-   void clear() { start = end = 0; modified = false; };
+   RangeInfo() { clear(); }
+   RangeInfo(int s, int e, bool m) : start(s), end(e), modified(m) {}
+   void clear() { start = end = 0; modified = false; }
int start, end; // ranges count file lines from 1 like patches diffs
bool modified;
 };
@@ -43,11 +43,11 @@
void deleteWhenDone();
const FileAnnotation* lookupAnnotation(SCRef sha, SCRef fileName);
bool start(const FileHistory* fh);
-   bool isValid() { return valid; };
-   bool isCanceled() { return canceled; };
-   int count() { return ah.count(); };
-   int elapsed() { return processingTime.elapsed(); };
-   const QString file() { return fileName; };
+   bool isValid() { return valid; }
+   bool isCanceled() { return canceled; }
+   int count() { return ah.count(); }
+   int elapsed() { return processingTime.elapsed(); }
+   const QString file() { return fileName; }
const QString getAncestor(SCRef sha, SCRef fileName, int* shaIdx);
bool getRange(SCRef sha, RangeInfo* r);
bool seekPosition(int* rangeStart, int* rangeEnd, SCRef fromSha, SCRef 
toSha);
--- src/domain.h~   2007-04-27 08:21:28.0 +
+++ src/domain.h2007-04-27 08:22:16.0 +
@@ -23,7 +23,7 @@
 public:
explicit UpdateDomainEvent(bool fromMaster, bool force = false)
: QCustomEvent(fromMaster ? QGit::UPD_DM_MST_EV : QGit::UPD_DM_EV), 
f(force) {}
-   bool isForced() const { return f; };
+   bool isForced() const { return f; }
 private:
bool f;
 };
@@ -35,18 +35,18 @@
bool operator==(const StateInfo newState) const;
bool operator!=(const StateInfo newState) const;
void clear();
-   const QString sha(bool n = true) const { return (n ? curS.sha : 
prevS.sha); };
-   const QString fileName(bool n = true) const { return (n ? curS.fn : 
prevS.fn); };
-   const QString diffToSha(bool n = true) const {return(n ? curS.dtSha : 
prevS.dtSha); };
-   bool selectItem(bool n = true) const { return( n ? curS.sel : 
prevS.sel); };
-   bool isMerge(bool n = true) const { return( n ? curS.isM : prevS.isM); 
};
-   bool allMergeFiles(bool n = true) const { return( n ? curS.allM : 
prevS.allM); };
-   void setSha(const QString s) { if (isLocked) nextS.sha = s; else 
curS.sha = s; };
-   void setFileName(const QString s) { if (isLocked) nextS.fn = s; else 
curS.fn = s; };
-   void setDiffToSha(const QString s) { if (isLocked) nextS.dtSha = s; 
else curS.dtSha = s; };
-   void setSelectItem(bool b) { if (isLocked) nextS.sel = b; else curS.sel 
= b; };
-   void 

Bug#420437: mcedit search'n'replace with regex is broken (savannah bug#19333)

2007-04-27 Thread Pavel Tsekov

Andrew's patch was applied in MC's repository.


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



Bug#419355: fixed in ocsinventory-agent 1.01-3

2007-04-27 Thread Eric DECORNOD
postinst script failed for me during first install at :
  # Installing the config
  cp /usr/share/ocsinventory-client/ocsinv.adm \
/var/lib/ocsinventory-client/ocsinv.adm

It may be related to #419355 as oscinv.adm has been moved 
to /var/lib/ocsinventory-client/ in patch debian/patches/var_lib_path.patch

Cheers,
-- 
Eric DÉCORNOD
Ingénieur d'Études
SCICS - Faculté des Sciences
Université Henri Poincaré



Bug#420611: xserver-xorg-core: Composite extension not available?

2007-04-27 Thread Adam Spragg
Michel Dänzer wrote:
 As you don't have the
 
 (**) Extension Composite is enabled
 
 line, it appears like the config file parser doesn't even see the
 option...
 
 I guess initialized is different from enabled...
 It says it's initializing it, and then gives no warnings or errors.
 
 No, as Brice said, that line doesn't mean an extension actually gets
 enabled.

The logic worked for DAMAGE, Xinerama and a few other extensions though.
Ah well, never mind.

 Another possibility would be that it gets disabled on the
 command line, can you check that with ps? That probably should be
 indicated in the log file as well though...

According to ps, we have:

/usr/bin/kdm -config /var/run/kdm/kdmrc
/usr/bin/X -br -nolisten tcp :0 vt7 -auth /var/run/xauth/A:0-PMcJCc


What next?

Adam

-- 
To describe religions as mind viruses is sometimes interpreted as
contemptuous or even hostile. It is both.
-- Richard Dawkins - A Devil's Chaplain


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



Bug#414620: only shows one contact

2007-04-27 Thread Guido Guenther
Hi Ross,
On Mon, Apr 23, 2007 at 04:56:23PM +0100, Ross Burton wrote:
 I've just uploaded Contacts 0.5-1 into unstable, could you upgrade to
 that version and replicate?
Works nicely with 0.5-2, thanks.
 -- Guido


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



Bug#421218: [Pkg-octave-devel] Bug#421218: FTBFS with GCC 4.3: must #include typeinfo before using typeid

2007-04-27 Thread Rafael Laboissiere
package octplot
tags 421218 upstream
forwarded 
421218 http://sourceforge.net/tracker/index.php?func=detailaid=1708579group_id=86268atid=579016
thanks

* Martin Michlmayr [EMAIL PROTECTED] [2007-04-27 10:29]:

 Package: octplot
 Version: 0.3.9-3
 Usertags: ftbfs-gcc-4.3
 Tags: patch
 
 Your package fails to build with GCC 4.3.  [snip]

Thanks for the patch.  I submitted it to the patch tracker of the OctPlot
project at SF.
 
-- 
Rafael



Bug#420610: xserver-xorg-video-i810: xorg unusable: starts with bad green screen and wrong resolution with 855GM

2007-04-27 Thread Michel Dänzer
On Don, 2007-04-26 at 19:27 +0200, Brice Goglin wrote: 
 
  VideoRam  #-1;#-1; 65536

[...]

 Isn't VideoRAM supposed to be passed with Option at the beginning of line?

No, it's not an option but a directive of its own.


-- 
Earthling Michel Dänzer   |  http://tungstengraphics.com
Libre software enthusiast |  Debian, X and DRI developer



Bug#421225: cvs tag silently skips shallow directories when they are followed by slash

2007-04-27 Thread Alexander Gattin
Package: cvs
Version: 1:1.12.13-8
Severity: normal

I've hit this problem on production CVS server,
when tagging (cvs tag XXX a b c/ d/) a part of
distribution of some proprietary s/w for release.
One directory was not tagged and hence didn't
get into the export (cvs export -r XXX some_sw).

I've set up a cvsd environment on my WS to
reproduce the problem. Here is the file/dir
layout of working directory:
 [EMAIL PROTECTED]:/tmp/t$ find . | grep -v CVS | xargs ls -ld
 drwxr-xr-x 6 xrgtn xrgtn 48 2007-04-27 11:02 .
 drwxr-xr-x 3 xrgtn xrgtn 24 2007-04-27 11:02 ./d1
 -rw-r--r-- 1 xrgtn xrgtn  0 2007-04-27 10:27 ./d1/f1
 drwxr-xr-x 4 xrgtn xrgtn 32 2007-04-27 11:02 ./D2
 drwxr-xr-x 3 xrgtn xrgtn 24 2007-04-27 11:02 ./D2/d3
 -rw-r--r-- 1 xrgtn xrgtn  0 2007-04-27 10:27 ./D2/d3/f3
 -rw-r--r-- 1 xrgtn xrgtn  0 2007-04-27 10:27 ./D2/f2
 drwxr-xr-x 3 xrgtn xrgtn 24 2007-04-27 11:02 ./d4
 -rw-r--r-- 1 xrgtn xrgtn  0 2007-04-27 10:27 ./d4/f4
 -rw-r--r-- 1 xrgtn xrgtn  0 2007-04-27 10:27 ./f0

You can see 1st-level _shallow_ directories
d1 and d4 plus 1st-level _deep_ directory D2.

`cvs tag XXX` works OK when no other arguments
except tag name are given on commandline, but
when I want to tag specific directories and
files, `cvs tag XXX ...` mysteriously
skips directories followed by slash:
 [EMAIL PROTECTED]:/tmp/t$ cvs -q tag XXX d1/ d4 f0 ; cvs -Q tag -d XXX
 T f0
 T d4/f4
 [EMAIL PROTECTED]:/tmp/t$ cvs -q tag XXX d1 d4/ f0 ; cvs -Q tag -d XXX
 T f0
 T d1/f1
 [EMAIL PROTECTED]:/tmp/t$ cvs -q tag XXX f0 d1/ d4/ ; cvs -Q tag -d XXX
 T f0

If a directory name on cmdline is not followed
by slash, it's tagged OK:
 [EMAIL PROTECTED]:/tmp/t$ cvs -q tag XXX f0 d1 d4 ; cvs -Q tag -d XXX
 T f0
 T d1/f1
 T d4/f4

Also, if a directory name is alone on a cmdline
(after tag name), it's tagged OK regardless of
the trailing slash:
 [EMAIL PROTECTED]:/tmp/t$ cvs -q tag XXX d1/ ; cvs -Q tag -d XXX
 T d1/f1

Moreover, only _shallow_ directories are prone
to be skipped, looks like _deep_ ones (i.e.
those having subdirectories inside them) are
tagged OK regardless of the trailing slash:
 [EMAIL PROTECTED]:/tmp/t$ cvs -q tag XXX f0 d1/ D2/ d4/ ; cvs -Q tag -d XXX
 T f0
 T D2/f2
 T D2/d3/f3

Because directories are skipped _silently_, i.e.
without giving any error message, the bug can
easily lead to producing broken releases if
tagging part of working directory.

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

Versions of packages cvs depends on:
ii  debconf [debconf-2.0]   1.5.11   Debian configuration management sy
ii  libc6   2.3.6.ds1-10 GNU C Library: Shared libraries
ii  libpam-runtime  0.79-4   Runtime support for the PAM librar
ii  libpam0g0.79-4   Pluggable Authentication Modules l
ii  update-inetd4.27-0.2 inetd.conf updater
ii  zlib1g  1:1.2.3-13   compression library - runtime

Versions of packages cvs recommends:
ii  emacs21 [info-browser] 21.4a+1-3 The GNU Emacs editor
ii  info [info-browser]4.8.dfsg.1-4  Standalone GNU Info documentation 
ii  konqueror [info-browse 4:3.5.5a.dfsg.1-6 KDE's advanced file manager, web b
ii  netbase4.29  Basic TCP/IP networking system

-- debconf information:
  cvs/rotatekeep: 7
  cvs/badrepositories: create
  cvs/rotatekeep_nondefault: no
  cvs/rotate_individual: true
  cvs/pserver_repos_individual: true
  cvs/pserver_setspawnlimit: false
  cvs/rotatekeep_individual: 7
  cvs/pserver_repos: all
* cvs/pserver: false
* cvs/repositories: /var/lib/cvs
  cvs/pserver_spawnlimit: 400
  cvs/rotatehistory: no


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



Bug#421226: fluxbox: Duplicates in Build-Depends

2007-04-27 Thread Dmitry E. Oboukhov
Package: fluxbox
Version: 0.9.15.1+1.0rc2-1
Severity: normal
Tags: patch, experimental

package has a duplicate build relation

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-k7
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)

Versions of packages fluxbox depends on:
ii  libc6   2.3.6.ds1-11 GNU C Library: Shared libraries
ii  libfontconfig1  2.4.2-1  generic font configuration library
ii  libgcc1 1:4.1.1-21   GCC support library
ii  libice6 1:1.0.1-2X11 Inter-Client Exchange library
ii  libsm6  1:1.0.1-3X11 Session Management library
ii  libstdc++6  4.1.1-21 The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-5X11 client-side library
ii  libxft2 2.1.8.2-8FreeType-based font drawing librar
ii  libxinerama11:1.0.1-4.1  X11 Xinerama extension library
ii  libxpm4 1:3.5.5-2X11 pixmap library
ii  libxrandr2  2:1.1.0.2-5  X11 RandR extension library
ii  libxrender1 1:0.9.1-3X Rendering Extension client libra
ii  menu2.1.33   generates programs menu for all me

fluxbox recommends no packages.

-- no debconf information
--- debian/control  2007-04-27 10:17:41.0 +0400
+++ debian/control.fix  2007-04-27 13:10:50.0 +0400
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Matt Hope [EMAIL PROTECTED]
 Uploaders: Matt Hope [EMAIL PROTECTED], martin f. krafft [EMAIL PROTECTED]
-Build-Depends: libx11-dev, libxext-dev, libxft-dev, libxinerama-dev, 
libxpm-dev, libxrandr-dev, x-dev, libxt-dev, debhelper (=4.1.0), libxft-dev, 
libx11-dev, libxext-dev, libxft-dev, libxinerama-dev, libxpm-dev, 
libxrandr-dev, x-dev, libimlib2-dev, libgtk2.0-dev, cdbs
+Build-Depends: libx11-dev, libxft-dev, libxinerama-dev, libxpm-dev, 
libxrandr-dev, x-dev, libxt-dev, debhelper (=4.1.0), libxext-dev, 
libimlib2-dev, libgtk2.0-dev, cdbs
 Standards-Version: 3.7.2.1
 
 Package: fluxbox


Bug#381861: User asterisk still not created on fresh install

2007-04-27 Thread Matthias Wamser
Hi

on a fresh Install (i backported asterisk 1:1.4.3~dfsg-1 to etch)
the asterisk user is still not created.

Problem is, the script /usr/share/asterisk/bin/asterisk_fix
has no executable bit set and asterisk-config.postinst
does check this:

configure)
if [ -x /usr/share/asterisk/bin/asterisk_fix ]; then
/usr/share/asterisk/bin/asterisk_fix
fi

Depending on this bug the asterisk.postinst fails while starting
asterisk cause of the not existing user (and group)

As quick workaround the following works:

chmod +x /usr/share/asterisk/bin/asterisk_fix
dpkg-reconfigure asterisk-config


And a chmod +x asterisk_fix in your source package and
rebuilding it should fix the package.

Regards, Matthias
-- 
   Matthias Wamser, System Engineering, mailto: [EMAIL PROTECTED]
   ILK Internet GmbH, Am Sandfeld 15 a, D-76149 Karlsruhe
   Tel: +49 (0) 721 9100 0, http://www.ilk.net
   Geschaeftsfuehrer Matthias Felger, AG Mannheim, HRB 107037


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



Bug#420611: xserver-xorg-core: Composite extension not available?

2007-04-27 Thread Michel Dänzer
On Fri, 2007-04-27 at 10:09 +0100, Adam Spragg wrote:
 Michel Dänzer wrote:
  As you don't have the
  
  (**) Extension Composite is enabled
  
  line, it appears like the config file parser doesn't even see the
  option...
  
  I guess initialized is different from enabled...
  It says it's initializing it, and then gives no warnings or errors.
  
  No, as Brice said, that line doesn't mean an extension actually gets
  enabled.
 
 The logic worked for DAMAGE, Xinerama and a few other extensions though.
 Ah well, never mind.

Coincidence, these extensions get enabled by default.


 What next?

Have you tried commenting out the Enable after Option Composite? If
so, after confirming that the X server is really using the config file
you are modifying (seems to be the case according to the info in the
original report though), you could try moving section Extensions to
the beginning of it, although that shouldn't make a difference...


-- 
Earthling Michel Dänzer   |  http://tungstengraphics.com
Libre software enthusiast |  Debian, X and DRI developer



Bug#421227: jabref: Default configuration includes hardcoded Windows paths

2007-04-27 Thread Cédric Augonnet

Subject: jabref: Default configuration includes hardcoded Windows paths
Package: jabref
Version: 2.2-01-5
Severity: normal

*** Please type your report below this line ***
The default configuration in Preferences-External programs contains the
path C:\Program Files\WinEdt Team\WinEdt\WinEdt.exe.
The LatexEditor directly points to a windows path as well : when trying
to open a reference using with the corresponding menu icon we obtain
 java.io.IOException: Cannot run program C:\TEMP\Led.exe:
 java.io.IOException: error=2, No such file or directory

-- System Information:
Debian Release: lenny/sid
 APT prefers unstable
 APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')

Architecture: i386 (i686)

Kernel: Linux 2.6.21-rc7-mm2=porcinet
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages jabref depends on:
ii  sun-java5-jre 1.5.0-11-1 Sun Java(TM) Runtime 
Environment (
ii  sun-java6-jre 6-00-2 Sun Java(TM) Runtime 
Environment (


jabref recommends no packages.

-- no debconf information


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



Bug#421229: FTBFS with GCC 4.3: missing #includes

2007-04-27 Thread Martin Michlmayr
Package: dasher
Version: 4.4.1-1
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).  Some background of this can be found at
http://gcc.gnu.org/PR28080

There are some new failures in the new upstream version you uploaded.
In fact, dasher does something really evil.  WordLanguageModel.cpp
fails to build because it uses atoi without including cstdlib.
However, when I added the #include we started failing in an even worse
way.  I found out that essentially (through local includes, in the end
of AlphIO.h) dasher does:

namespace expat {
#include cstdlib
}
#include cstdlib

and this horribly fails.  I fixed this by including cstdlib in
AlphIO.h and ColourIO.h before the horrible namespace'd #include.

You can reproduce this problem with gcc-snapshot (20070326-1 or higher)
from unstable. (Currently not available for i386, but for amd64, powerpc
and ia64.  I hope to have i386 binaries in the archive in the near
future.)

 Automatic build of dasher_4.4.1-1 on em64t by sbuild/amd64 0.53
...
 g++ -DHAVE_CONFIG_H -I. -I. -I../../.. -g -Wall -O2 -Wall 
 -Wno-non-virtual-dtor -c -o DictLanguageModel.o DictLanguageModel.cpp
 DictLanguageModel.cpp: In member function 
 'Dasher::CDictLanguageModel::CDictnode* 
 Dasher::CDictLanguageModel::AddSymbolToNode(Dasher::CDictLanguageModel::CDictnode*,
  Dasher::symbol, int*)':
 DictLanguageModel.cpp:69: error: 'USHRT_MAX' was not declared in this scope
 make[5]: *** [DictLanguageModel.o] Error 1

--- Src/DasherCore/LanguageModelling/DictLanguageModel.cpp~ 2007-04-27 
09:04:33.0 +
+++ Src/DasherCore/LanguageModelling/DictLanguageModel.cpp  2007-04-27 
09:04:39.0 +
@@ -13,6 +13,7 @@
 #include stack
 #include iostream
 #include fstream
+#include climits
 using namespace Dasher;
 using namespace std;
 
--- Src/DasherCore/LanguageModelling/WordLanguageModel.cpp~ 2007-04-27 
09:05:39.0 +
+++ Src/DasherCore/LanguageModelling/WordLanguageModel.cpp  2007-04-27 
09:07:40.0 +
@@ -11,6 +11,7 @@
 #include PPMLanguageModel.h
 
 #include cmath
+#include cstdlib
 #include stack
 #include iostream
 #include fstream
--- Src/DasherCore/Alphabet/AlphIO.h~   2007-04-27 09:26:06.0 +
+++ Src/DasherCore/Alphabet/AlphIO.h2007-04-27 09:26:16.0 +
@@ -13,6 +13,7 @@
 //#include Alphabet.h
 #include GroupInfo.h
 
+#include cstdlib
 #include string
 #include map
 #include vector
--- Src/DasherCore/ColourIO.h~  2007-04-27 09:29:37.0 +
+++ Src/DasherCore/ColourIO.h   2007-04-27 09:29:54.0 +
@@ -11,6 +11,7 @@
 
 #include DasherTypes.h
 
+#include cstdlib
 #include string
 #include map
 #include vector
--- Src/DasherCore/UserLocation.cpp~2007-04-27 09:34:42.0 +
+++ Src/DasherCore/UserLocation.cpp 2007-04-27 09:34:49.0 +
@@ -3,6 +3,7 @@
 
 #include UserLocation.h
 
+#include cstdlib
 #include sys/timeb.h
 
 // Track memory leaks on Windows to the line that new'd the memory
--- Src/DasherCore/XMLUtil.cpp~ 2007-04-27 09:35:46.0 +
+++ Src/DasherCore/XMLUtil.cpp  2007-04-27 09:35:52.0 +
@@ -3,6 +3,7 @@
 
 #include XMLUtil.h
 
+#include cstdlib
 #include sys/types.h
 #include sys/stat.h
 

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#421191: python-gtk2: debug version of gtk library causes Segmentation Fault

2007-04-27 Thread Loïc Minier
On Fri, Apr 27, 2007, Achim Gaedke wrote:
 add the symbolic links in /usr/lib/debug/usr/lib

 Why are you adding these links?

-- 
Loïc Minier



Bug#287369: closed by Sven Arvidsson [EMAIL PROTECTED] (Close 287369)

2007-04-27 Thread Sven Arvidsson
On Fri, 2007-04-27 at 08:36 +0200, KORN Andras wrote:
  Sure, a test file would be great.
 
 I did attach one to my last mail, called unicode_text.txt; did you see it?

Sorry, I missed it. Now that I have tried it, it seems to work fine,
it's identified as text/plain and is opened as such. 

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#421191: python-gtk2: debug version of gtk library causes Segmentation Fault

2007-04-27 Thread Loïc Minier
On Fri, Apr 27, 2007, Achim Gaedke wrote:
 [EMAIL PROTECTED]:~$ LD_LIBRARY_PATH=/usr/lib/debug/usr/lib python -c import 
 gtk
 Segmentation fault

 You should /not/ touch LD_LIBRARY_PATH, the data files in
 /usr/lib/debug/usr/lib are NOT libraries; this is probably why you're
 crashing.

-- 
Loïc Minier



Bug#421231: FTBFS with GCC 4.3: missing #includes

2007-04-27 Thread Martin Michlmayr
Package: sineshaper
Version: 0.4.2-1
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).  Some background of this can be found at
http://gcc.gnu.org/PR28080

You can reproduce this problem with gcc-snapshot (20070326-1 or higher)
from unstable. (Currently not available for i386, but for amd64, powerpc
and ia64.  I hope to have i386 binaries in the archive in the near
future.)


 Automatic build of sineshaper_0.4.2-1 on em64t by sbuild/amd64 0.53
...
 In file included from dssiplugin.cpp:26:
 dssiplugin.hpp: In function 'size_t register_dssi(long unsigned int, const 
 std::string, LADSPA_Properties, const std::string, const std::string, 
 const std::string, const DSSIPortList)':
 dssiplugin.hpp:208: error: there are no arguments to 'calloc' that depend on 
 a template parameter, so a declaration of 'calloc' must be available
 dssiplugin.hpp:208: error: (if you use '-fpermissive', G++ will accept your 
 code, but allowing the use of an undeclared name is deprecated)
 dssiplugin.hpp:220: error: there are no arguments to 'calloc' that depend on 
 a template parameter, so a declaration of 'calloc' must be available
 dssiplugin.hpp:221: error: there are no arguments to 'calloc' that depend on 
 a template parameter, so a declaration of 'calloc' must be available
 dssiplugin.hpp:223: error: there are no arguments to 'calloc' that depend on 
 a template parameter, so a declaration of 'calloc' must be available
 make[3]: *** [dssiplugin.lo] Error 1
 make[3]: Leaving directory `/build/tbm/sineshaper-0.4.2/src/common'

--- src/common/dssiplugin.hpp~  2007-04-27 09:08:10.0 +
+++ src/common/dssiplugin.hpp   2007-04-27 09:08:20.0 +
@@ -26,6 +26,7 @@
 
 #include unistd.h
 
+#include cstdlib
 #include cstring
 #include string
 #include vector

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#421183: libgtk2.0-0: file dialog oscillates between two sizes

2007-04-27 Thread Sven Arvidsson
On Thu, 2007-04-26 at 19:11 -0400, Ken Bloom wrote:
 When I go to save or export files in the GIMP, dia, or inkscape the
 file dialog oscillates very quickly between two sizes, making it
 impossible to click either the cancel or save buttons. I can still use
 the dialog entirely by keyboard however, and other controls are
 unaffected because they're anchored to the left side of the dialog
 box.
 
 FreeBSD users report similar behavior at
 http://www.freebsdforums.org/forums/showthread.php?t=48891

Hi,

This sounds very much like this problem, 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=420021

Do you think it's the same? If so, a downgrade to GTK+ 2.10.9 (you can
probably find it through snapshots.debian.net) can used as a temporary
work around.

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#421228: FTBFS if unsermake unstalled

2007-04-27 Thread Jiří Paleček

Package: kdepim
Version: 4:3.5.6.dfsg.1-2

Hello,

if unsermake is installed, kdepim does not build. It is because unsermake  
is

used and some bad command line arguments are passd to it. The first problem
(before running configure) can be fixed by calling make cvs instead of
make dist in the begining, but there is another problem when compilation
should actually take place.

Regards
Jiri Palecek



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



Bug#421232: ITP: GFS Complutum - Ancient Greek font

2007-04-27 Thread Nicolas Spalinger
Package: wnpp
Severity: wishlist

* Package name: ttf-gfs-complutum
* Version : 1.0
* Upstream Author : George D. Matthiopoulos
(Greek Font Society)
* URL :
http://www.greekfontsociety.org/pages/en_typefaces16th.html
* License : Open Font License
* Description : Ancient Greek font


The ancient Greek alphabet evolved during the millenium of the Byzantine
era from majuscule to minuscule form and gradually incorporated a wide
array of ligatures, flourishes and other decorative nuances which
defined its extravagant cursive character. Until the late 15th century,
typographers who had to deal with Greek text avoided emulating this
complicated hand; instead they would use only the twenty four letters of
the alphabet separately, often without accents and other diacritics. A
celebrated example is the type cut and cast for the typesetting of the
New Testament in the so-called Complutensian Polyglot Bible (1512),
edited by the Greek scholar, Demetrios Doukas. The type was cut by
Arnaldo Guillén de Brocar and the whole edition was a commision by
cardinal Francisco Ximénez, in the University of Alcalá (Complutum),
Spain. It is one of the best and most representative models of this
early tradition in Greek typography which was revived in the early 20th
century by the eminent bibliographer of the British Library, Richard
Proctor. A font named Otter Greek was cut in 1903 and a book was printed
using the new type. The original type had no capitals so Proctor added
his own, which were rather large and ill-fitted. The early death of
Proctor, the big size of the font and the different aesthetic notions of
the time were the reasons that Otter Greek was destined to oblivion, as
a curiosity. Greek Font Society incorporated Brocar's famous and
distinctive type in the commemorative edition of Pindar's Odes for the
Athens Olympics (2004) and the type with a new set of capitals, revived
digitaly by George D. Matthiopoulos, is now available for general use.









Bug#311919: #311919,apt-listchanges fails when invoked by apticron - No such device or address: '/dev/tty'

2007-04-27 Thread Damyan Ivanov
-=| Pierre Habouzit, 25.04.2007 19:45 |=-
   damn, I'm sick of this bug.

:/

 Could you please try this two patches and
 tell me if it works ?
 
   
 http://git.madism.org/gitweb/?p=apt-listchanges.git;a=commitdiff;h=a9aad6b1b14e503506e90f46774cb3ec1907693c
   
 http://git.madism.org/gitweb/?p=apt-listchanges.git;a=commitdiff;h=0c9352814f66a824ba2b4c2980b4351b7d08dd3b

Done. Let's wait for tomorrow's apticron run (today's simulated one
gave no news, since I've already done the upgrade)



dam
-- 
 Damyan Ivanov  Modular Software Systems
 phone +359(2)928-2611   fax +359(2)920-0994
   +359(2)929-3993   JID [EMAIL PROTECTED]



signature.asc
Description: OpenPGP digital signature


Bug#421233: ITP: GFS Bodoni Classic - Smart Greek typeface revival

2007-04-27 Thread Nicolas Spalinger
Package: wnpp
Severity: wishlist

* Package name: ttf-gfs-bodoni-classic
* Version : 1.0
* Upstream Author : George D. Matthiopoulos
(Greek Font Society)
* URL :
http://www.greekfontsociety.org/pages/en_typefaces18th.html
* License : Open Font License
* Description : Smart Greek typeface revival


Giambattista Bodoni was the most prolific Italian typecutter of the 18th
century. He was among the first European typecutters to move away from
the byzantine cursive tradition with the numerous ligatures which was
the norm until then. His Greek types influenced many subsequent
designers, yet they fell in disuse by the middle of the 19th century.
GFS presented Bodoni's original Greek typeface in the commemorative
edition of Pindar's Olympian Odes (2004), in digital version by George
D. Matthiopoulos, and is now available for the general public. In the
OpenType features, under ligatures, one may alternately use diphthongs
with the accents placed in between the characters, as Giambattista
Bodoni did when setting greek texts.










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



Bug#421191: python-gtk2: debug version of gtk library causes Segmentation Fault

2007-04-27 Thread Achim Gaedke
Hi Loïc!

Why do I do all this? Well, I'd like to have debugging symbols in
libgtk2 and the debugging flags available.

This is what I am hunting:
 The program 'DAMARIS' received an X Window System error.
 This probably reflects a bug in the program.
 The error was 'BadLength (poly request too large or internal Xlib
 length erro'.
   (Details: serial 4650870 error_code 16 request_code 114 minor_code 0)
   (Note to programmers: normally, X errors are reported asynchronously;
that is, you will receive the error a while after causing it.
To debug your program, run it with the --sync command line
option to change this behavior. You can then get a meaningful
backtrace from your debugger if you break on the gdk_x_error()
 function.)
The program DAMARIS uses matplotlib, glade, pygtk and threading.
Sometimes it dies away. I'd like to trace down this error (maybe to
matplotlib).

While skiming throug the source code I found pygtk handing down the
argument lists and tried to run libgtk2-dbg with pygtk.

Could you tell me how to do that? Is it necessary to build pygtk linked
against libgtk2-dgb?
I was not able to find proper instructions to use libgtk2-dbg.

Thanks for an answer, Achim

Loïc Minier wrote:
 On Fri, Apr 27, 2007, Achim Gaedke wrote:

 add the symbolic links in /usr/lib/debug/usr/lib


  Why are you adding these links?






Bug#420552: ARM: apt-get source: ../sysdeps/unix/sysv/linux/check_pf.c:68: make_request: Assertion...

2007-04-27 Thread Lennert Buytenhek
On Mon, Apr 23, 2007 at 09:37:22AM +0200, Martin Michlmayr wrote:

 After upgrading my ARM sid chroot to current sid, I get the following
 when running apt-get source.  Is this a bug in apt or libc6?
 
 (sid)[EMAIL PROTECTED]:~/src$ apt-get source texlive-bin
 Reading package lists... Done
 Building dependency tree... Done
 Need to get 70.8MB of source archives.
 0% [Working]http: ../sysdeps/unix/sysv/linux/check_pf.c:68:
 make_request: Assertion `sizeof (req) - ((size_t) ((struct req
 *)0)-pad) == 3' failed.
 E: Method http has died unexpectedly!
 (sid)[EMAIL PROTECTED]:~/src$

I don't see this on EABI, so I suspect that it is an old-ABI
alignment/padding issue in glibc.


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



Bug#355409: case can be closed

2007-04-27 Thread Juergen Lueters
Just checked if the problem still exists.
It turned out that the base problem has been created by a odbcinst.ini
entry which has referenced the wrong path. (This system here has
undergone some debian releases).

The current psql-odbc does suggest the right path.
Testing the configuration was sucessfull.


Please close the bug.

Regards


-- 
Juergen Lueters 




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



Bug#421210: FTBFS with GCC 4.3: error: extra ';'

2007-04-27 Thread Alexander Sack - Debian Bugmail
tags 421210 + confirmed
thanks

for the patch Martin.

 - Alexander

-- 
 GPG messages preferred.   |  .''`.  ** Debian GNU/Linux **
 Alexander Sack| : :' :  The  universal
 [EMAIL PROTECTED]   | `. `'  Operating System
 http://www.asoftsite.org  |   `-http://www.debian.org/


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



Bug#421234: ITP: GFS Gazis - Ancient Greek font

2007-04-27 Thread Nicolas Spalinger
Package: wnpp
Severity: wishlist

* Package name: ttf-gfs-gazis
* Version : 1.0
* Upstream Author : George D. Matthiopoulos
(Greek Font Society)
* URL :
http://www.greekfontsociety.org/pages/en_typefaces18th.html
* License : Open Font License
* Description : Ancient Greek font


During the whole of the 18th century the old tradition of using Greek
types designed to conform to the Byzantine cursive hand with many
ligatures and abbreviations - as it was originated by Aldus Manutius in
Venice and consolidated by Claude Garamont (Grecs du Roy) - was still
much in practice, although clearly on the wane. GFS Gazis is a typical
German example of this practice as it appeared at the end of that era in
the 1790's. Its name pays tribute to Anthimos Gazis (1758-1828), one of
the most prolific Greek thinkers of the period, who was responsible for
writing, translating and editing numerous books, including the
editorship of the important Greek periodical Ερμής ο Λόγιος (Litterary
Hermes) in Wien.
GFS Gazis has been digitally designed by George D. Matthiopoulos.









Bug#421235: Warning in debian_running_as_debiantor leads to assert fail

2007-04-27 Thread sacrificial-spam-address
Package: tor
Version: 0.1.2.13-1

I have tor running in a minimal chroot jail.  Since it doesn't have
a copy of /etc/passwd in there, the getpwuid(uid) call in
debian/patches/06_add_compile_time_defaults.dpatch:debian_running_as_debiantor
fails.

This leads to a -1 return value from debian_config_fix_defaults(), which
causes options_init_from_torrc() to bomb out, and eventually config_free
tries to free an improperly initialized structure and assert fails.

First of all, the assert fail is a bug.

Second, perhaps the patch should either:
- Fail more gracefully when the getpwuid() call fails, perhaps just
  doing nothing as tor did before the patch, or
- Log an error if it's going to make the program not run.

# /etc/init.d/tor start
Raising maximum number of filedescriptors (ulimit -n) to 8192.
Starting tor daemon: tor...
Apr 27 09:57:55.667 [notice] Tor v0.1.2.13. This is experimental software. Do 
not rely on it for strong anonymity.
Apr 27 09:57:55.668 [warn] Could not get passwd information for 126.
Apr 27 09:57:55.668 [err] config.c:2048: config_free: Assertion options failed;
aborting.
config.c:2048 config_free: Assertion options failed; aborting.
./tor: line 104: 32421 Aborted (core dumped) start-stop-daemon 
--start --quiet --oknodo --chroot $HOME --chuid debian-tor:debian-tor 
--pidfile $_TORPID $NICE --exec $DAEMON -- $ARGS


(I've developed a trick for keeping an absolutely minimal chroot jail
but still sharing libraries, even though the jail isn't on the same
file system as /lib.  Basically, I make a /lib/libs.tor directory,
hard-link only the required libraries into it, then bind mount that
onto $JAIL/lib.  $JAIL/lib/libc-2.5.so ends up being exactly the same
inode as /lib/i686/cmov/libc-2.5.so.)


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



Bug#287369: closed by Sven Arvidsson [EMAIL PROTECTED] (Close 287369)

2007-04-27 Thread Andras Korn
On Fri, Apr 27, 2007 at 12:09:11AM +0200, Sven Arvidsson wrote:

 On Thu, 2007-04-26 at 23:21 +0200, Andras Korn wrote:
  Sorry, I didn't receive your followup from 2005.
  
  I'm not currently in a position to test this behaviour with a new version of
  nautilus, but I can at least attach a test file.
  
  I'll try to remember and see what nautilus does with it. Just give me a few
  days.
 
 Sure, a test file would be great.

OK, I can confirm the bug is gone in nautilus 2.16.0-0ubuntu3. Not sure when
it disappeared.

Thanks

Andras

-- 
 Andras Korn korn at chardonnay.math.bme.hu
 http://chardonnay.math.bme.hu/~korn/ QOTD:
   Hardware: The part you kick. Software: this you corrupt!



Bug#421236: ITP: GFS Baskerville - Ancient Greek font revival

2007-04-27 Thread Nicolas Spalinger
Package: wnpp
Severity: wishlist

* Package name: ttf-gfs-baskerville
* Version : 1.0
* Upstream Author : Sophia Kalaitzidou and George D. Matthiopoulos
(Greek Font Society)
* URL :
http://www.greekfontsociety.org/pages/en_typefaces18th.html
* License : Open Font License
* Description : Ancient Greek font revival


John Baskerville (1706-1775) got involved in typography late in his
career but his contribution was significant. He was a successful
entrepreneur and possessed an inquiring mind which he applied to produce
many aesthetic and technical innovations in printing. He invented a new
ink formula, a new type of smooth paper and made various improvements in
the printing press. He was also involved in type design which resulted
in a latin typeface which was used for the edition of Virgil, in 1757.
The quality of the type was admired throughout of Europe and America and
was revived with great success in the early 20th century. Baskerville
was also involved in the design of a Greek typeface which he used in an
edition of the New Testament for Oxford University, in 1763. He adopted
the practice of avoiding the excessive number of ligatures which
Alexander Wilson had started a few years earlier but his Greek types
were rather narrow in proportion and did not win the sympathy of the
philologists and other scholars of his time. They did influence,
however, the Greek types of Giambattista Bodoni. and through him Didot's
Greek in Paris.
The typeface has been digitally revived as GFS Baskerville Classic by
Sophia Kalaitzidou and George D. Matthiopoulos and is now available as
part of GFS' type library.








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



Bug#419324: (Bug#419324: fixed in linuxdoc-tools 0.9.21-0.7)

2007-04-27 Thread Agustin Martin
On Fri, Apr 27, 2007 at 12:18:09AM -0700, David Lawyer wrote:
 On Thu, Apr 26, 2007 at 03:03:09PM +, Debian Bug Tracking System wrote:
   - -P-c is passed to grotty as default, unless something
 else is set from the command line. This should fallback
 to the old (overstriking) grotty behavior and avoid escape
 sequences unless explicitely desired. Thanks David Lawyer
 for the hint (closes: #175575, #419324).
 You mean that -c is passed to grotty by default by passing -P-c to
 groff.

Thanks, fixed in my CVS.

I wonder if we can get rid of the way the -f option is currently
implemented. Passing -P-cbou if -f is enabled and -P-c otherwise, both
in case nothing is explicitely passed from the command line, should have
a similar effect.  

I will keep playing with fmt_txt.pl and linuxdoc, mostly for fun, most of
the bugs that were annoying me when maintaining the spanish TeX FAQ are
already fixed.

-- 
Agustin


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



Bug#420552: ARM: apt-get source: ../sysdeps/unix/sysv/linux/check_pf.c:68: make_request: Assertion...

2007-04-27 Thread Martin Michlmayr
* Lennert Buytenhek [EMAIL PROTECTED] [2007-04-27 11:56]:
 I don't see this on EABI, so I suspect that it is an old-ABI
 alignment/padding issue in glibc.

Yeah, it actually got fixed in -4.
-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#417360: closed by Roger Leigh [EMAIL PROTECTED] (Bug#417360: fixed in libpqxx 2.6.9-2)

2007-04-27 Thread Martin Michlmayr
found 417360 2.6.9-2
repoen 417360 !
thanks

* Debian Bug Tracking System [EMAIL PROTECTED] [2007-04-27 07:58]:
* src/result.cxx: Include missing cstdlib header, needed to build with
  GCC 4.3 (Closes: #417360).

I'm afraid I don't see this patch anywhere.

The good news is that the same patch is needed for the new upstream
release you uploaded, so please send the patch I sent.  Thanks.
-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#417108: FTBFS with GCC 4.3: missing #includes

2007-04-27 Thread Martin Michlmayr
* David Martínez Moreno [EMAIL PROTECTED] [2007-04-26 10:31]:
 of aqsis.  Would you be so kind to test it (it has been incorporated in 
 today's archive run) and report if the patch is valid yet?

I started testing with 1.1.0.20050815 last night, but I just saw yet
another new upload.  I'll test that instead.
-- 
Martin Michlmayr
http://www.cyrius.com/



Bug#421237: ITP: GFS Solomos - Ancient Greek italic font revival

2007-04-27 Thread Nicolas Spalinger
Package: wnpp
Severity: wishlist

* Package name: ttf-gfs-solomos
* Version : 1.0
* Upstream Author : George D. Matthiopoulos
(Greek Font Society)
* URL :
http://www.greekfontsociety.org/pages/en_typefaces19th.html
* License : Open Font License
* Description : Ancient Greek font

From the middle of the 19th century an italic font with many
calligraphic overtones was introduced into Greek printing. Its source is
unknown, but it almost certainly was the product of a German or Italian
foundry. In the first type specimen printed in Greece by the typecutter
K. Miliadis (1850), the font was listed anonymously along others of
11pts and in the Gr. Doumas' undated specimen appeared as «11pt Greek
inclined». For most of the second half of the century the type was used
extensively as an italic for emphasis in words, sentences or exerpts. In
1889, the folio size Type Specimen of Anestis Konstantinidis'
publishing, printing and type founding establishment also included the
type as «Greek inclined [9  12 pt]».
Nevertheless, the excessively calligraphic style of the characters,
combined with the steep and uncomfortable obliqueness of the capitals,
was out of favour in the 20th century and the type did not survive the
conformity of the mechanical type cutting and casting. The font has been
digitally revived, as part of our typographic tradition, by George D.
Matthiopoulos and is part of GFS' type library under the name GFS
Solomos, in commemoration of the great Greek poet of the 19th century,
Dionisios Solomos.









Bug#421238: openssh: [INTL:eu] Debconf basque transaltion

2007-04-27 Thread Piarres Beobide
Package: openssh
Version: 6
Severity: wishlist
Tags: patch l10n

Hi

Atached OpenSSH debconf template basque trasnaltion update, please commit it.


thx


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.20
Locale: LANG=eu_ES, LC_CTYPE=eu_ES (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash
# translation of openssh-templates.po to basque
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Piarres Beobide [EMAIL PROTECTED], 2007.
msgid 
msgstr 
Project-Id-Version: openssh-templates\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2007-04-23 17:56+0200\n
PO-Revision-Date: 2007-04-27 12:10+0200\n
Last-Translator: Piarres Beobide [EMAIL PROTECTED]\n
Language-Team: librezale [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: Pootle 0.11\n
Plural-Forms: nplurals=2; plural=(n != 1);\n

#. Type: boolean
#. Description
#: ../openssh-server.templates.master:2001
msgid Generate a new configuration file for OpenSSH?
msgstr OpenSSH-rentzat konfigurazio fitxategi berri bat sortu?

#. Type: boolean
#. Description
#: ../openssh-server.templates.master:2001
msgid 
This version of OpenSSH has a considerably changed configuration file from 
the version shipped in Debian 'Potato', which you appear to be upgrading 
from. This package can now generate a new configuration file (/etc/ssh/sshd.
config), which will work with the new server version, but will not contain 
any customizations you made with the old version.
msgstr 
OpenSSH bertsio honek konfigurazio  fitxategia nahiko aldatu du Debian 
'Potato' 
bertsioak banatu zuenetik, dirudienez zu bertsio horretatik eguneratzen ari 
zara. 
Pakete honek konfigurazio fitxategi berri bat sortu dezake 
(/etc/ssh/sshd.config) 
bertsio honetarako funtziona dezan baina ez ditu zuk bertsio zaharrari egin 
ahal 
izan diezazkiokezun pertsonalizazioak edukiko.

#. Type: boolean
#. Description
#: ../openssh-server.templates.master:2001
msgid 
Please note that this new configuration file will set the value of 
'PermitRootLogin' to 'yes' (meaning that anyone knowing the root password 
can ssh directly in as root). Please read the README.Debian files for more 
details about this design choice.
msgstr 
Kontutan izan konfigurazio fitxategi berri honek 'PermitRootLogin' parametroan 

balioa 'yes' bezala ezarriko duela (honek root erabiltzaileak ssh bidez 
sartzeko aukera emango du). Mesedez irakurri README.Debian fitxategia ezarpen 
balio honen xehetasun gehiagorako.

#. Type: boolean
#. Description
#: ../openssh-server.templates.master:2001
msgid 
It is strongly recommended that you choose to generate a new configuration 
file now.
msgstr Gomendagarria da konfigurazio fitxategi berri bat orain sortzea.

#. Type: boolean
#. Description
#: ../openssh-server.templates.master:3001
msgid Do you want to risk killing active SSH sessions?
msgstr Irekirik dauden SSH saioak ixteko arriskua artu nahi duzu?

#. Type: boolean
#. Description
#: ../openssh-server.templates.master:3001
msgid 
The currently installed version of /etc/init.d/ssh is likely to kill all 
running sshd instances. If you are doing this upgrade via an SSH session, 
you're likely to be disconnected and leave the upgrade procedure unfinished.
msgstr Instalaturik dagoen /etc/init.d/ssh bertsioak martxan dauden sshd 
instantziak hilko ditu. Bertsio berritze hau SSH bidez egiten ari bazara, 
ziurrenik deskonektatu egingo zara eta bertsio berritze prozedura ez da behar 
bezala amaituko.

#. Type: boolean
#. Description
#: ../openssh-server.templates.master:3001
msgid 
This can be fixed by manually adding \--pidfile /var/run/sshd.pid\ to the 
start-stop-daemon line in the stop section of the file.
msgstr Hu eskuz konpondu daiteke  \--pidfile /var/run/sshd.pid\ gehituaz 
start-stop-daemon lerroan fitxategiaren \stop\ atalean.

#. Type: note
#. Description
#: ../openssh-server.templates.master:4001
msgid New host key mandatory
msgstr Ostalari gako berria beharrezkoa

#. Type: note
#. Description
#: ../openssh-server.templates.master:4001
msgid 
The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA 
algorithm. OpenSSH can not handle this host key file, and the ssh-keygen 
utility from the old (non-free) SSH installation does not appear to be 
available.
msgstr /etc/ssh/ssh_host_key-ko ostalari gakoa DEA algoritmoaren bidez 
enkriptaturik dago. OpenSSH ez da ostalari gako mota hau kudeatzeko gai eta SSH 
instalazio zaharreko (ez-librea) ssh-keygen lanabesa dirudienez ez dago 
erabilgarri.

#. Type: note
#. Description
#: ../openssh-server.templates.master:4001
msgid You need to manually generate a new host key.
msgstr Ostalari gako berri bat eskuz sortu behar duzu.

#. Type: boolean
#. Description
#: 

Bug#421228: FTBFS if unsermake unstalled

2007-04-27 Thread Ana Guerrero
On Fri, Apr 27, 2007 at 11:44:25AM +0200, Jiří Paleček wrote:
 Package: kdepim
 Version: 4:3.5.6.dfsg.1-2
 
 Hello,
 
 if unsermake is installed, kdepim does not build. It is because unsermake  
 is
 used and some bad command line arguments are passd to it. The first problem
 (before running configure) can be fixed by calling make cvs instead of
 make dist in the begining, but there is another problem when compilation
 should actually take place.


Yeah, we are aware of this problem, and it not only affects kdepim. unsermake
should be removed from the archive in a closed future, i'll close this bug
then.

Thank you for your bug report.
Ana



Bug#421240: actionbutton-plugin: icons look weird

2007-04-27 Thread Johannes Bittner
Package: xfce4-panel
Version: 4.4.1-1
Severity: normal


Hi,

I installed xfce 4.4, and the actionbutton-plugin of xfce4-panel (the
two buttons left to the clock in my system, see [1]) look wrong. I tried
changing the icon theme, but these two icons weren't changed.

bye,
johannes

[1]http://theclaw.dnsalias.org/FU.jpg

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

Versions of packages xfce4-panel depends on:
ii  libatk1.0-0   1.18.0-2   The ATK accessibility toolkit
ii  libc6 2.5-2  GNU C Library: Shared libraries
ii  libcairo2 1.4.4-1The Cairo 2D vector graphics libra
ii  libexo-0.3-0  0.3.2-3Library with extensions for Xfce
ii  libfontconfig12.4.2-1.2  generic font configuration library
ii  libfreetype6  2.2.1-5FreeType 2 font engine, shared lib
ii  libglib2.0-0  2.12.11-3  The GLib library of C routines
ii  libgtk2.0-0   2.10.11-2  The GTK+ graphical user interface 
ii  libice6   1:1.0.1-2  X11 Inter-Client Exchange library
ii  libpango1.0-0 1.16.2-2   Layout and rendering of internatio
ii  libpng12-01.2.15~beta5-1 PNG library - runtime
ii  libsm61:1.0.1-3  X11 Session Management library
ii  libstartup-notification0  0.8-2  library for program launch feedbac
ii  libx11-6  2:1.0.3-6  X11 client-side library
ii  libxcursor1   1.1.7-4X cursor management library
ii  libxext6  1:1.0.1-2  X11 miscellaneous extension librar
ii  libxfce4mcs-client3   4.4.1-1Client library for Xfce4 configure
ii  libxfce4mcs-manager3  4.4.1-1Manager library for Xfce4 configur
ii  libxfce4util4 4.4.1-1Utility functions library for Xfce
ii  libxfcegui4-4 4.4.1-1Basic GUI C functions for Xfce4
ii  libxfixes31:4.0.1-5  X11 miscellaneous 'fixes' extensio
ii  libxi61:1.0.1-4  X11 Input extension library
ii  libxinerama1  1:1.0.1-4.1X11 Xinerama extension library
ii  libxrandr22:1.2.1-1  X11 RandR extension library
ii  libxrender1   1:0.9.1-3  X Rendering Extension client libra
ii  zlib1g1:1.2.3-13 compression library - runtime

xfce4-panel recommends no packages.

-- no debconf information


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



Bug#420721: xserver-xorg-video-ati: crash in power management code

2007-04-27 Thread Julien Cristau
On Tue, Apr 24, 2007 at 12:21:15 +0200, Gabor Gombas wrote:

 Backtrace:
 0: /usr/bin/X(xf86SigHandler+0x84) [0x80c2134]
 1: [0xb7f50420]
 2: 
 /usr/lib/xorg/modules/drivers//radeon_drv.so(RADEONDisplayPowerManagementSet+0x132)
  [0xb7e0b752]
 3: /usr/bin/X(DPMSSet+0xc5) [0x80c15d5]
 4: /usr/lib/xorg/modules/extensions//libextmod.so [0xb7ed4ecd]
 5: /usr/bin/X [0x814c1ce]
 6: /usr/bin/X(Dispatch+0x1ab) [0x808842b]
 7: /usr/bin/X(main+0x489) [0x8070259]
 8: /lib/i686/cmov/libc.so.6(__libc_start_main+0xd8) [0x4492b878]
 9: /usr/bin/X(FontFileCompleteXLFD+0xad) [0x806f591]
 
Hi,

if you could rebuild the ati driver with debugging symbols, and get a
full backtrace with gdb, it would be of great help.  See [0] and [1] for
information on how to do that.

Thanks,
Julien

[0] http://wiki.debian.org/XStrikeForce/XserverDebugging
[1] http://wiki.x.org/wiki/Development/Documentation/ServerDebugging


signature.asc
Description: Digital signature


Bug#421239: ITP: GFS Olga - Ancient Greek oblique font revival (companion to GFS Didot)

2007-04-27 Thread Nicolas Spalinger
Package: wnpp
Severity: wishlist

* Package name: ttf-gfs-olga
* Version : 1.0
* Upstream Author : George D. Matthiopoulos
(Greek Font Society)
* URL :
http://www.greekfontsociety.org/pages/en_typefaces20th.html
* License : Open Font License
* Description : Ancient Greek oblique font revival (companion to GFS
Didot)

In Greece the terms italic and oblique have the same meaning since they
are borrowed from the latin typographic practice without any real
historical equivalent in Greek history. Until the end of the 19th
century Greek typefaces were cut and cast indepedently, not as members
of a typefamily. The mechanisation of typecutting allowed the
transformation of upright Greek typefaces to oblique designs.
Nonetheless, the typesetting practice of a cursive Greek font to
complement an upright one did not survive the 19th century. The
experimental font GFS Olga (1995) attempts to revive this lost
tradition. The typeface was designed and digitised by George
Matthiopoulos, based on the historical Porson Greek type (1803) with the
intention to be the companion of the upright GFS Didot font whenever
there is a need for an italic alternative.







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



Bug#421241: ITP: GFS Neohellenic - New Greek font family with matching Latin

2007-04-27 Thread Nicolas Spalinger
Package: wnpp
Severity: wishlist

* Package name: ttf-gfs-neohellenic
* Version : 1.0
* Upstream Author : George D. Matthiopoulos
(Greek Font Society)
* URL :
http://www.greekfontsociety.org/pages/en_typefaces20th.html
* License : Open Font License
* Description : New Greek font family with matching Latin


The design of new Greek typefaces always followed the growing needs of
the Classical Studies in the major European Universities. Furthermore,
by the end of the 19th century bibliology had become an established
section of Historical Studies, and, as John Bowman commented, the
prevailing attitude was that Greek types should adhere to a lost
idealized, yet undefined, greekness of yore. Especially in Great Britain
this tendency remained unchallenged in the first decades of the 20th
century, both by Richard Proctor, curator of the incunabula section in
the British Museum Library and his successor Victor Scholderer. In 1927,
Scholderer, on behalf of the Society for the Promotion of Greek Studies,
got involved in choosing and consulting the design and production of a
Greek type called New Hellenic cut by the Lanston Monotype Corporation.
He chose the revival of a round, and almost monoline type which had
first appeared in 1492 in the edition of Macrobius, ascribable to the
printing shop of Giovanni Rosso (Joannes Rubeus) in Venice. New Hellenic
was the only successful typeface in Great Britain after the introduction
of Porson Greek well over a century before. The type, since to 1930’s,
was also well received in Greece, albeit with a different design for Ksi
and Omega.
GFS digitized the typeface (1993-1994) funded by the Athens
Archeological Society with the addition of a new set of epigraphical
symbols. Later (2000) more weights were added (italic, bold and bold
italic) as well as a latin version.








Bug#421242: system run out of memory while building formats

2007-04-27 Thread Rafal Czlonka
Package: texlive-base-bin
Version: 2007-5
Severity: critical

Hi,
When the postinst script runs and it comes to 'Building formats', after
several minutes of doing so, the system runs out of memory. The process
eats all the available memory, both phisical (512MB RAM) and virtual
(1GB swap). After that the system simply freezes and is unrecoverable.

Regards,
rjc

-- Package-specific info:
If you report an error when running one of the TeX-related binaries 
(latex, pdftex, metafont,...), or if the bug is related to bad or wrong
output, please include a MINIMAL example input file that produces the
error in your report. Don't forget to also include minimal examples of
other files that are needed, e.g. bibtex databases. Often it also helps
to include the logfile. Please, never send included pictures!

If your example file isn't short or produces more than one page of
output (except when multiple pages are needed to show the problem),
you can probably minimize it further. Instructions on how to do that
can be found at

http://www.latex-einfuehrung.de/mini-en.html (english)

or 

http://www.latex-einfuehrung.de/mini.html (german)

##
minimal input file


##
other files


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.20-1-powerpc
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_GB.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages texlive-base-bin depends on:
ii  ed0.2-20 The classic unix line editor
ii  libc6 2.5-4  GNU C Library: Shared libraries
ii  libncurses5   5.5-5  Shared libraries for terminal hand
ii  libpng12-01.2.15~beta5-1 PNG library - runtime
ii  libpoppler0c2 0.5.0-1PDF rendering library
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxaw7   1:1.0.3-3  X11 Athena Widget library
ii  libxmu6   1:1.0.3-1  X11 miscellaneous utility library
ii  libxpm4   1:3.5.6-2  X11 pixmap library
ii  libxt61:1.0.5-2  X11 toolkit intrinsics library
ii  mime-support  3.39-1 MIME files 'mime.types'  'mailcap
ii  perl  5.8.8-7Larry Wall's Practical Extraction 
ii  texlive-common2007-4 TeX Live: Base component
ii  zlib1g1:1.2.3-13 compression library - runtime

Versions of packages texlive-base-bin recommends:
ii  perl-tk  1:804.027-7 Perl module providing the Tk graph

Versions of packages tex-common depends on:
ii  cdebconf  0.115  Debian Configuration Management Sy
ii  debconf   1.5.13 Debian configuration management sy
ii  ucf   2.0021 Update Configuration File: preserv

Versions of packages texlive-base-bin is related to:
pn  tetex-basenone (no description available)
pn  tetex-bin none (no description available)
pn  tetex-extra   none (no description available)

-- debconf information:
  tex-common/check_texmf_wrong:
  tex-common/check_texmf_missing:
  tex-common/singleuser: true


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



Bug#407637: ITA: dmalloc -- debug memory allocation library

2007-04-27 Thread Daniel Rus Morales
Hi,

I would like to care about this package.

Daniel Rus


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



Bug#421227: jabref: Default configuration includes hardcoded Windows paths

2007-04-27 Thread gregor herrmann
tags 421227 + confirmed
severity 421227 minor
thanks

On Fri, 27 Apr 2007 11:41:06 +0200, Cédric Augonnet wrote:

Thanks for your bug report!

 The default configuration in Preferences-External programs contains the
 path C:\Program Files\WinEdt Team\WinEdt\WinEdt.exe.
 The LatexEditor directly points to a windows path as well : when trying
 to open a reference using with the corresponding menu icon we obtain
  java.io.IOException: Cannot run program C:\TEMP\Led.exe:
  java.io.IOException: error=2, No such file or directory

Right, these defaults are not very elegant; until now I haven't
bothered about changing them because IMO it's the users'
responsibility to change their preferences.

But I'll happily remove the defaults or set them to more sane values
if you can provide me with some suggestions.

Cheers,
gregor

-- 
 .''`.   http://info.comodo.priv.at/ | gpg key ID: 0x00F3CFE4
 : :' :  debian: the universal operating system - http://www.debian.org/
 `. `'   member of https://www.vibe.at/ | how to reply: http://got.to/quote/
   `-NP: David Bowie: Space Oddity


signature.asc
Description: Digital signature


Bug#403128: OpenOffice issue 75076

2007-04-27 Thread Nagy Elemer Karoly


Dear Debian,

OpenOffice.Org said it's all your fault:
http://www.openoffice.org/issues/show_bug.cgi?id=75076

Elemer

--- Additional comments from [EMAIL PROTECTED] Fri Apr 27 08:39:40 + 
2007 ---
Sorry,

but you are on the OpenOffice.org site and the problem you've reported is fixed
in an OpenOffice.org build. If you do not want to install a newer version, it's
your problem. OOo will not fix anything for 2.0.4 as it is fixed on 2.2.

So report this problem with Debian as they have their own bugreportingsystem for
their own builds. This Issue is invalid and closed as such.

Frank


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



Bug#421243: ITP: GFS Theokritos - Decorative Greek font

2007-04-27 Thread Nicolas Spalinger
Package: wnpp
Severity: wishlist

* Package name: ttf-gfs-theokritos
* Version : 1.0
* Upstream Author : George D. Matthiopoulos
(Greek Font Society)
* URL :
http://www.greekfontsociety.org/pages/en_typefaces20th.html
* License : Open Font License
* Description : Decorative Greek font


Yannis Kefallinos (1894–1958) was one of the most innovative engravers
of his generation and the first who researched methodically the
aesthetics of book and typographic design in Greece. He taught at the
Fine Arts School of Athens and established the first book design
workshop from which many practising artists of the 60's and 70's had
graduated. In the late 50's Kefallinos designed and published an
exquisite book with engraved illustrations of the ancient white funerary
pottery in Attica in collaboration with Varlamos, Montesanto,
Damianakis. For the text of Kefallinos' Δέκα λευκαί λήκυθοι (1956) the
artist used a typeface which he himself had designed a few years before
for an unrealised edition of Theocritos' Idyls. Its complex and heavily
decorative design does point to aesthetic codes which preoccupied his
artistic expression and, although impractical for contemporary text
setting, it remains an original display face, or it can be used as initials.
The book design workshop of the Fine Arts School of Athens has been
recently reorganised, under the direction of professor Leoni Vidali, and
with her collaboration George D. Matthiopoulos has redesigned digitaly
this historical font which is now available as GFS Theokritos.









Bug#421245: ITP: GFS Artemisia - Greek font

2007-04-27 Thread Nicolas Spalinger
Package: wnpp
Severity: wishlist

* Package name: ttf-gfs-artemisia
* Version : 1.0
* Upstream Author : Takis Katsoulidis - George D. Matthiopoulos (Greek
Font Society)
* URL :
http://www.greekfontsociety.org/pages/en_typefaces20th.html
* License : Open Font License
* Description : Greek font


The type family GFS Artemisia was designed by the painter-engraver Takis
Katsoulidis and reflects his style and typographic acumen. It is largely
his effort to offer, from a different perspective, a type face which,
like Times Greek, would be applicable to a wide spectrum of uses and
equally agreeable and legible. The typeface has been digitised by George
D. Matthiopoulos.








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



Bug#421244: package fails to install as profile prelude-manager does not exist

2007-04-27 Thread Achim Frank
Package: prelude-manager
Version: 0.9.6.1-1
Severity: grave
Justification: renders package unusable

apt installation shows:
Richte prelude-manager ein (0.9.6.1-1) ...
Starting Prelude Manager: prelude-managerprelude-client: error
initializing prelude-client: could not open
'/etc/prelude/profile/prelude-manager/analyzerid' for reading

Profile 'prelude-manager' does not exist. In order to create it, please
run:
prelude-adduser add prelude-manager --uid 0 --gid 0.
invoke-rc.d: initscript prelude-manager, action start failed.
dpkg: Fehler beim Bearbeiten von prelude-manager (--configure):
 Unterprozess post-installation script gab den Fehlerwert 248 zurück
Fehler traten auf beim Bearbeiten von:
 prelude-manager
E: Sub-process /usr/bin/dpkg returned an error code (1)

This error was on a fresh install of prelude - so no profile was available.

After creation of the prelude-manager with the above mentioned commandline 
package
installation with apt-get -f install gets things right.

Seems that
prelude-adduser add prelude-manager --uid 0 --gid 0
should be issued by postconf scripts?

See also the Ubuntu Bug #91559.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages prelude-manager depends on:
ii  libc6  2.3.6.ds1-13  GNU C Library: Shared libraries
ii  libgcrypt111.2.3-2   LGPL Crypto library - runtime libr
ii  libgnutls131.4.4-3   the GNU TLS library - runtime libr
ii  libgpg-error0  1.4-1 library for common error values an
ii  libprelude20.9.7.2-1 Hybrid Intrusion Detection System 
ii  libpreludedb0  0.9.7.1-1 Hybrid Intrusion Detection System 
ii  libtasn1-3 0.3.6-2   Manage ASN.1 structures (runtime)
ii  libxml22.6.27.dfsg-1 GNOME XML library
ii  zlib1g 1:1.2.3-13compression library - runtime

Versions of packages prelude-manager recommends:
ii  mysql-client   5.0.32-7etch1 mysql database client (meta packag
ii  mysql-client-5.0 [mysql-cl 5.0.32-7etch1 mysql database client binaries

-- no debconf information


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



Bug#421246: wrong Section: field

2007-04-27 Thread Alexander GQ Gerasiov
Package: openoffice.org-help-km
Version: 2.1~rc2-1
Severity: normal

--- Please enter the report below this line. ---

I see:

 # apt-cache show openoffice.org-help-km
 Package: openoffice.org-help-km
 Priority: optional
 Section: %CONTRIB%doc
^^^
looks like error or typo
 Installed-Size: 39592
 Maintainer: Debian OpenOffice Team
 [EMAIL PROTECTED] Architecture: all
 Source: openoffice.org
 Version: 2.1~rc2-1
 Provides: openoffice.org-help-2.0.4
 Depends: openoffice.org-writer, openoffice.org-l10n-km
 Recommends: openoffice.org-core ( 2.1~rc2) | language-support-km
 Conflicts: openoffice.org-common (= 2.0.0-1), openoffice.org-core
 ( 2.1~rc2) Filename:
 pool/main/o/openoffice.org/openoffice.org-help-km_2.1~rc2-1_all.deb
 Size: 13999742 MD5sum: b833f33fe04ed35c2e4284f4bf4af7e3
 SHA1: 1bbf088b5524965da2c615bbb033ae5cfca72b4f
 SHA256:
 542dd72f2dd6b41d4965c026a5b3946e87256ef792a802cb1aec1de3fba4246a
 Description: Khmer help for OpenOffice.org OpenOffice.org is a
 full-featured office productivity suite that provides a near drop-in
 replacement for Microsoft(R) Office. .
  This package contains the help of OpenOffice.orgs help in
  Khmer.
  .
  For latest news on OpenOffice.org in Debian, see
  http://openoffice.debian.net

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.18-4-vserver-686

Debian Release: 4.0
  750 stable  www.debian-multimedia.org 
  700 unstablegq.net.ru 
  670 stable  gq.net.ru 
  670 stable  172.16.0.2 
  670 proposed-updates 172.16.0.2 
  650 testing-proposed-updates 172.16.0.2 
  650 testing www.debian-multimedia.org 
  650 testing gq.net.ru 
  650 testing 172.16.0.2 
  600 unstable172.16.0.2 
  550 experimentalgq.net.ru 
  550 experimental172.16.0.2 

--- Package information. ---
Depends   (Version) | Installed
===-+-===
| 




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



Bug#383316: Could you please forward this proposed license to Teosto? (was: Re: Choosing a license for Frets on Fire songs)

2007-04-27 Thread Matthew Johnson
On Thu Apr 26 21:16, Jason Spiro wrote:
 
 I don't know much about how to write licenses, and this is the first
 one I have ever written.  I figured that everything after the subject
 to the following conditions: would automatically override the initial
 permissions I gave.  I guess I was wrong?

This is a very very good reason not to write your own. debian-legal
always advises against doing so. How about using:
http://creativecommons.org/licenses/by-nd-nc/1.0/legalcode with 4. d.
added saying:

   You may not distribute, publicly display, publicly perform, or
   publicly digitally perform the Work except as part of the game.

and 1. g.:

   The Game means the game Frets on Fire or a derivative work of 
   Frets on Fire.

This would, of course, have to be renamed something else, but it is good
to make as small modifications as possible. It would also need t be run
past debian-legal and Teosto's legal team.

Matt

--
Matthew Johnson


signature.asc
Description: Digital signature


Bug#400993: 'Push to Emacs' has gone !

2007-04-27 Thread gregor herrmann
On Thu, 30 Nov 2006 19:59:25 +0100, gregor herrmann wrote:

I've just upgraded to the 2.2~b2-1 version to find that the 'Push to
  Emacs' feature of Jabref has gone. That's really a pain ! I've just
  posted to upstream about it, but I thought you should know... 
 Thanks for letting me know, I'll keep an eye on it.

In the current version (2.2-01-5) I see a menu entry Push entries to
external application (Emacs) in the Tools menu (and an icon for
emacs in the pulldown on the right hand side of the icon bar).

Could you please check if that menu entry is what you are looking
for?

Thanks in advance,
gregor
 
-- 
 .''`.   http://info.comodo.priv.at/ | gpg key ID: 0x00F3CFE4
 : :' :  debian: the universal operating system - http://www.debian.org/
 `. `'   member of https://www.vibe.at/ | how to reply: http://got.to/quote/
   `-NP: Neil Diamond: Play Me


signature.asc
Description: Digital signature


Bug#403128: OpenOffice issue 75076

2007-04-27 Thread Rene Engelhard
forwarded 403128 http://www.openoffice.org/issues/show_bug.cgi?id=75076
close 403128 2.2.0-1
thanks

Hi,

Nagy Elemer Karoly wrote:
 
   Dear Debian,
 
   OpenOffice.Org said it's all your fault:
 http://www.openoffice.org/issues/show_bug.cgi?id=75076

No, that's not what they said.

They said it works for then in 2.2. Please try this; it's easily
recompilable on etch. Or create a sid chroot.
I am closing this appropriately, mark it as found in 2.2.0-1 again
when you experience it in 2.2.0, still.
(Yes, there will be a etch backport of 2.2.0 soon)

That Debian etch shipped with this bug is unfortunate but even if I
wanted to fix that a few months ago it wasn't the time anymore.

Gr��e/Regards,

Ren�
-- 
 .''`.  Ren� Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  [EMAIL PROTECTED] | GnuPG-Key ID: 248AEB73
   `-   Fingerprint: 41FA F208 28D4 7CA5 19BB  7AD9 F859 90B0 248A EB73



signature.asc
Description: Digital signature


Bug#421247: FTBFS: LaTeX Error: File `comment.sty' not found

2007-04-27 Thread Martin Michlmayr
Package: gprolog
Version: 1.3.0-2
Severity: serious

Seems like you need to update your package because of the
tetex-texlive transition:

 Automatic build of gprolog_1.3.0-2 on em64t by sbuild/amd64 0.53
...
 LaTeX2e 2005/12/01
 Babel v3.8h and hyphenation patterns for english, usenglishmax, dumylang, 
 noh
 yphenation, loaded.
 (./packages.tex (/usr/share/texmf-texlive/tex/latex/base/article.cls
 Document Class: article 2005/09/16 v1.4f Standard LaTeX document class
 (/usr/share/texmf-texlive/tex/latex/base/size10.clo)) (./hevea.sty
 
 ! LaTeX Error: File `comment.sty' not found.
 
 Type X to quit or RETURN to proceed,
 or enter new name. (Default extension: sty)
 
 Enter file name: 
 ! Emergency stop.
 read * 
  
 l.15 \newif
\ifhevea\heveafalse^^M
 !  == Fatal error occurred, no output PDF file produced!
 Transcript written on gprolog.log.
 make[1]: *** [gprolog.pdf] Error 1
 make[1]: Leaving directory `/build/tbm/gprolog-1.3.0/doc'

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#421246: wrong Section: field

2007-04-27 Thread Rene Engelhard
retitle 421246 RM: please remove openoffice.org-help-km from experimental
reassign 421246 ftp.debian.org
thanks

Alexander GQ Gerasiov wrote:
 Package: openoffice.org-help-km
 Version: 2.1~rc2-1
 Severity: normal
 
 --- Please enter the report below this line. ---
 
 I see:
 
  # apt-cache show openoffice.org-help-km
  Package: openoffice.org-help-km
  Priority: optional
  Section: %CONTRIB%doc
 ^^^
 looks like error or typo

Right.

But since openoffice.org-help-km does not exist anymore
(see rmadison or packages.d.o:
$ rmadison openoffice.org-help-km
openoffice.org-help-km | 2.0.4.dfsg.2-5etch1 | etch-m68k | all
openoffice.org-help-km | 2.0.4.dfsg.2-5etch1 |stable | all
openoffice.org-help-km | 2.0.4.dfsg.2-7 |   testing | all
openoffice.org-help-km |  2.1~rc2-1 |  experimental | all
) because the build of it was disabled for other reasons and
the package there is just cruft and should be removed from experimental
I am reassigning this appropriately.

It will be reenabled (with correct Section:) when
http://zyklop.dyndns.org/~rene/km-big.png is fixed
(Yes, that also happens *in* the document, if you have any idea
I'd be grateful - maybe a ttf-khmeros bug?)

  Installed-Size: 39592
  Maintainer: Debian OpenOffice Team
  [EMAIL PROTECTED] Architecture: all
  Source: openoffice.org
  Version: 2.1~rc2-1
  Provides: openoffice.org-help-2.0.4
  Depends: openoffice.org-writer, openoffice.org-l10n-km
  Recommends: openoffice.org-core ( 2.1~rc2) | language-support-km
  Conflicts: openoffice.org-common (= 2.0.0-1), openoffice.org-core
  ( 2.1~rc2) Filename:

It's not installable anyway.

Gr??e/Regards,

Ren?
-- 
 .''`.  Ren? Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  [EMAIL PROTECTED] | GnuPG-Key ID: 248AEB73
   `-   Fingerprint: 41FA F208 28D4 7CA5 19BB  7AD9 F859 90B0 248A EB73



signature.asc
Description: Digital signature


Bug#421214: ldapvi: startup incredibly slow with TLS/SSL

2007-04-27 Thread David Lichteblau
Hi,

Quoting Christoph Scheurer ([EMAIL PROTECTED]):
 For comparison
 ldapsearch -ZZ -Y GSSAPI '(uid=)'
 which, as I understand, does exactly the same as ldapvi until the editor is
 opened, yields a search result immediately and does not use a noticable amount
 of CPU on the exact same client machine.

well, there's a difference between how ldapsearch and ldapvi are built
by Debian.

ldapsearch uses current libldap and OpenSSL.
ldapvi uses an ancient libldap and GnuTLS.  (In Debian only.)

  - Can you try building current ldapvi using upstream sources rather
than the debian package to confirm that the issues are not due to
the Debian-specific build changes?

Upstream ldapvi will use OpenSSL by default.


  - When building on Debian normally, you will still end up linking
ldapvi against the ancient libldap, though.

So if upstream ldapvi using Debian's old libldap does not help,
please try upstream ldapvi using upstream libldap.


Thanks,
David


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



Bug#421248: linux-headers-2.6.20-1-686: does not match linux-image-2.6.20-1-686: nvidia-kernel and vmware driver compilations fail

2007-04-27 Thread Marius Mikucionis
Package: linux-headers-2.6.20-1-686
Version: 2.6.20-3
Severity: important

The headers package is completely useless:

1) nvidia drivers do not work, tried:
build: module-assistant a-i nvidia-kernel
tried installing with modprobe nvidia, but it refuses to load.
dmesg says module refuses to load because the module disagrees on kernel 
structures.

2) vmware-config.pl fails with the following:
Unable to make a vmmon module that can be loaded in the running kernel:
insmod: error inserting '/tmp/vmware-config0/vmmon.o': -1 Unknown symbol in 
module
There is probably a slight difference in the kernel configuration between the
set of C header files you specified and your running kernel.  You may want to
rebuild a kernel based on that directory, or specify another directory.

I checked Google and such problems usually appear when a different version of 
gcc is used
to compile the kernel and the driver. However this is not the case, as:
# cat /proc/version
Linux version 2.6.20-1-686 (Debian 2.6.20-3) ([EMAIL PROTECTED]) (gcc version 
4.1.2 20061115 (prerelease) (Debian 4.1.1-21)) #1 SMP Tue Apr 24 21:52:11 UTC 
2007
# gcc --version
gcc (GCC) 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)

Then I took linux-2.6.20.7 from kernel.org, minimized fieatures in .config and 
compiled it with make-kpkg and everything works with my generated image and 
headers.

So what went wrong with Debian kernel releases?

-- System Information:
Debian Release: lenny/sid
Architecture: i386 (i686)

Kernel: Linux 2.6.20-1-686 (SMP w/1 CPU core)
Locale: LANG=lt_LT.UTF-8, LC_CTYPE=lt_LT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages linux-headers-2.6.20-1-686 depends on:
ii  gcc-4.1   4.1.1-21   The GNU C compiler
ii  linux-headers-2.6.20-12.6.20-3   Common header files for Linux 2.6.
ii  linux-kbuild-2.6.20   2.6.20-1   Kbuild infrastructure for Linux 2.

linux-headers-2.6.20-1-686 recommends no packages.

-- no debconf information


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



Bug#421249: apt-get install libssp0 fails, apt-get -b source libssp0 does not build package

2007-04-27 Thread Ulf Mehlig
Package: libssp0
Version: 4.1.1-21
Severity: serious
Justification: no longer builds from source

*** Please type your report below this line ***
The libssp0 package seems to be broken and does not build from source.

# apt-get install libssp0
Reading package lists... Done
Building dependency tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies.
  libssp0: Depends: gcc-4.1-base (= 4.1.1-21) but 4.1.2-4 is to be
  installed
  E: Broken packages

apt-get -b source libssp0 compiles successfully the following lib* packages
but not libssp0*deb:

# ls -1 lib*deb
lib64ffi4_4.1.2-4_i386.deb 
libffi4_4.1.2-4_i386.deb
libstdc++6_4.1.2-4_i386.deb
lib64gcc1_4.1.2-4_i386.deb 
libffi4-dev_4.1.2-4_i386.deb
libstdc++6-4.1-dbg_4.1.2-4_i386.deb
lib64gfortran1_4.1.2-4_i386.deb
libgcc1_4.1.2-4_i386.deb
libstdc++6-4.1-dev_4.1.2-4_i386.deb
lib64mudflap0_4.1.2-4_i386.deb 
libgfortran1_4.1.2-4_i386.deb
libstdc++6-4.1-doc_4.1.2-4_all.deb
lib64objc1_4.1.2-4_i386.deb
libmudflap0_4.1.2-4_i386.deb
libstdc++6-4.1-pic_4.1.2-4_i386.deb
lib64stdc++6_4.1.2-4_i386.deb  
libmudflap0-dev_4.1.2-4_i386.deb
lib64stdc++6-4.1-dbg_4.1.2-4_i386.deb  
libobjc1_4.1.2-4_i386.deb

If you need additional informations, please let me know.
Ulf

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (900, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.21 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libssp0 depends on:
ii  gcc-4.1-base  4.1.2-4The GNU Compiler Collection (base 
ii  libc6 2.5-4  GNU C Library: Shared libraries

libssp0 recommends no packages.

-- 
Feel free - 10 GB Mailbox, 100 FreeSMS/Monat ...
Jetzt GMX TopMail testen: http://www.gmx.net/de/go/topmail


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



Bug#421135: X does not start on gnumach (2:1.3.99.dfsg.cvs20070405-1)

2007-04-27 Thread Thomas Schwinge
Hello!

On Fri, Apr 27, 2007 at 03:20:49AM +0200, Samuel Thibault wrote:
 YAMAMOTO, Hiroyuki, le Fri 27 Apr 2007 02:24:38 +0900, a ?crit :
  X does not start on gnumach (Version: 2:1.3.99.dfsg.cvs20070405-1),
  though X starts on gnumach (Version: 2:1.3.99.dfsg.cvs20070306-1) on the
  same condition.
  It is guessed that it is a bug perhaps related to the device.
 
  xf86ReadBIOS() can't device_open. ((os/device) no such device)
 
 Erf, yes: Thomas Schwinge dropped the iopl device, which X.org uses for
 getting I/O permissions.  It's just a matter of reverting commit of
 2007-04-02

Livin' of the bleedin' edge...  Sorry.  I didn't know X.org was using
`iopl'.

 until gnumach has i386_io_perm_create/modify implemented and
 Xorg uses them through ioperm().

That's to happen very soon.  :-)


Regards,
 Thomas


signature.asc
Description: Digital signature


Bug#421250: stream not returned in openInputStream

2007-04-27 Thread Jeff Hodges

Package: libxml-parser-ruby1.8
Version: 0.6.8-2

Line 171 in xml/saxdriver.rb should be changed from stream to
return stream.  Otherwise, any InputSource passed #openInputStream
will be returned as nil, causing #parse to fail anytime it receives a
InputSource loaded with data.  This seems to be a fairly serious bug.

Thanks.
--
Jeff


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



Bug#421230: cvs tag silently skips shallow directories when they are followed by slash

2007-04-27 Thread Alexander Gattin
Please, see also the similar bug (#15050)
reported against upstream:
http://savannah.nongnu.org/bugs/index.php?15050


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



  1   2   3   4   >