Bug#908494: lightning: no icon to access calendar after upgrade to TB 60

2018-09-21 Thread Tim Riemenschneider
Am 21.09.18 um 17:28 schrieb Carsten Schoenert:
>
>> So IMHO the thunderbird-l10n-$(lang) packages should recommend the
>> corresponding lightning-l10n-$(lang) package,
>> since thunderbird recommends lightning.
> Only a small amount of users is able to really understand what
> Recommends and Suggests means. And the real problem is more the really
> depending package here. But we have no way to detect the correct
> circumstances and needs by dpkg here. So we need to solve this problem
> in a different way than using Recommends.
My idea was that when lightning was installed alongside thunderbird
because of the recommend (i.e. the user did not call apt with
"--without-recommends"), the lightning-l10n package should be
installed, too.
(at least it would have saved me some time finding this. I first tried
to debug this locally before I went to the bugtracker ;-) )
This would mean, that in a default debian-setup in most cases
one of two cases would happen:
- don't install recommends: only installing thunderbird-l10n-XX would
not install lighting, so no problem (thunderbird is installed via depends)
- install recommends: lightning is installed via recommends, as well
as the language-pack, so also no problem

The current state (lighting-l10n missing) would require some manual
intervention.

>> (I used to only "apt install thunderbird-l10n-de", which pulled in
>> thunderbird and lightning by depends/recommends, and
>> just now wondered where my calendar is ;-) )
>>
>> Even better would be to detect the missing lightning-l10n-pack and
>> either let lightning fallback to english or, if that is somehow
>> not possible, notify the user.
> Unfortunately all this is impossible. We have no way to interact here
> with Thunderbird and control the behavior of the Thunderbird binary then.
I suspected something like that...
However I still find it somewhat strange, that there is no indication inside
thunderbird that something is not alright, I would either expect it to
simply
fallback to english, or to show an error somewhere.
(In my case, coming from software-development myself, even a rather cryptic
"l10n-error: could not open calendar-de/something" would have helped ;-)
But if I understand you right, thats because the debian-packaging deviates
from the way mozilla is distibuting this?
(Would this problem also arise with thirdparty extensions, i.e.
extensions not
normally bundled with thunderbird?)
> We could have detect this all earlier if user would test also packages
> from experimental. :)
>
;-)



Bug#908494: lightning: no icon to access calendar after upgrade to TB 60

2018-09-21 Thread Tim Riemenschneider
Thank you, this was exactly my problem, too.

So IMHO the thunderbird-l10n-$(lang) packages should recommend the
corresponding lightning-l10n-$(lang) package,
since thunderbird recommends lightning.

(I used to only "apt install thunderbird-l10n-de", which pulled in
thunderbird and lightning by depends/recommends, and
just now wondered where my calendar is ;-) )

