Bug#781169: Checkinstall fails to add files to dpkg conffiles

2015-03-25 Thread Larsen

Package: checkinstall
Version: 1.6.2-4
Severity: normal
Tags: patch

Dear Maintainer,

checkinstall 1.6.2-4 does not tag conffiles of packages it creates as such.
Therefore, files of a created package in /etc will be deleted when the  
package

is removed.

This has already been reported for Ubuntu:
https://bugs.launchpad.net/ubuntu/+source/checkinstall/+bug/1304760

A patch is attached to fix this problem.


-- System Information:
Debian Release: 7.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages checkinstall depends on:
ii  dpkg-dev  1.16.15
ii  file  5.11-2+deb7u3
ii  libc6 2.13-38+deb7u1

Versions of packages checkinstall recommends:
ii  make  3.81-8.2

Versions of packages checkinstall suggests:
pn  gettext  

-- no debconf information

checkinstall.patch
Description: Binary data


Bug#1039980: puppet-module-puppetlabs-mysql sets password repeatedly on MariaDB 10.3

2023-06-30 Thread Larsen

Package: puppet-module-puppetlabs-mysql
Version: 8.1.0-7

Using this puppet module to create MariaDB users leads to Puppet wanting
to set a user's password again and again as it doesn't fetch the current
password/authentication string correctly: authentication string is always
empty (when the puppet client is running MariaDB 10.3 (Debian Buster,
Ubuntu Focal)).

A fix is available upstream:
https://tickets.puppetlabs.com/browse/MODULES-7487

The pull request fixing the problem:
https://github.com/puppetlabs/puppetlabs-mysql/commit/c7da5289129edc8efdf5471e43bb3f778b54c1ce

I am using Debian Bookworm (Puppetserver).



Bug#1040196: nagios4-common: Systemd service for nagios4 defaults to disabled

2023-07-03 Thread Larsen

Package: nagios4-common
Version: 4.4.6-4

Dear Maintainer,

this package installs a systemd service for nagios4 but doesn't enable it.
While directly after the installation of nagios4 it is running, it is
stopped after restarting the machine.

# systemctl status nagios4.service
? nagios4.service - nagios4
 Loaded: loaded (/lib/systemd/system/nagios4.service; disabled;
preset: enabled)
 Active: inactive (dead)
   Docs: man:nagios4



Bug#1040195: nagios4-cgi: Downloads CGI files when mod_cgi is not enabled in Apache

2023-07-03 Thread Larsen

Package: nagios4-cgi
Version: 4.4.6-4

Dear Maintainer,

I installed nagios4 in a Bookworm VM (where apache2 had not been installed
yet) and noticed that some links from the GUI downloaded the CGI files
instead of displaying their contents. Seems like this is caused by
"mod_cgi" not being enabled in Apache.

To fix this:
a2enmod cgi && apache2ctl -t && systemctl restart apache2

I think this should be done automatically or at least show a warning that
this needs to be done manually.



Bug#1040300: plocate: Transition from mlocate during upgrade to Bookworm introduced breaking changes

2023-07-04 Thread Larsen

Package: plocate
Version: 1.1.18-1

Dear Maintainer,

with the upgrade from Bullseye to Bookworm, mlocate got replaced by
plocate. This introduced a breaking change as there is no OR-mode anymore
on which I rely on in scripts and commands. "apt-listchanges" didn't
mention this when I performed the upgrade.

Instead of using this:
  locate --existing dpkg-dist dpkg-new dpkg-old dpkg-bak ucf-dist ucf-new
ucf-old | egrep -v
"dpkg-distaddfile|dpkg_dateien_vor_update_|/var/backup/burp|/root/upgrade_auf_"

I now have to run this, which (although certainly could be improved) is
pretty cumbersome compared to the one liner before.
  locate --existing dpkg-dist | egrep -v ...
  locate --existing dpkg-new | egrep -v ...
  locate --existing dpkg-old | egrep -v ...
  locate --existing dpkg-bak | egrep -v ...
  locate --existing ucf-dist | egrep -v ...
  locate --existing ucf-new | egrep -v ...
  locate --existing ucf-old  | egrep -v ...

Another user reported this problem in November 2021:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=999487

There should be at least a parameter to restore the mlocate behaviour.
Same applies to the "--existing" parameter which introduced a breaking
change.



Bug#1040300: plocate: Transition from mlocate during upgrade to Bookworm introduced breaking changes

2023-07-05 Thread Larsen

It is correct that there is no OR-mode, nor is any planned (it is a major
pain to implement performantly and correctly, and fairly niche).


Why not run plocate with every parameter internally?

For example:
  plocate --use-OR file1 file2 file3

Would take all the arguments and internally run...
  plocate file1
  plocate file2
  plocate file3

...and then output the results for all files at once, leading to the same
behaviour as mlocate while being much faster. And even if it wasn't faster
as mlocate in this case, who cares?


Larsen



Bug#1040300: plocate: Transition from mlocate during upgrade to Bookworm introduced breaking changes

2023-07-05 Thread Larsen

Because you would have to worry about deduplication of the results,
which is nontrivial to do without incurring unbounded memory costs
and/or messing up the expected ordering of the output. In short,
it's not worth it.


Well, I'd expect no distinct ordering so the internal result could be
piped to "sort --unique" to get rid of duplicates (I guess).
If this (ordering) was documented, I assume that many users would still
prefer running plocate instead of mlocate due to plocate's speed.



Bug#1055167: Network interface lost IP when lease expired after switching from isc-dhcp-client

2023-11-01 Thread Larsen

Package: udhcpc
Version: 1:1.35.0-4+b3

After switching from isc-dhcp-client to udhcpc (apt purge isc-dhcp-client
udhcpc+), when the DHCP lease expired, the network interface didn't get a
new IP, pushing the server offline (luckily I had a remote console to fix
the problem). The package was installed via Puppet and I didn't notice
that this doesn't run needrestart (or at least doesn't restart services
with our configuration). I now use the workaround to "needrestart -r a"
after installing the package with Puppet.

IMHO needrestart shouldn't be needed, but instead the package should take
care of such a situation.


Lars



Bug#1055167: Re: Bug#1055167: Network interface lost IP when lease expired after switching from isc-dhcp-client

2023-11-06 Thread Larsen

On Wed, 01 Nov 2023 22:46:56 +0100, Geert Stappers 
wrote:


Please add logging of the install ( "apt" )  stop of isc-dhcp-client (
either journalctl or /var/log/ ) and start of udhcpc ( journalctl or log



Afaik, isc-dhcp-client and udhcpc are no services, so they cannot be
started/stopped. Also, I didn't find anything useful in /var/log (grepped
the whole directory).
This is all I get (disabled automatic run of needrestart by apt for this
test):


# apt purge isc-dhcp-client udhcpc+
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages will be REMOVED:
  isc-dhcp-client*
The following NEW packages will be installed:
  udhcpc
0 upgraded, 1 newly installed, 1 to remove and 0 not upgraded.
Need to get 6,284 B of archives.
After this operation, 2,903 kB disk space will be freed.
Do you want to continue? [Y/n] y
Get:1 https://ftp-stud.hs-esslingen.de/debian bookworm/main amd64 udhcpc
amd64 1:1.35.0-4+b3 [6,284 B]
Fetched 6,284 B in 0s (23.7 kB/s)
(Reading database ... 140514 files and directories currently installed.)
Removing isc-dhcp-client (4.4.3-P1-2) ...
Selecting previously unselected package udhcpc:amd64.
(Reading database ... 140500 files and directories currently installed.)
Preparing to unpack .../udhcpc_1%3a1.35.0-4+b3_amd64.deb ...
Unpacking udhcpc:amd64 (1:1.35.0-4+b3) ...
Setting up udhcpc:amd64 (1:1.35.0-4+b3) ...
Processing triggers for man-db (2.11.2-2) ...
(Reading database ... 140507 files and directories currently installed.)
Purging configuration files for isc-dhcp-client (4.4.3-P1-2) ...


# needrestart -r l
Scanning processes...
Scanning candidates...

Services to be restarted:
 systemctl restart ifup@eth0.service

No containers need to be restarted.

No user sessions are running outdated binaries.

No VM guests are running outdated hypervisor (qemu) binaries on this host.


Best regards,
Lars



Bug#302844: tuxkart depends on obsolete plib1.8.3

2005-04-03 Thread Heine Larsen
Package: tuxkart
Version: 0.4.0-3
Tags: patch

tuxkart depends and build-depends on plib1.8.3 which has been replaced
by plib1.8.4 in debian/sid

Changing Build-depends to use plib1.8.4-dev seems to make tuxkart build
without problems and the resulting package works fine.

Fixing this will probably also help plib 1.8.4 migrate to testing/sarge.

Regards,
Heine Larsen

Patch for debian/control:

--- ../control  2005-04-03 10:53:30.0 +0200
+++ debian/control  2005-04-03 10:56:46.0 +0200
@@ -2,7 +2,7 @@
 Section: games
 Priority: extra
 Maintainer: Johannes Hirche <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>> 4.1.1), plib1.8.3-dev (>= 1.8.3-1),
libxt-dev, libxi-dev, libxmu-dev
+Build-Depends: debhelper (>> 4.1.1), plib1.8.4-dev, libxt-dev,
libxi-dev, libxmu-dev
 Standards-Version: 3.6.1

 Package: tuxkart


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



Bug#302867: font aliases for dos codepage fonts mapped to wrong fontnames

2005-04-03 Thread Heine Larsen
Package: xfonts-terminus-dos
Version: 4.12-1
Tags: patch

In /etc/X11/fonts/misc/xfonts-terminus-dos.alias fonts for DOS codepage
fonts are mapped to wrong names and nonexistant fonts.

The alias-names does not match the names suggested in
/usr/share/doc/xfonts-terminus-dos/README.Debian for use with dosemu.
The alias names suggested here is "terminus-dos-CODEPAGE-SIZE" and
"terminus-dos-CODEPAGE-bold-SIZE", wher CODEPAGE may be cp437, cp850, etc.

As an example, the mapping:

terminus-dos-ibm850-12
-xos4-terminus-medium-r-normal--12-120-72-72-c-60-ibm850

should have been mapped as

terminus-dos-cp850-12
-xos4-terminus-medium-r-normal--12-120-72-72-c-60-ibm-cp850


Suggested patch for debian/rules, fixing generation of the aliases is
included below:


Regards,

Heine Larsen


--- debian/rules.orig   2005-04-03 15:33:19.0 +0200
+++ debian/rules2005-04-03 15:34:46.0 +0200
@@ -15,7 +15,7 @@
iso-8859-9 iso-8859-13 iso-8859-15 iso-8859-16 \
unicode

-DOS_ENCODINGS=ibm437 ibm850 ibm852 ibm855 ibm860 ibm863 ibm865 ibm866 \
+DOS_ENCODINGS=cp437 cp850 cp852 cp855 cp860 cp863 cp865 cp866 \
 mik ruscii

 CONSOLE_ENCODINGS=1 2 9 c d g p v



--- debian/rules.orig	2005-04-03 15:33:19.0 +0200
+++ debian/rules	2005-04-03 15:34:46.0 +0200
@@ -15,7 +15,7 @@
 		iso-8859-9 iso-8859-13 iso-8859-15 iso-8859-16 \
 		unicode
 
-DOS_ENCODINGS=ibm437 ibm850 ibm852 ibm855 ibm860 ibm863 ibm865 ibm866 \
+DOS_ENCODINGS=cp437 cp850 cp852 cp855 cp860 cp863 cp865 cp866 \
 		 mik ruscii
 
 CONSOLE_ENCODINGS=1 2 9 c d g p v


Bug#302867: better patch

2005-04-03 Thread Heine Larsen
The previous submitted patch for the DOS codepage font aliases did not
work because "trbdf" needed the original names.
It just seemed so obvious...

Instead, adding a substitution rule in debian/generate_aliases seems to
work fine with package building.

Regards,
Heine Larsen

New patch:

--- debian/generate_aliases.orig2005-04-03 16:56:39.0 +0200
+++ debian/generate_aliases 2005-04-03 16:41:11.0 +0200
@@ -48,6 +48,8 @@
 case "$enc" in
