Bug#1030949: openresolv: Typo in /usr/share/doc/openresolv/README.Debian: ATUO_MODE

2023-02-09 Thread arnold metselaar
Package: openresolv
Version: 3.12.0-3
Severity: minor

Dear Maintainer,

>From the file README.Debian:

pdnsd users are advised to follow the configuration described in
resolvconf.conf(5) and set
ATUO_MODE=
in /etc/default/pdnsd
to ensure that /etc/pdsnd.conf is used.

I assume ppnsd users should rather set
AUTO_MODE=
in /etc/default/pdnsd

Kind regards,
Arnold Metselaar


-- System Information:
Debian Release: bookworm/sid
 APT prefers testing
 APT policy: (555, 'testing'), (550, 'stable'), (500, 'stable-updates'),
(500, 'stable-security'), (500, 'stable-debug'), (500>
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.1.0-3-amd64 (SMP w/3 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE,
TAINT_UNSIGNED_MODULE
Locale: LANG=nl_NL.UTF-8, LC_CTYPE=nl_NL.UTF-8 (charmap=UTF-8), LANGUAGE=nl
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

-- no debconf information


Bug#1030821: /usr/bin/wg-quick: Saves unrelated nameservers when used with resolvconf and SaveConfig=true

2023-02-07 Thread arnold metselaar
Package: wireguard-tools
Version: 1.0.20210914-1+b1
Severity: normal
File: /usr/bin/wg-quick

Dear Maintainer,

I have been using wg-quick in combination with resolvconf and the option
SaveConfig=true to make a tunnel between two hosts.
After some time the connection was no longer established; there were too
many DNS-lines /etc/wireguard/wg0.conf.

When wg-quick saves the configuration for a tunnel it uses "resolvconf -l
" to list the DNS configuration for a
specific interface, however the version of the resolvconf program in the
package resolvconf does noet support this.
Consequently wg-quick saves the nameservers supplied with the tunnel as
well as all the other ones and the configuration
file grows every time the tunnel is brought down e.g. when powering off the
system.

Using openresolv rather than resolvconf solves the issue, so arguably this
is a bug in resolvconf rather than in wg-quick.
I have not tried it with systemd-resolved.

As long as this has not been fixed, I think wireguard-tools should document
this behaviour somewhere and stop suggesting
resolvconf.

Kind regards,
Arnold Metselaar

-- System Information:
Debian Release: bookworm/sid
 APT prefers testing
 APT policy: (555, 'testing'), (550, 'stable'), (500, 'stable-updates'),
(500, 'stable-security'), (500, 'stable-debug'), (500,
'oldstable-debug')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.1.0-2-amd64 (SMP w/3 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE,
TAINT_UNSIGNED_MODULE
Locale: LANG=nl_NL.UTF-8, LC_CTYPE=nl_NL.UTF-8 (charmap=UTF-8), LANGUAGE=nl
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages wireguard-tools depends on:
ii  libc6  2.36-8

Versions of packages wireguard-tools recommends:
ii  iptables   1.8.9-2
ii  linux-image-amd64 [wireguard-modules]  6.1.8-1
ii  nftables   1.0.6-2

Versions of packages wireguard-tools suggests:
ii  resolvconf  1.91+nmu1

-- no debconf information


Bug#845501: Does not erase pid on loss of connection

2021-09-28 Thread arnold metselaar
Dear Pablo,

Unfortunately I will not be able to check any time soon.
You may wish to check yourself, or to simply close the bug report.

Kind regards,
Arnold

Op do 23 sep. 2021 22:21 schreef Pablo Mestre :

> Hi Arnold
>
> Thank you very much for reporting this error.
>
> I would like to ask you if this error is still present in the most
> recent versions of rdiff-backup. Currently after a series of
> improvements and bug fixes, rdiff-backup is at version 2.0.5 [1]
>
> It would be very helpful if you checked again if this bug is still
> present. Otherwise we can agree to close the bug,
>
> [1] https://github.com/rdiff-backup/rdiff-backup/releases/tag/v2.0.5 <
> https://github.com/rdiff-backup/rdiff-backup/releases/tag/v2.0.5>
>
> --
>   ⢀⣴⠾⠻⢶⣦⠀  Pablo Mestre Drake
>   ⣾⠁⢠⠒⠀⣿⡁  --
>   ⢿⡄⠘⠷⠚⠋   https://debian.org
>   ⠈⠳⣄  Debian, the universal operating system.
>
>


Bug#962203: debdelta: isAlive() not fixed in 0.65+nmu1

2021-01-14 Thread Arnold Metselaar
Package: debdelta
Version: 0.65+nmu1
Followup-For: Bug #962203

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
I recently installed debdelta version 0.65+nmu1 and tried to use debdelta-
upgrade.

The output was:
Delta is too big: libsndfile1_1.0.28-8_1.0.30-1_amd64.debdelta  
  
Delta is too big: libsndfile1_1.0.28-8_1.0.30-1_i386.debdelta   
  
Delta missing, server failed to create it: papirus-icon-
theme_20201201-1_20210101-1_all.debdelta  
Delta is not present: rdiff-backup_1.2.8-7_2.0.5-1+b2_amd64.debdelta
  
Delta is too big: sndfile-programs_1.0.28-8_1.0.30-1_amd64.debdelta 
  
debdelta-upgrade : 'Thread' object has no attribute 'isAlive'   
  

The sttribute isAlive is still used 4 times in the program:

$ grep -n isAlive /usr/bin/debdelta-upgrade
5384:  if patching_thread.isAlive() and no_delta and VERBOSE > 1 :
5386:  while patching_thread.isAlive() or ('a' in DEB_POLICY and no_delta):
5405:  while patching_thread.isAlive():
5410:  while progress_thread != None and progress_thread.isAlive():

I had expected that all occurences would have been replaced by is_alive() by 
now.

Kind regards,Package: debdelta
Version: 0.65+nmu1
Followup-For: Bug #962203

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
I recently installed debdelta version 0.65+nmu1 and tried to use debdelta-
upgrade.

The output was:
Delta is too big: libsndfile1_1.0.28-8_1.0.30-1_amd64.debdelta  
  
Delta is too big: libsndfile1_1.0.28-8_1.0.30-1_i386.debdelta   
  
Delta missing, server failed to create it: papirus-icon-
theme_20201201-1_20210101-1_all.debdelta  
Delta is not present: rdiff-backup_1.2.8-7_2.0.5-1+b2_amd64.debdelta
  
Delta is too big: sndfile-programs_1.0.28-8_1.0.30-1_amd64.debdelta 
  
debdelta-upgrade : 'Thread' object has no attribute 'isAlive'   
  

The sttribute isAlive is still used 4 times in the program:

$ grep -n isAlive /usr/bin/debdelta-upgrade
5384:  if patching_thread.isAlive() and no_delta and VERBOSE > 1 :
5386:  while patching_thread.isAlive() or ('a' in DEB_POLICY and no_delta):
5405:  while patching_thread.isAlive():
5410:  while progress_thread != None and progress_thread.isAlive():

I had expected that all occurences would have been replaced by is_alive() by 
now.

Kind regards,
Arnold Metselaar

-- System Information:
Debian Release: bullseye/sid
  APT prefers testing
  APT policy: (555, 'testing'), (550, 'stable'), (500, 'testing-debug'), (500, 
'stable-updates'), (500, 'stable-debug'), (500, 'proposed-updates-debug')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.10.0-1-amd64 (SMP w/3 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=nl_NL.UTF-8, LC_CTYPE=nl_NL.UTF-8 (charmap=UTF-8), LANGUAGE=nl
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages debdelta depends on:
ii  binutils  2.35.1-7
ii  bzip2 1.0.8-4
ii  libbz2-1.01.0.8-4
ii  libc6 2.31-9
ii  python3   3.9.1-1
ii  python3-requests  2.25.1+dfsg-2
ii  zlib1g1:1.2.11.dfsg-2

Versions of packages debdelta recommends:
ii  bsdiff   4.3-21+b1
ii  gnupg-agent  2.2.20-1
ii  gnupg2   2.2.20-1
ii  gpg-agent [gnupg-agent]  2.2.20-1
ii  lzma 9.22-2.2
Arnold Metselaar

-- System Information:
Debian Release: bullseye/sid
  APT prefers testing
  APT policy: (555, 'testing'), (550, 'stable'), (500, 'testing-debug'), (500, 
'stable-updates'), (500, 'stable-debug'), (500, 'proposed-updates-debug')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.10.0-1-amd64 (SMP w/3 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=nl_NL.UTF-8, LC_CTYPE=nl_NL.UTF-8 (charmap=UTF-8), LANGUAGE=nl
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages debdelta depends on:
ii  binutils  2.35.1-7
ii  bzip2 1.0.8-4
ii  libbz2-1.01.0.8-4
ii  libc6 2.31-9
ii  python3   3.9.1-1
ii  python3-requests  

Bug#957188: patch to fix linking with gcc-10

2020-08-02 Thread arnold metselaar
Dear maintainer,

I accidentally sent the patch to the wrong bug. I have now sent it to the
right address as well, so no further action is necessary.

Kind regards,
Arnold Metselaar

Op za 1 aug. 2020 om 21:29 schreef arnold metselaar :

> Dear maintainer,
>
> Attached is a patch to make gimp-lqr-plugin and wavelet-denoise-0.3.1 link
> properly with gcc-10.
>
> suggested changelog entry
>
> lqr/gimp-lqr-plugin/src/interface_aux.c,
> lqr/gimp-lqr-plugin/src/interface_I.c: declare variables as extern that
> would otherwise clash with those in lqr/gimp-lqr-plugin/src/interface.c
>
> wavelet-denoise/wavelet-denoise-0.3.1/src/interface.h,
> wavelet-denoise/wavelet-denoise-0.3.1/src/plugin.h: declare global
> variables as extern
> wavelet-denoise/wavelet-denoise-0.3.1/src/interface.c,
> wavelet-denoise/wavelet-denoise-0.3.1/src/plugin.c: add some global
> variables now declared extern in the corresponding header files
>
> Kind regards,
> Arnold Metselaar
>


Bug#957272: Patch to fix linking with gcc-10

2020-08-02 Thread arnold metselaar
Dear maintainer,

Attached is a patch to make gimp-lqr-plugin and wavelet-denoise-0.3.1 link
properly with gcc-10.

suggested changelog entry

lqr/gimp-lqr-plugin/src/interface_aux.c,
lqr/gimp-lqr-plugin/src/interface_I.c: declare variables as extern that
would otherwise clash with those in lqr/gimp-lqr-plugin/src/interface.c

wavelet-denoise/wavelet-denoise-0.3.1/src/interface.h,
wavelet-denoise/wavelet-denoise-0.3.1/src/plugin.h: declare global
variables as extern
wavelet-denoise/wavelet-denoise-0.3.1/src/interface.c,
wavelet-denoise/wavelet-denoise-0.3.1/src/plugin.c: add some global
variables now declared extern in the corresponding header files

Kind regards,
Arnold Metselaar
diff --git a/lqr/gimp-lqr-plugin/src/interface_I.c b/lqr/gimp-lqr-plugin/src/interface_I.c
index 2719167..dbe2717 100644
--- a/lqr/gimp-lqr-plugin/src/interface_I.c
+++ b/lqr/gimp-lqr-plugin/src/interface_I.c
@@ -73,10 +73,10 @@ static void callback_alarm_triggered (GtkWidget * size_entry, gpointer data);
 
 gint dialog_I_response = GTK_RESPONSE_OK;
 
-PlugInUIVals *ui_state;
-PlugInVals *state;
-PlugInDialogVals *dialog_state;
-gboolean features_are_sensitive;
+extern PlugInUIVals *ui_state;
+extern PlugInVals *state;
+extern PlugInDialogVals *dialog_state;
+extern gboolean features_are_sensitive;
 InterfaceIData interface_I_data;
 //volatile sig_atomic_t interface_locked = 0;
 
diff --git a/lqr/gimp-lqr-plugin/src/interface_aux.c b/lqr/gimp-lqr-plugin/src/interface_aux.c
index 6461757..ceed0d9 100644
--- a/lqr/gimp-lqr-plugin/src/interface_aux.c
+++ b/lqr/gimp-lqr-plugin/src/interface_aux.c
@@ -49,11 +49,11 @@ static void callback_dialog_aux_response (GtkWidget * dialog, gint response_id,
 
 gint dialog_aux_response = GTK_RESPONSE_OK;
 
-PlugInUIVals *ui_state;
-PlugInVals *state;
-PlugInDialogVals *dialog_state;
+extern PlugInUIVals *ui_state;
+extern PlugInVals *state;
+extern PlugInDialogVals *dialog_state;
 
-GtkWidget *dlg;
+extern GtkWidget *dlg;
 
 /***  Public functions  ***/
 
diff --git a/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.c b/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.c
index 170894b..2f95572 100644
--- a/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.c
+++ b/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.c
@@ -16,8 +16,36 @@
 #include "plugin.h"
 #include "interface.h"
 
+/* Global variables declared in interface.h */
+/* colour mode frame */
+GtkWidget *fr_mode, *mode_radio[3], *mode_vbox;
+GSList *mode_list;
+
+/* preview select frame */
+GtkWidget *fr_preview, *preview_radio[3], *preview_vbox, *preview_check;
+GSList *preview_list;
+
+/* channel select frame */
+GtkWidget *fr_channel, *channel_radio[4], *channel_vbox;
+GSList *channel_list;
+
+/* threshold frame */
+GtkWidget *fr_threshold, *thr_label[2], *thr_spin[2];
+GtkWidget *thr_hbox[2], *thr_vbox, *thr_scale[2];
+GtkObject *thr_adj[2];
+
+/* reset buttons */
+GtkWidget *reset_button[2], *reset_hbox, *reset_align, *reset_button_icon[2];
+
+/* dialog */
+GtkWidget *dialog, *dialog_hbox, *dialog_vbox, *frame_hbox, *dialog_aspect;
+GtkWidget *preview, *preview_reset, *preview_hbox, *preview_reset_icon;
+
 GtkWidget **radios_labels[] = { channel_radio, thr_label };
 
+char **names;
+
+
 gboolean
 user_interface (GimpDrawable * drawable)
 {
diff --git a/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.h b/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.h
index f0ce8ad..0f5430e 100644
--- a/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.h
+++ b/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.h
@@ -14,29 +14,29 @@
  */
 
 /* colour mode frame */
-GtkWidget *fr_mode, *mode_radio[3], *mode_vbox;
-GSList *mode_list;
+extern GtkWidget *fr_mode, *mode_radio[3], *mode_vbox;
+extern GSList *mode_list;
 
 /* preview select frame */
-GtkWidget *fr_preview, *preview_radio[3], *preview_vbox, *preview_check;
-GSList *preview_list;
+extern GtkWidget *fr_preview, *preview_radio[3], *preview_vbox, *preview_check;
+extern GSList *preview_list;
 
 /* channel select frame */
-GtkWidget *fr_channel, *channel_radio[4], *channel_vbox;
-GSList *channel_list;
+extern GtkWidget *fr_channel, *channel_radio[4], *channel_vbox;
+extern GSList *channel_list;
 
 /* threshold frame */
-GtkWidget *fr_threshold, *thr_label[2], *thr_spin[2];
-GtkWidget *thr_hbox[2], *thr_vbox, *thr_scale[2];
-GtkObject *thr_adj[2];
+extern GtkWidget *fr_threshold, *thr_label[2], *thr_spin[2];
+extern GtkWidget *thr_hbox[2], *thr_vbox, *thr_scale[2];
+extern GtkObject *thr_adj[2];
 
 /* reset buttons */
-GtkWidget *reset_button[2], *reset_hbox, *reset_align, *reset_button_icon[2];
+extern GtkWidget *reset_button[2], *reset_hbox, *reset_align, *reset_button_icon[2];
 
 /* dialog */
-GtkWidget *dialog, *dialog_hbox, *dialog_vbox, *frame_hbox, *dialog_aspect;
-GtkWidget *preview, *preview_reset, *preview_hbox, *preview_reset_icon;
+extern GtkWidget *dialog, *dialog_hbox, *dialog_vbox, *frame_hbox, *dialog_aspect;
+extern GtkWidget *pre

Bug#957188: patch to fix linking with gcc-10

2020-08-01 Thread arnold metselaar
Dear maintainer,

Attached is a patch to make gimp-lqr-plugin and wavelet-denoise-0.3.1 link
properly with gcc-10.

suggested changelog entry

lqr/gimp-lqr-plugin/src/interface_aux.c,
lqr/gimp-lqr-plugin/src/interface_I.c: declare variables as extern that
would otherwise clash with those in lqr/gimp-lqr-plugin/src/interface.c

wavelet-denoise/wavelet-denoise-0.3.1/src/interface.h,
wavelet-denoise/wavelet-denoise-0.3.1/src/plugin.h: declare global
variables as extern
wavelet-denoise/wavelet-denoise-0.3.1/src/interface.c,
wavelet-denoise/wavelet-denoise-0.3.1/src/plugin.c: add some global
variables now declared extern in the corresponding header files

Kind regards,
Arnold Metselaar
diff --git a/lqr/gimp-lqr-plugin/src/interface_I.c b/lqr/gimp-lqr-plugin/src/interface_I.c
index 2719167..dbe2717 100644
--- a/lqr/gimp-lqr-plugin/src/interface_I.c
+++ b/lqr/gimp-lqr-plugin/src/interface_I.c
@@ -73,10 +73,10 @@ static void callback_alarm_triggered (GtkWidget * size_entry, gpointer data);
 
 gint dialog_I_response = GTK_RESPONSE_OK;
 
-PlugInUIVals *ui_state;
-PlugInVals *state;
-PlugInDialogVals *dialog_state;
-gboolean features_are_sensitive;
+extern PlugInUIVals *ui_state;
+extern PlugInVals *state;
+extern PlugInDialogVals *dialog_state;
+extern gboolean features_are_sensitive;
 InterfaceIData interface_I_data;
 //volatile sig_atomic_t interface_locked = 0;
 
diff --git a/lqr/gimp-lqr-plugin/src/interface_aux.c b/lqr/gimp-lqr-plugin/src/interface_aux.c
index 6461757..ceed0d9 100644
--- a/lqr/gimp-lqr-plugin/src/interface_aux.c
+++ b/lqr/gimp-lqr-plugin/src/interface_aux.c
@@ -49,11 +49,11 @@ static void callback_dialog_aux_response (GtkWidget * dialog, gint response_id,
 
 gint dialog_aux_response = GTK_RESPONSE_OK;
 
-PlugInUIVals *ui_state;
-PlugInVals *state;
-PlugInDialogVals *dialog_state;
+extern PlugInUIVals *ui_state;
+extern PlugInVals *state;
+extern PlugInDialogVals *dialog_state;
 
-GtkWidget *dlg;
+extern GtkWidget *dlg;
 
 /***  Public functions  ***/
 
diff --git a/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.c b/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.c
index 170894b..2f95572 100644
--- a/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.c
+++ b/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.c
@@ -16,8 +16,36 @@
 #include "plugin.h"
 #include "interface.h"
 
+/* Global variables declared in interface.h */
+/* colour mode frame */
+GtkWidget *fr_mode, *mode_radio[3], *mode_vbox;
+GSList *mode_list;
+
+/* preview select frame */
+GtkWidget *fr_preview, *preview_radio[3], *preview_vbox, *preview_check;
+GSList *preview_list;
+
+/* channel select frame */
+GtkWidget *fr_channel, *channel_radio[4], *channel_vbox;
+GSList *channel_list;
+
+/* threshold frame */
+GtkWidget *fr_threshold, *thr_label[2], *thr_spin[2];
+GtkWidget *thr_hbox[2], *thr_vbox, *thr_scale[2];
+GtkObject *thr_adj[2];
+
+/* reset buttons */
+GtkWidget *reset_button[2], *reset_hbox, *reset_align, *reset_button_icon[2];
+
+/* dialog */
+GtkWidget *dialog, *dialog_hbox, *dialog_vbox, *frame_hbox, *dialog_aspect;
+GtkWidget *preview, *preview_reset, *preview_hbox, *preview_reset_icon;
+
 GtkWidget **radios_labels[] = { channel_radio, thr_label };
 
+char **names;
+
+
 gboolean
 user_interface (GimpDrawable * drawable)
 {
diff --git a/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.h b/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.h
index f0ce8ad..0f5430e 100644
--- a/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.h
+++ b/wavelet-denoise/wavelet-denoise-0.3.1/src/interface.h
@@ -14,29 +14,29 @@
  */
 
 /* colour mode frame */
-GtkWidget *fr_mode, *mode_radio[3], *mode_vbox;
-GSList *mode_list;
+extern GtkWidget *fr_mode, *mode_radio[3], *mode_vbox;
+extern GSList *mode_list;
 
 /* preview select frame */
-GtkWidget *fr_preview, *preview_radio[3], *preview_vbox, *preview_check;
-GSList *preview_list;
+extern GtkWidget *fr_preview, *preview_radio[3], *preview_vbox, *preview_check;
+extern GSList *preview_list;
 
 /* channel select frame */
-GtkWidget *fr_channel, *channel_radio[4], *channel_vbox;
-GSList *channel_list;
+extern GtkWidget *fr_channel, *channel_radio[4], *channel_vbox;
+extern GSList *channel_list;
 
 /* threshold frame */
-GtkWidget *fr_threshold, *thr_label[2], *thr_spin[2];
-GtkWidget *thr_hbox[2], *thr_vbox, *thr_scale[2];
-GtkObject *thr_adj[2];
+extern GtkWidget *fr_threshold, *thr_label[2], *thr_spin[2];
+extern GtkWidget *thr_hbox[2], *thr_vbox, *thr_scale[2];
+extern GtkObject *thr_adj[2];
 
 /* reset buttons */
-GtkWidget *reset_button[2], *reset_hbox, *reset_align, *reset_button_icon[2];
+extern GtkWidget *reset_button[2], *reset_hbox, *reset_align, *reset_button_icon[2];
 
 /* dialog */
-GtkWidget *dialog, *dialog_hbox, *dialog_vbox, *frame_hbox, *dialog_aspect;
-GtkWidget *preview, *preview_reset, *preview_hbox, *preview_reset_icon;
+extern GtkWidget *dialog, *dialog_hbox, *dialog_vbox, *frame_hbox, *dialog_aspect;
+extern GtkWidget *pre

Bug#957914: Patch to fix linking with gcc-10

2020-07-28 Thread arnold metselaar
Dear maintainer,

Below and attached is a patch to make viking compile and link properly with
gcc-10.

Suggested changelog entry:

src/babel.h (a_babel_file_list, a_babel_device_list): declare global
variables as extern, closes #957914

Kind regards,
Arnold Metselaar
---

diff --git a/src/babel.h b/src/babel.h
index ae2fa959..e2c18e6c 100644
--- a/src/babel.h
+++ b/src/babel.h
@@ -109,8 +109,8 @@ typedef struct {
 gchar *label;
 } BabelFile;

-GList *a_babel_file_list;
-GList *a_babel_device_list;
+extern GList *a_babel_file_list;
+extern GList *a_babel_device_list;

 void a_babel_foreach_file_with_mode (BabelMode mode, GFunc func, gpointer
user_data);
 void a_babel_foreach_file_read_any (GFunc func, gpointer user_data);
diff --git a/src/babel.h b/src/babel.h
index ae2fa959..e2c18e6c 100644
--- a/src/babel.h
+++ b/src/babel.h
@@ -109,8 +109,8 @@ typedef struct {
 gchar *label;
 } BabelFile;
 
-GList *a_babel_file_list;
-GList *a_babel_device_list;
+extern GList *a_babel_file_list;
+extern GList *a_babel_device_list;
 
 void a_babel_foreach_file_with_mode (BabelMode mode, GFunc func, gpointer user_data);
 void a_babel_foreach_file_read_any (GFunc func, gpointer user_data);


Bug#875871: viking: Crashes with segmentation violation in gdk_draw_arc when drawing trackpoints and stops

2017-09-15 Thread Arnold Metselaar
Hi,

I have observed that viking is rather stable when the drawing of track points 
and stops are both switched off and prone to crashing when they both switched 
on, which happens to be the default setting.

Regards,
Arnold



Bug#875871: viking: Crashes with segmentation violation in gdk_draw_arc

2017-09-15 Thread Arnold Metselaar
Package: viking
Version: 1.6.2-3
Severity: important

Dear Maintainer,

The program may be triggered zooming, panning or the addition of a piece of 
rote or track.
When I run viking under gdb I see a SIGSEGV and get a backtrace like this:

Thread 1 "viking" received signal SIGSEGV, Segmentation fault.
0x772fb26a in gdk_draw_arc () from 
/usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0
(gdb) bt
#0  0x772fb26a in gdk_draw_arc () from 
/usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0
#1  0x555e4318 in ?? ()
#2  0x7575c850 in g_hash_table_foreach () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x555df387 in ?? ()
#4  0x556091da in ?? ()
#5  0x555f8f32 in ?? ()
#6  0x555fb899 in ?? ()
#7  0x75a46f75 in g_closure_invoke () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
#8  0x75a58f82 in ?? () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
#9  0x75a61bdc in g_signal_emit_valist () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
#10 0x75a61fbf in g_signal_emit () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
#11 0x555f635f in ?? ()
#12 0x7576d6aa in g_main_context_dispatch () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#13 0x7576da60 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#14 0x7576dd82 in g_main_loop_run () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#15 0x776bd3b7 in gtk_main () from 
/usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0
#16 0x555d15a3 in ?? ()
#17 0x724042b1 in __libc_start_main (main=0x555d12f0, argc=1, 
argv=0x7fffe708, init=, 
fini=, rtld_fini=, stack_end=0x7fffe6f8) 
at ../csu/libc-start.c:291
#18 0x555d179a in ?? ()

It is likely that the problem exists in the upstreamn version as well.

Kind regards,
Arnold Metselaar

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

Kernel: Linux 4.9.0-3-amd64 (SMP w/3 CPU cores)
Locale: LANG=nl_NL.UTF-8, LC_CTYPE=nl_NL.UTF-8 (charmap=UTF-8), LANGUAGE= 
(charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages viking depends on:
ii  gpsbabel 1.5.3-2
ii  libatk1.0-0  2.22.0-1
ii  libbz2-1.0   1.0.6-8.1
ii  libc62.24-11+deb9u1
ii  libcairo21.14.8-1
ii  libcurl3-gnutls  7.52.1-5
ii  libexpat12.2.0-2+deb9u1
ii  libfontconfig1   2.11.0-6.7+b1
ii  libfreetype6 2.6.3-3.2
ii  libgcc1  1:6.3.0-18
ii  libgdk-pixbuf2.0-0   2.36.5-2
ii  libgexiv2-2  0.10.4-2
ii  libglib2.0-0 2.50.3-2
ii  libgps22 3.16-4
ii  libgtk2.0-0  2.24.31-2
ii  libicu57 57.1-6
ii  libmagic11:5.30-1+deb9u1
ii  libmapnik3.0 3.0.12+ds-3
ii  libpango-1.0-0   1.40.5-1
ii  libpangocairo-1.0-0  1.40.5-1
ii  libpangoft2-1.0-01.40.5-1
ii  libsqlite3-0 3.16.2-5
ii  libstdc++6   6.3.0-18
ii  libx11-6 2:1.6.4-3
ii  zlib1g   1:1.2.8.dfsg-5

Versions of packages viking recommends:
ii  expect [expect-dev]  5.45-7+b1

Versions of packages viking suggests:
ii  gpsd  3.16-4

-- no debconf information



Bug#854254: kipi-plugins: Fails to upload images to flickr

2017-02-05 Thread Arnold Metselaar
Package: kipi-plugins
Version: 4:5.3.0-1
Severity: normal

Dear Maintainer,

After upgrading upgrading to Digikam 5.3.0 I have problems uploading images to 
flickr.
It does work if there are no titles or descriptions with line breaks.

Upstream this bug has been solved in 5.4.0, see 
https://bugs.kde.org/show_bug.cgi?id=374442 .

Kind regards,
Arnold Metselaar

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

Kernel: Linux 4.9.0-1-amd64 (SMP w/3 CPU cores)
Locale: LANG=nl_NL.UTF-8, LC_CTYPE=nl_NL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages kipi-plugins depends on:
ii  digikam-private-libs  4:5.3.0-1
ii  kio   5.28.0-1
ii  kipi-plugins-common   4:5.3.0-1
ii  libc6 2.24-9
ii  libkf5archive55.28.0-1
ii  libkf5completion5 5.28.0-1
ii  libkf5configcore5 5.28.0-1
ii  libkf5configgui5  5.28.0-1
ii  libkf5configwidgets5  5.28.0-1
ii  libkf5coreaddons5 5.28.0-1
ii  libkf5i18n5   5.28.0-1
ii  libkf5kiocore55.28.0-1
ii  libkf5kiowidgets5 5.28.0-1
ii  libkf5kipi31.0.0  4:16.08.2-1
ii  libkf5windowsystem5   5.28.0-1
ii  libkf5xmlgui5 5.28.0-1
ii  libqt5core5a  5.7.1+dfsg-3+b1
ii  libqt5gui55.7.1+dfsg-3+b1
ii  libqt5network55.7.1+dfsg-3+b1
ii  libqt5printsupport5   5.7.1+dfsg-3+b1
ii  libqt5widgets55.7.1+dfsg-3+b1
ii  libqt5xml55.7.1+dfsg-3+b1
ii  libqt5xmlpatterns55.7.1~20161021-3
ii  libstdc++66.3.0-5

Versions of packages kipi-plugins recommends:
ii  enblend  4.2-2
ii  enfuse   4.2-2
ii  hugin2016.2.0~rc2+dfsg-2+b1
ii  imagemagick  8:6.9.7.4+dfsg-1
ii  imagemagick-6.q16 [imagemagick]  8:6.9.7.4+dfsg-1
ii  konqueror4:16.08.3-1
ii  minidlna 1.1.5+dfsg-4

Versions of packages kipi-plugins suggests:
ii  gimp  2.8.18-1
ii  kmail 4:16.04.3-3
ii  vorbis-tools  1.4.0-10

-- no debconf information



Bug#845501: rdiff-backup: Does not erase pid on loss of connection

2016-11-23 Thread Arnold Metselaar
Package: rdiff-backup
Version: 1.2.8-7
Severity: normal

Dear Maintainer,

After an automated backup process failed due to the remote host closing the 
connection, 
subsequent backup processes failed as well because rdiff-backup still checked, 
or tried to check,
whether a process with the process id of the failed backup was running.

I think that rdiff-backup should clear its pidfile whenever it stops due loss 
of connection with the remote host,
or other fatal problems.

Kind regards,
Arnold Metselaar


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

Kernel: Linux 3.16.0-4-amd64 (SMP w/3 CPU cores)
Locale: LANG=nl_NL.UTF-8, LC_CTYPE=nl_NL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages rdiff-backup depends on:
ii  libc6  2.19-18+deb8u6
ii  librsync1  0.9.7-10
ii  python 2.7.9-1
ii  python2.7  2.7.9-2+deb8u1

Versions of packages rdiff-backup recommends:
ii  python-pylibacl  0.5.2-1
ii  python-pyxattr   0.5.3-1

rdiff-backup suggests no packages.

-- no debconf information



Bug#753777: Flickr upload also broken in stable

2014-08-30 Thread Arnold Metselaar
Dear maintainer,

The version in stable (4:2.6.0-1) suffers from the same problem. As the fix 
simply means using https instead of http it was simple to back-port the patch 
to stable.
I have attached the back-ported patch, which works fine on my amd64 machine. 
The patch changes some web addresses from http to https and bumps copyright 
dates in comments. I'm not sure the latter really makes sense, but it doesn't 
have any effect on the compiled program anyway.

Regards,
Arnold Metselaar
commit 1d4a95bc3d36060a025b8950aaaca467253532bc
Author: Gilles Caulier caulier.gil...@gmail.com
Date:   Mon Jul 28 07:57:11 2014 +0200

use SSL based url for flickr web service communication
BUGS: 336835
FIXED-IN: 4.2.0

--- a/extra/kipi-plugins/flickrexport/flickrtalker.cpp
+++ b/extra/kipi-plugins/flickrexport/flickrtalker.cpp
@@ -7,7 +7,7 @@
  * Description : a kipi plugin to export images to Flickr web service
  *
  * Copyright (C) 2005-2009 by Vardhman Jain vardhman at gmail dot com
- * Copyright (C) 2009-2012 by Gilles Caulier caulier dot gilles at gmail dot com
+ * Copyright (C) 2009-2014 by Gilles Caulier caulier dot gilles at gmail dot com
  *
  * This program is free software; you can redistribute it
  * and/or modify it under the terms of the GNU General
@@ -104,9 +104,9 @@
 }
 else
 {
-m_apiUrl= QString(http://www.flickr.com/services/rest/;);
-m_authUrl   = QString(http://www.flickr.com/services/auth/;);
-m_uploadUrl = QString(http://api.flickr.com/services/upload/;);
+m_apiUrl= QString(https://www.flickr.com/services/rest/;);
+m_authUrl   = QString(https://www.flickr.com/services/auth/;);
+m_uploadUrl = QString(https://api.flickr.com/services/upload/;);
 
 m_apikey = 49d585bafa0758cb5c58ab67198bf632;
 m_secret = 34b39925e6273ffd;
--- a/extra/kipi-plugins/flickrexport/flickrtalker.h
+++ b/extra/kipi-plugins/flickrexport/flickrtalker.h
@@ -7,7 +7,7 @@
  * Description : a kipi plugin to export images to Flickr web service
  *
  * Copyright (C) 2005-2009 by Vardhman Jain vardhman at gmail dot com
- * Copyright (C) 2009  by Gilles Caulier caulier dot gilles at gmail dot com
+ * Copyright (C) 2009-2014 by Gilles Caulier caulier dot gilles at gmail dot com
  *
  * This program is free software; you can redistribute it
  * and/or modify it under the terms of the GNU General


Bug#682372: rawtherapee: Annoying warnings, modal but possibly not on top

2012-08-16 Thread Arnold Metselaar
Op woensdag 1 augustus 2012, schreef u:
 tags 682372 moreinfo
 thanks
 
 Hi Arnold,
 
 I can't reproduce your problem. Can you please remove (or rename)
 the RawTherapee folders from ~/.cache and ~/.config to start with
 an fresh installation and retry it. If you still can reproduce the
 problem can you provide me with one of your files where the
 problem occurs?
 
 Thanks,
 Philip

Hi Philip,

I have renamed the RawTherapee folders in ~/.cache and ~/.config as you 
requested and my problem has disappeared. 
After testing with a fresh installation I have restored the 
RawTherapee folder in ~/.config and the problem did not reappear. 
Apparently RawTherapee is too picky about tyhe contents of its cache, 
possibly leading to problems after upgrading.   

 
I could try to produce a minimal .cache directory with the RawTherapee 
version from Squeeze that gives problems under the Rawtherapee in 
Wheezy.

Kind regards,
Arnold


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



Bug#684807: gpsbabel: fails with negative altitude in exif data

2012-08-14 Thread Arnold Metselaar
Package: gpsbabel
Version: 1.4.3-1
Severity: normal
Tags: upstream

Dear Maintainer,

When I use gpsbabel to convert the geotag in the exif data of a photo taken 
below sea level, gpsbabel will 
give a warning message: exif: Invalid GPSAltitudeRef (1)! Using 0 (= Sea 
level). and the altitude in the GPX
output will be the absolute value of the altitude.
The program gpsbabel should understand that a GPSAltitudeRef value of 1 means 
that the picture was taken below 
sea level and put a negative altitude in the output.


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (650, 'testing'), (550, 'stable'), (500, 'stable-updates')
Architecture: amd64 (x86_64)

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

Versions of packages gpsbabel depends on:
ii  libc6 2.13-33
ii  libexpat1 2.1.0-1
ii  libusb-0.1-4  2:0.1.12-20
ii  zlib1g1:1.2.7.dfsg-13

Versions of packages gpsbabel recommends:
ii  gpsbabel-doc  1.4.3-1

gpsbabel 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#684807: patch for altitudes below sea level in exif tags

2012-08-14 Thread Arnold Metselaar
tags 684807 patch
thanks

Dear maintainer,

I have a attached a patch to support altitudes below sea level in exif 
tags with gpsbabel.

Kind regards, 
Arnold Metselaar
Handle GPS tags indicating photo was taken below sea level
--- a/gpsbabel/exif.c~	2012-05-16 21:23:12.0 +0200
+++ b/gpsbabel/exif.c	2012-08-13 23:18:13.0 +0200
@@ -779,10 +779,21 @@ exif_waypt_from_exif_app(exif_app_t* app
   }
 
   if (alt != unknown_alt) {
-if (alt_ref != 0) {
+double sign;
+switch (alt_ref != 0) {
+case 0:
+  sign = 1.0;
+  break;
+
+case 1:
+  sign = -1.0;
+  break;
+
+default:
   warning(MYNAME : Invalid GPSAltitudeRef (%d)! Using 0 (= Sea level).\n, alt_ref);
+  sign = 1.0;
 }
-wpt-altitude = alt;
+wpt-altitude = sign * alt;
 #ifdef EXIF_DBG
 printf(MYNAME -GPSAltitude =  %12.7f m\n, wpt-altitude);
 #endif


Bug#682372: rawtherapee: Annoying warnings, modal but possibly not on top

2012-07-22 Thread Arnold Metselaar
Package: rawtherapee
Version: 4.0.9-3
Severity: normal

Dear Maintainer,
When I start rawtherapee I get two warning windows that I must close before I 
can do anything, 
the first only has a no-entry and an OK button, the second also shows the text:
The default profile for non-raw photos could not be found or is not set.
Please check your profiles' directory, it may be missing or damaged.
Default internal values will be used.

These wearnings are annoying of themselves (I only use rawtherapee for raw 
(.NEF) photos,
where does it look for my profiles' directory?), but it gets worse when I start 
a second instance 
of rawtherapee from digiKam, because then the warnings are not on top, but they 
still block interaction
with rawtherapee, causing the program act as if it is stuck until one moves all 
windows above the warnings away.
 
I would expect warnings to be more informative and modal dialogs to be always 
on top of the windows they are blocking.

Kind regards,
Arnold

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (650, 'testing'), (550, 'stable'), (500, 'stable-updates')
Architecture: amd64 (x86_64)

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

Versions of packages rawtherapee depends on:
ii  libatkmm-1.6-1  2.22.6-1
ii  libbz2-1.0  1.0.6-3
ii  libc6   2.13-33
ii  libcairomm-1.0-11.10.0-1
ii  libexpat1   2.1.0-1
ii  libgcc1 1:4.7.1-2
ii  libglib2.0-02.32.3-1
ii  libglibmm-2.4-1c2a  2.32.0-1
ii  libgomp14.7.1-2
ii  libgtk2.0-0 2.24.10-1
ii  libgtkmm-2.4-1c2a   1:2.24.2-1
ii  libiptcdata01.0.4-3
ii  libjpeg88d-1
ii  liblcms2-2  2.2+git20110628-2.2
ii  libpangomm-1.4-12.28.4-1
ii  libpng12-0  1.2.49-1
ii  libsigc++-2.0-0c2a  2.2.10-0.2
ii  libstdc++6  4.7.1-2
ii  libtiff43.9.6-6
ii  rawtherapee-data4.0.9-3

rawtherapee recommends no packages.

rawtherapee 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#673161: Starting mysqld in a chroot

2012-05-18 Thread Arnold Metselaar
Hi, 

I was mistaken in my previous message.  Generating a decent /etc/mtab with the 
line

grep ${CHROOT_PATH} /etc/mtab | sed -e s:${CHROOT_PATH}/\?:/: 
${CHROOT_PATH}/etc/mtab

in /etc/schroot/setup.d/99mini-buildd helped get rid of warnings from df,  
but mysqld was trying to start without it as well.

Mysqld tries to bind to a port at start-up, and fails when another mysqld 
outside the chroot is already
bound to that port. When mysqld is not running in the host machine, it starts 
in a chroot just fine. 
It should also work when mysqld in the host is listening on a non-standard port.

Regards,
Arnold



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



Bug#673161: mysql-server-5.1 is available, but fails to start in chroot

2012-05-17 Thread Arnold Metselaar
Hi,

Being interested in digikam 2.6.0, I have tried building it for Wheezy with my 
own mini-buildd. 
I have discovered that while mysql-server-5.1 is still available in Wheezy, it 
cannot be set up
in a schroot environment.
The post installation script of mysql-server-5.1 invokes the init script to 
start mysqld.
The init script of mysql-server users df to check for a nearly full file system 
before starting, 
but df fails in a schroot environment, so nothing is started  and apt-get 
reports an error 
with mysql-server-5.1.

I think the schroot package is to blame here, though it may be argued that the 
bug should be 
reassigned to some other part of the build system, coreutils (df) or 
mysql-server-5.1 instead.

Regards,
Arnold 

Snippets from the build log:

Selecting previously unselected package mysql-server-core-5.1.
Unpacking mysql-server-core-5.1 (from 
.../mysql-server-core-5.1_5.1.61-3_i386.deb) ...
Setting up mysql-common (5.1.61-3) ...
Setting up adduser (3.113+nmu1) ...
Selecting previously unselected package mysql-server-5.1.
(Reading database ... 15839 files and directories currently installed.)
Unpacking mysql-server-5.1 (from .../mysql-server-5.1_5.1.61-3_i386.deb) ...
df: Warning: cannot read table of mounted file systems: No such file or 
directory
[...]
Setting up mysql-server-core-5.1 (5.1.61-3) ...
Setting up mysql-server-5.1 (5.1.61-3) ...
Stopping MySQL database server: mysqld.
df: Warning: cannot read table of mounted file systems: No such file or 
directory
Starting MySQL database server: mysqld . . . . . . . . . . . . . . failed!
invoke-rc.d: initscript mysql, action start failed.
dpkg: error processing mysql-server-5.1 (--configure):
 subprocess installed post-installation script returned error exit status 1




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



Bug#138520: patch to scan files in iso-image using fuseiso and fusermount

2012-04-07 Thread Arnold Metselaar
I have attached a patch for jigdo-lite that makes it use fuseiso and 
fusermount to scan files in iso images directly, i f those programs can 
be found and an iso image is to be scanned.
Jigdo should suggest or recommend fuseiso if this patch is applied.
Subject: Scan iso images directly using fuseiso and fusermount, if available
Author: Arnold Metselaar arnold.met...@gmail.com
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=138520
--- a/scripts/jigdo-lite
+++ b/scripts/jigdo-lite
@@ -61,6 +61,34 @@
 strNotEmpty() { test x$1 != x; }
 #__
 
+# $jigdoFile: name of jigdo-file program, possibly with path
+# $image: image filename
+# $jigdoF: name of .jigdo file
+# $template: template filename
+# $hasFuseIso: 0 if fuseiso and fusermount are available, 1 otherwise
+# $1: file or directory to scan
+scanFile() {
+  tmpMnt=`dirname $template`/tmpMnt
+  toScan=$1
+  if test -f $1 -a $hasFuseIso = 0 ; then
+if fuseiso -p $1 $tmpMnt 21 /dev/null; then
+  echo Scanning iso image...
+  toScan=$tmpMnt
+else
+  # apparently not an iso image
+  tmpMnt=
+fi
+  fi
+  $jigdoFile make-image --image=$image --jigdo=$jigdoF \
+  --template=$template $jigdoOpts $toScan
+  result=$?
+  if strNotEmpty $tmpMnt; then
+fusermount -u -q $tmpMnt
+  fi
+  return $result
+}
+#__
+
 # fetch URL...
 # Download a file, storing it in the current dir
 fetch() {
@@ -345,8 +373,7 @@
 if $batch; then return 0; fi
 # Retrieve template if necessary, then supply files
 fetchTemplate || return 1
-$jigdoFile make-image --image=$image --jigdo=$jigdoF \
-  --template=$template $jigdoOpts $opt_filesToScan
+scanFile $opt_filesToScan
 jigdoErr=$?
 if test $jigdoErr -eq 0 -a -r $image; then
   finished
@@ -367,8 +394,14 @@
 if $windows; then
 echo again. Enter the path to the old CD ROM's contents (e.g. \`d:\\').
 else
-echo again. Mount the old CD ROM and enter the path it is mounted under
-echo (e.g. \`/mnt/cdrom').
+  if test $hasFuseIso = 0 ; then
+echo again. If you still have the image of the old CD-ROM, enter the name
+echo it is stored under, otherwise mount the old CD ROM and enter
+echo the path it is mounted under (e.g. \`/mnt/cdrom').
+  else
+echo again. Mount the old CD ROM and enter the path it is mounted under
+echo (e.g. \`/mnt/cdrom').
+  fi
 fi
 echo Alternatively, just press enter if you want to start downloading
 echo the remaining files.
@@ -408,8 +441,7 @@
 
 # Retrieve template if necessary, then supply files
 fetchTemplate || return 1
-$jigdoFile make-image --image=$image --jigdo=$jigdoF \
-  --template=$template $jigdoOpts $filesToScan
+scanFile  $filesToScan
 jigdoErr=$?
 if test $jigdoErr -eq 0 -a -r $image; then
   finished
@@ -535,8 +567,7 @@
 # Retrieve template if necessary, then supply files. One of the
 # two variables $filesToScan and $opt_filesToScan is always empty
 fetchTemplate || return 1
-$jigdoFile make-image --image=$image --jigdo=$jigdoF \
-  --template=$template $jigdoOpts $filesToScan$opt_filesToScan
+scanFile $filesToScan$opt_filesToScan
 jigdoErr=$?
 if test $jigdoErr -eq 0 -a -r $image; then
   finished
@@ -648,6 +679,7 @@
   done
   finished
 }
+
 #==
 
 echo
@@ -676,6 +708,9 @@
 which $prog /dev/null \
 || echo Could not find program \`$prog' - please install it!
 done
+which fuseiso  /dev/null  which fusermount  /dev/null
+hasFuseIso=$?
+echo hasFuseIso: $hasFuseIso
 fi
 
 userAgent=jigdo-lite/`$jigdoFile --version 2/dev/null | ($readLine jf v ver; echo $ver)` (`wget --version 2/dev/null | ($readLine ver; echo $ver)`; $OSTYPE)


Bug#618651: gphoto2: Please allow the keyword 'now' as a date when setting a config item

2011-03-17 Thread Arnold Metselaar
Package: gphoto2
Version: 2.4.5-3
Severity: wishlist

To synchronise the time of the camera with gphoto2 one needs to do 
something like:
gphoto2 --set-config /main/settings/time=`date +%s` 
Because of the time passing between the execution of date and the 
setting of the camera clock, the camera clock will lag by a few seconds.
It would be more convenient and accurate if one could use:
gphoto2 --set-config /main/settings/time=now

I have attached a patch that supports this use of the word 'now'. 
The patch is for the stable version, but applies to the version in 
unstable as well, albeit with a large shift. 
-- System Information:
Debian Release: 6.0
  APT prefers stable
  APT policy: (650, 'stable'), (620, 'oldstable'), (500, 'squeeze-updates')
Architecture: amd64 (x86_64)

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

Versions of packages gphoto2 depends on:
ii  libaa11.4p5-38   ascii art library
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib
ii  libcdk5   5.0.20060507-2 C-based curses widget library
ii  libexif12 0.6.19-1   library to parse EXIF files
ii  libgphoto2-2  2.4.6-3gphoto2 digital camera library
ii  libgphoto2-port0  2.4.6-3gphoto2 digital camera port librar
ii  libjpeg62 6b1-1  The Independent JPEG Group's JPEG 
ii  libncurses5   5.7+20100313-5 shared libraries for terminal hand
ii  libpopt0  1.16-1 lib for parsing cmdline parameters
ii  libreadline5  5.2-7  GNU readline and history libraries
ii  libslang2 2.2.2-4The S-Lang programming library - r
ii  libusb-0.1-4  2:0.1.12-16userspace USB programming library
ii  libx11-6  2:1.3.3-4  X11 client-side library

gphoto2 recommends no packages.

Versions of packages gphoto2 suggests:
ii  gthumb3:2.11.5-4 an image viewer and browser
pn  gtkam none (no description available)

-- no debconf information
--- gphoto2/actions.c~	2009-03-31 22:27:05.0 +0200
+++ gphoto2/actions.c	2011-03-17 10:06:43.0 +0100
@@ -1528,9 +1528,11 @@ set_config_action (GPParams *p, const ch
 		int	t = -1;
 		struct tm xtm;
 
+		if ( !strcasecmp (value, now)	|| !strcasecmp (value, _(now)) )
+			t = time(NULL);
 #ifdef HAVE_STRPTIME
-		if (strptime (value, %c, xtm) || strptime (value, %Ec, xtm))
-			t = mktime (xtm);
+		else if (strptime (value, %c, xtm) || strptime (value, %Ec, xtm))
+			t = mktime (xtm);		
 #endif
 		if (t == -1) {
 			if (!sscanf (value, %d, t)) {


Bug#616325: ttb: does not start: ImportError: No module named glade

2011-03-03 Thread Arnold Metselaar
Package: ttb
Version: 1.0.1-3
Severity: important

When I start ttb from the shell I get the following error messages:
Traceback (most recent call last):
  File /usr/bin/ttb, line 42, in module
import gtk, gtk.glade
ImportError: No module named glade

This may indicate a missing or inadequately versioned dependency.

-- System Information:
Debian Release: 6.0
  APT prefers stable
  APT policy: (650, 'stable'), (620, 'oldstable')
Architecture: amd64 (x86_64)

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

Versions of packages ttb depends on:
ii  python  2.6.6-3+squeeze5 interactive high-level object-orie
ii  python-gtk2 2.17.0-4 Python bindings for the GTK+ widge
ii  python-support  1.0.10   automated rebuilding support for P

ttb recommends no packages.

ttb 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#616325: (ttb: does not start: ImportError: No module named glade)

2011-03-03 Thread Arnold Metselaar
Hello,

It seems the missing dependency is python-glade2.
Installing it made ttb work.

Kind regards,
Arnold Metselaar



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



Bug#598803: Subject: Re: X crashes / hung gpu, now and then

2011-01-09 Thread Arnold Metselaar
Subject: Re: X crashes / hung gpu, now and then
Package: xserver-xorg-video-intel
Version: 2:2.13.0-5
Severity: normal

*** Please type your report below this line ***
I still get GPU hangs at irregular intervals.
I have not identified any specific action to trigger a hang, but I have
gathered some dumps from /sys/kernel/debug/dri/0/i915_error_state.

i915dump.0:
Time: 1294581783 s 361089 us
EIR: 0x
  PGTBL_ER: 0x
  INSTPM: 0x
  IPEIR: 0x
  IPEHR: 0x0029
  INSTDONE: 0x01c1
  ACTHD: 0x0164a004

i915dump.1:
Time: 1294587079 s 336831 us
EIR: 0x
  PGTBL_ER: 0x
  INSTPM: 0x
  IPEIR: 0x
  IPEHR: 0x1801
  INSTDONE: 0x01c1
  ACTHD: 0x014fa000

i915dump.2:
Time: 1294587785 s 97633 us
EIR: 0x
  PGTBL_ER: 0x
  INSTPM: 0x
  IPEIR: 0x
  IPEHR: 0x0cec8310
  INSTDONE: 0x00c1
  ACTHD: 0x014fa008

i915dump.3:
Time: 1294592934 s 969832 us
EIR: 0x
  PGTBL_ER: 0x
  INSTPM: 0x
  IPEIR: 0x
  IPEHR: 0x0029
  INSTDONE: 0x01c1
  ACTHD: 0x014f6004

I'm using an Intel 845GV chipset on an ASRock P4i45GV motherboard.
I hope this information will help solve the problem.


-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Sep 11 21:14 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1733512 Dec  2 01:16 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation
82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 03)

/etc/X11/xorg.conf does not exist.

Kernel version (/proc/version):
Linux version 2.6.32-5-686 (Debian 2.6.32-29) (b...@decadent.org.uk) (gcc
version 4.3.5 (Debian 4.3.5-4) ) #1 SMP Fri Dec 10 16:12:40 UTC 2010

Xorg X server log files on system:
-rw-r--r-- 1 root root 10209 Sep 25 21:22 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 10209 Sep 25 21:22 /var/log/Xorg.2.log
-rw-r--r-- 1 root root 10209 Sep 25 21:22 /var/log/Xorg.3.log
-rw-r--r-- 1 root root 10209 Sep 25 21:22 /var/log/Xorg.4.log
-rw-r--r-- 1 root root 10209 Sep 25 21:22 /var/log/Xorg.5.log
-rw-r--r-- 1 root root 37312 Jan  9 18:08 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.7.7
Release Date: 2010-05-04
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32-5-686 i686 Debian
Current Operating System: Linux nilgiris 2.6.32-5-686 #1 SMP Fri Dec 10
16:12:40 UTC 2010 i686
Kernel command line: BOOT_IMAGE=/vmlinuz-2.6.32-5-686
root=UUID=26a1ea0d-90d1-4174-afe7-6cef8f726fc8 ro quiet
Build Date: 02 December 2010  01:08:37AM
xorg-server 2:1.7.7-10 (Julien Cristau jcris...@debian.org) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Sun Jan  9 16:47:19 2011
(==) Using system config directory /usr/share/X11/xorg.conf.d
(==) No Layout section.  Using the first Screen section.
(==) No screen section available. Using defaults.
(**) |--Screen Default Screen Section (0)
(**) |   |--Monitor default monitor
(==) No monitor specified for screen Default Screen Section.
Using a default monitor configuration.
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to /usr/lib/xorg/modules
(II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable
AutoAddDevices.
(II) Loader magic: 0x81ec060
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 6.0
X.Org XInput driver : 7.0
X.Org Server Extension : 2.0
(++) using VT number 7

(--) PCI:*(0:0:2:0) 8086:2562:1849:2562 Intel Corporation
82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device rev 3, Mem
@ 0xd000/134217728, 0xdff8/524288
(II) Open ACPI successful (/var/run/acpid.socket)
(II) LoadModule: extmod
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor=X.Org Foundation
compiled for 1.7.7, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 

Bug#601394: dlocate -md5check lists diverted files as 'FAILED', causing unnecessary alarm

2010-10-25 Thread Arnold Metselaar
Package: dlocate
Version: 1.02
Severity: minor

When I use dlocate -md5check to check the integrity of my system, all 
files that are diverted will show up as FAILED, which makes me think that I 
need to reinstall packages while in fact nothing is wrong. 

I think dlocate -md5check should tell me the file is diverted and then
check the file against the md5sum from the diverting package or
check the backup copy of the diverted file or both  

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (650, 'testing'), (620, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages dlocate depends on:
ii  dctrl-tools [grep-dctrl]  2.14.4 Command-line tools to process Debi
ii  dpkg  1.15.8.5   Debian package management system
ii  perl  5.10.1-15  Larry Wall's Practical Extraction 

dlocate recommends no packages.

dlocate 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#587043: Highscore list cannot be written by gweled

2010-06-24 Thread Arnold Metselaar
Package: gweled
Version: 0.8.repack-1
Severity: normal

After upgrading to this version of gweled I could no longer reach the hiscore 
list, 
even though it was emptied during the upgrade.
I fixed this locally by changing groups and permissions for some files:

chown root.games /var/games/gweled.[TN]*
chmod g+w /var/games/gweled.[TN]*
chown root.games /usr/games/gweled
chmod g+s /usr/games/gweled

Maybe the hiscore files /var/games/gweled.[TN]* should not have been in the 
package 
in the first place; reportbug is now complaining that thay have been changed,
which is not a real problem for a file containing hiscores.
If included in the package hiscore files should be marked as configuration 
files.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (650, 'testing'), (620, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages gweled depends on:
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libc6   2.11.1-3 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-4 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface 
ii  libmikmod2  3.1.11-a-6.2 A portable sound library
ii  libpango1.0-0   1.28.0-1 Layout and rendering of internatio
ii  librsvg2-2  2.26.3-1 SAX-based renderer library for SVG

gweled recommends no packages.

gweled suggests no packages.

-- no debconf information

-- debsums errors found:
debsums: changed file /var/games/gweled.Timed.scores (from gweled package)



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



Bug#552390: amanda-common should (build) depend on procps

2010-04-10 Thread Arnold Metselaar
Hi,

If you can't reproduce this bug, it probably means you have installed 
a self-built version of amanda-common. 

When amanda-common is built on a system with procps installed autoconf 
does the right thing with the variable $PS in Constants.pm:
[~/src/amanda-2.6.1p2]$ grep \$PS = `find . -name Constants.\*`
./perl/Amanda/Constants.pm.in:$PS = @PS@;
./perl/Amanda/Constants.pm:$PS = /bin/ps;

Since procps is not listed as a build-dependency, it will not be 
installed on the autobuilders and autoconf will not expand @PS@, 
leading to the problem reported by Wolfgang Weisselberg.

To resolve the bug one must add procps to the build-dependencies of 
amanda and to the dependencies of amanda-common since 
/usr/lib/amanda/perl/Amanda/Process.pm in amanda-common uses /bin/ps 
in procps.

Kind regards,
Arnold Metselaar
7c7
 Build-Depends: debhelper (= 5), dump, gnuplot, libncurses5-dev, libreadline-dev, libtool, flex, perl, smbclient, bsd-mailx | mailx, lpr, mtx, xfsdump, po-debconf, autotools-dev, libglib2.0-dev
---
 Build-Depends: debhelper (= 5), dump, gnuplot, libncurses5-dev, libreadline-dev, libtool, flex, perl, smbclient, bsd-mailx | mailx, lpr, mtx, xfsdump, po-debconf, autotools-dev, libglib2.0-dev, procps
12c12
 Depends: ${misc:Depends}, ${shlibs:Depends}, update-inetd, tar (=1.12), perl5, bsd-mailx | mailx, debconf | debconf-2.0, adduser, openbsd-inetd | inet-superserver
---
 Depends: ${misc:Depends}, ${shlibs:Depends}, update-inetd, tar (=1.12), perl5, bsd-mailx | mailx, debconf | debconf-2.0, adduser, openbsd-inetd | inet-superserver, procps


Bug#563480: kipi-plugins: flickr exporter fails when title or tag contains accented letter

2010-01-03 Thread Arnold Metselaar
Package: kipi-plugins
Version: 0.1.5-4
Severity: normal

When I try to upload an image with the flickr exporter plugin I get an 
error message: 
Error Occured: Invalid signature 
 We can not proceed further (translated back to English)
And nothing arrives at flickr.com. 
Since flickr has no problems with weird characters in titles and tags, 
I think the flickr exporter should handle them too.

-- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (620, 'stable'), (600, 'oldstable'), (90, 'testing')
Architecture: amd64 (x86_64)

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

Versions of packages kipi-plugins depends on:
ii  kdelibs4c2a  4:3.5.10.dfsg.1-0lenny3 core libraries and binaries for al
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libgcc1  1:4.3.2-1.1 GCC support library
ii  libgl1-mesa-glx  7.0.3-7 A free implementation of the OpenG
ii  libglib2.0-0 2.16.6-2The GLib library of C routines
ii  libgphoto2-2 2.4.1-3 gphoto2 digital camera library
ii  libgphoto2-port0 2.4.1-3 gphoto2 digital camera port librar
ii  libgpod3-nogtk   0.6.0-6 library to read and write songs to
ii  libjpeg626b-14   The Independent JPEG Group's JPEG 
ii  libkcal2b4:3.5.9-5   KDE calendaring library
ii  libkdcraw3   0.1.4-2 Raw picture decoding C++ library (
ii  libkexiv2-3  0.1.7-1+b1  Qt like interface for the libexiv2
ii  libkipi0 0.1.6-2 library for apps that want to use 
ii  libpng12-0   1.2.27-2+lenny2 PNG library - runtime
ii  libqt3-mt3:3.3.8b-5  Qt GUI Library (Threaded runtime v
ii  libstdc++6   4.3.2-1.1   The GNU Standard C++ Library v3
ii  libtiff4 3.8.2-11.2  Tag Image File Format (TIFF) libra
ii  libx11-6 2:1.1.5-2   X11 client-side library
ii  libxml2  2.6.32.dfsg-5+lenny1GNOME XML library
ii  libxrandr2   2:1.2.3-1   X11 RandR extension library
ii  libxslt1.1   1.1.24-2XSLT processing library - runtime 

Versions of packages kipi-plugins recommends:
ii  imagemagick 7:6.3.7.9.dfsg2-1~lenny3 image manipulation programs
ii  kdeprint4:3.5.9.dfsg.1-6 print system for KDE
ii  konqueror   4:3.5.9.dfsg.1-6 KDE's advanced file manager, web b

Versions of packages kipi-plugins suggests:
pn  gallery none   (no description available)
ii  gimp2.4.7-1  The GNU Image Manipulation Program
ii  k3b 1.0.5-3  A sophisticated KDE CD burning app
ii  kipi-plugins-doc0.1.5-4phurua4   kipi-plugins documentation
ii  kmail   4:3.5.9-5KDE Email client
ii  kooka   4:3.5.9-3+lenny2 scanner program for KDE
pn  mpg123  none   (no description available)
pn  sane-utils  none   (no description available)
ii  vorbis-tools1.2.0-5  several Ogg Vorbis tools

-- 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#563480: [patch] Make flickr exporter handle titles and tags containing accented letters

2010-01-03 Thread Arnold Metselaar
tag 563480 +patch
thanks

The flickr exporter in kipi-plugins 0.1.5-4 also fails when the 
title has trailing whitespace. 
The patch for 0.1.5-4 I have attached corrects the computation of 
the api signature for the cases where accented letters or trailing 
whitepace are present. I have tested it on my own system.

Kind regards,
Arnold Metselaar
diff -up kipi-plugins-0.1.5/kipi-plugins/flickrexport/flickrtalker.cpp kipi-plugins-0.1.5local/kipi-plugins/flickrexport/flickrtalker.cpp
--- kipi-plugins-0.1.5/kipi-plugins/flickrexport/flickrtalker.cpp	2008-03-16 14:16:30.0 +0100
+++ kipi-plugins-0.1.5local/kipi-plugins/flickrexport/flickrtalker.cpp	2010-01-03 10:45:11.0 +0100
@@ -71,13 +71,13 @@ namespace KIPIFlickrExportPlugin
 
 		for ( QStringList::Iterator it = headers.begin(); it != headers.end(); ++it ) {
 			QStringList str=QStringList::split(=,(*it));
-			compressed.append(str[0].stripWhiteSpace()+str[1].stripWhiteSpace());
+		compressed.append(str[0].stripWhiteSpace()+str[1]);
 		}
 
 		compressed.sort();
 		QString merged=compressed.join();
 		QString final = secret + merged;
-		const char *test=final.ascii();
+		const QCString test=final.utf8();
 		KMD5 context (test);
 		//kdDebug() Test Hex Digest output:   context.hexDigest().data()  endl;
 		return context.hexDigest().data();


Bug#514793: iptables: post-installation script fails: Exec format error

2009-02-10 Thread Arnold Metselaar
Package: iptables
Version: 1.4.2-5
Severity: normal

When I try to configure the iptables packages with the command below, I get the 
following messages:

# LC_MESSAGES=C dpkg --configure --pending
Setting up iptables (1.4.2-5) ...
dpkg (subprocess): unable to execute post-installation script: Exec format error
dpkg: error processing iptables (--configure):
 subprocess post-installation script returned error exit status 2
Errors were encountered while processing:
 iptables



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

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

Versions of packages iptables depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries

iptables recommends no packages.

iptables 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#455783: Version number in volatile is higher than in sid (was:Script tzdata.postinst fails: /usr/bin/tzconfig not found)

2007-12-15 Thread Arnold Metselaar
package tzdata
retitle 455783 Version number in volatile is higher than in sid
thanks

Op vrijdag 14 december 2007 09:53, schreef Antoine Sirinelli:
 I can confirm this bug on a testing(lenny) system. The problem
 come from the tzdata packet 2007j-1etch1 which is present in the
 volatile repository. The volatile repository is for stable(etch)
 systems but I do not know if this bug occurs on stable systems.

 Antoine

The libc6 still has /usr/sbin/tzconfig, so I don't think there is 
any problem for stable+volatile. 

The root cause of the problem is that a package in volatile has been 
given a version number that was higher than the version in sid and 
testing, violating one of the acceptance rules of debian volatile:
* The upgrade path from volatile to the next stable release 
needs to be at least as easy as for the stable release; version 
numbers in volatile must not be higher than those in testing, for 
instance. [1]

I see the problem has been solved by bumping the version number of 
tzdata in sid and lenny, So I think this bug can be closed now.

Kind regards,
Arnold Metselaar

[1] http://www.debian.org/devel/debian-volatile/



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



Bug#455783: Script tzdata.postinst fails: /usr/bin/tzconfig not found

2007-12-11 Thread Arnold Metselaar
Package: tzdata
Version: 2007j-1etch1
Severity: important

When I try to upgrade the tzdata pakage I get the following messages.
Setting up tzdata (2007j-1etch1) ...
Running 'tzconfig' to set this system's timezone.
/var/lib/dpkg/info/tzdata.postinst: line 27: /usr/sbin/tzconfig: No such file 
or directory
dpkg: error processing tzdata (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 tzdata

The tzconfig program is in the package libc6 for etch, but no package currently
lenny or sid has it. 
It may be possible to upgrade with a non-interactive front-end and change the 
time zone by hand afterwards, but a postinst script may not assume the prezence 
of a program that is not provided by a dependency or an essential package.

Maybe this bug should be reassigned to the package that should contain tzconfig.


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (990, 'stable'), (950, 'testing'), (500, 'stable-backports'), 
(500, 'oldstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-686
Locale: LANG=nl_NL, LC_CTYPE=nl_NL (charmap=ISO-8859-1)

-- debconf information:
  tzdata/Zones/Asia:
  tzdata/Zones/SystemV:
  tzdata/Zones/Pacific:
  tzdata/Zones/Atlantic:
  tzdata/Zones/Etc:
  tzdata/Zones/Arctic:
  tzdata/Zones/Antarctica:
  tzdata/Zones/America:
* tzdata/Areas: Europe
  tzdata/Zones/Australia:
  tzdata/Zones/Canada:
* tzdata/Zones/Europe: Amsterdam
  tzdata/Zones/Africa:
  tzdata/Zones/Indian:



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



Bug#439143: wengophone: Depends on packages removed from sid

2007-08-22 Thread Arnold Metselaar
Op woensdag 22 augustus 2007 20:11, schreef Ludovico Cavedon:

 Juergen Rinas wrote:
  have been removed from sid and replaced by libboost-*1.34.1 ...
  ... so currently wengophone is currently not installable, if
  you don't have the obsolete libboost-*1.34.0 versions on you
  computer.

 Version 2.1.1.dfsg0-2+b1 is being built by the Debian Build
 Daemon.


Alternatively wengophone can be built with libboost-*1.33.1-10 and 
{g++,gcc}-4.2, which would reduce wengophone's dependence on 
packages not-yet-in-testing.
It works on my i686-pc with a mixed etch/lenny system.

Arnold Metselaar


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



Bug#418255: wengophone: bug #418255: same here - account problem?

2007-05-14 Thread Arnold Metselaar
Package: wengophone
Version: 2.1.0~rc2-svn10386-1
Followup-For: Bug #418255

I have the same problem here here. I did try to move ~/.wengophone out 
of the way but it doesn't help. 
Wengophone also exited with the following message at least once:

*** glibc detected *** free(): invalid next size (fast): 0x08b36ac8 ***

I have also tried to use my wengo account with ekiga, linphone or twinkle,
and I fail to register with each of them.
There is a thread on forum.wengophone.com where you can ask to update your 
account, which may help you avoid the bug.

kind regards,
Arnold Metselaar

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-backports'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=nl_NL, LC_CTYPE=nl_NL (charmap=ISO-8859-1)

Versions of packages wengophone depends on:
ii  libasoun 1.0.13-2ALSA library
ii  libavcod 0.cvs20060823-8 ffmpeg codec library
ii  libavfor 0.cvs20060823-8 ffmpeg file format library
ii  libboost 1.33.1-10   program options library for C++
ii  libboost 1.33.1-10   regular expression library for C++
ii  libboost 1.33.1-10   managed signals and slots library 
ii  libboost 1.33.1-10   portable C++ multi-threading
ii  libc62.3.6.ds1-13GNU C Library: Shared libraries
ii  libcurl3 7.15.5-1Multi-protocol file transfer libra
ii  libgcc1  1:4.1.1-21  GCC support library
ii  libglib2 2.12.4-2The GLib library of C routines
ii  libgnutl 1.4.4-3 the GNU TLS library - runtime libr
ii  libporta 19+svn20060825-1Portable audio I/O - shared librar
ii  libqt4-c 4.2.2-2 Qt 4 core non-GUI functionality ru
ii  libqt4-g 4.2.2-2 Qt 4 core GUI functionality runtim
ii  libsampl 0.1.2-2 audio rate conversion library
ii  libsndfi 1.0.16-1Library for reading/writing audio 
ii  libspeex 1.1.12-3The Speex Speech Codec
ii  libssl0. 0.9.8c-4SSL shared libraries
ii  libstdc+ 4.1.1-21The GNU Standard C++ Library v3
ii  libuuid1 1.39+1.40-WIP-2006.11.14+dfsg-2 universally unique id library
ii  libx11-6 2:1.0.3-7   X11 client-side library
ii  libxml2  2.6.27.dfsg-1   GNOME XML library

wengophone recommends no packages.

-- no debconf information


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



Bug#412255: make-memtest86+-boot-floppy: looks for grub in wrong places

2007-02-24 Thread Arnold Metselaar
Package: memtest86+
Version: 1.65-1
Severity: normal

The program make-memtest86+-boot-floppy tries to use /lib/grub and /sbin/grub, 
however on Debian system grub is installed in /usr/lib/grib and /usr/sbin/grub.
A possible workaround is
ln -s /usr/lib/grub /lib/grub
ln -s /usr/sbin/grub /sbin/grub
but this workaround requires write privileges in /lib and /sbin.
Fixing the script shouldn't be too hard, I can probably come up with a patch 
if desired.

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

-- no debconf information


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



Bug#411921: clamav-freshclam: Please configure freshclam with --enable-dns-fix

2007-02-21 Thread Arnold Metselaar
Package: clamav-freshclam
Version: 0.90-1
Severity: wishlist

Please consider configuring freshclam with --enable-dns-fix. 
This would enable users of Alcatel SpeedTouch ADSL modem/routers to check for 
updates using the DNS system rather than http requests. 
The increase in size of the freshclam binary is small, only 96 bytes on i386, 
and the performance loss for those who use a well functioning DNS server is 
negligible.

See also http://lurker.clamav.net/message/20060904.124208.08c2bc30.en.html .

I have compiled freshclam with --enable-dns-fix as 0.90-1dnsfix.

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

Versions of packages clamav-freshclam depends on:
ii  clamav-base 0.90-1dnsfix base package for clamav, an anti-v
ii  debconf [debconf-2.0]   1.5.11   Debian configuration management sy
ii  debianutils 2.17 Miscellaneous utilities specific t
ii  libc6   2.3.6.ds1-11 GNU C Library: Shared libraries
ii  libclamav2  0.90-1dnsfix virus scanner library
ii  logrotate   3.7.1-3  Log rotation utility
ii  lsb-base3.1-23   Linux Standard Base 3.1 init scrip
ii  ucf 2.0018.1 Update Configuration File: preserv
ii  zlib1g  1:1.2.3-13   compression library - runtime

clamav-freshclam recommends no packages.

-- debconf information excluded


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



Bug#381670: kboincspy: climateprediction.net causes overflow in number of timesteps

2006-08-06 Thread Arnold Metselaar
Package: kboincspy
Version: 0.9.1-2
Severity: normal

I participate in the boinc project from climateprediction.net and as apart of 
the progress 
report kboincspy tells me:
Trickle: 77 of 24 TimeStep: 823,393 of 259,248
Climateprediction.net works with very large work units.

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

Versions of packages kboincspy depends on:
ii  kdelibs4c2a 4:3.5.3-1core libraries and binaries for al
ii  libc6   2.3.6-15 GNU C Library: Shared libraries
ii  libgcc1 1:4.1.1-5GCC support library
ii  libgl1-mesa-glx [libgl1]6.4.2-1  A free implementation of the OpenG
ii  libglu1-mesa [libglu1]  6.4.2-1  The OpenGL utility library (GLU)
ii  libice6 1:1.0.0-3X11 Inter-Client Exchange library
ii  libpng12-0  1.2.8rel-5.2 PNG library - runtime
ii  libqt3-mt   3:3.3.6-2Qt GUI Library (Threaded runtime v
ii  libsm6  1:1.0.0-4X11 Session Management library
ii  libstdc++6  4.1.1-5  The GNU Standard C++ Library v3
ii  libx11-62:1.0.0-7X11 client-side library
ii  libxext61:1.0.0-4X11 miscellaneous extension librar
ii  zlib1g  1:1.2.3-13   compression library - runtime

kboincspy recommends no packages.

-- no debconf information


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



Bug#381067: xmms-scrobbler: crashes when it should report tracks from an audio cd

2006-08-01 Thread Arnold Metselaar
Package: xmms-scrobbler
Version: 0.3.8.1-4+b1
Severity: important


When playing an audio cd using xmms with the XMMS-Scrobbler plugin activated, 
xmms aborts with the message:

*** glibc detected *** double free or corruption (fasttop): 0xb5818500 ***
Geannuleerd

This happens in one or two tracks, with no tracks reported to the last.fm 
server.
I get the crashes both with analog playback and digital extraction of audio 
data.


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

Versions of packages xmms-scrobbler depends on:
ii  libc6   2.3.6-15 GNU C Library: Shared libraries
ii  libcomerr2  1.39-1   common error description library
ii  libcurl37.15.4-1 Multi-protocol file transfer libra
ii  libidn110.6.5-1  GNU libidn library, implementation
ii  libkrb531.4.3-7  MIT Kerberos runtime libraries
ii  libmusicbrainz4c2a  2.1.2-5  Second generation incarnation of t
ii  libssl0.9.8 0.9.8b-2 SSL shared libraries
ii  libstdc++6  4.1.1-5  The GNU Standard C++ Library v3
ii  xmms1.2.10+cvs20060429-1 Versatile X audio player
ii  zlib1g  1:1.2.3-13   compression library - runtime

xmms-scrobbler recommends no packages.

-- no debconf information


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



Bug#212809: [patch] btdownloadgui redraw problem

2005-12-16 Thread Arnold Metselaar
Hello,

I have experienced the problem described in this bug report and 
the patch below solved it for me.
I have not actually tested btdownloadgui with only this change; 
my local copy contains some other, presumably unrelated, changes.

Kind regards,
Arnold Metselaar


--- bittorrent-3.4.2/btdownloadgui.py   2005-12-16 19:52:59.085915976 +0100
+++ bittorrent-3.4.2/btdownloadgui.py.merge 2005-12-16 20:46:17.104743216 
+0100
@@ -183,6 +183,7 @@ class DownloadInfoFrame:
 self.downTotalText.SetLabel('%.1f M' % (downTotal))
 if upTotal is not None:
 self.upTotalText.SetLabel('%.1f M' % (upTotal))
+self.frame.Refresh()
 self.last_update_time = time()
 except:
 print_exc()


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



Bug#212809: [patch] (corrected) btdownloadgui redraw problem

2005-12-16 Thread Arnold Metselaar
Hello,

In my previous email I used the Resfresh function to force redrawing of the 
screen.
This works with the toolkit used by the btdownloadgui in Debian stable. 
The problem reappeared with python-wxgtk2.6. the patch below uses the Update 
function 
rather than Refresh and has the desired effect on the bittorrent-gui from 
testing.

Kind regards,
Arnold Metselaar

ii  python-wxgtk2. 2.6.1.2wxWidgets Cross-platform C++ GUI toolkit (wx
ii  python-wxversi 2.6.1.2wxWidgets Cross-platform C++ GUI toolkit (wx
ii  libwxgtk2.6-0  2.6.1.2wxWidgets Cross-platform C++ GUI toolkit (GT
ii  bittorrent 3.4.2-6local0. Scatter-gather network file transfer
ii  bittorrent-gui 3.4.2-6local0. Scatter-gather network file transfer (GUI fi

--- bittorrent-3.4.2/btdownloadgui.py   2005-12-16 19:52:59.085915976 +0100
+++ bittorrent-3.4.2/btdownloadgui.py.merge 2005-12-16 20:46:17.104743216 
+0100
@@ -183,6 +183,7 @@ class DownloadInfoFrame:
 self.downTotalText.SetLabel('%.1f M' % (downTotal))
 if upTotal is not None:
 self.upTotalText.SetLabel('%.1f M' % (upTotal))
+self.frame.Update()
 self.last_update_time = time()
 except:
 print_exc()


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