Even better would be to detect the missing lightning-l10n-pack and
either let lightning fallback to english or, if that is somehow
not possible, notify the user.
In the current state, there is no indication what is wrong:
- lightning is shown in the addon-manager
- no error is shown
- but all artifacts of lightning are completely missing:
    - no icons in the toolbar
    - no menu-entry for the whole calendar-menu
    - no "calendar"-tab in settings
    - no calendar-related items in File -> new (no "new calendar", "new
event", "new task" etc.)



Bug#772346: dvbcut: Use QT4 QInputEvent::modifiers instead of QT3 QT...Event::state()

2014-12-06 Thread Tim Riemenschneider
Package: dvbcut
Version: 0.5.4+svn178-9
Severity: normal
Tags: patch

I noticed that (atleast for me) pressing modifier-keys (Shift/Alt/Ctrl) while
navigating the video (either by using the mousewheel or cursor-keys) does not
change the step-size.

After changing the use QWheelEvent::state() (and QKeyEvent::state()) to
QInputEvent::modifier() in dvbcut::eventFilter() these work again.

(Since they are not documented, these are (by default):
without modifier: move 1500 frames =~ 1 minute (at 25fps)
Shift: 25 frames =~ 1 second
Ctrl: 1 frame
Alt: 22500 frames =~ 15 minutes)
(These are changable in the configfile. However the config is not written, I'll
post another patch in a seperate bugreport)



-- System Information:
Debian Release: jessie/sid
  APT prefers testing-updates
  APT policy: (500, 'testing-updates'), (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages dvbcut depends on:
ii  liba52-0.7.4   0.7.4-17
ii  libao4 1.1.0-3
ii  libavcodec56   6:11-2
ii  libavformat56  6:11-2
ii  libavutil546:11-2
ii  libc6  2.19-13
ii  libgcc11:4.9.1-19
ii  libmad00.15.1b-8
ii  libqt4-network 4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libqt4-qt3support  4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libqt4-sql 4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libqt4-xml 4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libqtcore4 4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libqtgui4  4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libstdc++6 4.9.1-19
ii  libswscale36:11-2

Versions of packages dvbcut recommends:
ii  mplayer2 [mplayer]  2.0-728-g2c378c7-4+b1

dvbcut suggests no packages.
Author: Tim Riemenschneider deb...@tim-riemenschneider.de
Description: use the Qt4 QtInputEvent::modifiers() method instead of the Qt3 QWheel|KeyEvent::state()
(the later is not working anymore?)

--- a/src/dvbcut.cpp
+++ b/src/dvbcut.cpp
@@ -2144,17 +2144,24 @@
   bool myEvent = true;
   int delta = 0;
   int incr = WHEEL_INCR_NORMAL;
+  Qt::KeyboardModifiers mods;
 
   if (e-type() == QEvent::Wheel  watched != ui-jogslider) {
 QWheelEvent *we = (QWheelEvent*)e;
 // Note: delta is a multiple of 120 (see Qt documentation)
 delta = we-delta();
-  if (we-state()  Qt::Key_Alt)
+mods = we-modifiers();
+if(mods  Qt::AltModifier) {
   incr = WHEEL_INCR_ALT;
-  else if (we-state()  Qt::Key_Control)
+} else if(mods  Qt::ControlModifier) {
   incr = WHEEL_INCR_CTRL;
-  else if (we-state()  Qt::Key_Shift)
+} else if(mods  Qt::ShiftModifier) {
   incr = WHEEL_INCR_SHIFT;
+} else if(mods  Qt::MetaModifier) {
+  // TODO: do we want/need another step-size?
+  // incr = WHEEL_INCR_META;
+}
+
   }
   else if (e-type() == QEvent::KeyPress) {
 QKeyEvent *ke = (QKeyEvent*)e;
@@ -2163,12 +2170,17 @@
   delta = -delta;
 else if (ke-key() != Qt::Key_Left)
   myEvent = false;
-if (ke-state()  Qt::Key_Alt)
+mods = ke-modifiers();
+if(mods  Qt::AltModifier) {
   incr = WHEEL_INCR_ALT;
-else if (ke-state()  Qt::Key_Control)
+} else if(mods  Qt::ControlModifier) {
   incr = WHEEL_INCR_CTRL;
-else if (ke-state()  Qt::Key_Shift)
+} else if(mods  Qt::ShiftModifier) {
   incr = WHEEL_INCR_SHIFT;
+} else if(mods  Qt::MetaModifier) {
+  // TODO: do we want/need another step-size?
+  //  incr = WHEEL_INCR_META;
+}
   }
   else
 myEvent = false;


Bug#772413: dvbcut: Proper initialization of settings-object

2014-12-06 Thread Tim Riemenschneider
Package: dvbcut
Version: 0.5.4+svn178-9
Severity: normal
Tags: patch

As mentioned in bug #772346, the settings were not properly written.
This patch corrects the initialization of the settings-object (call parent
constructor with proper parameters) so that the settings could be written (and
read again))



-- System Information:
Debian Release: jessie/sid
  APT prefers testing-updates
  APT policy: (500, 'testing-updates'), (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages dvbcut depends on:
ii  liba52-0.7.4   0.7.4-17
ii  libao4 1.1.0-3
ii  libavcodec56   6:11-2
ii  libavformat56  6:11-2
ii  libavutil546:11-2
ii  libc6  2.19-13
ii  libgcc11:4.9.1-19
ii  libmad00.15.1b-8
ii  libqt4-network 4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libqt4-qt3support  4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libqt4-sql 4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libqt4-xml 4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libqtcore4 4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libqtgui4  4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libstdc++6 4.9.1-19
ii  libswscale36:11-2

Versions of packages dvbcut recommends:
ii  mplayer2 [mplayer]  2.0-728-g2c378c7-4+b1

dvbcut suggests no packages.

-- no debconf information
Author: Tim Riemenschneider deb...@tim-riemenschneider.de
Description: Fix initialisation of QSettings
 Settings are now correctly read and written.
--- a/src/settings.cpp
+++ b/src/settings.cpp
@@ -79,8 +79,7 @@
 pipe/3/post=
 */
 
-dvbcut_settings::dvbcut_settings() {
-  setPath(DVBCUT_QSETTINGS_DOMAIN, DVBCUT_QSETTINGS_PRODUCT);
+dvbcut_settings::dvbcut_settings() : QSettings(DVBCUT_QSETTINGS_DOMAIN, DVBCUT_QSETTINGS_PRODUCT) {
   beginGroup(/ DVBCUT_QSETTINGS_DOMAIN / DVBCUT_QSETTINGS_PRODUCT);
   loaded = false;
 }


Bug#721606: chromium: SSL-Certificate warnings are only shown in one tab when opening several to the same host

2013-09-02 Thread Tim Riemenschneider
Package: chromium
Version: 29.0.1547.57-1~deb7u1
Severity: normal

See: https://code.google.com/p/chromium/issues/detail?id=283752

Chrome Version (from the about:version page):
29.0.1547.57 (Entwickler-Build 217859) Debian 7.1
Is this the most recent version: newest in Debian wheezy, unstable has a newer
one
OS + version: Debian 7.1 (wheezy)
CPU architecture (32-bit / 64-bit): 64bit
Window manager: KDE
URLs (if relevant): any page triggering a certificate warning
Behavior in Linux Firefox: warnings are shown in each tab
Behavior in Windows Chrome (if you have access to it):
same behaviour as in chromium

What steps will reproduce the problem?
1. Open a page triggering a certificate warning (untrusted cert, expired cert
etc.), don't click anything yet (warning is shown)
2. Open a new tab with the same URL as the first tab.
Instead of a warning, only a spinning cursor (hourglass) is shown, nothing
seems to happen.
3. When you dismiss the warning on the first tab, the second tab loads

What is the expected result?
- Show the warning on each tab



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

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

Versions of packages chromium depends on:
ii  chromium-inspector  29.0.1547.57-1~deb7u1
ii  gconf-service   3.2.5-1+build1
ii  libasound2  1.0.25-4
ii  libatk1.0-0 2.4.0-2
ii  libc6   2.13-38
ii  libcairo2   1.12.2-3
ii  libcups21.5.3-5
ii  libdbus-1-3 1.6.8-1+deb7u1
ii  libexpat1   2.1.0-1
ii  libfontconfig1  2.9.0-7.1
ii  libfreetype62.4.9-1.1
ii  libgcc1 1:4.7.2-5
ii  libgconf-2-43.2.5-1+build1
ii  libgcrypt11 1.5.0-5+deb7u1
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglib2.0-02.33.12+really2.32.4-5
ii  libgnome-keyring0   3.4.1-1
ii  libgtk2.0-0 2.24.10-2
ii  libjpeg88d-1
ii  libnspr42:4.9.2-1
ii  libnss3 2:3.14.3-1
ii  libnss3-1d  2:3.14.3-1
ii  libpango1.0-0   1.30.0-1
ii  libspeechd2 0.7.1-6.2
ii  libstdc++6  4.7.2-5
ii  libudev0175-7.2
ii  libx11-62:1.5.0-1+deb7u1
ii  libxcomposite1  1:0.4.3-2
ii  libxdamage1 1:1.1.3-2
ii  libxext62:1.3.1-2+deb7u1
ii  libxfixes3  1:5.0-4+deb7u1
ii  libxml2 2.8.0+dfsg1-7+nmu1
ii  libxrender1 1:0.9.7-1+deb7u1
ii  libxslt1.1  1.1.26-14.1
ii  libxss1 1:1.2.2-1
ii  xdg-utils   1.1.0~rc1+git20111210-6

chromium recommends no packages.

Versions of packages chromium suggests:
ii  chromium-l10n  29.0.1547.57-1~deb7u1

-- 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#685377: bash-completion: fusermount -u does not complete curlftpfs-mounts

2012-08-20 Thread Tim Riemenschneider
Package: bash-completion
Version: 1:2.0-1
Severity: minor
Tags: patch

Because the filesystem-type of curlftpfs-mount in /etc/mtab is just fuse
instead of fuse.curlftp or something like that (cf. sshfs = fuse.sshfs), they
are not completed.

This patch fixes that.



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (900, 'testing'), (900, 'stable'), (600, 'unstable'), (100,
'proposed-updates'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages bash-completion depends on:
ii  bash  4.2-4
ii  dpkg  1.16.4.3

bash-completion recommends no packages.

bash-completion suggests no packages.

-- no debconf information
--- /usr/share/bash-completion/completions/fusermount.orig	2012-06-17 21:09:06.0 +0200
+++ /usr/share/bash-completion/completions/fusermount	2012-08-20 12:37:39.451274139 +0200
@@ -11,7 +11,7 @@
 ;;
 -u)
 COMPREPLY=( $( compgen -W $( awk \
-'{ if ($3 ~ /^fuse\./) print $2 }' /etc/mtab 2/dev/null ) \
+'{ if ($3 ~ /^fuse(\.|$)/) print $2 }' /etc/mtab 2/dev/null ) \
 -- $cur ) )
 return 0
 ;;


Bug#666134: apt: (Long-)Description not shown for foreign-architecture packages

2012-03-28 Thread Tim Riemenschneider
Package: apt
Version: 0.8.15.10
Severity: minor

Hi,

I found a minor (rather cosmetic) issue with Descriptions and Multi-Arch:

when listing foreign-architecture packages, the Description can not be found
(when using the new Translation files)
I guess it tries to find a section with Package: XXX:ARCH instead of
Package: XXX.

For example:
tim@rohan:~$ apt-cache show libc6/testing
Package: libc6
Source: eglibc
Version: 2.13-27
Installed-Size: 9497
Maintainer: GNU Libc Maintainers debian-gl...@lists.debian.org
Architecture: amd64
Replaces: libc6-amd64
Provides: glibc-2.13-1
Depends: libc-bin (= 2.13-27), libgcc1
Suggests: glibc-doc, debconf | debconf-2.0, locales
Conflicts: prelink (= 0.0.20090311-1), tzdata ( 2007k-1), tzdata-etch
Breaks: locales ( 2.13), locales-all ( 2.13), lsb-core (= 3.2-27), nscd
( 2.13)
Description-de: Die »Embedded GNU C Library«: Laufzeitbibliotheken
 Enthält die Standardbibliotheken, die von nahezu allen Programmen im
 System verwendet werden. Dieses Paket enthält dynamische Versionen der
 Standard-C-Bibliothek und der Standard-Math-Bibliothek, sowie vieler
 anderer.
Multi-Arch: same
Homepage: http://www.eglibc.org
Description-md5: 5089b4da6684d7432ab618fb5b79cec5
Tag: implemented-in::c, role::shared-lib
Section: libs
Priority: required
Filename: pool/main/e/eglibc/libc6_2.13-27_amd64.deb
Size: 4337328
MD5sum: cbc5778a64c082721344c7b38ec4de0a
SHA1: c385d69b7cab38dc07efd48d02c29b203552ad32
SHA256: 95f43a1cf9f911ac5cbcb56645cccada52c5394b0dabfa007f5f6b355369dd98

tim@rohan:~$ apt-cache show libc6:i386/testing
Package: libc6
Source: eglibc
Version: 2.13-27
Installed-Size: 8519
Maintainer: GNU Libc Maintainers debian-gl...@lists.debian.org
Architecture: i386
Replaces: libc6-i386
Provides: glibc-2.13-1
Depends: libc-bin (= 2.13-27), libgcc1
Recommends: libc6-i686
Suggests: glibc-doc, debconf | debconf-2.0, locales
Conflicts: prelink (= 0.0.20090311-1), tzdata ( 2007k-1), tzdata-etch
Breaks: locales ( 2.13), locales-all ( 2.13), nscd ( 2.13)
Description: Embedded GNU C Library: Shared libraries
Multi-Arch: same
Homepage: http://www.eglibc.org
Description-md5: 5089b4da6684d7432ab618fb5b79cec5
Tag: implemented-in::c, role::shared-lib
Section: libs
Priority: required
Filename: pool/main/e/eglibc/libc6_2.13-27_i386.deb
Size: 3917004
MD5sum: 241b2c35ef8df71356a0bb0a2fc5c569
SHA1: 89247a7db3bd0a7c1c293c69a38d4774ac9e3b0a
SHA256: 5d7f461d5a803c8e1fb149695ad3688d9a608eae043bcaf1fe956ae5547c39dd

tim@rohan:~$

Note the absence of the long-description, although the Description-md5: is the
same

-- Package-specific info:

-- apt-config dump --

APT ;
APT::Architecture amd64;
APT::Build-Essential ;
APT::Build-Essential:: build-essential;
APT::Install-Recommends 1;
APT::Install-Suggests 0;
APT::Authentication ;
APT::Authentication::TrustCDROM true;
APT::NeverAutoRemove ;
APT::NeverAutoRemove:: ^firmware-linux.*;
APT::NeverAutoRemove:: ^linux-firmware$;
APT::NeverAutoRemove:: ^linux-image.*;
APT::NeverAutoRemove:: ^kfreebsd-image.*;
APT::NeverAutoRemove:: ^linux-restricted-modules.*;
APT::NeverAutoRemove:: ^linux-ubuntu-modules-.*;
APT::NeverAutoRemove:: ^gnumach$;
APT::NeverAutoRemove:: ^gnumach-image.*;
APT::Never-MarkAuto-Sections ;
APT::Never-MarkAuto-Sections:: metapackages;
APT::Never-MarkAuto-Sections:: restricted/metapackages;
APT::Never-MarkAuto-Sections:: universe/metapackages;
APT::Never-MarkAuto-Sections:: multiverse/metapackages;
APT::Never-MarkAuto-Sections:: oldlibs;
APT::Never-MarkAuto-Sections:: restricted/oldlibs;
APT::Never-MarkAuto-Sections:: universe/oldlibs;
APT::Never-MarkAuto-Sections:: multiverse/oldlibs;
APT::Periodic ;
APT::Periodic::Update-Package-Lists 1;
APT::Periodic::Download-Upgradeable-Packages 0;
APT::Periodic::AutocleanInterval 0;
APT::Periodic::Unattended-Upgrade 0;
APT::Update ;
APT::Update::Post-Invoke ;
APT::Update::Post-Invoke:: touch /var/lib/apt/periodic/update-success-stamp
2/dev/null || true;
APT::Archives ;
APT::Archives::MaxAge 30;
APT::Archives::MinAge 2;
APT::Archives::MaxSize 500;
APT::Architectures ;
APT::Architectures:: amd64;
APT::Architectures:: i386;
Dir /;
Dir::State var/lib/apt/;
Dir::State::lists lists/;
Dir::State::cdroms cdroms.list;
Dir::State::mirrors mirrors/;
Dir::State::extended_states extended_states;
Dir::State::status /var/lib/dpkg/status;
Dir::Cache var/cache/apt/;
Dir::Cache::archives archives/;
Dir::Cache::srcpkgcache srcpkgcache.bin;
Dir::Cache::pkgcache pkgcache.bin;
Dir::Etc etc/apt/;
Dir::Etc::sourcelist sources.list;
Dir::Etc::sourceparts sources.list.d;
Dir::Etc::vendorlist vendors.list;
Dir::Etc::vendorparts vendors.list.d;
Dir::Etc::main apt.conf;
Dir::Etc::netrc auth.conf;
Dir::Etc::parts apt.conf.d;
Dir::Etc::preferences preferences;
Dir::Etc::preferencesparts preferences.d;
Dir::Etc::trusted trusted.gpg;
Dir::Etc::trustedparts trusted.gpg.d;
Dir::Bin ;
Dir::Bin::methods /usr/lib/apt/methods;
Dir::Bin::dpkg /usr/bin/dpkg;
Dir::Media ;
Dir::Media::MountPath /media/apt;
Dir::Log var/log/apt;
Dir::Log::Terminal term.log;

Bug#665812: phpmyadmin: please include php5-mysqlnd in dependencies

2012-03-26 Thread Tim Riemenschneider
Package: phpmyadmin
Version: 4:3.4.10.1-1.1
Severity: wishlist

Hi,

please include php5-mysqlnd as an alternative to php5-mysql in the
dependencies.

(I created a local package doing just that to test it, and to be able to
install php5-mysqlnd without having to remove phpmyadmin)

The dependency is currently:
php5-mysql | php5-mysqli

however there apparantly is no package php5-mysqli, so this can be dropped?

Thx,
Tim



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (900, 'testing'), (900, 'stable'), (600, 'unstable'), (100, 
'proposed-updates'), (100, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages phpmyadmin depends on:
ii  dbconfig-common1.8.47+nmu1
ii  debconf [debconf-2.0]  1.5.41
ii  libapache2-mod-php55.4.0-2
ii  perl   5.14.2-9
ii  php5   5.4.0-2
ii  php5-cgi   5.4.0-2
ii  php5-mcrypt5.4.0-2
ii  php5-mysqlnd   5.4.0-2
ii  ttf-dejavu-core2.33-2
ii  ucf3.0025+nmu2

Versions of packages phpmyadmin recommends:
ii  apache2-mpm-prefork [httpd]  2.2.22-1
ii  mysql-client 5.1.61-2
ii  mysql-client-5.1 [mysql-client]  5.1.61-2
ii  php5-gd  5.4.0-2

Versions of packages phpmyadmin suggests:
ii  chromium [www-browser]   17.0.963.78~r125577-1
ii  iceweasel [www-browser]  10.0.2-1
ii  konqueror [www-browser]  4:4.7.4-2
ii  links [www-browser]  2.5-1
ii  mysql-server 5.1.61-2
ii  mysql-server-5.1 [mysql-server]  5.1.61-2
ii  w3m [www-browser]0.5.3-5

-- debconf information excluded



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



Bug#665812: phpmyadmin: please include php5-mysqlnd in dependencies

2012-03-26 Thread Tim Riemenschneider
Am 26.03.2012 13:35, schrieb Thijs Kinkhorst:
 On Mon, March 26, 2012 13:25, Tim Riemenschneider wrote:
 please include php5-mysqlnd as an alternative to php5-mysql in the
 dependencies.

 (I created a local package doing just that to test it, and to be able to
 install php5-mysqlnd without having to remove phpmyadmin)
 That's not strictly needed: you could use the equivs package for this.
Are you sure? Because the php5-mysqlnd package has a Conflicts:
php5-mysql, php5-mysqli, so I am unsure how I could use equivs to
fullfill phpmyadmin's Depends: php5-mysql | php5-mysqli without
breaking that conflict. (Or I don't understand the concept of equivs
here )

However, apt-get source phpmyadmin, edit debian/control, dch --nmu,
ARCH=wheezy pdebuild was not that hard either. ;-)

-- 
Tim



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



Bug#664811: devscripts: [dpkg-genbuilddeps , dpkg-depcheck] not working on multi-arch system

2012-03-20 Thread Tim Riemenschneider
Package: devscripts
Version: 2.11.4
Severity: minor

dpkg-depcheck -b (and thus dpkg-genbuilddeps) is not working on my system
with some (few) multi-arch (foreign) packages, especially 2 versions of zlib1g:

tim@rohan:~/src/deb$ dpkg-depcheck -b sleep 1
--
dpkg-query: error: --listfiles needs a valid package name but 'zlib1g' is not:
ambiguous package name 'zlib1g' with more than one installed instance

Use --help for help about querying packages.
dpkg -L failed:  at /usr/bin/dpkg-depcheck line 260
tim@rohan:~/src/deb$ LANG=C dpkg -L zlib1g
dpkg-query: error: --listfiles needs a valid package name but 'zlib1g' is not:
ambiguous package name 'zlib1g' with more than one installed instance

Use --help for help about querying packages.
tim@rohan:~/src/deb$ LANG=C dpkg -L zlib1g:amd64
/.
/usr
/usr/share
/usr/share/doc
/usr/share/doc/zlib1g
/usr/share/doc/zlib1g/copyright
/usr/share/doc/zlib1g/changelog.Debian.gz
/usr/share/doc/zlib1g/changelog.gz
/usr/lib
/usr/lib/x86_64-linux-gnu
/usr/lib/x86_64-linux-gnu/libz.so.1.2.6
/usr/lib/x86_64-linux-gnu/libz.so.1
tim@rohan:~/src/deb$ LANG=C dpkg -L zlib1g:i386
/.
/usr
/usr/lib
/usr/lib/i386-linux-gnu
/usr/lib/i386-linux-gnu/libz.so.1.2.6
/usr/share
/usr/share/doc
/usr/share/doc/zlib1g
/usr/share/doc/zlib1g/changelog.Debian.gz
/usr/share/doc/zlib1g/copyright
/usr/share/doc/zlib1g/changelog.gz
/usr/lib/i386-linux-gnu/libz.so.1
tim@rohan:~/src/deb$ dpkg --get-selections zlib1g
zlib1g:amd64install
zlib1g:i386 install

so dpkg-depcheck has to be run without -b (or any option implying -b, like
-d, -m), which works, still: (thus severity minor)

tim@rohan:~/src/deb$ dpkg-depcheck -a sleep 1
--
The following files did not appear to belong to any package:
/usr/lib/locale/locale-archive
Packages used:
  libc6:amd64
  coreutils
tim@rohan:~/src/deb$ dpkg-depcheck sleep 1
--
The following files did not appear to belong to any package:
/usr/lib/locale/locale-archive
Packages used:
  libc6:amd64
  coreutils




-- Package-specific info:

--- /etc/devscripts.conf ---

--- ~/.devscripts ---
Not present

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (900, 'testing'), (900, 'stable'), (600, 'unstable'), (100, 
'proposed-updates'), (100, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages devscripts depends on:
ii  dpkg-dev   1.16.1.2
ii  libc6  2.13-27
ii  perl   5.14.2-9
ii  python 2.7.2-10
ii  python2.6  2.6.7-4
ii  python2.7  2.7.2-8

Versions of packages devscripts recommends:
ii  at3.1.13-1
ii  curl  7.24.0-1
ii  dctrl-tools   2.20.1
ii  debian-keyring2012.02.22
ii  dput  0.9.6.2
ii  equivs2.0.9
ii  fakeroot  1.18.2-1
ii  gnupg 1.4.12-4
ii  libcrypt-ssleay-perl  0.58-1
ii  libjson-perl  2.53-1
ii  libparse-debcontrol-perl  2.005-3
ii  libsoap-lite-perl 0.714-1
ii  liburi-perl   1.59-1
ii  libwww-perl   6.04-1
ii  lintian   2.5.5
ii  man-db2.6.1-1
ii  patch 2.6.1-3
ii  patchutils0.3.2-1.1
ii  python-debian 0.1.21
ii  python-magic  5.10-1
ii  sensible-utils0.0.6
ii  strace4.5.20-2.3
ii  unzip 6.0-5
ii  wdiff 1.1.0-2
ii  wget  1.13.4-2
ii  xz-utils  5.1.1alpha+20110809-3

Versions of packages devscripts suggests:
ii  bsd-mailx [mailx]8.1.2-0.2006cvs-1
ii  build-essential  11.5
ii  cvs-buildpackage none
ii  devscripts-elnone
ii  gnuplot  4.4.0-1.1
ii  heirloom-mailx [mailx]   12.5-1
ii  libauthen-sasl-perl  none
ii  libfile-desktopentry-perl0.04-3
ii  libnet-smtp-ssl-perl none
ii  libterm-size-perlnone
ii  libtimedate-perl 1.2000-1
ii  libyaml-syck-perlnone
ii  mutt 1.5.21-5
ii  openssh-client [ssh-client]  1:5.9p1-3
ii  svn-buildpackage none
ii  w3m  0.5.3-5

-- 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#664474: Bash-completion: show all packages

2012-03-17 Thread Tim Riemenschneider
Package: apt-show-versions
Version: 0.17
Severity: minor
Tags: patch

The bash-completion of apt-show-version only works after dpkg completion has
been attempted.

This is the same problem as #658773 and #658669.
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=658773#25 contains a solution
for this.)

But that solution (using only installed packages) is (IMHO) not the best,
attached is a patch for showing all packages.
(I borrowed the line from the apt-get install completion ;-) )



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (900, 'testing'), (900, 'stable'), (600, 'unstable'), (100,
'proposed-updates'), (100, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages apt-show-versions depends on:
ii  apt  0.8.15.10
ii  libapt-pkg-perl  0.1.25+b1
ii  perl [libstorable-perl]  5.14.2-9

apt-show-versions recommends no packages.

apt-show-versions suggests no packages.

-- Configuration Files:
/etc/bash_completion.d/apt-show-versions changed [not included] (see patch)
--- orig/apt-show-versions	2009-06-19 00:00:00.0 +0200
+++ /etc/bash_completion.d/apt-show-versions	2012-03-18 02:21:04.794074335 +0100
@@ -27,7 +27,7 @@
 return 0
 ;;
 -p|--package)
-COMPREPLY=( $(_comp_dpkg_installed_packages $cur) )
+COMPREPLY=( $( apt-cache --no-generate pkgnames $cur 2 /dev/null ) )
 return 0
 ;;
 -stf|--status-file)