iso-*)
enc=iso${enc#iso-};;
+ibm*)
+   enc=cp${enc#ibm};;
 esac
 template |
 while read size x; do

--- debian/generate_aliases.orig	2005-04-03 16:56:39.0 +0200
+++ debian/generate_aliases	2005-04-03 16:41:11.0 +0200
@@ -48,6 +48,8 @@
 case "$enc" in
 	iso-*)
 	enc=iso${enc#iso-};;
+ibm*)
+	enc=cp${enc#ibm};;
 esac
 template | 
 while read size x; do


Bug#24900: Profile Match

2005-10-19 Thread Kathy Larsen
Client Update - 4 New Matches:

Hey there, just wanted you to know I have matched your profile with 4 girls 
within a few miles of your City who are seriously interested in hooking up with 
you, yes I've done my homework ;-) now its time for you to bring your A game.  
I'm sure they will probably want to chat with you a little first but thats 
normal, plus i think most of them have a cam so you can check them out first.

http://poppedpeanuts.com/extra/linda/

Good Luck and Play Safe
-Linda Sheridan 

Disclaimer-
Please be advised that this is NOT your typical service, privacy is of the 
upmost 
concern and your satisfaction & discretion is top priority.
please accept our apology and see the link below if this reached you in 
error:
http://poppedpeanuts.com/extra/linda/getmeoff.php/






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



Bug#122932: everyone need it Florence

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

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

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

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

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












chalkboard ab addition kbt come zo bolshevist gl derogatory pq wanton nz 
springtail kpr carrot rde 
karma uia drosophila ei candidate yyh bay ka commingle zam hither hck atomic ls 
comanche vcj 
http://www.fossilized.net/rm.php?got


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



Bug#207874: =?koi8-r?b?PT9LT0k4LVI/UT89RTU9QzI9QzE9Q0MgPUQxID1ENz1DMT1EQj1DOSA9Qzk9Q0Q9QzU9Q0U9Qzk9

2006-11-01 Thread Orville Larsen
Q0U9RDksPz0=?=
Date: Wed, 1 Nov 2006 12:20:40 -0330
MIME-Version: 1.0
Content-Type: text/plain;
format=flowed;
charset="koi8-r";
reply-type=original
Content-Transfer-Encoding: 8bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 4.72.3338.1
X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3338.1

ñ ÔÅÂÅ Ú×ÏÎÉÌ ×ÞÅÒÁ

ïÈ, ÄÅ×áÞËÉ... õ ÎÅÇÏ ÑÊÃÁ - ÏÔ æÁÂÅÒÖÅ!

é ÛÅÐÞÅÔ, ×ÓÑ ÄÒÏÖÁ ÏÔ ÓÔÒÁÈÁ,
åÅ ÅÂ × ÓÕÔËÉ ÄÅÓÑÔØ ÒÁÚ.
÷ ÇÏÓÔÉÎÏÊ Ó ÎÅÔÅÒÐÅÎØÅÍ ÖÄÅÔ,
é ×ÏÔ ÚÁ ÜÔÏÊ, ×ÓÅÍÕ Ó×ÅÔÕ
ïÎÁ × ÇÌÁÚÁ ÅÍÕ ×ÚÇÌÑÎÕÌÁ
é ÐÏÄ ÅÅ ÐÒÉËÏÓÎÏ×ÅÎØÅÍ
é ÐÏÐÒÏÓÉÌÁ ÂÅÚ ÏÔÔÑÖËÉ
íÎÅ ÎÕÖÅÎ ÍÕÖ Ó ÔÁËÏÊ ÅÌÄÏÀ,
ìÕËÁ ×ÏÓÐÒÑÎÕÌ ÌØ×ÏÍ Ó×ÉÒÅÐÙÍ,
óËÏÒÅÊ ÂÙ ÅÂÌÀ ÎÁÞÉÎÁÔØ.
îÏ ÎÕÖÎÏ ÍÎÅ ÉÌØ ÔÁË ÉÌØ ÓÑË
ïÎÁ Ë ÔÁËÏÍÕ ÚÁËÌÀÞÅÎØÀ
é ÓÌÕÛÁÑ ÖÅÎÙ ÎÁËÁÚ
é ÔÕ ÐÉÚÄÏÀ ÎÁÚ×ÁÌÁ.
ëÕÐÞÉÈÁ ×ÚÄÕÍÁÌÁ ËÒÉÞÁÔØ
÷ÅÌÉÞÉÎÙ ÎÅÉÍÏ×ÅÒÎÏÊ
õÚÒÅ× ÔÁËÕÀ ÂÌÁÇÏÄÁÔØ
îÅ ×ÉÄÑ ÔÏÌËÕ ÕÖ ÎÉ × ËÏÍ,
ëÏÍÏÒËÅ, ×ÏÚÌÅ ËÁÂÁËÁ,
÷ÓÅÍ ÔÅÌÏÍ ÎÁ ÎÅÅ ÎÁÌÅÇ,
á ×ÒÅÍÑ ÍÅÄÌÅÎÎÏ ÉÄÅÔ.
é ×ÓÅÍ É ËÁÖÄÏÍÕ ÄÁ×ÁÔØ.
ïÂÙËÎÏ×ÅÎÎÁÑ ÅÌÄÁ.



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



Bug#90341: hey sis!

2007-02-16 Thread Gay Larsen
[EMAIL PROTECTED]

What's Up

I need a De!gree in: 
!Accounting
!Business
!Criminal! justice
!Educ!ation
!Health
!Technology

There are no requ!ired tests, classes, books, or interviews!

Call! this number: 206-333-1249 (24d hours)

 Best Regards
 
 Kelvin Villalobos
 
 amputee cultivable albrecht bereft game horsefly chummy qualify ogle jogging 
cleat delete maternal kinematic pineapple tulane bass whatnot egypt 


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



Bug#345621: notified

2007-04-20 Thread Landus LARSEN

His sling was in his bands, already beginning to whirl.

AN ALLE FINANZINVESTOREN!
DIESE AKTIE WIRD DURCHSTARTEN!
FREITAG 20. APRIL STARTET DIE HAUSSE!
REALISIERTER KURSGEWINN VON 400%+ IN 5 TAGEN!

Symbol: G7Q.F
Company: COUNTY LINE ENERGY
5 Tages Kursziel: 0.95
Schlusskurs: 0.21
WKN:  A0J3B0
ISIN: US2224791077
Markt: Frankfurt

LASSEN SIE SICH DIESE CHANCE NICHT ENTGEHEN!
G7Q WIRD WIE EINE RAKETE DURCHSTARTEN!
UNSERE ERWARTUNGEN WIRD G7Q.F UBERTREFFEN!

If True, then the path starts playback from the target's current position.



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



Bug#242347: thank LGA Jph lulzBypass

2007-04-03 Thread Pitter LARSEN
because worried bunch boys felt degrees men
http://img444.imageshack.us/img444/6223/u1ym8.gif
portView PMdisciple Somethings dude



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



Bug#362669: patch for doc-base registration

2006-09-17 Thread Heine Larsen

tags 278495 patch
thanks

Hi

The attached patch fixes the path to documentation in doc-base registration.

Heine Larsen
diff -r -u saods9-4.0b7.old/debian/saods9.doc-base.ds9doc 
saods9-4.0b7/debian/saods9.doc-base.ds9doc
--- saods9-4.0b7.old/debian/saods9.doc-base.ds9doc  2006-09-17 
10:52:24.0 +0200
+++ saods9-4.0b7/debian/saods9.doc-base.ds9doc  2006-09-17 10:58:56.0 
+0200
@@ -25,4 +25,4 @@
 
 Format: HTML
 Index: /usr/share/doc/saods9/ds9doc/index.html
-Files: /usr/share/doc/saods9/html/*.html
+Files: /usr/share/doc/saods9/ds9doc/*.html


Bug#604862: Please update to ptpd-2.1.0

2010-11-24 Thread Jesper Larsen
Package: ptpd
Version: 2~rc1-debian1-1
Severity: wishlist

The final version 2.1.0 has been released.

http://sourceforge.net/projects/ptpd/files/ptpd/2.1.0/ptpd-2.1.0.tar.gz/download



-- System Information:
Debian Release: squeeze/sid
  APT prefers natty-updates
  APT policy: (500, 'natty-updates'), (500, 'natty-security'), (500, 'natty')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.37-6-generic (SMP w/4 CPU cores)
Locale: LANG=en_DK.utf8, LC_CTYPE=en_DK.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#337340: do not keep viiaqra professiionnal in secret

2012-07-18 Thread Betsy Larsen
follow our advice. bfuyg VjaqrRa sSupEer Acctivve
 http://shrikant.martindinfotech.com/wp-contentclassified/us.php?Betsy Larsen
Best wishes, Betsy Larsen


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#557888: asterisk: Still not solved

2010-03-31 Thread Jonas Larsen
Package: asterisk
Version: 1:1.6.2.2-1
Severity: normal

Hi all

I just wanted to hear if there where any updates on this bug?

Its still there precisely as described by the original poster/reporter.

If you use a sip trunk/channels instaid of iax it works fine.

For gsm files i get a short 1-.2 second part of it before it cuts off and hangs 
(not moving forward in the dialplan)

While for ulaw files i dont get any sound at all, it just hangs.

Really hope somebody will find a solution, or maybe a tip to what package u can 
downgrade to or whatever to fix the issue.

Best regards

Jonas Larsen
jo...@techbiz.dk

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

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

Versions of packages asterisk depends on:
ii  adduser3.112 add and remove users and groups
ii  asterisk-config1:1.6.2.2-1   Configuration files for Asterisk
ii  asterisk-sounds-main   1:1.6.2.2-1   Core Sound files for Asterisk (Eng
ii  dahdi  1:2.2.1-1 utilities for using the DAHDI kern
ii  libasound2 1.0.22-2  shared library for ALSA applicatio
ii  libc-client2007e   8:2007e~dfsg-3.1  c-client library for mail protocol
ii  libc6  2.10.2-6  Embedded GNU C Library: Shared lib
ii  libcap21:2.17-2  support for getting/setting POSIX.
ii  libcurl3   7.20.0-1  Multi-protocol file transfer libra
ii  libgcc11:4.4.2-9 GCC support library
ii  libglib2.0-0   2.22.4-1  The GLib library of C routines
ii  libgmime-2.0-2a2.2.22-5  MIME library
ii  libgsm11.0.13-3  Shared libraries for GSM speech co
ii  libiksemel31.2-4 C library for the Jabber IM platfo
ii  libldap-2.4-2  2.4.17-2.1OpenLDAP libraries
ii  liblua5.1-05.1.4-5   Simple, extensible, embeddable pro
ii  libncurses55.7+20100313-1shared libraries for terminal hand
ii  libnewt0.520.52.10-8 Not Erik's Windowing Toolkit - tex
ii  libogg01.1.4~dfsg-2  Ogg bitstream library
ii  libopenais31.1.2-1   Standards-based cluster framework 
ii  libpopt0   1.15-1lib for parsing cmdline parameters
ii  libpq5 8.4.2-2+b1PostgreSQL C client library
ii  libpri1.4  1.4.10.2-1Primary Rate ISDN specification li
ii  libradiusclient-ng20.5.6-1   Enhanced RADIUS client library
ii  libsdl1.2debian1.2.13-5  Simple DirectMedia Layer
ii  libsnmp15  5.4.2.1~dfsg-5+b1 SNMP (Simple Network Management Pr
ii  libspandsp20.0.6~pre12-1 Telephony signal processing librar
ii  libspeex1  1.2~rc1-1 The Speex codec runtime library
ii  libspeexdsp1   1.2~rc1-1 The Speex extended runtime library
ii  libsqlite0 2.8.17-6  SQLite shared library
ii  libss7-1   1.0.2-1   Signalling System 7 (ss7) library
ii  libssl0.9.80.9.8m-2  SSL shared libraries
ii  libstdc++6 4.4.2-9   The GNU Standard C++ Library v3
ii  libsybdb5  0.82-6libraries for connecting to MS SQL
ii  libtiff4   3.9.2-3+b1Tag Image File Format (TIFF) libra
ii  libtonezone2.0 1:2.2.1-1 tonezone library (runtime)
ii  libvorbis0a1.2.3-3   The Vorbis General Audio Compressi
ii  libvorbisenc2  1.2.3-3   The Vorbis General Audio Compressi
ii  libvpb04.2.46-1  Voicetronix telephony hardware use
ii  libx11-6   2:1.3.3-2 X11 client-side library
ii  libxml22.7.6.dfsg-2+b1   GNOME XML library
ii  unixodbc   2.2.11-21 ODBC tools libraries
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages asterisk recommends:
ii  sox14.3.0-1.1+b1 Swiss army knife of sound processi

Versions of packages asterisk suggests:
pn  asterisk-dev   (no description available)
pn  asterisk-doc   (no description available)
pn  asterisk-h323  (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#539154: mdadm: I also have this anoying problem

2010-04-07 Thread Jonas Larsen
Package: mdadm
Version: 2.6.7.2-3
Followup-For: Bug #539154

Hello, just wanted to report in i have the exact same issue as the others 
report. I dont know how to reproduce it, but something is definately wrong.

I can give access to the problematic system if that helps.

I will try to recreate the raid for now, and see what happens.

I have 2 raids spread over 2 disks, md0 is a mirror and md1 is a stripe. There 
is only a problem with the stripe the mirror works fine.

1.sctstor1:~# cat /proc/mdstat
2.Personalities : [raid0] [raid1]
3.md1 : inactive sda3[0]
4.  953321088 blocks
5. 
6.md0 : active raid1 sda2[0] sdb2[1]
7.  19534976 blocks [2/2] [UU]
8. 
9.unused devices: 
10.sctstor1:~#
11. 
12.sctstor1:~# mdadm --detail /dev/md0
13./dev/md0:
14.Version : 00.90
15.  Creation Time : Wed Oct 22 18:23:13 2008
16. Raid Level : raid1
17. Array Size : 19534976 (18.63 GiB 20.00 GB)
18.  Used Dev Size : 19534976 (18.63 GiB 20.00 GB)
19.   Raid Devices : 2
20.  Total Devices : 2
21.Preferred Minor : 0
22.Persistence : Superblock is persistent
23. 
24.Update Time : Wed Apr  7 11:01:56 2010
25.  State : clean
26. Active Devices : 2
27.Working Devices : 2
28. Failed Devices : 0
29.  Spare Devices : 0
30. 
31.   UUID : 95a5ff03:bd764a9e:a9976caa:db041006
32. Events : 0.52
33. 
34.Number   Major   Minor   RaidDevice State
35.   0   820  active sync   /dev/sda2
36.   1   8   181  active sync   /dev/sdb2
37.sctstor1:~#
38. 
39. 
40.sctstor1:~# mdadm --detail /dev/md1
41./dev/md1:
42.Version : 00.90
43.  Creation Time : Wed Oct 22 18:23:20 2008
44. Raid Level : raid0
45.   Raid Devices : 2
46.  Total Devices : 1
47.Preferred Minor : 1
48.Persistence : Superblock is persistent
49. 
50.Update Time : Thu Oct 23 12:23:17 2008
51.  State : active, degraded, Not Started
52. Active Devices : 1
53.Working Devices : 1
54. Failed Devices : 0
55.  Spare Devices : 0
56. 
57. Chunk Size : 64K
58. 
59.   UUID : e7f57d54:40a6e253:6ed89fb8:4b0f4710
60. Events : 0.5
61. 
62.Number   Major   Minor   RaidDevice State
63.   0   830  active sync   /dev/sda3
64.   1   001  removed
65.sctstor1:~#
66. 
67. 
68.Md1 is the problem...

Best regards

Jonas Larsen


-- Package-specific info:
--- mount output
/dev/md0 on / type ext3 (rw,errors=remount-ro)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
procbususb on /proc/bus/usb type usbfs (rw)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)

--- mdadm.conf
# mdadm.conf
#
# Please refer to mdadm.conf(5) for information about this file.
#

# by default, scan all partitions (/proc/partitions) for MD superblocks.
# alternatively, specify devices to scan, using wildcards if desired.
DEVICE partitions

# auto-create devices with Debian standard permissions
CREATE owner=root group=disk mode=0660 auto=yes

# automatically tag new arrays as belonging to the local system
HOMEHOST 

# instruct the monitoring daemon where to send mail alerts
MAILADDR jo...@techbiz.dk

# definitions of existing MD arrays
ARRAY /dev/md0 level=raid1 num-devices=2 
UUID=95a5ff03:bd764a9e:a9976caa:db041006
ARRAY /dev/md1 level=raid0 num-devices=2 
UUID=e7f57d54:40a6e253:6ed89fb8:4b0f4710
# This file was auto-generated on Thu, 23 Oct 2008 11:25:53 +0200
# by mkconf $Id: mkconf 261 2006-11-09 13:32:35Z madduck $

--- /proc/mdstat:
Personalities : [raid0] [raid1] 
md1 : inactive sda3[0]
  953321088 blocks
   
md0 : active raid1 sda2[0] sdb2[1]
  19534976 blocks [2/2] [UU]
  
unused devices: 

--- /proc/partitions:
major minor  #blocks  name

   8 0  976762584 sda
   8 13903763 sda1
   8 2   19535040 sda2
   8 3  953321197 sda3
   816  976762584 sdb
   8173903763 sdb1
   818   19535040 sdb2
   819  953321197 sdb3
   9 0   19534976 md0

--- initrd.img-2.6.26-2-amd64:
40008 blocks
1efb5bd43f03be88b0df2bb24cb3a130  ./etc/mdadm/mdadm.conf
1e3828eef5ebb2b42ba71d08fc4247d4  ./sbin/mdadm
e1e2d0e985196fecaf41fb42e9968af2  ./scripts/local-top/mdadm
d5d378303683d299c37a272f4671099a  
./lib/modules/2.6.26-2-amd64/kernel/drivers/md/raid1.ko
2aeefb193df2e780d43ebb473fe82bfd  
./lib/modules/2.6.26-2-amd64/kernel/drivers/md/md-mod.ko
91fa548cb2b1a13f91c86fac6d3f4dd8  
./lib/modules/2.6.26-2-amd64/kernel/drivers/md/linear.ko
0f5467d8be38cea150d91d1ea504960b  
./lib/modules/2.6.26-2-amd64/kernel/drivers/md/raid10.ko
f35a0e830a2c624357a970cde39d1e56  
./lib/modules/2.6.26-2-amd64/kernel/drivers/md/multipath.ko
ef242a955b231df6193bb0c4ccf77295  
./lib/modules/2.6.26-2-amd64/kernel/drivers/md/raid456.ko
0a9de817dd96aff9d0002d6fdb128873  
./lib/modules/2.6.26-2-amd64/kernel

Bug#134919: Does it satisfy her?

2008-02-05 Thread Malcolm Larsen


Don't settle for less

Pls Go  ' www.barataslo '  dot com





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



Bug#42158: Download USA TOP 100 Albums

2007-10-17 Thread Van Larsen

Check out USA TOP 100 Music Albums now!

Daily updates! Freshest releases! Hottest singles! Live and concerts!
Editorial choices and music industry awards!

Every genre, every famous artist, every breaking single!

All this can be downloaded from http://www.usa-bestsellers.com/

Download all this music in few clicks now!




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



Bug#548608: openoffice.org-l10n-da: danish function names like KVROD() broken i formulas in oocalc

2009-09-27 Thread Heine Larsen
Package: openoffice.org-l10n-da
Version: 1:3.1.1-2
Severity: normal
Tags: l10n

Using the squareroot function in oocalc is not possible when 
openoffice.org-l10n-da is
installed and selected with a danish locale.

Making a ods spreadsheet with just the formula "=SQRT(2)" with LANG=en_US works 
fine.
Opening the spreadsheet again with LANG=da_DK or LANG=da_DK.UTF-8 displays the 
cell result
value "1,41" as expected, but the formula is shown as "=KVROD (SQRT på 
engelsk)(2)".

It is not possible to type a new formula using this function name. Neither 
"SQRT", "KVROD" or
"KVROD (SQRT på engelsk)" is accepted as a function name.
It seems that a helpful comment has been put in an unfortunate place in the 
translation
of some function names.

Several other function names have a similar problem, examples include:
The formula: "=RAND()" is translated to "=SLUMP (RAND på engelsk)()"
The formula: "=MOD(7,3)" is translated to "=REST (MOD på engelsk)(7;3)"


Heine Larsen

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

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

Versions of packages openoffice.org-l10n-da depends on:
ii  locales   2.9-26 GNU C Library: National Language (

Versions of packages openoffice.org-l10n-da recommends:
ii  openoffice.org-core   1:3.1.1-2  full-featured office productivity 

Versions of packages openoffice.org-l10n-da suggests:
ii  hunspell-da [hunspell-diction 1:3.1.0-3  Danish dictionary for hunspell
pn  openoffice.org-help-da (no description available)
pn  openoffice.org-hyphenation-da  (no description available)
pn  openoffice.org2-thesaurus-da   (no description available)

-- no debconf information



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#476882: stellarium: black screen after startup

2008-04-20 Thread Heine Larsen

I can confirm the black screen after startup of stellarium.

I use locale "da_DK.UTF-8", but if it is set to "C", then stellarium runs fine:

LANG=C stellarium

Even just setting LC_NUMERIC helps:

LC_NUMERIC=C stellarium

This could be a problem with reading non-localized numeric datafiles with an 
active locale set.

The application handles some aspects of locale setting in
src/stelutils/Translator.cpp and the attached patch adds a call to set
the locale for number formatting to "C".

--- stellarium-0.9.1.orig/src/stelutils/Translator.cpp
+++ stellarium-0.9.1/src/stelutils/Translator.cpp
@@ -140,6 +140,7 @@
 #else
 	setlocale(LC_CTYPE,"");
 #endif
+	setlocale(LC_NUMERIC, "C");
 	assert(domain=="stellarium");
 	QString result = bind_textdomain_codeset(domain.toUtf8().constData(), "UTF-8");
 	assert(result=="UTF-8");


Bug#565187: (no subject)

2011-03-28 Thread larsen...@web.de
I just came across that deprecated message, too. Besides this bug report,  
Google found 940.000 results (2.770 when put in parentheses), so I guess  
some bytes of text leading the user to a solution (or simply stating what  
to use instead) would make life easier for a lot of people and  
additionally reduce the amount of support requests.



Lars



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#590857: fig export has wrong threshold for linewidth mapping

2010-07-29 Thread Heine Larsen

Package: dia
Version: 0.97.1-6

When exporting to fig format, small linewidths from 2-10 (in XFig 1/80 inch 
units) can not be generated and all gets mapped to width 1.


This is handled in plug-ins/xfig/xfig-export.c by the following:
...
   if (renderer->linewidth <= 0.3175) width = 1;
   else width = (int)((renderer->linewidth / 2.54) * 80.0);
...

Inserting the threshold-value in the scaling expression gives:
  0.3175/2.54*80 = 10

Changing the threshold to 0.03175 makes it possible to generate fig-files with
linewidths between 1 and 10.
See attached patch.

lines.dia shows some lines of different widths and lines.fig shows the result
of exporting to fig after applying the patch to dia.

--
Heine Larsen

--- dia-0.97.1.orig/plug-ins/xfig/xfig-export.c
+++ dia-0.97.1/plug-ins/xfig/xfig-export.c
@@ -295,7 +295,7 @@ figLineWidth(XfigRenderer *renderer)
 {
   int width = 0;
   /* Minimal line width in fig diagrams. */
-  if (renderer->linewidth <= 0.3175) width = 1;
+  if (renderer->linewidth <= 0.03175) width = 1;
   else width = (int)((renderer->linewidth / 2.54) * 80.0);
   return width;
 }


lines.dia
Description: application/dia-diagram


lines.fig
Description: application/xfig


Bug#581550: package overlap with torque-mom

2010-05-13 Thread Heine Larsen

Package: torque-client-x11
Version: 2.4.8+dfsg-3

Installing torque-client-x11 on a system with torque-mom installed fails with:


Unpacking torque-client-x11 (from .../torque-client-x11_2.4.8+dfsg-3_i386.deb) 
...
dpkg: error processing 
/var/cache/apt/archives/torque-client-x11_2.4.8+dfsg-3_i386.deb (--unpack):
 trying to overwrite '/usr/sbin/momctl', which is also in package torque-mom 
2.4.8+dfsg-3

Errors were encountered while processing:
 /var/cache/apt/archives/torque-client-x11_2.4.8+dfsg-3_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


I think momctl should only be provided in the torque-mom package.

Thanks for finally getting Torque in to Debian.

Heine Larsen



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#606987: Use of uninitialized value in concatenation (.) or string at /usr/lib/cgi-bin/mrtg-rrd.cgi line 783., referer: http://localhost/cgi-bin/mrtg-rrd.cgi/

2010-12-13 Thread larsen...@web.de

Package: mrtg-rrd
Version: 0.7-1

When I set "PageTop[$]: " in "/etc/mrtg.cfg" I get the following  
error in "/var/log/apache2/error.log":


   Use of uninitialized value in concatenation (.)
   or string at /usr/lib/cgi-bin/mrtg-rrd.cgi line 783.,
   referer: http://localhost/cgi-bin/mrtg-rrd.cgi/

I am using Debian Lenny, kernel 2.6.26-2-686.


Lars



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#592482: Please include nvidia-smi

2010-08-10 Thread Heine Larsen

Package: nvidia-graphics-drivers
Version: 195.36.24-4
Severity: wishlist

The nvidia-graphics-driver package contains a system management interface program, 
nvidia-smi, to do some device management and monitoring of nvidia devices.


It can read temperature sensors on the GPU and configure compute mode for
CUDA applications. This is important for systems with several GPUs if you
want applications to have exclusive access to a GPU.

The nvidia-smi program has a strong dependency on the corresponding 
nvidia-driver version,
so it would be convenient to have it packaged along with the drivers, maybe in 
a separate
package. The relevant files in the "source" are:

NVIDIA-Linux-x86-195.36.24-pkg0/usr/bin/nvidia-smi
NVIDIA-Linux-x86-195.36.24-pkg0/usr/share/man/man1/nvidia-smi.1.gz
NVIDIA-Linux-x86_64-195.36.24-pkg2/usr/bin/nvidia-smi
NVIDIA-Linux-x86_64-195.36.24-pkg2/usr/share/man/man1/nvidia-smi.1.gz


Heine Larsen



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#286939: Feel her all over

2008-03-24 Thread reena LARSEN

Blow your lady's mind with your newly acquired girth and length

http://www.Jumpherhard.com/
Pleasure and titillate her



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



Bug#823890: python-openbabel: doc-base error: openbabel and pybel already define html format

2018-07-28 Thread Heine Larsen
Tags:patch

The two doc-base files for python-openbabel use the same document-id and format 
for two different documents.
As in understand, only different formats of the same document should share 
document-id in doc-base registrations .
Using different document-ids in the "Document:" field solves the conflict.

Heine Larsen

diff -u orig/openbabel-2.4.1+dfsg/debian/python-openbabel.doc-base.openbabel 
openbabel-2.4.1+dfsg/debian/python-openbabel.doc-base.openbabel
--- orig/openbabel-2.4.1+dfsg/debian/python-openbabel.doc-base.openbabel
2018-06-23 14:13:54.0 +0200
+++ openbabel-2.4.1+dfsg/debian/python-openbabel.doc-base.openbabel 2018-07-28 
14:38:12.055348368 +0200
@@ -1,4 +1,4 @@
-Document: python-openbabel
+Document: python-openbabel-openbabel
 Title: pybel Python module for accessing OpenBabel
 Author: The Open Babel Authors 
 Abstract: pybel - A Python module for accessing OpenBabel