@@ -44,7 +44,7 @@
 COMPREPLY=( $(compgen -W $opts -- $cur) )
 return 0
 else
-COMPREPLY=( $(_comp_dpkg_installed_packages $cur) )
+COMPREPLY=( $( apt-cache --no-generate pkgnames $cur 2 /dev/null ) )
 return 0
 fi
 }


Bug#661509: security.debian.org: Packages-file for squeeze-amd64 broken

2012-02-27 Thread Tim Riemenschneider
Package: security.debian.org
Severity: grave
Justification: renders package unusable

security.debian.org is currently unusable (for amd64 squeeze)

apt-get update aborts with:
Reading package lists... Error!
E: Encountered a section with no Package: header
E: Problem with MergeList /var/lib/apt/lists/security.debian
.org_dists_squeeze_updates_main_binary-amd64_Packages
E: The package lists or status file could not be parsed or opened.

When viewing the Packages-file, it contains several blocks consisting only of
the line None, example:
 begin ---
Package: libecpg-compat3
Source: postgresql-8.4 (8.4.9-0squeeze1)
Version: 8.4.9-0squeeze1+b1
Installed-Size: 96
Maintainer: Martin Pitt mp...@debian.org
Architecture: amd64
Depends: libc6 (= 2.3.4), libecpg6, libpgtypes3, libpq5 (= 8.4~0cvs20090328)
Description: older version of run-time library for ECPG programs
 The libecpg_compat shared library is used by programs built with ecpg.
 (Embedded PostgreSQL for C).
 .
 PostgreSQL is an object-relational SQL database management system.
Homepage: http://www.postgresql.org/
Section: libs
Priority: optional
Filename: pool/updates/main/p/postgresql-8.4/libecpg-
compat3_8.4.9-0squeeze1+b1_amd64.deb
Size: 31888
MD5sum: a0bd32edf8cf8049e8137c54a347d807
SHA1: 7ea2da2577e45f7801ed1d6bcbd7886088986f77
SHA256: 936c3bebf663fa8154f89e05c3ec10d6ee29b4bec8dff44184db57cfde3ccb93

None

-- end ---

All of them are after packages with Source: postgresql-8.4, so maybe that is
somehow broken?
(= CC to postgresql-...@packages.debian.org)

However a single (source-)package should not be able to break Packages-
generation IMO, especially not for security.d.o



-- System Information:
Debian Release: wheezy/sid
Architecture: amd64 (x86_64)

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



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



Bug#661509: security.debian.org: Packages-file for squeeze-amd64 broken

2012-02-27 Thread Tim Riemenschneider
Am 27.02.2012 20:18, schrieb Florian Weimer:
 * Tim Riemenschneider:

 security.debian.org is currently unusable (for amd64 squeeze)
 I cannot reproduce this (at 20:17 CET).  What does currently mean,
 exactly?
Hm, seems to have been a temporary problem, now the file looks ok. (So
currently is something like 20 minutes ago)