diff -u orig/openbabel-2.4.1+dfsg/debian/python-openbabel.doc-base.pybel 
openbabel-2.4.1+dfsg/debian/python-openbabel.doc-base.pybel
--- orig/openbabel-2.4.1+dfsg/debian/python-openbabel.doc-base.pybel   
2018-06-23 14:13:54.0 +0200
+++ openbabel-2.4.1+dfsg/debian/python-openbabel.doc-base.pybel 2018-07-28 
14:38:21.959329275 +0200
@@ -1,4 +1,4 @@
-Document: python-openbabel
+Document: python-openbabel-pybel
 Title: pybel Python module for accessing OpenBabel
 Author: The Open Babel Authors 
 Abstract: pybel - A Python module for accessing OpenBabel



Bug#1043337: bornagain executable can't find _libBornAgainGUI.so

2023-08-09 Thread Heine Larsen

Package: bornagain
Version: 20.2+ds3-2

When trying to launch bornagain it fails with the message

(sid)xxx@nsm-i343:~# bornagain
bornagain: error while loading shared libraries: _libBornAgainGUI.so: 
cannot open shared object file: No such file or directory


The shared library is in the bornagain package:
(sid)xxx@nsm-i343:~# dpkg -L bornagain | grep lib
/usr/lib
/usr/lib/x86_64-linux-gnu
/usr/lib/x86_64-linux-gnu/bornagain
/usr/lib/x86_64-linux-gnu/bornagain/_libBornAgainGUI.so


Checking with ldd confirms the problem:
(sid)xxx@nsm-i343:~# ldd /usr/bin/bornagain | head -n 10
linux-vdso.so.1 (0x7ffc6b9f6000)
_libBornAgainGUI.so => not found
	libboost_program_options.so.1.74.0 => 
/lib/x86_64-linux-gnu/libboost_program_options.so.1.74.0 
(0x7f50e87a7000)
	libformfactor.so.0.3.1 => /lib/x86_64-linux-gnu/libformfactor.so.0.3.1 
(0x7f50e878)
	libQt6Widgets.so.6 => /lib/x86_64-linux-gnu/libQt6Widgets.so.6 
(0x7f50e800)

libQt6Gui.so.6 => /lib/x86_64-linux-gnu/libQt6Gui.so.6 
(0x7f50e780)
	libQt6Core.so.6 => /lib/x86_64-linux-gnu/libQt6Core.so.6 
(0x7f50e720)

libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6 
(0x7f50e6e0)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 
(0x7f50e875a000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x7f50e6c1e000)

It is possible to start bornagain by setting LD_LIBRARY_PATH with:

LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/bornagain bornagain

--
Heine Larsen



Bug#291669: mozilla-firefox: segfaults when searching with /

2005-01-22 Thread Niels Elgaard Larsen
Package: mozilla-firefox
Version: 1.0+dfsg.1-2
Severity: important



-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: LANG=da_DK, LC_CTYPE=da_DK (charmap=ISO-8859-1)

Versions of packages mozilla-firefox depends on:
ii  debianutils  2.11.2  Miscellaneous utilities specific t
ii  fontconfig   2.2.3-4 generic font configuration library
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libfontconfig1   2.2.3-4 generic font configuration library
ii  libfreetype6 2.1.7-2.3   FreeType 2 font engine, shared lib
ii  libgcc1  1:3.4.3-7   GCC support library
ii  libglib2.0-0 2.6.1-2 The GLib library of C routines
ii  libgtk2.0-0  2.4.14-2The GTK+ graphical user interface 
ii  libidl0  0.8.3-1 library for parsing CORBA IDL file
ii  libjpeg626b-9The Independent JPEG Group's JPEG 
ii  libkrb53 1.3.6-1 MIT Kerberos runtime libraries
ii  libpango1.0-01.6.0-3 Layout and rendering of internatio
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libstdc++5   1:3.3.5-6   The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-10 X Window System miscellaneous exte
ii  libxft2  2.1.2-6 FreeType-based font drawing librar
ii  libxp6   4.3.0.dfsg.1-10 X Window System printing extension
ii  libxrender1  0.8.3-7 X Rendering Extension client libra
ii  libxt6   4.3.0.dfsg.1-10 X Toolkit Intrinsics
ii  psmisc   21.5-1  Utilities that use the proc filesy
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information


Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread -1218723168 (LWP 17260)]
0xb463b4b9 in NSGetModule () from
/usr/lib/mozilla-firefox/components/libtoolkitcomps.so
(gdb)
(gdb)
(gdb) bt
#0  0xb463b4b9 in NSGetModule () from
/usr/lib/mozilla-firefox/components/libtoolkitcomps.so
#1  0xb7f465e5 in XPTC_InvokeByIndex () from
/usr/lib/mozilla-firefox/libxpcom.so
#2  0xb73a5fa5 in NSGetModule () from
/usr/lib/mozilla-firefox/components/libxpconnect.so
#3  0xb73acf05 in NSGetModule () from
/usr/lib/mozilla-firefox/components/libxpconnect.so
#4  0xb7fa14e6 in js_Invoke () from /usr/lib/mozilla-firefox/libmozjs.so
#5  0xb7fab3db in js_Interpret () from /usr/lib/mozilla-firefox/libmozjs.so
#6  0xb7fa15b7 in js_Invoke () from /usr/lib/mozilla-firefox/libmozjs.so
#7  0xb73a0bd8 in NSGetModule () from
/usr/lib/mozilla-firefox/components/libxpconnect.so
#8  0xb739cadb in NSGetModule () from
/usr/lib/mozilla-firefox/components/libxpconnect.so
#9  0xb7f46743 in XPTC_InvokeByIndex () from
/usr/lib/mozilla-firefox/libxpcom.so
#10 0xb615e0a9 in nsEventListenerManager::HandleEventSubType ()
   from /usr/lib/mozilla-firefox/components/libgklayout.so
#11 0xb615e5b9 in nsEventListenerManager::HandleEventSubType ()
   from /usr/lib/mozilla-firefox/components/libgklayout.so
#12 0xb6313b3a in nsXULElement::HandleDOMEvent () from
/usr/lib/mozilla-firefox/components/libgklayout.so
#13 0xb6313a2f in nsXULElement::HandleDOMEvent () from
/usr/lib/mozilla-firefox/components/libgklayout.so


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



Bug#292203: kicker: timezone not stored for multiple clock applets

2005-01-25 Thread Niels Elgaard Larsen
Package: kicker
Version: 4:3.3.2-1
Severity: normal


I have two clock applets in the panel. I set them to different time zones.
But next time I start KDE, both clocks are set to the same time zone..

$ ll ~/.kde/share/config/clock*
-rw---  1 elgaard elgaard 1004 2005-01-25 11:17
/home/elgaard/.kde/share/config/clockappletrc
-rw---  1 elgaard elgaard  235 2005-01-25 11:17
/home/elgaard/.kde/share/config/clock_panelapplet_20jk8qi21f3ey2nofc0n_rc


$ cat clock_panelapplet_20jk8qi21f3ey2nofc0n_rc
[Digital]
Background_Color=238,52,46
Blink=true
Shadow_Color=238,52,46

[General]
Initial_TZ=1
RemoteZones=America/Indianapolis,America/Los_Angeles,America/New_York,Asia/Tokyo,Australia/Sydney,Europe/Berlin,Europe/London,Europe/Moscow


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: LANG=da_DK, LC_CTYPE=da_DK (charmap=ISO-8859-1)