(It took me some time to fill out all the fields in reportbug ;-) )

So this can probably be closed (or at least given a lower severity)

It may be worthwhile to find out, what had happened, in case that
happens again...




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



Bug#639306: openjdk-6-jre: NullPointerException in sun.awt.X11.XWindowPeer.restoreTransientFor

2011-08-25 Thread Tim Riemenschneider
Package: openjdk-6-jre
Version: 6b23~pre8-1.1
Severity: normal
Tags: patch

After upgrading openjdk-6 on my testing-based system from  6b18-1.8.9-0.1 to
6b23~pre7-1, the program kolmafia throws a nullpointer exception in
sun.awt.X11.XWindowPeer.restoreTransientFor.
(see attached backtrace)

Googling for this error returns f.e.
http://netbeans.org/bugzilla/show_bug.cgi?id=163548
This seems to be bug http://bugs.sun.com/view_bug.do?bug_id=6826104

I patched the class like suggested in the sun-bugreport, which resolved the
issue.
(However I am not sure, if the awtLock is needed.)
(patch attached)
(the installed version 6b23~pre8-1.1 is a locally compiled 6b23~pre8-1 with
that patch)



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

Kernel: Linux 3.0.0-0.toi.2+ (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

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.24.1-2   shared library for ALSA applicatio
ii  libc6   2.13-16  Embedded GNU C Library: Shared lib
ii  libgif4 4.1.6-9  library for GIF images (library)
ii  libjpeg62   6b1-2Independent JPEG Group's JPEG runt
ii  libpng12-0  1.2.46-3 PNG library - runtime
ii  libpulse0   0.9.23-1 PulseAudio client libraries
ii  libx11-62:1.4.4-1X11 client-side library
ii  libxext62:1.3.0-3X11 miscellaneous extension librar
ii  libxi6  2:1.4.3-3X11 Input extension library
ii  libxrender1 1:0.9.6-2X Rendering Extension client libra
ii  libxtst62:1.2.0-3X11 Testing -- Record extension li
ii  openjdk-6-jre-headless  6b23~pre8-1.1OpenJDK Java runtime, using Hotspo
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages openjdk-6-jre recommends:
pn  icedtea-netx  none (no description available)
ii  ttf-dejavu-extra  2.33-1 Vera font family derivate with add

Versions of packages openjdk-6-jre suggests:
pn  icedtea-pluginnone (no description available)

-- no debconf information
[ConditionalEventPump] Exception occurred during event dispatching:
java.lang.NullPointerException
at sun.awt.X11.XWindowPeer.restoreTransientFor(XWindowPeer.java:1682)
at 
sun.awt.X11.XWindowPeer.removeFromTransientFors(XWindowPeer.java:1748)
at sun.awt.X11.XWindowPeer.setModalBlocked(XWindowPeer.java:1470)
at sun.awt.X11.XWindowPeer.setModalBlocked(XWindowPeer.java:1441)
at java.awt.Window.setModalBlocked(Window.java:1359)
at java.awt.Dialog.unblockWindow(Dialog.java:1597)
at java.awt.Dialog.modalHide(Dialog.java:1483)
at java.awt.Dialog.hideAndDisposePreHandler(Dialog.java:1215)
at java.awt.Dialog.hide(Dialog.java:1255)
at java.awt.Component.show(Component.java:1553)
at java.awt.Component.setVisible(Component.java:1503)
at java.awt.Window.setVisible(Window.java:881)
at java.awt.Dialog.setVisible(Dialog.java:1011)
at javax.swing.JOptionPane$3.propertyChange(JOptionPane.java:1021)
at java.beans.PropertyChangeSupport.fire(PropertyChangeSupport.java:298)
at 
java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:291)
at 
java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:229)
at java.awt.Component.firePropertyChange(Component.java:8148)
at javax.swing.JOptionPane.setInputValue(JOptionPane.java:2231)
at 
javax.swing.plaf.basic.BasicOptionPaneUI.resetInputValue(BasicOptionPaneUI.java:866)
at 
javax.swing.plaf.basic.BasicOptionPaneUI$ButtonActionListener.actionPerformed(BasicOptionPaneUI.java:1192)
at 
javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2012)
at 
javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2335)
at 
javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:404)
at 
javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
at 
javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
at java.awt.Component.processMouseEvent(Component.java:6268)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
at java.awt.Component.processEvent(Component.java:6033)
at java.awt.Container.processEvent(Container.java:2045)
at java.awt.Component.dispatchEventImpl(Component.java:4629)
at java.awt.Container.dispatchEventImpl(Container.java:2103)
at 