Versions of packages kicker depends on:
ii  kdebase-data 4:3.3.2-1   KDE Base (shared data)
ii  kdelibs4 4:3.3.2-1   KDE core libraries
ii  libart-2.0-2 2.3.16-6Library of functions for 2D graphi
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libfam0c102  2.7.0-6 client library to control the FAM 
ii  libgcc1  1:3.4.3-7   GCC support library
ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange library
ii  libidn11 0.5.2-3 GNU libidn library, implementation
ii  libkonq4 4:3.3.2-1   Core libraries for KDE's file mana
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libqt3c102-mt3:3.3.3-8   Qt GUI Library (Threaded runtime v
ii  libsm6   4.3.0.dfsg.1-10 X Window System Session Management
ii  libstdc++5   1:3.3.5-6   The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-10 X Window System miscellaneous exte
ii  libxrender1  0.8.3-7 X Rendering Extension client libra
ii  libxtst6 4.3.0.dfsg.1-10 X Window System event recording an
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information


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



Bug#329057: gnome-randr-applet: "Inverted" rotation selected automatically (and wrongfully)

2005-12-16 Thread René Højbjerg Larsen
Hi,

The attached patch fixes the problem (due to bad logic in the rotation
detection code).

It also reverses the order of the menu entries, making "Normal" the
first entry, followed by "Left", which makes a lot more sense than the
default behavior, IMHO. If you don't want to make this change then don't
apply the second chunk of the patch.

This should probably be sent upstream.

HTH
-- 
René Højbjerg Larsen <[EMAIL PROTECTED]>
--- gnome-randr-applet-0.2/src/grandr.c.orig	2005-12-16 21:14:55.0 +0100
+++ gnome-randr-applet-0.2/src/grandr.c	2005-12-16 21:12:00.0 +0100
@@ -253,7 +253,7 @@
 
   while (cur != NULL)
 	{
-	  if ((1 << grandr->xr_current_rotation) == ((Rotation) gtk_object_get_data(GTK_OBJECT(cur->data), "rotation_value") & 0xf ))
+	  if ((grandr->xr_current_rotation & 0xf) == (1 << (Rotation) gtk_object_get_data(GTK_OBJECT(cur->data), "rotation_value")))
 	gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (cur->data), 
 	TRUE);
 	  cur = g_slist_next(cur);
@@ -346,7 +346,7 @@
   gtk_menu_shell_prepend (GTK_MENU_SHELL(grandr->menu), menu_item);
   gtk_widget_show (menu_item);
 
-  for (i = 0; i < 4; i ++) 
+  for (i = 3; i >= 0; i --) 
 	{
 	  if ((grandr->xr_rotations >> i) & 1)  
 	{


Bug#293820: debconf: Does not install

2005-02-05 Thread Niels Elgaard Larsen
Package: debconf
Version: 1.4.45
Severity: important


Sætter debconf (1.4.45) op...
Compiling /usr/lib/python2.3/site-packages/shtoom/test/py24tests.py ...
  File "/usr/lib/python2.3/site-packages/shtoom/test/py24tests.py", line 7
@arguments(IBar)
^
SyntaxError: invalid syntax

Guess it could be  python problem

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: LANG=da_DK, LC_CTYPE=da_DK (charmap=ISO-8859-1)

Versions of packages debconf depends on:
ii  debconf-i18n  1.4.45 full internationalization support 
ii  perl-base 5.8.4-6The Pathologically Eclectic Rubbis

-- debconf information:
* debconf/priority: medium
* debconf/frontend: Dialog


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



Bug#302170: libsnmp-perl: SNMP.pm wrongly placed in /usr/lib/perl5

2005-03-30 Thread Bjornar Bjorgum Larsen
Package: libsnmp-perl
Version: 5.1.2-6
Severity: important

SNMP.pm should be placed at /usr/lib/perl5/Net/SNMP.pm
Instead it is placed at /usr/lib/perl5/SNMP.pm
This makes it impossible to write
use Net::SNMP;
in perl scripts, which is the default behavior according to
http://search.cpan.org/~dtown/Net-SNMP-5.0.1/lib/Net/SNMP.pm#EXAMPLES

Greetings from Norway. Sun is shining.

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

Versions of packages libsnmp-perl depends on:
ii  libsnmp5  5.1.2-6NET SNMP (Simple Network Managemen
ii  perl  5.8.4-8Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.8.4] 5.8.4-8The Pathologically Eclectic Rubbis

-- no debconf information


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



Bug#317098: kmail: happens for me too

2005-07-11 Thread Niels Elgaard Larsen
Package: kmail
Version: 4:3.3.2-3
Followup-For: Bug #317098




-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11
Locale: LANG=da_DK.iso88591, LC_CTYPE=C (charmap=ISO-8859-1) (ignored: LC_ALL 
set to da_DK.iso88591)

Versions of packages kmail depends on:
ii  kdelibs4 4:3.3.2-7   KDE core libraries
ii  libc62.3.2.ds1-22GNU C Library: Shared libraries an
ii  libgcc1  1:4.0.1-1   GCC support library
ii  libice6  4.3.0.dfsg.1-14 Inter-Client Exchange library
ii  libkcal2a4:3.3.2-3   KDE calendaring library
ii  libkdenetwork2   4:3.3.2-3   KDE Network library
ii  libkdepim1   4:3.3.2-3   KDE PIM library
ii  libkleopatra0a   4:3.3.2-3   KDE GnuPG interface libraries
ii  libkpimidentities1   4:3.3.2-3   KDE PIM user identity information 
ii  libksieve0   4:3.3.2-3   KDE mail/news message filtering li
ii  libmimelib1a 4:3.3.2-3   KDE mime library
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libqt3c102-mt3:3.3.4-3   Qt GUI Library (Threaded runtime v
ii  libsm6   4.3.0.dfsg.1-14 X Window System Session Management
ii  libstdc++5   1:3.3.6-7   The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-14 X Window System miscellaneous exte
ii  perl 5.8.7-4 Larry Wall's Practical Extraction 
ii  xlibs4.3.0.dfsg.1-14 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-8   compression library - runtime

Versions of packages kmail recommends:
ii  kdebase-kio-plugins   4:3.3.2-1  KDE I/O Slaves
ii  kdepim-kio-plugins4:3.3.2-3  KDE pim I/O Slaves
ii  procmail  3.22-11Versatile e-mail processor

-- no debconf information


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



Bug#325917: links: relocation error: /lib/tls/libnss_dns.so.2: symbol __res_maybe_init, version GLIBC_PRIVATE

2005-08-31 Thread Marius Lund Larsen
Package: libc6
Version: 2.3.5-6
Severity: critical
Justification: breaks unrelated software

links: relocation error: /lib/tls/libnss_dns.so.2: symbol
__res_maybe_init, version GLIBC_PRIVATE

and when you want to reload the page it say's host not found.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing'), (100, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-s3-v2
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

-- no debconf information


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



Bug#377738: Another card

2007-01-17 Thread Niels Elgaard Larsen

# pccardctl info
PRODID_1=""
PRODID_2=""
PRODID_3=""
PRODID_4=""
MANFID=,
FUNCID=255
PRODID_1="Linksys"
PRODID_2="Wireless CompactFlash Card"
PRODID_3=""
PRODID_4=""
MANFID=028a,0673
FUNCID=6


Linux edge 2.6.19.2 #4 PREEMPT Tue Jan 16 22:29:30 CET 2007 i686 GNU/Linux

# lsmod
Module  Size  Used by
orinoco_cs 13444  1
orinoco37044  1 orinoco_cs
hermes  5760  2 orinoco_cs,orinoco

wlassistand do:

iwconfig_set: /sbin/iwconfig wlan3 mode managed channel 8 key open 1234567890 
essid AGOLW
==>stderr: Error for wireless request "Set Frequency" (8B04) :
SET failed on device wlan3 ; Device or resource busy.
iwconfig_ap: /sbin/iwconfig wlan3 ap 00:90:96:2A:12:34
==>stderr: Error for wireless request "Set AP Address" (8B14) :
SET failed on device wlan3 ; Operation not supported.


But executing:
iwconfig wlan3 essid AGOLW key 1234567890
from  command line works

--
Niels


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



Bug#396314: Yes, please upgrade

2006-12-20 Thread Louis Tim Larsen

Yes, please upgrade to amsn 0.96

--
Mvh. Louis
Hjemmeside: www.louis.dk
Mail: [EMAIL PROTECTED]
MSN: [EMAIL PROTECTED]
Jabber: [EMAIL PROTECTED] (ikke en mailadresse)
Registeret Linuxbruger nr.: 405248



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



Bug#402372: eclipse-platform: Dependency problem in testing (libjsch-java version)

2006-12-09 Thread Jørgen Elgaard Larsen
Package: eclipse-platform
Version: 3.2.1-1
Severity: normal

In the current version of Debian testing, the package "eclipse-platform" 
depends on libjsch-java version >=0.1.28

But as of now, libjsch-java is only version 0.1.19-3.

Version 0.1.28-2 can be found in Debian unstable, though, so the obvious thing 
to do would be to move that to testing :-)

- Jørgen


-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (700, 'testing'), (600, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18.2-elgaard4
Locale: LANG=da_DK, LC_CTYPE=da_DK (charmap=ISO-8859-1)

Versions of packages eclipse-platform depends on:
ii  eclipse-rcp3.2.1-1   Eclipse rich client platform
ii  gij-4.1 [java1-runtime 4.1.1-17  The GNU Java bytecode interpreter
ii  java-common0.25  Base of all Java packages
ii  java-gcj-compat1.0.65-8  Java runtime environment using GIJ
ii  kaffe-pthreads [java1- 2:1.1.7-4 A POSIX threads enabled version of
ii  kdebase-bin4:3.5.5a.dfsg.1-2 core binaries for the KDE base mod
ii  libjsch-java   0.1.28-2  java secure channel
ii  liblucene-java 1.4.3.dfsg-1.2full-text search engine library fo
ii  liblucene-java-doc 1.4.3.dfsg-1.2demonstration programs and example
ii  libtomcat5.5-java  5.5.20-2  Java Servlet engine -- core librar
ii  zenity 2.14.3-1  Display graphical dialog boxes fro

Versions of packages eclipse-platform recommends:
pn  eclipse(no description available)
pn  eclipse-platform-gcj   (no description available)

-- no debconf information



Bug#396314: aMSN 0.96rc1 is out!

2006-10-30 Thread Louis Tim Larsen

Package: amsn
Version: 0.95
Severity: wishlist

There is a new version of amsn out. It's version 0.96rc1. I know it's a
RC-version but it's stable. I've used version 0.96rc1 for several months.

Regards Louis



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



Bug#393816: Thunderbirds languagepacks don't works in testing

2006-10-17 Thread Louis Tim Larsen

Package: Thunderbird-locale-da
Version 1.5.0.5-2

This languagepack don't work in Thunderbird in Testing because Thunderbird in 
Testing is in version 1.5.0.7 and the lanuagepacks is in version 1.5.0.5 and 
only works in Thunderbird 1.5.0.5.
Please fix that. It's fixed in Unstable.

I use Debian Testing, but I can't give the output of uname -a because I'm on an 
another machine.

Regards Louis




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



Bug#393816: Thunderbirds languagepacks don't works in testing

2006-10-20 Thread Louis Tim Larsen

Hans Öfverbeck skrev:

tags 393816 + unreproducible
tags 393816 + moreinfo
thanks

The thunderbird-locale-* packages are (since version 1:1.5.0.5-1)
designed to work with thunderbird versions from 1.5.0.1 up to 1.5.0.99.
For me the combination thunderbird-locale-da 1:1.5.0.5-2 and thunderbird
1.5.0.7-2 works flawlessly. Which thunderbird version are you running ?
Could you try creating a new profile in thunderbird and see if it still
doesn't work ?
  

I'm sorry. It works fine. Thanks for the information. I close this bug now.

Regards
Louis



Bug#736055: python-ase: new upstream version

2014-01-20 Thread Ask Hjorth Larsen
Hello

I got a bit stuck writing a "repack script" (which I haven't tried
before) previously.  If I understand correctly, such a script can be
used to monitor upstream updates and somewhat automate the generation
of new packages.

The idea would be to grab the newest tarball from this place:

  https://wiki.fysik.dtu.dk/ase/download.html

...and then use that to update the package.  It will solve the 'ag'
script name conflict.

Regards
Ask

2014/1/19 Hajime MIZUNO :
> Package: python-ase
> Severity: normal
>
> Dear Maintainer,
>
> new upstream version 3.8.0 has been released.
> ASE's GUI renamed from ag to ase-gui in this release.
> By reason of the above, bug #717989 will be eliminated.
>
> --
> Regards,
>
> Hajime MIZUNO 
> Key fingerprint = 9B07 B934 B70C 8482 8892  E276 502E 0713 4EEF 9E8D


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#736055: Any updates?

2014-05-04 Thread Ask Hjorth Larsen
Hello Adam

Basically I have to provide a watch file to grab the most recent file
from the download page[1], but being quite unfamiliar with watch files
and not so well versed in packaging in general, I haven't gotten
around to it.  If you can help with this or would like to take over,
that would be quite splendid.

There is one issue which I should mention:  The tarball and the svn
export do not contain the exact same files - some things like the
documentation are present in svn but missing from the tarball.  I
guess the debian package should contain the same files as the tarball
(and not the svn repository), but the existing package in corresponds
to a checkout.  This might be worth changing for the next release.

Best regards
Ask

[1] https://wiki.fysik.dtu.dk/ase/download.html

2014-05-04 3:32 GMT+02:00 Adam Baxter :
> Hi,
> Any updates on the packaging of the new version of python-ase, or anything I 
> can do to help?
>
> Thanks,
> Adam


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#660305: beancounter: update fails because age cannot be calculated

2012-02-17 Thread Niels Elgaard Larsen
Package: beancounter
Version: 0.8.10
Severity: grave
Tags: upstream patch
Justification: renders package unusable

Dear Maintainer,
*** Please consider answering these questions, where appropriate ***

   * What led up to the situation?
I tried to use beancounter. Nothing worked.
   * What exactly did you do (or not do) that was effective (or
 ineffective)?

In /usr/share/perl5/Finance/BeanCounter.pm:1746
==
my $age = Delta_Format(DateCalc($hash{$key}{date}, $Config{lastbizday},undef, 
2), "approx", 0, "%dt");
==

failed because of the undef argument that according to the releasenotes
was added in 0.8.9

I changed it to:
==
my $nerr;
my $age = Delta_Format(DateCalc($hash{$key}{date}, $Config{lastbizday},\$nerr, 
2), "approx", 0, "%dt");
==

   * What was the outcome of this action?

I could run beancounter update

   * What outcome did you expect instead?

*** End of the template - remove these lines ***


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

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

Versions of packages beancounter depends on:
ii  libdate-manip-perl   6.30-1
ii  libdbd-mysql-perl4.020-1+b1
ii  libdbd-pg-perl   2.18.1-1+b1
ii  libdbi-perl  1.616-1+b2
ii  libfinance-yahooquote-perl   0.24
ii  libstatistics-descriptive-perl   3.0300-1
ii  mysql-client-5.1 [mysql-client]  5.1.58-1
ii  perl 5.14.2-7
ii  sqlite   2.8.17-7
ii  sqlite3  3.7.10-1

beancounter recommends no packages.

beancounter suggests no packages.

-- no debconf information

-- debsums errors found:
debsums: changed file /usr/share/perl5/Finance/BeanCounter.pm (from beancounter 
package)



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#657129: Same goes for squeeze

2012-02-05 Thread Nicolas Damgaard Larsen
Package: xfce4-screenshooter
Version: 1.7.9-1+b1
Severity: normal

Same goes for version 1.7.9-1+b1 in squeeze. The man page from
xfce4-screenshooter states that the -h option should hide the save dialog but
causes the help text to be shown instead. Deliberately added to this existing
bug report rather than creating a new one. Feel free to split it if needed.
Added the output from `man xfce4-screenshooter` and `xfce4-screenshooter -h`.
Cheers.



-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.39-bpo.2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xfce4-screenshooter depends on:
ii  libatk1.0-01.30.0-1  The ATK accessibility toolkit
ii  libc6  2.11.3-2  Embedded GNU C Library: Shared lib
ii  libcairo2  1.10.2-6~bpo60+1  The Cairo 2D vector graphics libra
ii  libfontconfig1 2.8.0-2.1 generic font configuration library
ii  libfreetype6   2.4.4-1~bpo60+1   FreeType 2 font engine, shared lib
ii  libglib2.0-0   2.24.2-1  The GLib library of C routines
ii  libgtk2.0-02.20.1-2  The GTK+ graphical user interface 
ii  libpango1.0-0  1.28.3-1+squeeze2 Layout and rendering of internatio
ii  libsoup2.4-1   2.30.2-1+squeeze1 an HTTP library implementation in 
ii  libx11-6   2:1.3.3-4 X11 client-side library
ii  libxext6   2:1.1.2-1 X11 miscellaneous extension librar
ii  libxfce4util4  4.6.2-1   Utility functions library for Xfce
ii  libxfcegui4-4  4.6.4-1   Basic GUI C functions for Xfce4
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages xfce4-screenshooter recommends:
ii  xfce4-panel   4.6.4-1The Xfce4 desktop environment pane

xfce4-screenshooter suggests no packages.

-- no debconf information
XFCE4-SCREENSHOOTER(1)   User Commands  XFCE4-SCREENSHOOTER(1)



NAME
   xfce4-screenshooter - application to take screenshots

DESCRIPTION
   Usage:
  xfce4-screenshooter [OPTION...]

   Help Options:
   -?, --help
  Show help options

   --help-all
  Show all help options

   --help-gtk
  Show GTK+ Options

   Application Options:
   -V, --version
  Version information

   -w, --window
  Take a screenshot of the active window

   -f, --fullscreen
  Take a screenshot of the entire screen

   -r, --region
  Select a region to be captured by clicking a point of the screen
  without releasing the mouse button, dragging your mouse  to  the
  other corner of the region, and releasing the mouse button.

   -d, --delay
  Delay in seconds before taking the screenshot

   -h, --hide
  Do not display the save dialog

   -m, --mouse
  Do not display the mouse on the screenshot

   -s, --save
  Directory where the screenshot will be saved

   -o, --open
  Application to open the screenshot

   -u, --upload
  Host the screenshot on ZimageZ, a free online image hosting ser‐
  vice

   --display=DISPLAY
  X display to use



xfce4-screenshooter 1.6.0  June 2008XFCE4-SCREENSHOOTER(1)
Usage:
  xfce4-screenshooter [OPTION...] 

Help Options:
  -h, --help   Show help options
  --help-all   Show all help options
  --help-gtk   Show GTK+ Options

Application Options:
  -d, --delay  Delay in seconds before taking the screenshot
  -f, --fullscreen Take a screenshot of the entire screen
  -m, --mouse  Display the mouse on the screenshot
  -o, --open   Application to open the screenshot
  -r, --region Select a region to be captured by clicking a point 
of the screen without releasing the mouse button, dragging your mouse to the 
other corner of the region, and releasing the mouse button.
  -s, --save   Directory where the screenshot will be saved
  -u, --upload Host the screenshot on ZimageZ, a free online image 
hosting service
  -V, --versionVersion information
  -w, --window Take a screenshot of the active window
  --display=DISPLAYX display to use



Bug#673999:

2012-07-10 Thread Øyvind Larsen Nygård
The project isn't really in any releasable state yet, and won't be any
time soon. This means that packaging isn't in any
way needed at this state, and the bug could probably be closed.

Øyvind



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#557888: Solution!

2010-03-31 Thread Jonas Akrouh Larsen
Hi again

I would just like to report that im pretty sure i found the cause of the 
problem.

I tried to compile a tarball version of asterisk to solve the problem, but that 
didn't help.

So working with #asterisk on freenode they put me on the right track: the 
timing source.

Atleast for my selfcompiled version it helped to put the following entry in 
modules.conf: noload => res_timing_timerfd.so

This is the default timing module in linux, since it's the fastest, but 
apparently it doesn't work properly in debian squeeze.

So by not loading it, asterisk fallback to another one of its timing modules, 
and then playback works.

Hope this helpås somebody and enables the maintainer to fix the bug


Med venlig hilsen / Best regards

Jonas Akrouh Larsen

TechBiz ApS
Laplandsgade 4, 2. sal
2300 København S

Office: 7020 0979
Direct: 3336 9974
Mobile: 5120 1096
Fax:7020 0978
Web: www.techbiz.dk<http://www.techbiz.dk>



Bug#557888: Solution!

2010-04-06 Thread Jonas Akrouh Larsen
I'm afraid I do not have a test system to try it on, but it should be easy to 
test.


Med venlig hilsen / Best regards
 
Jonas Akrouh Larsen
 
TechBiz ApS
Laplandsgade 4, 2. sal
2300 København S
 
Office: 7020 0979
Direct: 3336 9974
Mobile: 5120 1096
Fax:    7020 0978
Web: www.techbiz.dk


> -Original Message-
> From: Tzafrir Cohen [mailto:tzafrir.co...@xorcom.com]
> Sent: 1. april 2010 07:17
> To: Jonas Akrouh Larsen; 557...@bugs.debian.org
> Subject: Re: Bug#557888: Solution!
> 
> On Wed, Mar 31, 2010 at 04:57:29PM +0200, Jonas Akrouh Larsen wrote:
> 
> > So working with #asterisk on freenode they put me on the right track: the
> timing source.
> >
> > Atleast for my selfcompiled version it helped to put the following entry in
> modules.conf: noload => res_timing_timerfd.so
> >
> > This is the default timing module in linux, since it's the fastest, but
> apparently it doesn't work properly in debian squeeze.
> >
> > So by not loading it, asterisk fallback to another one of its timing 
> > modules,
> and then playback works.
> >
> > Hope this helpås somebody and enables the maintainer to fix the bug
> 
> I don't want to give up timerfd that easily :-(
> 
> If you don't disable loading res_timing_timerfd.so, what is the result
> of:
> 
>   timing test
> 
> in the Asterisk CLI?
> 
> --
>Tzafrir Cohen
> icq#16849755  jabber:tzafrir.co...@xorcom.com
> +972-50-7952406   mailto:tzafrir.co...@xorcom.com
> http://www.xorcom.com  iax:gu...@local.xorcom.com/tzafrir



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#717989: python-ase,silversearcher-ag: error when trying to install together

2013-07-28 Thread Ask Hjorth Larsen
Hello

I believe the 'ag' script in python-ase will change its name to
ase-gui in future upstream versions.  Jens Jørgen (CC'd), isn't that
correct?

Either way, two-letter script names are probably a very bad idea
unless they are OS commands or something like that.

Best regards
Ask

2013/7/27 Andreas Beckmann :
> Package: python-ase,silversearcher-ag
> Severity: serious
> User: trei...@debian.org
> Usertags: edos-file-overwrite
>
> Architecture: amd64
> Distribution: jessie
>
> Hi,
>
> automatic installation tests of packages that share a file and at the
> same time do not conflict by their package dependency relationships has
> detected the following problem:
>
>   Selecting previously unselected package python-ase.
>   Unpacking python-ase (from .../python-ase_3.6.0.2515-1.1_all.deb) ...
>   dpkg: error processing 
> /var/cache/apt/archives/python-ase_3.6.0.2515-1.1_all.deb (--unpack):
>trying to overwrite '/usr/bin/ag', which is also in package 
> silversearcher-ag 0.15~pre+20130512-1
>   dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
>   Errors were encountered while processing:
>/var/cache/apt/archives/python-ase_3.6.0.2515-1.1_all.deb
>
> This is a serious bug as it makes installation fail, and violates
> sections 7.6.1 and 10.1 of the policy. An optimal solution would
> consist in only one of the packages installing that file, and renaming
> or removing the file in the other package. Depending on the
> circumstances you might also consider Replace relations or file
> diversions. If the conflicting situation cannot be resolved then, as a
> last resort, the two packages have to declare a mutual
> Conflict. Please take into account that Replaces, Conflicts and
> diversions should only be used when packages provide different
> implementations for the same functionality.
>
> Here is a list of files that are known to be shared by both packages
> (according to the Contents file for sid/amd64, which may be
> slightly out of sync):
>
>   usr/bin/ag
>   usr/share/man/man1/ag.1.gz
>
> This bug is assigned to both packages. If you, the maintainers of
> the two packages in question, have agreed on which of the packages will
> resolve the problem please reassign the bug to that package. You may
> also register in the BTS that the other package is affected by the bug.
>
> Cheers,
>
> Andreas
>
> PS: for more information about the detection of file overwrite errors
> of this kind see http://edos.debian.net/file-overwrites/.


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#717989: python-ase,silversearcher-ag: error when trying to install together

2013-07-29 Thread Ask Hjorth Larsen
Hello

If we rename all the scripts to "ase-", then the change is
obvious enough that we probably won't need that - in my opinion.  It
would be slightly annoying to have many scripts installed under two
names, with half of them deprecated.

Regards
Ask

2013/7/29 Jens Jørgen Mortensen :
> Den 28-07-2013 23:12, Ask Hjorth Larsen skrev:
>
>> Hello
>>
>> I believe the 'ag' script in python-ase will change its name to
>> ase-gui in future upstream versions.  Jens Jørgen (CC'd), isn't that
>> correct?
>
>
> That's correct.  The renaming is in the "cli" branch which I hope to merge
> soon.
>
> Should we simply drop "ag" for version 3.8 or keep it for one more release
> with a deprecation warning?
>
> Jens Jørgen
>
>
>>
>> Either way, two-letter script names are probably a very bad idea
>> unless they are OS commands or something like that.
>>
>> Best regards
>> Ask
>>
>> 2013/7/27 Andreas Beckmann :
>>>
>>> Package: python-ase,silversearcher-ag
>>> Severity: serious
>>> User: trei...@debian.org
>>> Usertags: edos-file-overwrite
>>>
>>> Architecture: amd64
>>> Distribution: jessie
>>>
>>> Hi,
>>>
>>> automatic installation tests of packages that share a file and at the
>>> same time do not conflict by their package dependency relationships has
>>> detected the following problem:
>>>
>>>Selecting previously unselected package python-ase.
>>>Unpacking python-ase (from .../python-ase_3.6.0.2515-1.1_all.deb) ...
>>>dpkg: error processing
>>> /var/cache/apt/archives/python-ase_3.6.0.2515-1.1_all.deb (--unpack):
>>> trying to overwrite '/usr/bin/ag', which is also in package
>>> silversearcher-ag 0.15~pre+20130512-1
>>>dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
>>>Errors were encountered while processing:
>>> /var/cache/apt/archives/python-ase_3.6.0.2515-1.1_all.deb
>>>
>>> This is a serious bug as it makes installation fail, and violates
>>> sections 7.6.1 and 10.1 of the policy. An optimal solution would
>>> consist in only one of the packages installing that file, and renaming
>>> or removing the file in the other package. Depending on the
>>> circumstances you might also consider Replace relations or file
>>> diversions. If the conflicting situation cannot be resolved then, as a
>>> last resort, the two packages have to declare a mutual
>>> Conflict. Please take into account that Replaces, Conflicts and
>>> diversions should only be used when packages provide different
>>> implementations for the same functionality.
>>>
>>> Here is a list of files that are known to be shared by both packages
>>> (according to the Contents file for sid/amd64, which may be
>>> slightly out of sync):
>>>
>>>usr/bin/ag
>>>usr/share/man/man1/ag.1.gz
>>>
>>> This bug is assigned to both packages. If you, the maintainers of
>>> the two packages in question, have agreed on which of the packages will
>>> resolve the problem please reassign the bug to that package. You may
>>> also register in the BTS that the other package is affected by the bug.
>>>
>>> Cheers,
>>>
>>> Andreas
>>>
>>> PS: for more information about the detection of file overwrite errors
>>> of this kind see http://edos.debian.net/file-overwrites/.
>
>


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#721398: linux-image-3.2.0-4-amd64: Unable to reboot or poweroff. Kernel related issue.

2013-08-31 Thread Nicolas Damgaard Larsen
Package: src:linux
Version: 3.2.46-1+deb7u1
Severity: normal

Dear Maintainer,

Issue:

I cannot poweroff or reboot the system via CLI or GUI. The software shutdown
process runs as intended but the system does not poweroff nor reboot.
This seems to be an issue with the 3-series kerrnel, as the 2.6-series from
Squeeze works as intended.



-- Package-specific info:
** Version:
Linux version 3.2.0-4-amd64 (debian-ker...@lists.debian.org) (gcc version 4.6.3 
(Debian 4.6.3-14) ) #1 SMP Debian 3.2.46-1+deb7u1

** Command line:
BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-amd64 
root=UUID=7bf153df-ebbd-4c29-8dfa-b0e0364891cb ro quiet splash

** Tainted: PWO (4609)
 * Proprietary module has been loaded.
 * Taint on warning.
 * Out-of-tree module has been loaded.

** Kernel log:
[9.033549] sr 1:0:0:0: Attached scsi generic sg1 type 5
[9.033652] sd 2:0:0:0: Attached scsi generic sg2 type 0
[9.038944] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[9.038954] usb usb2: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[9.038961] usb usb2: Product: OHCI Host Controller
[9.038966] usb usb2: Manufacturer: Linux 3.2.0-4-amd64 ohci_hcd
[9.038971] usb usb2: SerialNumber: :00:02.0
[9.039740] hub 2-0:1.0: USB hub found
[9.039753] hub 2-0:1.0: 10 ports detected
[9.040261] cannot find the slot for index 0 (range 0-0), error: -16
[9.040282] snd_intel8x0: probe of :00:04.0 failed with error -16
[9.412069] usb 2-3: new low-speed USB device number 2 using ohci_hcd
[9.626929] usb 2-3: New USB device found, idVendor=046d, idProduct=c01d
[9.626940] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[9.626947] usb 2-3: Product: USB-PS/2 Optical Mouse
[9.626952] usb 2-3: Manufacturer: Logitech
[9.932079] usb 2-4: new low-speed USB device number 3 using ohci_hcd
[   10.161931] usb 2-4: New USB device found, idVendor=045e, idProduct=00dd
[   10.161941] usb 2-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   10.161948] usb 2-4: Product: Comfort Curve Keyboard 2000
[   10.161953] usb 2-4: Manufacturer: Microsoft
[   10.375612] input: Logitech USB-PS/2 Optical Mouse as 
/devices/pci:00/:00:02.0/usb2/2-3/2-3:1.0/input/input4
[   10.375894] generic-usb 0003:046D:C01D.0001: input,hidraw0: USB HID v1.10 
Mouse [Logitech USB-PS/2 Optical Mouse] on usb-:00:02.0-3/input0
[   10.387630] input: Microsoft Comfort Curve Keyboard 2000 as 
/devices/pci:00/:00:02.0/usb2/2-4/2-4:1.0/input/input5
[   10.387889] generic-usb 0003:045E:00DD.0002: input,hidraw1: USB HID v1.11 
Keyboard [Microsoft Comfort Curve Keyboard 2000] on usb-:00:02.0-4/input0
[   10.405330] input: Microsoft Comfort Curve Keyboard 2000 as 
/devices/pci:00/:00:02.0/usb2/2-4/2-4:1.1/input/input6
[   10.405993] generic-usb 0003:045E:00DD.0003: input,hidraw2: USB HID v1.11 
Device [Microsoft Comfort Curve Keyboard 2000] on usb-:00:02.0-4/input1
[   10.406050] usbcore: registered new interface driver usbhid
[   10.406056] usbhid: USB HID core driver
[   11.519393] Adding 2955260k swap on /dev/sdb6.  Priority:-1 extents:1 
across:2955260k 
[  370.379603] EXT3-fs (sdb5): using internal journal
[  370.580603] loop: module loaded
[  370.738224] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, 
Starnberg, GERMANY' taints kernel.
[  370.738231] Disabling lock debugging due to kernel taint
[  371.010711] [fglrx] Maximum main memory to use for locked dma buffers: 2876 
MBytes.
[  371.010867] [fglrx]   vendor: 1002 device: 68d9 count: 1
[  371.011226] [fglrx] ioport: bar 4, base 0x9000, size: 0x100
[  371.011236] radeon :01:00.0: setting latency timer to 64
[  371.011497] [fglrx] Kernel PAT support is enabled
[  371.011538] [fglrx] module loaded - fglrx 8.98.2 [Jul 19 2012] with 1 minors
[  634.925180] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: 
(null)
[  635.939518] skge :05:0c.0: eth0: enabling interface
[  636.090474] RPC: Registered named UNIX socket transport module.
[  636.090482] RPC: Registered udp transport module.
[  636.090487] RPC: Registered tcp transport module.
[  636.090492] RPC: Registered tcp NFSv4.1 backchannel transport module.
[  636.118408] FS-Cache: Loaded
[  636.187481] FS-Cache: Netfs 'nfs' registered for caching
[  636.215664] Installing knfsd (copyright (C) 1996 o...@monad.swb.de).
[  636.542477] fuse init (API version 7.17)
[  637.746325] vboxdrv: Found 2 processor cores.
[  637.747007] vboxdrv: fAsync=1 offMin=0xd8719 offMax=0xd8719
[  637.747691] vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 
'normal'.
[  637.747698] vboxdrv: Successfully loaded version 4.1.18_Debian (interface 
0x0019).
[  637.993571] vboxpci: IOMMU not found (not registered)
[  638.458086] skge :05:0c.0: eth0: Link is up at 1000 Mbps, full duplex, 
flow control both
[  639.605880] Bluetooth: Core ver 2.16
[  639.605930] NET: Registered protocol family 31
[  639.605936] Bluetooth: HCI devic

Bug#721398: linux-image-3.2.0-4-amd64: Unable to reboot or poweroff. Kernel related issue.

2013-09-20 Thread Nicolas Damgaard Larsen
Hi again.

It seems that the the version from testing/jessie, 1:13.4-3 0 does not have
this problem. I have had none of the mentioned issues, apart from the
scrambled graphics occasionally, after installing the mentioned version.

Cheers


Bug#602126: Package ready

2012-05-28 Thread Ask Hjorth Larsen
Hi

Thank you for looking at it so quickly.

2012/5/27 Michael Banck :
> 1. The changelog entry should not refer to ppa, and should read
> "unstable" as distribution.  If the package was never in Ubuntu, I would
> also suggest to remove all prior changelog entries and just have one
> entry saying "Initial upload (Closes: #602126)." or so.

So something like:

--
python-ase (3.6.0.2515-1) unstable; urgency=low

  * Initial upload (Closes: #602126).

 -- Ask Hjorth Larsen   Sun, 27 May 2012 02:32:46 +0200
-

Is that okay?

> 2. The copyright information seems to be incomplete, a quick recursive
> grep for "Copyright" in the ase/ directory yields at least CAMP, Jesper
> Friis and Neil Martinsen-Burrell as additional copyright holders.

I have written a comprehensive copyright file with the full list of
upstream authors (60+), and a precise copyright attribution.

> 3. io/fortranfile.py also has a BSD-like license which must be added to
> copyright.  Possibly other files have different copyright as well, I
> have not checked them all.

A few of the files turned out to have been included from other
projects with slightly different licenses.  I have listed all the
licenses and the corresponding files.

Here is the copyright file as it looks now:

http://www.student.dtu.dk/~ashj/opendir/ase-debian-copyright

Does it look acceptable?

> Those are suggestions and not required for upload:
>
> 1. It might be a good idea to run testase on package build as well, e.g.
> to catch possible issues with different architectures (a long shot I
> guess, as it seems to be all-python)

Hmmm.  But when building, the package is not installed.  So the tests
will not (generally speaking) run without also installing the runtime
dependencies.  I guess it is possible to run most of the tests, but
they would have to run from within the build/ directory which only
contains the .py files, since the actual pyc files only exist in the
package.  Is there a sort of automatic way to emulate that the package
gets installed, so that the tests can be run in a more straightforward
way?

> 2. If you want to maintain ASE as part of debichem, you should set
> "Debichem Team " as Maintainer
> in debian/control and set yourself as Uploaders:

The initial idea was for the package to be part of Debian Science.  I
don't mind it being part of Debichem.  I guess we can change it if
that turns out to be a better idea, but so far I have not changed
this.

> 3. The patch "debian-changes-3.6.0.2515-1~ppa3" in debian/patches should
> get split up into logical parts with descriptive file names each.
> However, if the next upstream version has this patch anyway, it might
> not be worth the effort.

Let's save the effort then :)

> 4. If all the changes mentioned in README.Debian are in the above patch,
> you do not need to mention them there and can delete the file

Since I refrain from cleaning up the patches, I guess it might be a
good service to let the description stay for now.

Thanks!

Regards
Ask



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#602126: Package ready

2012-05-31 Thread Ask Hjorth Larsen
Hi

2012/5/28 Michael Banck :
> On Mon, May 28, 2012 at 01:52:56PM +0200, Ask Hjorth Larsen wrote:
>> 2012/5/27 Michael Banck :
(...)
>> > 1. It might be a good idea to run testase on package build as well, e.g.
>> > to catch possible issues with different architectures (a long shot I
>> > guess, as it seems to be all-python)

testase will now run when the binary package is built.  python-numpy
has been added to Build-Depends.  The tests should pass on sensible
systems, and the installer will exit with nonzero status otherwise.

> Just point me at a new source package, once you finalized your changes.

  http://www.student.dtu.dk/~ashj/opendir/python-ase-package-jun1.tar.gz

Best regards
Ask



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#602126: Package ready

2012-05-21 Thread Ask Hjorth Larsen
We have a package now which is ready to be uploaded.  So we would like
to have this bug promoted to an RFS.

Regards
Yann and Ask



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#852398: chromium: option --enable-remote-extensions does work: extensions cannot be enabled nor be installed

2017-02-06 Thread Niels Elgaard Larsen
På Mon, 6 Feb 2017 21:09:16 +0100
Michael Franzl  skrev:
> On Mon, 6 Feb 2017 11:27:55 +0100 Simon Ruderich 
 CHROMIUM_FLAGS='--enable-remote-extensions' chromium  
> 
> I put this into ~/.profile:
> 
> CHROMIUM_FLAGS='--enable-remote-extensions'
> 
> Confirmed working as a workaround.

Yeah, I now have.
 CHROMIUM_FLAGS='--enable-remote-extensions --disable-print-preview'
 
> I understand the security aspect, 

Me too. Great if we can avoid the Google store. But then we need
another source/repositry of essential extensions. Debian packages, a
local directory, github, or something else.

> but this setting really should be
> added as a package configuration option, and the user explicitly
> queried IMO.
> 
> Michael
> 



Bug#736055: Any updates?

2014-08-25 Thread Ask Hjorth Larsen
Sorry!  I apologize for my lack of activity, but I have been (and am)
busy with a lot of things, and being a beginner at packaging it takes
a lot of time for me to figure out the procedure.  So to release a new
ASE, I have to branch the package from alioth, then update it, then
push the new package, is that right?

Best regards
Ask

2014-08-24 13:46 GMT+02:00 Hideki Yamane :
>
> Maybe just stay RC bug to python-ase package and remove it from
> silversearcher-ag is good if no action would be with this bug:
> just allow only silversearcher-ag to get into testing cause
> no problem, IMO.
>
> If there is no objection, I'll do so.
>
>
> On Sun, 24 Aug 2014 15:31:28 +0900
> Hideki Yamane  wrote:
>> On Mon, 25 Aug 2014 00:04:19 +0200
>> Michael Prokop  wrote:
>> > any news here? (Found it through #717989 when searching for status
>> > of silversearcher-ag, would be nice to have silversearcher-ag in
>> > Debian/jessie)
>>
>>  Yes, I don't get any news...
>>
>>
>>
>> --
>> Hideki Yamane 
>
>
> --
> Hideki Yamane 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#823148: unison: Unison 2.48.3 crashes when syncing to a Ubuntu xenian host with same version if file>700 bytes

2016-07-01 Thread Niels Elgaard Larsen
On Sun, 01 May 2016 14:16:59 + Daniel Alder
 wrote:
> Package: unison
> Version: 2.48.3-1
> Severity: important
> 
> Dear Maintainer,
> 
>* What led up to the situation?

unison marshalls data in datastructures dependent on the ocaml version
it was build with.

So even for the same version of unison you have to choose to be
compatible with e.g. Ubuntu, Debian stable, etc.

Right now if you just build unison from source on Sid it works with
Ubuntu Xenian.

But put it on hold when it works.


> I tried to sync using unison between an up-to-date Debian stretch and a 
> Ubuntu xenial host, both have the same unison version:
> 
> Debian:
> ii  unison 2.48.3-1 amd64file-synchronization tool for 
> Unix and Windows
> Ubuntu:
> ii  unison 2.48.3-1ubuntu1 amd64   
> file-synchronization tool for Unix and Windows
> 
> 
> I discovered that the Debian side crashes whenever a file with size 701 bytes 
> or
> bigger has to be transferred from debian to ubuntu.
> The error does NOT appear if the file on the other side doesn't exist yet.
> The error also doesn't appear if both systems are Ubuntu or if both are 
> Debian.
> 
> 
> == Here is a test matrix: ==
> 
>  debian file
>  =700 bytes  =701 bytes
> ubuntu file =700 bytes   d->u ok, u->d okd->u ok, u->d ok
> =701 bytes   d->u ok, u->d okd->u err, u->d ok
> 
> explanation: d->u means transfer from debian to ubuntu, no matter which side
> runs unison, only the final direction of the file transfer is relevant, see 
> logs
> below.
> 
> 
> == Error log when running on Debian side: ==
> 
> synctest@debian:~$ unison myfolder/ ssh://$remoteip/myfolder/
> Contacting server...
> Connected [//debian//home/synctest/myfolder -> 
> //ubuntu//home/synctest/myfolder]
> Looking for changes
>   Waiting for changes from server
> Reconciling changes
> 
> local  ubuntu 
> changed  > changedtestfile  [] >
> 
> Proceed with propagating updates? [] y
> Propagating updates
> 
> 
> UNISON 2.48.3 started propagating changes at 13:31:35.72 on 01 May 2016
> [BGN] Updating file testfile from /home/synctest/myfolder to 
> //ubuntu//home/synctest/myfolder
> Uncaught exception Failure("input_value: bad bigarray kind")
> Raised by primitive operation at file "/tmp/buildd/unison-2.48.3/remote.ml", 
> line 453, characters 18-45
> Called from file "/tmp/buildd/unison-2.48.3/remote.ml", line 459, characters 
> 23-61
> Called from file "/tmp/buildd/unison-2.48.3/lwt/lwt.ml", line 75, characters 
> 20-23
> Re-raised at file "/tmp/buildd/unison-2.48.3/lwt/lwt.ml", line 135, 
> characters 12-13
> Called from file "list.ml", line 73, characters 12-15
> Called from file "/tmp/buildd/unison-2.48.3/lwt/lwt.ml", line 31, characters 
> 2-37
> Called from file "/tmp/buildd/unison-2.48.3/lwt/lwt.ml", line 83, characters 
> 17-46

-- 
Niels Elgaard Larsen



Bug#802919: unison: synchronization incompatibility when built with Ocaml versions pre/post-4.02

2016-04-19 Thread Niels Elgaard Larsen
On Thu, 24 Mar 2016 14:14:21 +0100 Baptiste Jonglez 
 wrote:

As a side note, the current state of unison/ocaml on stretch is confusing:
ocaml 4.02.3 is in stretch, but the unison binary package still seems to
be built against ocaml 4.01.  This is non-obvious and I spent quite some
time wondering why unison from stretch did not interoperate with another
unison client built against ocaml 4.02.




So did I. When I figured out, I just had to build unison from source and 
everything worked again.


At least "unison -version" should tell which version of ocaml it uses.



Bug#736055: updated python-ase to 3.8.1.3440-0.1

2014-10-25 Thread Ask Hjorth Larsen
Hello

Thank you very much, Reiner and Hideki, for doing this!!

Best regards
Ask

2014-10-25 15:29 GMT+02:00 Hideki Yamane :
> Hi,
>
>  Thanks for updating python-ase package, I'm happy to hear it as 
> silversearcher-ag
>  package sponsor :)
>
>  It can also close Bug#717989 since it is provided as different file name
>  as /usr/bin/ase-*.Could you update debian/changelog to include bug number,
>  please? Then, I'll upload it to repository.
>
> On Sat, 27 Sep 2014 01:43:48 +0200 Reiner Herrmann  wrote:
>> Hi Ask,
>>
>> since you don't seem to have much time at the moment,
>> I took the liberty to package a new version.
>>
>> I was mainly interested in resolving this bug because
>> it blocks the migration of silversearcher-ag to jessie (#717989).
>>
>> The updated package is available on:
>>   http://mentors.debian.net/package/python-ase
>>
>> Here is the new changelog entry:
>>
>> python-ase (3.8.1.3440-0.1) unstable; urgency=medium
>>
>>   * Non-maintainer upload.
>>   * New upstream release. (Closes: #736055)
>>   * Dropped old patches and outdated README.Debian.
>>   * Moved suggested to recommended packages, as recommended by upstream.
>>   * Changed copyright to machine-readable format.
>>   * Regenerated manpages by help2man.
>>   * Added watch file.
>>
>>  -- Reiner Herrmann   Fri, 26 Sep 2014 21:42:09 +0200
>>
>>
>> It would be nice if you or someone from debian-mentors could
>> review the package and sponsor an upload if no problem is found.
>> There is not much time until the jessie freeze, so it would be
>> good if this bug can be resolved quickly.
>>
>> Thanks.
>>
>> Regards,
>>   Reiner
>>
>>
>>
>
>
>
> --
> Regards,
>
>  Hideki Yamane henrich @ debian.or.jp/org
>  http://wiki.debian.org/HidekiYamane


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#853865: openjdk-8-jdk from backports suggests icedtea-8-plugin

2017-02-01 Thread Nicolas Damgaard Larsen
Package: openjdk-8-jdk
Version: 8u111-b14-2~bpo8+1
Severity: normal

Dear Maintainer,

I enabled jessie-backports in order to access openjdk-8-jdk. Ran apt-get
install openjdk-8-jdk, noticed apt suggesting icedtea-8-plugin. Figured I might
as well install icedtea-8-plugin but it's not available in neither jessie nor
jessie-backports.

I realize that this may not be a grave issue and I am aware that stretch full
freeze might be imminent but is this not odd and in need of a solution?

Thanks



-- System Information:
Debian Release: 8.7
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=locale: Cannot set 
LC_ALL to default locale: No such file or directory
UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)



Bug#853865: Wrong package

2017-02-02 Thread Nicolas Damgaard Larsen
Hello.

Seems I made a mistake. Bug report probably should have been associated
with openjdk-8-jre v. 8u121-b13-1~bpo8+1 from jessie-backports instead. My
mistake.


Bug#428143: kdeprint: printing to IPP printer with password does not work

2007-06-09 Thread Niels Elgaard Larsen
Package: kdeprint
Version: 4:3.5.7-1
Severity: important



The Printer is a Samsun N2571 network printer.
Printing works fine with ipp  http://192.168.1.10:631

But now the printer is visible from outside so I added a password:

I now set the URL to http://foo:[EMAIL PROTECTED]:631

I was able to print the test page, but printing something with e.g. kprinter
does not work. No errror. The job completes but nothing is printed.

Is tried using a Kubuntu 7.04 computer. Same problem. However printing from
firefox worked. I.e. I set up the printer in KDE, printing from KDE did not
work. Printing from non-kde programs worked.


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

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

Versions of packages kdeprint depends on:
ii  enscript1.6.4-11 Converts ASCII text to Postscript,
ii  kdelibs4c2a 4:3.5.7.dfsg.1-1 core libraries and binaries for al
ii  libc6   2.5-10   GNU C Library: Shared libraries
ii  libgcc1 1:4.2-20070528-1 GCC support library
ii  libqt3-mt   3:3.3.7-4+b1 Qt GUI Library (Threaded runtime v
ii  libstdc++6  4.2-20070528-1   The GNU Standard C++ Library v3
ii  poster  1:19990428-8 Create large posters out of PostSc
ii  psutils 1.17-24  A collection of PostScript documen

Versions of packages kdeprint recommends:
ii  gs-esp [postscript-viewe 8.15.3.dfsg.1-1 The Ghostscript PostScript interpr
ii  gs-gpl [postscript-viewe 8.56.dfsg.1-1   The GPL Ghostscript PostScript int
ii  gv [postscript-viewer]   1:3.6.2-4   PostScript and PDF viewer for X
ii  kghostview [postscript-v 4:3.5.7-2   PostScript viewer for KDE

-- no debconf information


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



Bug#377738: wlassistant: use requests that does not work on some cards/drivers

2006-07-10 Thread Niels Elgaard Larsen
Package: wlassistant
Version: 0.5.5-1
Severity: important

wlassistand does not configure my card:

It tries
==
(#)/sbin/iwconfig eth1 ap 00:77:88:99:00:AA
Error for wireless request "Set AP Address" (8B14) :
==

manually running
iwconfig eth1 essid FOOBAR 
works fine.

>cardctl info
PRODID_1="SMC"
PRODID_2="SMC2632W"
PRODID_3="Version 01.02"
PRODID_4=""
MANFID=0156,0002
FUNCID=6

driver: orinoco_cs


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

Versions of packages wlassistant depends on:
ii  kdelibs4c2a [kdelibs-bin] 4:3.5.3-1  core libraries and binaries for al
ii  kicker4:3.5.3-2  desktop panel for KDE
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libgcc1   1:4.1.1-7  GCC support library
ii  libqt3-mt 3:3.3.6-2  Qt GUI Library (Threaded runtime v
ii  libstdc++64.1.1-7The GNU Standard C++ Library v3
ii  menu  2.1.29 generates programs menu for all me
ii  net-tools 1.60-17The NET-3 networking toolkit
ii  wireless-tools28-1   Tools for manipulating Linux Wirel

Versions of packages wlassistant recommends:
ii  dhcp-client  2.0pl5-19.4 DHCP Client

-- no debconf information


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



Bug#368561: Cannot make zaptel-source: SUBDIR not found

2006-05-22 Thread Jørgen Elgaard Larsen
Package: zaptel-source
Version: 1:1.0.7-4.1
Severity: normal


When trying to run make on zaptel-source, it seems unable to find the current
working directory. 

When running make, I get this response:


chimay:/usr/src/modules/zaptel# make
cc -I. -O4 -g -Wall -DBUILDING_TONEZONE  -fsigned-char  -DSTANDALONE_ZAPATA
-DZAPTEL_CONFIG=\"/etc/zaptel.conf\"   -c -o gendigits.o gendigits.c
cc -o gendigits gendigits.o -lm
./gendigits
cc -I. -O4 -g -Wall -DBUILDING_TONEZONE  -fsigned-char  -DSTANDALONE_ZAPATA
-DZAPTEL_CONFIG=\"/etc/zaptel.conf\"makefw.c   -o makefw
./makefw tormenta2.rbt tor2fw > tor2fw.h
Loaded 69900 bytes from file
cc -I. -O4 -g -Wall -DBUILDING_TONEZONE  -fsigned-char  -DSTANDALONE_ZAPATA
-DZAPTEL_CONFIG=\"/etc/zaptel.conf\"   -c -o ztcfg.o ztcfg.c
cc -c -fPIC -I. -O4 -g -Wall -DBUILDING_TONEZONE  -fsigned-char
-DSTANDALONE_ZAPATA -DZAPTEL_CONFIG=\"/etc/zaptel.conf\" -DBUILDING_TONEZONE
-o zonedata.lo zonedata.c
cc -c -fPIC -I. -O4 -g -Wall -DBUILDING_TONEZONE  -fsigned-char
-DSTANDALONE_ZAPATA -DZAPTEL_CONFIG=\"/etc/zaptel.conf\" -DBUILDING_TONEZONE
-o tonezone.lo tonezone.c
ar rcs libtonezone.a zonedata.lo tonezone.lo
cc -o ztcfg ztcfg.o -lm -L. libtonezone.a
cc -I. -O4 -g -Wall -DBUILDING_TONEZONE  -fsigned-char  -DSTANDALONE_ZAPATA
-DZAPTEL_CONFIG=\"/etc/zaptel.conf\"   -c -o torisatool.o torisatool.c
cc -o torisatool torisatool.o
cc -I. -O4 -g -Wall -DBUILDING_TONEZONE  -fsigned-char  -DSTANDALONE_ZAPATA
-DZAPTEL_CONFIG=\"/etc/zaptel.conf\"   -c -o ztmonitor.o ztmonitor.c
cc -o ztmonitor ztmonitor.o
cc -c ztspeed.c
cc -o ztspeed ztspeed.o
cc -I. -O4 -g -Wall -DBUILDING_TONEZONE  -fsigned-char  -DSTANDALONE_ZAPATA
-DZAPTEL_CONFIG=\"/etc/zaptel.conf\"zttest.c   -o zttest
make -C  SUBDIRS=/usr/src/modules/zaptel modules
make: *** SUBDIRS=/usr/src/modules/zaptel: No such file or directory.  Stop.
make: *** [linux26] Error 2

chimay:/usr/src/modules/zaptel# uname -a
Linux chimay 2.6.8-elgaard #3 Tue May 23 03:31:30 CEST 2006 i686 GNU/Linux

chimay:/usr/src/modules/zaptel# pwd
/usr/src/modules/zaptel




If I need to run make with some arguments, please provide an INSTALL file with 
instructions.



-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-elgaard
Locale: LANG=da_DK, LC_CTYPE=da_DK (charmap=ISO-8859-1)

Versions of packages zaptel-source depends on:
ii  bzip2 1.0.2-7high-quality block-sorting file co
ii  debhelper 4.2.32 helper programs for debian/rules
ii  module-assistant  0.9sarge1  tool to make module package creati

-- no debconf information


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



Bug#368561: Cannot make zaptel-source: SUBDIR not found

2006-05-23 Thread Jørgen Elgaard Larsen

Tzafrir Cohen wrote:

Try using module-assistant instead of extracting the tarball and
building:

  m-a -k /full/path/to/kernel/dir -u . -i -t build zaptel

"kernel dir" is the directory that includes the configured kernel source
or a directory from a proper kerne;-headers package.


Thank you for your very quick response and good advice. The text above 
would go nicely in an INSTALL file.



However, it still will not build for me: While building zaphfc, it 
cannot find zaptel.h


I have tried copying zaptel.h into the zaphfc directory, but to no 
avail. It still will not build.


Also, it warns a lot about missing CRC's

It does not matter whether I try building as a normal user or as root.

I have attached the build log. Any help would be greatly appreciated.


Sincerely,


Jørgen Elgaard Larsen
dh_testdir
dh_testroot
rm -f build-*-stamp configure-stamp
# Add here commands to clean up after the build process.
/usr/bin/make clean
make[1]: Entering directory `/home/jel/zaptel/usr_src/modules/zaptel'
make -C /usr/src/kernel-source-2.6.8 
SUBDIRS=/home/jel/zaptel/usr_src/modules/zaptel/zaphfc clean
make[2]: Entering directory `/usr/src/kernel-source-2.6.8'
make[2]: Leaving directory `/usr/src/kernel-source-2.6.8'
make -C /usr/src/kernel-source-2.6.8 
SUBDIRS=/home/jel/zaptel/usr_src/modules/zaptel/qozap clean
make[2]: Entering directory `/usr/src/kernel-source-2.6.8'
make[2]: Leaving directory `/usr/src/kernel-source-2.6.8'
rm -f torisatool makefw tor2fw.h fxstest ztmonitor ztspeed
rm -f zttool
rm -f zttest
rm -f *.o ztcfg tzdriver sethdlc sethdlc-new
rm -f zonedata.lo tonezone.lo libtonezone.so.1.0 *.lo
rm -f *.ko *.mod.c .*o.cmd
rm -f gendigits tones.h
rm -f libtonezone*
rm -f tor2ee
rm -f core
make[1]: Leaving directory `/home/jel/zaptel/usr_src/modules/zaptel'
dh_clean
/usr/bin/make  -f debian/rules kdist_clean kdist_config binary-modules
make[1]: Entering directory `/home/jel/zaptel/usr_src/modules/zaptel'
dh_testdir
dh_testroot
rm -f build-*-stamp configure-stamp
# Add here commands to clean up after the build process.
/usr/bin/make clean
make[2]: Entering directory `/home/jel/zaptel/usr_src/modules/zaptel'
make -C /usr/src/kernel-source-2.6.8 
SUBDIRS=/home/jel/zaptel/usr_src/modules/zaptel/zaphfc clean
make[3]: Entering directory `/usr/src/kernel-source-2.6.8'
make[3]: Leaving directory `/usr/src/kernel-source-2.6.8'
make -C /usr/src/kernel-source-2.6.8 
SUBDIRS=/home/jel/zaptel/usr_src/modules/zaptel/qozap clean
make[3]: Entering directory `/usr/src/kernel-source-2.6.8'
make[3]: Leaving directory `/usr/src/kernel-source-2.6.8'
rm -f torisatool makefw tor2fw.h fxstest ztmonitor ztspeed
rm -f zttool
rm -f zttest
rm -f *.o ztcfg tzdriver sethdlc sethdlc-new
rm -f zonedata.lo tonezone.lo libtonezone.so.1.0 *.lo
rm -f *.ko *.mod.c .*o.cmd
rm -f gendigits tones.h
rm -f libtonezone*
rm -f tor2ee
rm -f core
make[2]: Leaving directory `/home/jel/zaptel/usr_src/modules/zaptel'
dh_clean
for templ in ; do \
cp $templ `echo $templ | sed -e 's/_KVERS_/2.6.8-elgaard/g'` ; \
  done
for templ in `ls debian/*.modules.in` ; do \
test -e ${templ%.modules.in}.backup || cp ${templ%.modules.in} 
${templ%.modules.in}.backup 2>/dev/null || true; \
sed -e 's/##KVERS##/2.6.8-elgaard/g ;s/#KVERS#/2.6.8-elgaard/g ; 
s/_KVERS_/2.6.8-elgaard/g ; s/##KDREV##//g ; s/#KDREV#//g ; s/_KDREV_//g' < 
$templ > ${templ%.modules.in}; \
  done
dh_testdir
dh_testroot
dh_clean -k
make modules KERNEL_SOURCES=/usr/src/kernel-source-2.6.8 MODVERSIONS=detect 
KERNEL=linux-2.6.8-elgaard
make[2]: Entering directory `/home/jel/zaptel/usr_src/modules/zaptel'
gcc-3.3 -I. -O4 -g -Wall -DBUILDING_TONEZONE  -fsigned-char  
-DSTANDALONE_ZAPATA -DZAPTEL_CONFIG=\"/etc/zaptel.conf\"   -c -o gendigits.o 
gendigits.c
gcc-3.3 -o gendigits gendigits.o -lm
./gendigits
gcc-3.3 -I. -O4 -g -Wall -DBUILDING_TONEZONE  -fsigned-char  
-DSTANDALONE_ZAPATA -DZAPTEL_CONFIG=\"/etc/zaptel.conf\"makefw.c   -o makefw
./makefw tormenta2.rbt tor2fw > tor2fw.h
Loaded 69900 bytes from file
make -C /usr/src/kernel-source-2.6.8 
SUBDIRS=/home/jel/zaptel/usr_src/modules/zaptel modules
make[3]: Entering directory `/usr/src/kernel-source-2.6.8'
  CC [M]  /home/jel/zaptel/usr_src/modules/zaptel/zaptel.o
/home/jel/zaptel/usr_src/modules/zaptel/zaptel.c:167: warning: `fcstab' defined 
but not used
  CC [M]  /home/jel/zaptel/usr_src/modules/zaptel/tor2.o
  CC [M]  /home/jel/zaptel/usr_src/modules/zaptel/torisa.o
/home/jel/zaptel/usr_src/modules/zaptel/torisa.c:1141: warning: `set_tor_base' 
defined but not used
  CC [M]  /home/jel/zaptel/usr_src/modules/zaptel/wcusb.o
  CC [M]  /home/jel/zaptel/usr_src/modules/zaptel/wcfxo.o
  CC [M]  /home/jel/zaptel/usr_src/modules/zaptel/wcfxs.o
  CC [M]  /home/jel/zaptel/usr_src/modules/zaptel/ztdynamic.o
  CC [M]  /home/jel/zaptel/usr_src/modules/zaptel/ztd-eth.o
  CC [M]  /home/j

Bug#532017: (galeon:29359): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed

2009-06-05 Thread Marius Lund Larsen
Package: galeon
Version: 2.0.7-1
Severity: minor

This happends alot then i get segmentation fault.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'testing-proposed-updates')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=nb_NO, LC_CTYPE=nb_NO (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages galeon depends on:
ii  galeon-common  2.0.7-1   data for the galeon web browser
ii  gconf2 2.26.0-1  GNOME configuration database syste
ii  libbonobo2-0   2.24.1-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.24.1-1  The Bonobo UI library
ii  libc6  2.9-12GNU C Library: Shared libraries
ii  libgcc11:4.4.0-5 GCC support library
ii  libgconf2-42.26.0-1  GNOME configuration database syste
ii  libglade2-01:2.6.4-1 library to load .glade files at ru
ii  libglib2.0-0   2.20.1-2  The GLib library of C routines
ii  libgnome-desktop-2-11  2.26.1-1  Utility library for loading .deskt
ii  libgnome2-02.26.0-1  The GNOME library - runtime files
ii  libgnomeui-0   2.24.1-1  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.24.1-1GNOME Virtual File System (runtime
ii  libgtk2.0-02.16.1-2  The GTK+ graphical user interface 
ii  libnspr4-0d4.7.4-3   NetScape Portable Runtime Library
ii  liborbit2  1:2.14.17-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.24.0-3+b1   Layout and rendering of internatio
ii  libpopt0   1.14-4lib for parsing cmdline parameters
ii  libstdc++6 4.4.0-5   The GNU Standard C++ Library v3
ii  libx11-6   2:1.2.1-1 X11 client-side library
ii  libxml22.7.3.dfsg-1  GNOME XML library
ii  procps 1:3.2.7-11/proc file system utilities
ii  xulrunner-1.9  1.9.0.7-1 XUL + XPCOM application runner

Versions of packages galeon recommends:
ii  gnome-control-center1:2.24.0.1-5 utilities to configure the GNOME d
ii  gnome-icon-theme2.24.0-4 GNOME Desktop icon theme
ii  iso-codes   3.9-1ISO language, territory, currency,
ii  rarian-compat [scrollkeeper 0.8.1-2  Rarian is a documentation meta-dat
ii  yelp2.24.0-2 Help browser for GNOME 2

Versions of packages galeon suggests:
pn  mozplugger (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#444003: Info received (Bug#444003: Acknowledgement (capi4hylafax: After running perfectly for a while c2faxsend/c2faxrecv processes freezes.))

2007-10-01 Thread Stig Even Larsen

Today the faxserver had another failure. Se attached info for specifics.
Do you need more info?

faxserver-ny:~# uptime
22:30:13 up 6 days, 10:27,  2 users,  load average: 3.00, 3.01, 2.59


faxserver-ny:~# ps aux|grep c2
uucp  2630  0.0  0.2  71304  2572 ?Ssl  Sep25   0:00 
/usr/bin/c2faxrecv
uucp 17767  0.0  0.1  11856  1564 ?S21:54   0:00 
c2faxsend -m faxCAPI11 sendq/q562
uucp 17962  0.0  0.1   3560  1496 ?D21:55   0:00 
c2faxsend -m faxCAPI22 sendq/q563
uucp 17996  0.0  0.1   3564  1504 ?D21:57   0:00 
c2faxsend -m faxCAPI12 sendq/q560
uucp 18067  0.0  0.1   3564  1496 ?D22:01   0:00 
c2faxsend -m faxCAPI21 sendq/q564

root 18168  0.0  0.0   2852   716 pts/1S+   22:06   0:00 grep c2

From /var/log/syslog

Oct  1 21:55:42 faxserver-ny kernel: BUG: unable to handle kernel paging 
request at virtual address 00100104

Oct  1 21:55:42 faxserver-ny kernel:  printing eip:
Oct  1 21:55:42 faxserver-ny kernel: f89a1439
Oct  1 21:55:42 faxserver-ny kernel: *pde = 
Oct  1 21:55:42 faxserver-ny kernel: Oops: 0002 [#1]
Oct  1 21:55:42 faxserver-ny kernel: SMP
Oct  1 21:55:42 faxserver-ny kernel: Modules linked in: ipv6 ppdev 
parport_pc lp parport button ac battery capi capifs dm_snapshot 
dm_mirror dm_mod loop tsdev rtc c4 b1 i2c_i801 floppy kernelcapi 
i2c_core serio_raw pcspkr psmouse shpchp pci_hotplug e752x_edac edac_mc 
evdev sg ext3 jbd mbcache ide_cd cdrom sd_mod generic ips scsi_mod piix 
ide_core i2o_core ehci_hcd uhci_hcd tg3 usbcore thermal processor fan

Oct  1 21:55:42 faxserver-ny kernel: CPU:1
Oct  1 21:55:42 faxserver-ny kernel: EIP:0060:[]Not 
tainted VLI

Oct  1 21:55:42 faxserver-ny kernel: EFLAGS: 00010296   (2.6.18-4-686 #1)
Oct  1 21:55:42 faxserver-ny kernel: EIP is at 
capilib_release_appl+0x28/0x53 [kernelcapi]
Oct  1 21:55:42 faxserver-ny kernel: eax: 00200200   ebx: f60802c0 
ecx: 0092   edx: 00100100
Oct  1 21:55:42 faxserver-ny kernel: esi: dffd164c   edi: 000a 
ebp: dffd164c   esp: e6553f48

Oct  1 21:55:42 faxserver-ny kernel: ds: 007b   es: 007b   ss: 0068
Oct  1 21:55:42 faxserver-ny kernel: Process c2faxsend (pid: 17768, 
ti=e6552000 task=e911c000 task.ti=e6552000)
Oct  1 21:55:42 faxserver-ny kernel: Stack: f89a3821 000a 00020201 
dffd14c8 000a c192c000 dfb4c114 f89acef0
Oct  1 21:55:42 faxserver-ny kernel:dffd14c8 c19f3dc8  
f899f699 c19f3dc0 dff6bf00 dfcc70a0 f89992aa
Oct  1 21:55:42 faxserver-ny kernel:0008 dff6bf00 c015ae41 
c18dcac0 dff6bf00 dffbf980  e6552000

Oct  1 21:55:42 faxserver-ny kernel: Call Trace:
Oct  1 21:55:42 faxserver-ny kernel:  [] 
c4_release_appl+0x1d/0xea [c4]
Oct  1 21:55:42 faxserver-ny kernel:  [] 
capi20_release+0x5c/0xc4 [kernelcapi]
Oct  1 21:55:42 faxserver-ny kernel:  [] 
capi_release+0x16/0x8b [capi]

Oct  1 21:55:42 faxserver-ny kernel:  [] __fput+0x8a/0x13f
Oct  1 21:55:42 faxserver-ny kernel:  [] filp_close+0x4e/0x54
Oct  1 21:55:42 faxserver-ny kernel:  [] 
sysenter_past_esp+0x56/0x79
Oct  1 21:55:42 faxserver-ny kernel: Code: 5b 5e c3 55 89 c5 57 0f b7 fa 
56 53 8b 18 8b 33 eb 39 66 39 7b 08 75 2f ff 73 0c 57 68 21 38 9a f8 e8 
36 c5 77 c7 8b 43 04 8b 13 <89> 42 04 89 10 89 d8 c7 03 00 01 10 00 c7 
43 04 00 02 20 00 e8
Oct  1 21:55:42 faxserver-ny kernel: EIP: [] 
capilib_release_appl+0x28/0x53 [kernelcapi] SS:ESP 0068:e6553f48

Oct  1 22:01:22 faxserver-ny FaxQueuer[2729]: No devices available


Regards,
Stig Even Larsen
Nimra Norge AS
email: [EMAIL PROTECTED]




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



Bug#444003: capi4hylafax: After running perfectly for a while c2faxsend/c2faxrecv processes freezes.

2007-09-25 Thread Stig Even Larsen
Package: capi4hylafax
Version: 1:01.03.00.99.svn.300-4
Severity: important



-- 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=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages capi4hylafax depends on:
ii  capiutils  1:3.9.20060704-3  Utilities for CAPI-capable ISDN ca
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libcapi20-31:3.9.20060704-3  libraries for CAPI support
ii  libgcc11:4.1.1-21GCC support library
ii  libstdc++6 4.1.1-21  The GNU Standard C++ Library v3
ii  libtiff4   3.8.2-7   Tag Image File Format (TIFF) libra
ii  zlib1g 1:1.2.3-13compression library - runtime

Versions of packages capi4hylafax recommends:
pn  hylafax-server (no description available)
pn  isdnactivecards(no description available)

-- no debconf information



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



Bug#444003: Acknowledgement (capi4hylafax: After running perfectly for a while c2faxsend/c2faxrecv processes freezes.)

2007-09-25 Thread Stig Even Larsen

Hi,

I suppose you will be needing some additional info regarding this incident.

The capi4hylafax packages it configured to work witch the AVM C2 ISDN 
card in a IBM xSeries 346, and is a fax-server which sends approximately 
100 faxes a day. After some time (perhaps 2 weeks) the 
c2sendfax/c2faxrecv stops responding. If the c2sendfax/c2faxrecv process 
is i 'D' status I need to reboot the system to get it operational, 
otherwise I will be able to stop hylafax and c2sendfax/c2faxrecv 
processes and restart the capiutils (e.g removing and inserting kernel 
modules).


This time I was actually monitoring syslog and tried immediatly to 
resolv this by stopping hylafax, capi4hylafax and capiutils, but with no 
success. c2sendfax/c2faxrecv prosesses could not be killed, thus had to 
restart the server.


The following was found in /var/log/syslog

Sep 25 11:42:50 faxserver-ny kernel: BUG: unable to handle kernel paging 
request at virtual address 00100104

Sep 25 11:42:50 faxserver-ny kernel:  printing eip:
Sep 25 11:42:50 faxserver-ny kernel: f89b3439
Sep 25 11:42:50 faxserver-ny kernel: *pde = 
Sep 25 11:42:50 faxserver-ny kernel: Oops: 0002 [#1]
Sep 25 11:42:50 faxserver-ny kernel: SMP
Sep 25 11:42:50 faxserver-ny kernel: Modules linked in: c4 b1 tcp_diag 
inet_diag iptable_filter ip_tables x_tables ipv6 ppdev parport_pc lp 
parport button ac battery capi capifs dm_snapshot dm_mirror dm_mod loop 
tsdev kernelcapi floppy rtc serio_raw pcspkr shpchp pci_hotplug i2c_i801 
i2c_core psmouse e752x_edac edac_mc evdev sg ext3 jbd mbcache ide_cd 
cdrom sd_mod generic piix ide_core ips scsi_mod<3>kcapi: handle_message: 
applid 10 state released (LISTEN_CONFID=010 #0x LEN=0014

Sep 25 11:42:50 faxserver-ny kernel:   Controller/PLCI/NCCI= 0x1
Sep 25 11:42:50 faxserver-ny kernel:   Info= 0x0
Sep 25 11:42:50 faxserver-ny kernel: )
Sep 25 11:42:50 faxserver-ny kernel:  ehci_hcd uhci_hcd i2o_core tg3 
usbcore thermal processor fan

Sep 25 11:42:50 faxserver-ny kernel: CPU:1
Sep 25 11:42:50 faxserver-ny kernel: EIP:0060:[]Not 
tainted VLI

Sep 25 11:42:50 faxserver-ny kernel: EFLAGS: 00010296   (2.6.18-4-686 #1)
Sep 25 11:42:50 faxserver-ny kernel: EIP is at 
capilib_release_appl+0x28/0x53 [kernelcapi]
Sep 25 11:42:50 faxserver-ny kernel: eax: 00200200   ebx: f7cd2540 
ecx: 0092   edx: 00100100
Sep 25 11:42:50 faxserver-ny kernel: esi: e6ccfca0   edi: 000a 
ebp: e6ccfca0   esp: e5d35f48

Sep 25 11:42:50 faxserver-ny kernel: ds: 007b   es: 007b   ss: 0068
Sep 25 11:42:50 faxserver-ny kernel: Process c2faxsend (pid: 24527, 
ti=e5d34000 task=e137e000 task.ti=e5d34000)
Sep 25 11:42:50 faxserver-ny kernel: Stack: f89b5821 000a 00010102 
e6ccfb1c 000a e0abb000 c191f42c f8955ef0
Sep 25 11:42:50 faxserver-ny kernel:e6ccfb1c e6878cc8 0001 
f89b1699 e6878cc0 f7d9fa80 c1911260 f89982aa
Sep 25 11:42:50 faxserver-ny kernel:0008 f7d9fa80 c015ae41 
c18dcb40 f7d9fa80 e4b90480  e5d34000

Sep 25 11:42:50 faxserver-ny kernel: Call Trace:
Sep 25 11:42:50 faxserver-ny kernel:  [] 
c4_release_appl+0x1d/0xea [c4]
Sep 25 11:42:50 faxserver-ny kernel:  [] 
capi20_release+0x5c/0xc4 [kernelcapi]
Sep 25 11:42:50 faxserver-ny kernel:  [] 
capi_release+0x16/0x8b [capi]

Sep 25 11:42:50 faxserver-ny kernel:  [] __fput+0x8a/0x13f
Sep 25 11:42:50 faxserver-ny kernel:  [] filp_close+0x4e/0x54
Sep 25 11:42:50 faxserver-ny kernel:  [] 
sysenter_past_esp+0x56/0x79
Sep 25 11:42:50 faxserver-ny kernel: Code: 5b 5e c3 55 89 c5 57 0f b7 fa 
56 53 8b 18 8b 33 eb 39 66 39 7b 08 75 2f ff 73 0c 57 68 21 58 9b f8 e8 
36 a5 76 c7 8b 43 04 8b 13 <89> 42 04 89 10 89 d8 c7 03 00 01 10 00 c7 
43 04 00 02 20 00 e8
Sep 25 11:42:50 faxserver-ny kernel: EIP: [] 
capilib_release_appl+0x28/0x53 [kernelcapi] SS:ESP 0068:e5d35f48
Sep 25 11:45:35 faxserver-ny FaxQueuer[8134]: DEST (0x8076b50: 0 ready, 
1 batches, 0 sleeping:) Picking next job
Sep 25 11:45:35 faxserver-ny FaxQueuer[8134]: DEST (0x8076b50: 0 ready, 
1 batches, 0 sleeping:) Empty - removing
Sep 25 11:45:44 faxserver-ny kernel:  <7>capilib_new_ncci: kcapi: appl 1 
ncci 0x10101 up

Sep 25 11:46:05 faxserver-ny FaxQueuer[8134]: QUIT




Regards,
Stig Even Larsen
Nimra Norge AS

phone: +47 70 111 500
email: [EMAIL PROTECTED]




Debian Bug Tracking System wrote:

Thank you for the problem report you have sent regarding Debian.
This is an automatically generated reply, to let you know your message has
been received.  It is being forwarded to the package maintainers and other
interested parties for their attention; they will reply in due course.

As you requested using X-Debbugs-CC, your message was also forwarded to
   [EMAIL PROTECTED]
(after having been given a Bug report number, if it did not have one).

Your message has been sent to the package maintainer(s):
 Lionel Elie Mamane <[EMAIL PROTECTED]>

If you wish to submit further information on your problem, 

Bug#537798: kq: Crash in Dungar's Estate

2009-07-20 Thread Jørgen Elgaard Larsen
Package: kq
Version: 0.99.cvs20070319-1.1
Severity: important

When returning to Dungar's Estate with the helmet, and Dungar is murdered, the 
game crashes when you enter Dungar's room.

The bug is fixed upstream, in file scripts/estate.lua

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-2-686 (SMP w/1 CPU core)
Locale: LANG=da_DK, LC_CTYPE=da_DK (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages kq depends on:
ii  kq-data 0.99.cvs20070319-1.1 graphics and audio data for kq
ii  libaldmb1   1:0.9.3-5.1  dynamic universal music bibliotheq
ii  liballegro4.2   2:4.2.2-2portable library for cross-platfor
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libdumb11:0.9.3-5.1  dynamic universal music bibliotheq
ii  liblua505.0.3-3  Main interpreter library for the L

kq recommends no packages.

kq suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#488732: ifenslave-2.6: Please add support for arp_validate etc.

2008-06-30 Thread Rene H. Larsen
Package: ifenslave-2.6
Version: 1.1.0-10
Severity: wishlist
Tags: patch


The attached patch against version 1.1.0-10 of ifenslave-2.6 adds
support for the following bonding options:

bond_arp_validate
bond_use_carrier
bond_fail_over_mac

Please consider applying this for your next release.

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

Kernel: Linux 2.6.24.4 (SMP w/2 CPU cores)
Locale: LANG=da_DK, LC_CTYPE=da_DK (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages ifenslave-2.6 depends on:
ii  libc6 2.7-12 GNU C Library: Shared libraries

Versions of packages ifenslave-2.6 recommends:
ii  net-tools 1.60-19The NET-3 networking toolkit

-- no debconf information
--- ifenslave-2.6-1.1.0/debian/pre-up.orig  2008-06-30 09:32:46.0 
+0200
+++ ifenslave-2.6-1.1.0/debian/pre-up   2008-06-30 23:29:58.0 +0200
@@ -47,6 +47,9 @@
if [ "$IF_BOND_MIIMON" ]; then
echo "$IF_BOND_MIIMON" > $BOND_PARAMS/miimon
fi
+   if [ "$IF_BOND_USE_CARRIER" ]; then
+   echo "$IF_BOND_USE_CARRIER" > $BOND_PARAMS/use_carrier
+   fi
if [ "$IF_BOND_UPDELAY" ]; then
echo "$IF_BOND_UPDELAY" > $BOND_PARAMS/updelay
fi
@@ -61,6 +64,12 @@
if [ "$IF_BOND_ARP_INTERVAL" ]; then
echo "$IF_BOND_ARP_INTERVAL" > $BOND_PARAMS/arp_interval
fi
+   if [ "$IF_BOND_ARP_VALIDATE" ]; then
+   echo "$IF_BOND_ARP_VALIDATE" > $BOND_PARAMS/arp_validate
+   fi
+   if [ "$IF_BOND_FAIL_OVER_MAC" ]; then
+   echo "$IF_BOND_FAIL_OVER_MAC" > 
$BOND_PARAMS/fail_over_mac
+   fi
if [ "$IF_BOND_XMIT_HASH_POLICY" ]; then
echo "$IF_BOND_XMIT_HASH_POLICY" > 
$BOND_PARAMS/xmit_hash_policy
fi
--- ifenslave-2.6-1.1.0/debian/README.debian.orig   2008-06-30 
09:32:46.0 +0200
+++ ifenslave-2.6-1.1.0/debian/README.debian2008-06-30 23:33:26.0 
+0200
@@ -25,8 +25,8 @@
bond_primary eth0
 
 This would run the bonding device in active backup mode with eth0 as primary.
-Supported options are bond_mode, bond_miimon, bond_primary, bond_updelay,
-bond_downdelay, bond_arp_ip_target, bond_arp_interval, bond_xmit_hash_policy
-and bond_lacp_rate.
+Supported options are bond_mode, bond_miimon, bond_use_carrier, bond_primary,
+bond_updelay, bond_downdelay, bond_arp_ip_target, bond_arp_interval,
+bond_arp_validate, bond_fail_over_mac, bond_xmit_hash_policy and 
bond_lacp_rate.
 
 Guus Sliepen <[EMAIL PROTECTED]>, Fri, 30 Sep 2005 14:33:06 +0200


Bug#479515: Stopping web server: invoke-rc.d: initscript thttpd, action "stop" failed.

2008-05-05 Thread Marius Lund Larsen
Package: thttpd
Version: 2.25b-4
Severity: normal

Preparing to replace thttpd 2.25b-4 (using thttpd_2.25b-5_i386.deb) ...
Stopping web server: invoke-rc.d: initscript thttpd, action "stop"
failed.
dpkg: warning - old pre-removal script returned error exit status 1
dpkg - trying script from the new package instead ...
Stopping web server: invoke-rc.d: initscript thttpd, action "stop"
failed.
dpkg: error processing thttpd_2.25b-5_i386.deb (--install):
subprocess new pre-removal script returned error exit status 1
Errors were encountered while processing:
thttpd_2.25b-5_i386.deb


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

Kernel: Linux 2.6.19 (SMP w/1 CPU core; PREEMPT)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages thttpd depends on:
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  logrotate 3.7.1-3Log rotation utility

thttpd recommends no packages.

-- debconf information:
* thttpd/port_prob_dsc:
* thttpd/chroot: true
  thttpd/port_no_prob_dsc:
* thttpd/port_prob: Do nothing
  thttpd/select_port:
  thttpd/input_prob_dsc:



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



Bug#479517: invoke-rc.d: initscript acpid, action "start" failed.

2008-05-05 Thread Marius Lund Larsen
Package: acpid
Version: 1.0.4-7.1
Severity: important

Setting up acpid (1.0.4-7.1) ...
Loading ACPI modules...Module already loaded: battery
Module already loaded: ac
Module already loaded: processor
Module already loaded: button
Module already loaded: fan
Module already loaded: thermal
..
Starting Advanced Configuration and Power Interface
daemon...invoke-rc.d: initscript acpid, action "start" failed.
dpkg: error processing acpid (--configure):
subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of acpi-support-base:
acpi-support-base depends on acpid (>= 1.0.4); however:
Package acpid is not configured yet.
dpkg: error processing acpi-support-base (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of acpi-support:
acpi-support depends on acpi-support-base; however:
Package acpi-support-base is not configured yet.
acpi-support depends on acpid (>= 1.0.4); however:
Package acpid is not configured yet.
dpkg: error processing acpi-support (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
acpid
acpi-support-base
acpi-support
E: Sub-process /usr/bin/dpkg returned an error code (1)


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

Kernel: Linux 2.6.19 (SMP w/1 CPU core; PREEMPT)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages acpid depends on:
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  lsb-base  3.2-11 Linux Standard Base 3.2 init scrip

acpid recommends no packages.

-- no debconf information



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



Bug#479517: invoke-rc.d: initscript acpid, action "start" failed.

2008-05-05 Thread Marius Lund Larsen

If i issued the command:
dpkg --purge acpid
(Reading database ... 206760 files and directories currently installed.)
Removing acpid ...
Stopping Advanced Configuration and Power Interface daemon
Purging configuration files for acpid ...
apt-get -u upgrade
Reading package lists... Done
Building dependency tree  
Reading state information... Done

You might want to run `apt-get -f install' to correct these.
apt-get -f install
Reading package lists... Done
Building dependency tree  
Reading state information... Done

Correcting dependencies... Done
The following extra packages will be installed:
  acpid (1.0.4-7.1)
The following NEW packages will be installed:
  acpid (1.0.4-7.1)
0 upgraded, 1 newly installed, 0 to remove and 21 not upgraded.
2 not fully installed or removed.
Need to get 0B/26.3kB of archives.
After this operation, 164kB of additional disk space will be used.
Do you want to continue [Y/n]?
Selecting previously deselected package acpid.
(Reading database ... 206745 files and directories currently installed.)
Unpacking acpid (from .../acpid_1.0.4-7.1_i386.deb) ...
Setting up acpid (1.0.4-7.1) ...
Loading ACPI modules...Module already loaded: battery
Module already loaded: ac
Module already loaded: processor
Module already loaded: button
Module already loaded: fan
Module already loaded: thermal
.
Starting Advanced Configuration and Power Interface daemon
Setting up acpi-support-base (0.103-5) ...
Setting up acpi-support (0.103-5) ...
Checking battery state...
/dev/hda:
setting Advanced Power Management level to 0xfe (254)

/dev/hdc:
setting Advanced Power Management level to 0xfe (254)
HDIO_DRIVE_CMD failed: Input/output error

/dev/hda:
setting Advanced Power Management level to 0xfe (254)

/dev/hdc:
setting Advanced Power Management level to 0xfe (254)
HDIO_DRIVE_CMD failed: Input/output error
.
Then it worked



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



Bug#444003: capi4hylafax: After running perfectly for a whilec2faxsend/c2faxrecv processes freezes.

2007-10-27 Thread Stig Even Larsen

Hi Lionel,

Thank you for answering my bug report.

Quoting Lionel Elie Mamane <[EMAIL PROTECTED]>:


On Mon, Oct 01, 2007 at 10:31:50PM +0200, Stig Even Larsen wrote:


Today the faxserver had another failure. Se attached info for
specifics.


Thank you for your bug report, and sorry it took me so long to react
to it.

I think you have found a bug in the kernel CAPI layer and/or AVM C2
driver. Might be related to
http://bugzilla.kernel.org/show_bug.cgi?id=5064 or not.

There was a time where I was forwarding that kind of bug reports to
AVM, and getting successful resolutions from them, but they have gone
silent on me; stopped reacting to me emails. So there is not much I
can do. If/when linux kernel bug #5064 gets addressed you still get
that kind of problem, we can file a separate kernel bug.

Check you are using the latest firmware for your AVM C2; that was
always the first question AVM asked me :)


We are using the follwing file  
ftp://ftp.in-berlin.de/pub/capi4linux/firmware/c2/3-11-06/c2.bin
Since this file has the latest timestamp I'm assuming that this is the  
latest firmware. Can you confirm this?




--
Lionel



Best regards,
Stig Even Larsen
CTO
Nimra Norge AS





Bug#322971: Now works without the full Evolution source

2006-01-17 Thread René Højbjerg Larsen
Hi,

I would like to point out that it is now possible to build
mail-notification with support for Evolution 2.4 without having the
complete Evolution source available.


Step 1:

Install the evolution-dev and evolution-data-server-dev packages (as
well as libgnomeprintui2.2-dev, which seems to be missing from the build
depends).

Step 2:

Add the upstream patch at
http://download.savannah.gnu.org/releases/mailnotify/mail-notification-2.0-evolution-2.4.diff
 to debian/patches

Step 3:

Modify DEB_CONFIGURE_EXTRA_FLAGS in debian/rules to include
"--with-evolution-source-dir=/usr/include/evolution-2.4"

Step 4:

Build the package. Install. Enjoy.


One problem: This introduces a dependency on the evolution package,
which means that the Evolution plugin should probably be split off into
a separate package. Another option is to ignore the dependencies
generated by the plugin. I don't think it will do any harm to have the
plugin installed by itself without Evolution being present.

Otherwise it seems to work perfectly.
-- 
René Højbjerg Larsen <[EMAIL PROTECTED]>




Bug#362942: kreversi does not update score on undo

2006-04-16 Thread Jørgen Elgaard Larsen
Package: kreversi
Version: 4:3.5.2-1
Severity: normal

When I choose "undo", the score is not updated. It remains the same as before
the undo, even though the actual count is now different.

Depending on the circumstanses, this can make you loose a game you should have
won, or make you win a game by more than 64.


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

Versions of packages kreversi depends on:
ii  kdelibs4c2a   4:3.5.2-2  core libraries for all KDE applica
ii  libc6 2.3.6-6GNU C Library: Shared libraries
ii  libgcc1   1:4.1.0-1  GCC support library
ii  libkdegames1  4:3.5.2-1  KDE games library and common files
ii  libqt3-mt 3:3.3.6-1  Qt GUI Library (Threaded runtime v
ii  libstdc++64.1.0-1The GNU Standard C++ Library v3

kreversi recommends no packages.

-- no debconf information


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



Bug#365082: mozilla-calendar: Multiple alarms going off crashes mozilla

2006-04-27 Thread Jørgen Elgaard Larsen
Package: mozilla-calendar
Version: 2:1.7.12-1.1
Severity: important

When you open Mozilla Calendar and more then one alarm is waiting to go off, it
beeps once for each alarm waiting, and then crash mozilla with a segfault.

The only workaround I have found is to open the calendar file in a text editor 
and
manually removing the VALARM entries. Otherwise you cannot open Calendar at 
all. For
most users, this is not an option, and they will have lost their calendar 
alltogether.

The problem seems unrelated to whether you have requested email alarm and 
whether the
event has been confirmed. Rather, I suspect that it has something to do with
having to acknowledge more that one alarm at the same time.


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

Versions of packages mozilla-calendar depends on:
ii  mozilla-browser 2:1.7.12-1.1 The Mozilla Internet application s

mozilla-calendar recommends no packages.

-- no debconf information


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



Bug#359924: pioneers-client: Legend page is shown even if turned off in prefs

2006-03-29 Thread Jørgen Elgaard Larsen
Package: pioneers-client
Version: 0.9.55-1
Severity: normal



When I start a game, the legend tab is always shown, even if it is turned off
in preferences. When I go to Settings->Preferences, the "Show legend" box is
correctly un-ticked. I have to tick it and then un-tick it to turn the legend
tab off.

This is quite irritating, because when I have traded and close the trade
window and the legend tab is on, the legend page is shown instead of the map.
After trading, it should go back to whatever I was doing before trading
(i.e. usually the map).


My ~/.config/pioneers says:
[settings]
toolbar_show_accelerators=0
theme=Default
show_toolbar=1
legend_page=0
[favorites]
server0name=localhost
server0port=5556
[connect]
server=localhost
port=5556
meta-server=
name=Elhaard


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

Versions of packages pioneers-client depends on:
ii  libatk1.0-0   1.11.3-1   The ATK accessibility toolkit
ii  libbonobo2-0  2.14.0-1   Bonobo CORBA interfaces library
ii  libc6 2.3.6-4GNU C Library: Shared libraries an
ii  libcairo2 1.0.2-3The Cairo 2D vector graphics libra
ii  libfontconfig12.3.2-5generic font configuration library
ii  libgconf2-4   2.14.0-1   GNOME configuration database syste
ii  libglib2.0-0  2.10.1-2   The GLib library of C routines
ii  libgnome2-0   2.14.0-1   The GNOME 2 library - runtime file
ii  libgnomevfs2-02.14.0-1   GNOME virtual file-system (runtime
ii  libgtk2.0-0   2.8.16-1   The GTK+ graphical user interface 
ii  liborbit2 1:2.14.0-1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0 1.12.0-2   Layout and rendering of internatio
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  libx11-6  6.9.0.dfsg.1-5 X Window System protocol client li
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  6.9.0.dfsg.1-5 X Window System miscellaneous exte
ii  libxi66.9.0.dfsg.1-5 X Window System Input extension li
ii  libxinerama1  6.9.0.dfsg.1-5 X Window System multi-head display
ii  libxrandr26.9.0.dfsg.1-5 X Window System Resize, Rotate and
ii  libxrender1   1:0.9.0.2-1X Rendering Extension client libra

Versions of packages pioneers-client recommends:
ii  pioneers-help 0.9.55-1   online help for the Pioneers clien
ii  pioneers-server-console   0.9.55-1   computer version of the Settlers o
ii  pioneers-server-gtk   0.9.55-1   computer version of the Settlers o

-- no debconf information


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



Bug#359925: pioneers-client: Robber kills client

2006-03-29 Thread Jørgen Elgaard Larsen
Package: pioneers-client
Version: 0.9.55-1
Severity: normal

Sometimes, if I roll a 7 in my first round, the client crashes. When I
reconnect, I can place the robber.

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

Versions of packages pioneers-client depends on:
ii  libatk1.0-0   1.11.3-1   The ATK accessibility toolkit
ii  libbonobo2-0  2.14.0-1   Bonobo CORBA interfaces library
ii  libc6 2.3.6-4GNU C Library: Shared libraries an
ii  libcairo2 1.0.2-3The Cairo 2D vector graphics libra
ii  libfontconfig12.3.2-5generic font configuration library
ii  libgconf2-4   2.14.0-1   GNOME configuration database syste
ii  libglib2.0-0  2.10.1-2   The GLib library of C routines
ii  libgnome2-0   2.14.0-1   The GNOME 2 library - runtime file
ii  libgnomevfs2-02.14.0-1   GNOME virtual file-system (runtime
ii  libgtk2.0-0   2.8.16-1   The GTK+ graphical user interface 
ii  liborbit2 1:2.14.0-1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0 1.12.0-2   Layout and rendering of internatio
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  libx11-6  6.9.0.dfsg.1-5 X Window System protocol client li
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  6.9.0.dfsg.1-5 X Window System miscellaneous exte
ii  libxi66.9.0.dfsg.1-5 X Window System Input extension li
ii  libxinerama1  6.9.0.dfsg.1-5 X Window System multi-head display
ii  libxrandr26.9.0.dfsg.1-5 X Window System Resize, Rotate and
ii  libxrender1   1:0.9.0.2-1X Rendering Extension client libra

Versions of packages pioneers-client recommends:
ii  pioneers-help 0.9.55-1   online help for the Pioneers clien
ii  pioneers-server-console   0.9.55-1   computer version of the Settlers o
ii  pioneers-server-gtk   0.9.55-1   computer version of the Settlers o

-- no debconf information


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



Bug#590632: openjdk: Allows all signed applets to access Debian account

2010-07-27 Thread Niels Elgaard Larsen
Package: openjdk-6-jre
Version: 6b18-1.8-4
Severity: important
File: openjdk
Tags: upstream


First I believe it is relly wrong to grant any signed applet
AllPermission. It allows internet banks, tax authoritis, photo printing
operations, etc access to our computers.

Also I could not find a way to regain control over which applet get
control over my Debian accound.

using 
  permission java.lang.RuntimePermission "usePolicy";
in ~/.java.policy does not work.

Check this to test java applet permission (this for selfsigned applet on
site with self-signed SSL certificate)
https://www.agol.dk/elgaard/sand/sand.html


Just because I use a netbank or det danish digital signature does not
men that I want to allow them to read or write any file on my user account.



-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=da_DK.UTF-8, LC_CTYPE=da_DK.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages openjdk-6-jre depends on:
ii  libaccess-bridge-java-j 1.26.2-5 Java Access Bridge for GNOME (jni 
ii  libasound2  1.0.23-1 shared library for ALSA applicatio
ii  libc6   2.11.2-2 Embedded GNU C Library: Shared lib
ii  libgif4 4.1.6-9  library for GIF images (library)
ii  libjpeg62   6b1-1The Independent JPEG Group's JPEG 
ii  libpng12-0  1.2.44-1 PNG library - runtime
ii  libpulse0   0.9.21-3 PulseAudio client libraries
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxext62:1.1.2-1X11 miscellaneous extension librar
ii  libxi6  2:1.3-4  X11 Input extension library
ii  libxrender1 1:0.9.6-1X Rendering Extension client libra
ii  libxtst62:1.1.0-3X11 Testing -- Record extension li
ii  openjdk-6-jre-headless  6b18-1.8-4   OpenJDK Java runtime, using Hotspo
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

openjdk-6-jre recommends no packages.

Versions of packages openjdk-6-jre suggests:
ii  icedtea6-plugin   6b18-1.8-4 web browser plugin based on OpenJD

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#607113: Dependency problem libdns55 -> libisc50

2011-01-01 Thread Jørgen Elgaard Larsen

Adam D. Barratt wrote:

I'm not sure why you believe this is an issue on *any* architecture.



Is was an issue (for me, at least), because a simple security update 
gave me a dependency conflict. And I did not think far enough to check 
dependencies for all implicated packages.


Agreed, I should have checked, but this was not my brightest moment.


I am very happy for your answer, it helped me a lot. And since it is now 
documented in the bug tracker, other dim-witted admins can now find the 
answer, too.


I cannot foresee the consequences of adding a "Replaces libdns55" to 
libdns58, but if it were possible, I am sure that it will make life a 
little easier for those who have not already upgraded.


Thanks again for your answer.



Kind regards & New Year greetings,

Jørgen Elgaard Larsen



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#619379: xserver-xorg-core: X crashes on launch after update to 1.7.7-13.

2011-03-23 Thread Nicolas Damgaard Larsen

Forgot to mention, this is on Wheezy 64bit version.

Cheers



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#619379: xserver-xorg-core: X crashes on launch after update to 1.7.7-13.

2011-03-24 Thread Nicolas Damgaard Larsen

On 2011-03-23 15:37, Julien Cristau wrote:

If you're using the radeon driver, you need to uninstall (and purge)
fglrx-related packages.  If you want to use the closed fglrx driver then
you need to say that in xorg.conf.


Seems that I for some reason had no xorg.conf but a load of XF86Config*. 
Generating a proper xorg.conf solved the issue. Guess you can consider 
it solved.

Thank you.



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#602126: ITP: python-ase -- Atomic Simulation Environment

2011-02-14 Thread Ask Hjorth Larsen

Hi Michael

On Sun, 13 Feb 2011, Michael Banck wrote:


Hi,

On Mon, Nov 01, 2010 at 08:10:30PM +0100, Yann Pouillon wrote:

* Package name: python-ase
  Version : 3.4.1
  Upstream Author : Ask Hjorth Larsen 
* URL : https://wiki.fysik.dtu.dk/ase/
* License : GPL, LGPL
  Programming Lang: Python
  Description : Atomic Simulation Environment

The Atomic Simulation Environment (ASE) is the common part of the
simulation tools developed at CAMd. ASE provides Python modules for
manipulating atoms, analyzing simulations, visualization, and wrapping
electronic-structure codes.
..
It currently supports ABINIT, ASAP, DFTB, ELK, EXCITING, EMT, FHI-AIMS,
FLEUR, GPAW, HOTBIT, JACAPO, SIESTA, and TURBOMOLE.

This package will be part of the Debian Science nanoscale-physics
metapackage.


How is packaging going forward?  If this is not yet team-maintained, we
can propose to maintain it as part of the Debichem project (possibly
along with some/all of the other nanoscale-physics packages).


Regards,

Michael


I have a PPA package for Ubuntu here:

  https://launchpad.net/~campos-dev/+archive/campos

I guess a few things (like the fact that this should be for Debian and not 
for Ubuntu) have to be changed, but otherwise things should be in place 
with the possible exception of some policy issues.


With regards to maintenance, I'm not entirely clear on how we were going 
to do things in the first place.  Yann?


Regards
Ask



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#578006: supertuxkart-data: Horn sound broken

2010-04-15 Thread Jørgen Elgaard Larsen
Package: supertuxkart-data
Version: 0.5+dfsg1-1
Severity: normal

The file /usr/share/games/supertuxkart/data/sfx/radio/horn.wav clearly does not
contain the intended sound. It sounds like a random recording which has been
disturbed by cell phone radiation.

The sound makes the game really annoying to play with the sound on.

-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-2-686 (SMP w/1 CPU core)
Locale: LANG=da_DK, LC_CTYPE=da_DK (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

supertuxkart-data depends on no packages.

supertuxkart-data recommends no packages.

Versions of packages supertuxkart-data suggests:
ii  supertuxkart 0.5+dfsg1-1 kart racing game

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#603365: [INTL:da] Danish translation console-setup

2010-11-13 Thread Ask Hjorth Larsen
Package: console-setup
Severity: wishlist
Tags: l10n patch

Please commit this Danish translation.

as...@askm:~/console-setup$ msgfmt -cv console-setup.da.po
89 oversatte tekster.

Regards
Ask
# translation of debian-installer_packages_po_sublevel3_da.po to
# Danish messages for debian-installer.
# This file is distributed under the same license as debian-installer.
#
# Reviewed 2007 by Niels Rasmussen
#
# Bemærk:
#
# Konventioner
# 
#
# array -> serie (bør nok revideres til række jf. f.eks. gnome-disk-utility, eller der bør findes en generel konvention
# volume -> arkiv (som i logical volume/physical volume; dette skal måske revideres jf. gnome-disk-utility el. lign.; bemærk også PV->FA som lige nu er den danske oversættelse af forkortelsen)
# configuration -> opsætning
#
# Ask Hjorth Larsen , 2009, 2010.
# Mads Bille Lundby , 2009.
# Henrik Christian Grove , 2008.
# Jesper Dahl Nyerup , 2008.
# Claus Hindsgaul , 2004-2007, 2010.
# Jacob Sparre Andersen , 2008, 2010.
msgid ""
msgstr ""
"Project-Id-Version: debian-installer_packages_po_sublevel3_da\n"
"Report-Msgid-Bugs-To: console-se...@packages.debian.org\n"
"POT-Creation-Date: 2010-11-09 22:27+0100\n"
"PO-Revision-Date: 2010-11-13 13:24+0100\n"
"Last-Translator: Ask Hjorth Larsen \n"
"Language-Team: Dansk \n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.0\n"

#. Type: text
#. Description
#. :sl2:
#: ../console-setup.templates:2001
msgid "Do not change the boot/kernel font"
msgstr "Ændr ikke opstarts/kerne-skrifttypen"

#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid ". Arabic"
msgstr ". Arabisk"

#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid "# Armenian"
msgstr "# Armensk"

#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid "# Cyrillic - KOI8-R and KOI8-U"
msgstr "# Kyrillisk - KOI8-R og KOI8-U"

#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid "# Cyrillic - non-Slavic languages"
msgstr "# Kyrillisk - ikke-slaviske sprog"

#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid "# Cyrillic - Slavic languages (also Bosnian and Serbian Latin)"
msgstr "# Kyrillisk - slaviske sprog (også bosnisk og serbisk latin)"

#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid ". Ethiopic"
msgstr ". Etiopisk"

#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid "# Georgian"
msgstr "# Georgisk"

#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid "# Greek"
msgstr "# Græsk"

#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid "# Hebrew"
msgstr "# Hebraisk"

#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid "# Lao"
msgstr "# Lao"

#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid "# Latin1 and Latin5 - western Europe and Turkic languages"
msgstr "# Latin1 og Latin5 - vesteuropa og tyrkiske sprog"

#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid "# Latin2 - central Europe and Romanian"
msgstr "# Latin2 - centraleuropa og rumænsk"

# Fra wikipedia om chichewa: Nyanja, også kendt under navnet chinyanja, er et bantusprog, der tales i Malawi og Zambia. I Malawi kaldes sproget chichewa, og tales dér af over halvdelen af befolkningen.
#
# Jeg har semiarbitrært valgt chinyanja da dette også vil forstås på engelsk
#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid "# Latin3 and Latin8 - Chichewa; Esperanto; Irish; Maltese and Welsh"
msgstr "# Latin3 og Latin8 - chinyanja; esperanto; irsk; maltesisk og walisisk"

# marshallesisk er bedst bud jf. norsk wikipedia
#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid "# Latin7 - Lithuanian; Latvian; Maori and Marshallese"
msgstr "# Latin7 - litauisk; lettisk; maori og marshallesisk"

#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid ". Latin - Vietnamese"
msgstr ". Latin - vietnamesisk"

#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid "# Thai"
msgstr "# Thai"

#. Type: select
#. Choices
#. :sl3:
#: ../console-setup.templates:3001
msgid ". Combined - Latin; Slavic Cyrillic; Hebrew; basic Arabic"
msgstr ". Kombineret - latin; slavisk kyrillisk; hebraisk; basal arabisk

Bug#603365: [INTL:da] Danish translation console-setup

2010-11-13 Thread Ask Hjorth Larsen
On Sat, Nov 13, 2010 at 5:03 PM, Christian PERRIER  wrote:
>
>> #: ../keyboard-configuration.templates:10001
>> msgid "Keep default keyboard options (${XKBOPTIONS})?"
>> msgstr "Behold standardtastaturindstillinger (${{XKBOPTIONS})?"
>
> I committed the file and fixed a little error above (double opening
> curly brace in the variable name).

Thank you - evidently msgfmt did not find this.  Is there a way to
validate such formatting strings?

Regards
Ask



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#607113: Dependency problem libdns55 -> libisc50

2010-12-14 Thread Joergen Elgaard Larsen
Package: libdns55
Version: 1:9.6.ESV.R1+dfsg-0+lenny2
Severity: important


After the latest security updates, libdns55 depends on
libisc52 = 1:9.6.ESV.R1+dfsg-0+lenny2

However, libisc52 is replaced by libisc50, of which I now have a newer
version:

Package: libisc50   


Section: libs   


Installed-Size: 388 


Maintainer: LaMont Jones 


Architecture: amd64 


Source: bind9   


Version: 1:9.6.ESV.R3+dfsg-0+lenny1 

I am not sure whether this is only an issue on amd64.

My /etc/apt/sources.list has:

deb http://ftp.fi.debian.org/debian/ lenny main
deb http://security.debian.org/ lenny/updates main
deb http://volatile.debian.org/debian-volatile lenny/volatile main






-- System Information:
Debian Release: 5.0.7
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/1 CPU core)
Locale: LANG=da_DK.UTF-8, LC_CTYPE=da_DK.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libdns55 depends on:
ii  libc6 2.7-18lenny6   GNU C Library: Shared libraries
ii  libcap2   2.11-2 support for getting/setting POSIX.
di  libisc52  1:9.6.ESV.R1+dfsg-0+lenny2 ISC Shared Library used by BIND
ii  libkrb53  1.6.dfsg.4~beta1-5lenny4   MIT Kerberos runtime libraries
ii  libssl0.9.8   0.9.8g-15+lenny9   SSL shared libraries
ii  libxml2   2.6.32.dfsg-5+lenny1   GNOME XML library

libdns55 recommends no packages.

libdns55 suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#602748: ITP: gpaw -- Real-space PAW-based electronic structure code

2010-11-07 Thread Ask Hjorth Larsen

Package: wnpp
Severity: wishlist
Owner: Ask Hjorth Larsen 

* Package name: gpaw
  Version : 0.7.2
  Upstream Author : Ask Hjorth Larsen 
* URL : https://wiki.fysik.dtu.dk/gpaw/
* License : GPL
  Programming Lang: Python, C
  Description : Real-space PAW-based electronic structure code

GPAW is a density-functional theory (DFT) Python code based on the 
projector-augmented wave (PAW) method. It uses real-space uniform grids 
and multigrid methods or atom-centered basis-functions.


This package will be part of the Debian Science nanoscale-physics 
metapackage.




--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#551877: What to do in order to avoid braking Debian policies

2009-11-05 Thread Flemming N. Larsen
I am a bit confused. Why do you want to build Robocode after all. Is it
being distributed with Debian?

You could download the robocode-1.7.1.4-setup.jar file, which includes
everything needed to run Robocode, as long as Java 5.0 is installed. There
is no need to compile it, unless you are a developer that wants to play with
the sources or make a contribution for Robocode.

 

Using Maven2, it is a bit hard to avoid downloading .jar files. It is a part
of the concept of Maven2. Could you explain what needs to be changed in
order not to brake the Debian policies.

The mentioned problem with "mvn.sh" is that some of the .sh and .bat files
are wrapper scripts. We could change that, if this is the problem?

 

I don't expect Robocode to be the only project out there using Maven. So
this might be a general issue with using Maven in Debian?

 

Regards,

- Flemming N. Larsen, administrator and developer of Robocode
(http://robocode.sourceforge.net)



Bug#555622: catdoc: parses negative integers incorrectly on 64bit architecture.

2009-11-10 Thread Niels Elgaard Larsen
Package: catdoc
Version: 0.94.2-1
Severity: important
Tags: patch


On amd64 using xls2csv negative numbers are exported as huge positive numbers

I believe the real problem is in xls.parse.c:format_rk
which should be:

#include 

if ( *(rec) & 0x02 )
{
  int32_t ival=getlong((unsigned char *)rec,0);
  value=(double)(ival>>2);
}

But there are many typecast issues, I tried to handle some of them:

Patch:

diff -w -Naur catdoc-0.94.2/src/analyze.c catdoc-0.94.2.mine/src/analyze.c
--- catdoc-0.94.2/src/analyze.c 2006-02-24 18:44:06.0 +0100
+++ catdoc-0.94.2.mine/src/analyze.c2009-11-03 14:42:35.0 +0100
@@ -39,18 +39,18 @@
}
catdoc_read(buffer,4,1,f);
buffer[4]=0;
-   if (strncmp(buffer,write_sign,2)==0) {
+   if (strncmp((char *) buffer,write_sign,2)==0) {
printf("[Windows Write file. Some garbage expected]\n");
get_unicode_char=get_8bit_char;
return process_file(f,LONG_MAX);
-   } else if (strncmp(buffer,rtf_sign,4)==0) {
+   } else if (strncmp((char *) buffer,rtf_sign,4)==0) {
return parse_rtf(f);
-   } else if (strncmp(buffer,old_word_sign,2)==0) {
-  fread(buffer+4,1,124,f); 
+   } else if (strncmp((char *)buffer,old_word_sign,2)==0) {
+  fread((char *) buffer+4,1,124,f);
   return parse_word_header(buffer,f,128,0);
}   
fread(buffer+4,1,4,f);
-   if (strncmp(buffer,ole_sign,8)==0) {
+   if (strncmp((char *) buffer,ole_sign,8)==0) {
if ((new_file=ole_init(f, buffer, 8)) != NULL) {
set_ole_func();
while((ole_file=ole_readdir(new_file)) != NULL) {
@@ -71,7 +71,7 @@
}   
} else {
set_std_func();
-   copy_out(f,buffer);
+   copy_out(f,(char *) buffer);
return 0;
}

diff -w -Naur catdoc-0.94.2/src/numutils.c catdoc-0.94.2.mine/src/numutils.c
--- catdoc-0.94.2/src/numutils.c2006-02-24 18:44:06.0 +0100
+++ catdoc-0.94.2.mine/src/numutils.c   2009-11-03 14:42:35.0 +0100
@@ -5,25 +5,32 @@
 /* This file is part of catdoc project   */
 /* (c) Victor Wagner 1996-2003, (c) Alex Ott 2003   */
 /*/
+#include 
+#include 
 
 
 //
 /* Reads 2-byte LSB  int from buffer at given offset platfom-indepent
  * way
  */ 
-unsigned int getshort(unsigned char *buffer,int offset) {
-   return (unsigned short int)buffer[offset]|((unsigned short 
int)buffer[offset+1]<<8);
+uint32_t getshort(unsigned char *buffer,int offset) {
+  //  fprintf(stderr," GS %d: 
%d,%d=%d\n",offset,(uint16_t)buffer[offset],(uint16_t)buffer[offset+1]<<8,(uint16_t)buffer[offset]|((uint16_t)buffer[offset+1]<<8));
+   return (uint16_t)buffer[offset]|((uint16_t)buffer[offset+1]<<8);
 }  
+
 //
 /* Reads 4-byte LSB  int from buffer at given offset almost platfom-indepent
  * way
  */ 
-long int getlong(unsigned char *buffer,int offset) {
-   return (long)buffer[offset]|((long)buffer[offset+1]<<8L)
-   |((long)buffer[offset+2]<<16L)|((long)buffer[offset+3]<<24L);
+int32_t getlong(unsigned char *buffer,int offset) {
+  int32_t res = ((long)buffer[offset])|((long)buffer[offset+1]<<8L) 
|((long)buffer[offset+2]<<16L)|((long)buffer[offset+3]<<24L);
+  fprintf(stderr," LL %d: %d,%d,%d,%d=%d 
res=%d\n",offset,(long)buffer[offset],((long)buffer[offset+1]<<8L),((long)buffer[offset+2]<<16L),(long)buffer[offset+3]<<24L,
+  
((long)buffer[offset])|((long)buffer[offset+1]<<8L)|((long)buffer[offset+2]<<16L)|(long)buffer[offset+3]<<24L,res
 );
+   return (res);
 }  
 
-unsigned long int getulong(unsigned char *buffer,int offset) {
-   return (unsigned long)buffer[offset]|((unsigned 
long)buffer[offset+1]<<8L)
+uint32_t getulong(unsigned char *buffer,int offset) {
+  uint32_t res = ((unsigned long)buffer[offset])|((unsigned 
long)buffer[offset+1]<<8L)
|((unsigned long)buffer[offset+2]<<16L)|((unsigned 
long)buffer[offset+3]<<24L);
+  return res;
 }  
diff -w -Naur catdoc-0.94.2/src/ole.c catdoc-0.94.2.mine/src/ole.c
--- catdoc-0.94.2/src/ole.c 2006-02-25 16:28:14.0 +0100
+++ catdoc-0.94.2.mine/src/ole.c2009-11-03 14:42:35.0 +0100
@@ -97,7 +97,7 @@
if ( ret != BBD_BLOCK_SIZE ) {
return NULL;
}
-   if (strncmp(oleBuf,ole_sign,8) != 0) {
+   if (strncmp((char *)oleBuf,(char *) ole_sign,8) != 0) {
return NULL;
}
sectorSize = 1<
 #include 
+#inc

  1   2   >