Bug#634483: kdelibs-bin: kded4 eating 100% cpu-time

2011-07-18 Thread Tim Riemenschneider
Package: kdelibs-bin
Version: 4:4.6.4-1
Severity: normal

Today kded4 used 100% cpu-time (thus blocking 1 core).
strace shows not much:
tim@rohan:~/dl$ strace -p 2923
Process 2923 attached - interrupt to quit
futex(0xf62e7c, FUTEX_WAIT_PRIVATE, 1, NULL) = ? ERESTARTSYS (To be restarted)
--- SIGTERM (Terminated) @ 0 (0) ---
rt_sigreturn(0xf)   = 202
futex(0xf62e7c, FUTEX_WAIT_PRIVATE, 1, NULL) = ? ERESTARTSYS (To be restarted)
--- SIGTERM (Terminated) @ 0 (0) ---
rt_sigreturn(0xf)   = 202
futex(0xf62e7c, FUTEX_WAIT_PRIVATE, 1, NULL) = ? ERESTARTSYS (To be restarted)
--- SIGTERM (Terminated) @ 0 (0) ---
rt_sigreturn(0xf)   = 202
futex(0xf62e7c, FUTEX_WAIT_PRIVATE, 1, NULL) = ? ERESTARTSYS (To be restarted)
--- SIGHUP (Hangup) @ 0 (0) ---
rt_sigreturn(0x1)   = 202
futex(0xf62e7c, FUTEX_WAIT_PRIVATE, 1, NULL unfinished ...
+++ killed by SIGKILL +++

(as you can see, I tried to kill the process, first using SIGTERM and SIGHUP, 
then with kill -9)

After killing it, all returned to normal. There is one kded4 process running 
(so I assume there
were two of them running before, if that matters)
(the still-running process is running for several hours, so it was not 
restarted after I killed
the runaway one...)


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (900, 'testing'), (900, 'stable'), (600, 'unstable'), (100, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.38.8-0.toi.4+ (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages kdelibs-bin depends on:
ii  libc6 2.13-7 Embedded GNU C Library: Shared lib
ii  libkdecore5   4:4.6.4-1  KDE Platform Core Library
ii  libkdeui5 4:4.6.4-1  KDE Platform User Interface Librar
ii  libkjsapi44:4.6.4-1  KJS API Library for the KDE Develo
ii  libkjsembed4  4:4.6.4-1  library for binding JavaScript obj
ii  libkrosscore4 4:4.6.4-1  Kross Core Library
ii  libqt4-dbus   4:4.7.3-5  Qt 4 D-Bus module
ii  libqt4-xml4:4.7.3-5  Qt 4 XML module
ii  libqtcore44:4.7.3-5  Qt 4 core module
ii  libqtgui4 4:4.7.3-5  Qt 4 GUI module
ii  libsoprano4   2.6.0+dfsg.1-4 libraries for the Soprano RDF fram
ii  libstdc++64.6.1-1GNU Standard C++ Library v3
ii  libx11-6  2:1.4.3-2  X11 client-side library

kdelibs-bin recommends no packages.

kdelibs-bin 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#590559: updated rules for webmin

2010-07-27 Thread Tim Riemenschneider
Package: logcheck-database
Version: 1.2.69
Severity: wishlist

(also in version 1.3.10~bpo50+1)

Please update the rules for webmin

-^\w{3} [ :0-9]{11} [._[:alnum:]-]+ webmin\[[0-9]+\]: Timeout of
[[:alnum:]]+$
+^\w{3} [ :0-9]{11} [._[:alnum:]-]+ webmin\[[0-9]+\]: Timeout of(
session for)? [[:alnum:]]+$

(Webmin is version 1.517 from virtualmin.com, if that matters)

- Tim



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



Bug#586577: workaround

2010-06-29 Thread Tim Riemenschneider
As a workaround, it works if I install the upsteam-binary instead of the
debian version
(i.e. download the xpi from http://enigmail.mozdev.org/download/index.php )

Suggestion comes from ubuntu, which is also affected by this, see:
https://bugs.launchpad.net/ubuntu/+source/enigmail/+bug/565014

(so it seems debian/ubuntu-specific)

cu
Tim



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



Bug#457262: missing changelogs

2008-10-18 Thread Tim Riemenschneider
It seems that there are no changelogs at all, working up in the
directory-hierachy shows empty directories, f.e.:
http://packages.debian.org/changelogs/pool/main/l/
(also for all(?) other letters)




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



Bug#486351: nmap: script engine files missing in debian package

2008-08-11 Thread Tim Riemenschneider
Tag: patch

Those files are missing from the relevant debian/*.files -file.
After adding them (see patch) and rebuilding it works.


diff -ruw nmap-4.68/debian/nmap.files nmap-4.68-new/debian/nmap.files
--- nmap-4.68/debian/nmap.files	2008-08-11 22:48:00.0 +0200
+++ nmap-4.68-new/debian/nmap.files	2008-08-11 22:34:44.0 +0200
@@ -47,6 +47,13 @@
 usr/share/nmap/scripts/iax2Detect.nse
 usr/share/nmap/scripts/echoTest.nse
 usr/share/nmap/scripts/showSMTPVersion.nse
+usr/share/nmap/scripts/rpcinfo.nse
+usr/share/nmap/scripts/MySQLinfo.nse
+usr/share/nmap/scripts/UPnP-info.nse
+usr/share/nmap/nselib/datafiles.lua
+usr/share/nmap/nselib/tab.lua
+usr/share/nmap/nselib/comm.lua
+usr/share/nmap/nselib/http.lua
 usr/share/nmap/nselib/shortport.lua
 usr/share/nmap/nselib/ipOps.lua
 usr/share/nmap/nselib/match.lua
diff -ruw nmap-4.68/debian/zenmap.files nmap-4.68-new/debian/zenmap.files
--- nmap-4.68/debian/zenmap.files	2008-08-11 22:48:00.0 +0200
+++ nmap-4.68-new/debian/zenmap.files	2008-08-11 22:34:02.0 +0200
@@ -17,3 +17,54 @@
 usr/share/zenmap/locale/pt_BR
 usr/share/zenmap/locale/pt_BR/LC_MESSAGES
 usr/share/zenmap/locale/pt_BR/LC_MESSAGES/umit.mo
+usr/share/zenmap/pixmaps
+usr/share/zenmap/pixmaps/irix_32.png
+usr/share/zenmap/pixmaps/redhat_75.png
+usr/share/zenmap/pixmaps/win.svg
+usr/share/zenmap/pixmaps/freebsd_75.png
+usr/share/zenmap/pixmaps/linux_75.png
+usr/share/zenmap/pixmaps/vl_3_32.png
+usr/share/zenmap/pixmaps/macosx.svg
+usr/share/zenmap/pixmaps/ubuntu.svg
+usr/share/zenmap/pixmaps/macosx_32.png
+usr/share/zenmap/pixmaps/irix_75.png
+usr/share/zenmap/pixmaps/default_32.png
+usr/share/zenmap/pixmaps/vl_4_32.png
+usr/share/zenmap/pixmaps/win_32.png
+usr/share/zenmap/pixmaps/win_75.png
+usr/share/zenmap/pixmaps/solaris_75.png
+usr/share/zenmap/pixmaps/redhat_32.png
+usr/share/zenmap/pixmaps/vl_2.svg
+usr/share/zenmap/pixmaps/freebsd.svg
+usr/share/zenmap/pixmaps/openbsd_32.png
+usr/share/zenmap/pixmaps/wizard_logo.png
+usr/share/zenmap/pixmaps/openbsd.svg
+usr/share/zenmap/pixmaps/default.svg
+usr/share/zenmap/pixmaps/splash.png
+usr/share/zenmap/pixmaps/vl_1_75.png
+usr/share/zenmap/pixmaps/vl_2_75.png
+usr/share/zenmap/pixmaps/vl_5_75.png
+usr/share/zenmap/pixmaps/unknown.svg
+usr/share/zenmap/pixmaps/solaris_32.png
+usr/share/zenmap/pixmaps/vl_4.svg
+usr/share/zenmap/pixmaps/linux.svg
+usr/share/zenmap/pixmaps/openbsd_75.png
+usr/share/zenmap/pixmaps/vl_1_32.png
+usr/share/zenmap/pixmaps/vl_4_75.png
+usr/share/zenmap/pixmaps/vl_1.svg
+usr/share/zenmap/pixmaps/vl_3_75.png
+usr/share/zenmap/pixmaps/ubuntu_75.png
+usr/share/zenmap/pixmaps/redhat.svg
+usr/share/zenmap/pixmaps/freebsd_32.png
+usr/share/zenmap/pixmaps/solaris.svg
+usr/share/zenmap/pixmaps/default_75.png
+usr/share/zenmap/pixmaps/vl_3.svg
+usr/share/zenmap/pixmaps/linux_32.png
+usr/share/zenmap/pixmaps/ubuntu_32.png
+usr/share/zenmap/pixmaps/unknown_75.png
+usr/share/zenmap/pixmaps/vl_2_32.png
+usr/share/zenmap/pixmaps/unknown_32.png
+usr/share/zenmap/pixmaps/irix.svg
+usr/share/zenmap/pixmaps/vl_5.svg
+usr/share/zenmap/pixmaps/vl_5_32.png
+usr/share/zenmap/pixmaps/macosx_75.png