Bug#517039: causes cron to emit error messages

2009-02-25 Thread martin f krafft
Package: libpam-foreground
Version: 0.5
Severity: normal

I added

  session   requiredpam_foreground.so

to /etc/pam.d/common-session and suddenly, crond started to complain
on every run:

  CRON[13509]: Cannot make/remove an entry for the specified session

Seems like pam_foreground.so needs to be fixed to better distinguish
cron from console logins.

-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages libpam-foreground depends on:
ii  libc6 2.9-3  GNU C Library: Shared libraries
ii  libpam0g  1.0.1-5Pluggable Authentication Modules l

libpam-foreground recommends no packages.

libpam-foreground suggests no packages.

-- no debconf information


-- 
 .''`.   martin f. krafft   Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Bug#517109: grepmail: support for lzma compression

2009-02-25 Thread Lucas Nussbaum
Package: grepmail
Version: 5.3033-4
Severity: wishlist

Hi,

lzma is known to produce better compression that bzip2. Could you please
support it in grepmail?

Thank you.

-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (990, 'testing'), (700, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages grepmail depends on:
ii  libmail-mbox-messagepa 1.5000+pristine-3 fast and simple mbox folder reader
ii  libtimedate-perl   1.1600-9  Time and date functions for Perl
ii  perl   5.10.0-19 Larry Wall's Practical Extraction 
ii  perl-base [libscalar-l 5.10.0-19 minimal Perl system

grepmail recommends no packages.

Versions of packages grepmail suggests:
pn  libdate-manip-perl (no description available)

-- no debconf information



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



Bug#517132: transcalc: Transcalc FTBFS with error "call to '__open_missing_mode' declared with attribute error"

2009-02-25 Thread Fabrice Coutadeur
Package: transcalc
Version: 0.14-3
Severity: serious
Tags: patch
Justification: no longer builds from source
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu jaunty ubuntu-patch

Hi,

When compiling with gcc 4.3, transcalc FTBFS because of a call to an open 
function with only 2 parameters:
make[3]: Entering directory `/build/buildd/transcalc-0.14/src'
cc -DHAVE_CONFIG_H -I. -I. -I.. -D_REENTRANT -I/usr/include/gtk-2.0 
-I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo 
-I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/directfb 
-I/usr/include/libpng12 -DDATADIR=\"/usr/share\" -ggdb -O2 -Wall -c transcalc.c
transcalc.c: In function 'read_config_file':
transcalc.c:182: warning: ignoring return value of 'fgets', declared with 
attribute warn_unused_result
transcalc.c:196: warning: ignoring return value of 'fscanf', declared with 
attribute warn_unused_result
transcalc.c:197: warning: ignoring return value of 'fscanf', declared with 
attribute warn_unused_result
transcalc.c:198: warning: ignoring return value of 'fscanf', declared with 
attribute warn_unused_result
In function 'open',
inlined from 'running_for_first_time' at transcalc.c:149:
/usr/include/bits/fcntl2.h:51: error: call to '__open_missing_mode' declared 
with attribute error: open with O_CREAT in second argument needs 3 arguments
make[3]: *** [transcalc.o] Error 1

*** /tmp/tmptMRkaI
In Ubuntu, we've applied the attached patch to achieve the following:

  * debian/patches/fix_FTBFS_gcc_4.3.patch: modify src/transcalc.c to fix a 
FTBFS with gcc 4.3 in an open function (miss 3rd parameter)
  * debian/rules: added include of /usr/share/cdbs/1/rules/simple-patchsys.mk
  * Fix LP: #334035

We thought you might be interested in doing the same. 


-- System Information:
Debian Release: 5.0
  APT prefers jaunty-updates
  APT policy: (500, 'jaunty-updates'), (500, 'jaunty-security'), (500, 'jaunty')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.27-11-generic (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash
diff -u transcalc-0.14/debian/rules transcalc-0.14/debian/rules
--- transcalc-0.14/debian/rules
+++ transcalc-0.14/debian/rules
@@ -2,6 +2,7 @@
 
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
 
 update-config::
 	[ -e docs/transcalc.1.d-r-orig ] || cp -p docs/transcalc.1 docs/transcalc.1.d-r-orig
only in patch2:
unchanged:
--- transcalc-0.14.orig/debian/patches/fix_FTBFS_gcc_4.3.patch
+++ transcalc-0.14/debian/patches/fix_FTBFS_gcc_4.3.patch
@@ -0,0 +1,11 @@
+--- transcalc-0.14.orig/src/transcalc.c
 transcalc-0.14/src/transcalc.c
+@@ -146,7 +146,7 @@
+   /* see if config file exists */
+   if (stat (config_filename, config_file_stat) != 0) {
+ /* config file missing, so touch it */
+-config_file_fd = open (config_filename, O_CREAT);
++config_file_fd = open (config_filename, O_CREAT, 0644);
+ if (config_file_fd == -1)
+   {
+ 	perror ("open[config_file]");


Bug#473073: marked as done (deco: 'Description:' non-English syntax: "...developed by the motives of the...")

2009-02-25 Thread Debian Bug Tracking System

Your message dated Wed, 25 Feb 2009 22:22:55 GMT
with message-id <20090225.n1pmmt09015...@kmos.homeip.net>
and subject line deco has been removed from Debian, closing #473073
has caused the Debian Bug report #473073,
regarding deco: 'Description:' non-English syntax: "...developed by the motives 
of the..."
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
473073: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473073
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: deco
Version: 3.9-3
Severity: minor


Description: Demos Commander
 DECO is a visual interface for the UNIX operating system, developed by
 the motives of the widely known Norton Commander.

Suggesteded replacement:

Description: Demos Commander
 DECO is a dual-pane file manager with an interface similar to
 the widely known Norton Commander.


Hope this helps...


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

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages deco depends on:
ii  libc6 2.7-9  GNU C Library: Shared libraries
ii  libncurses5   5.6+20080203-1 Shared libraries for terminal hand

deco recommends no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 3.9-3+rm

The deco package has been removed from Debian so we are closing
the bugs that were still opened against it.

For more information about this package's removal, read
http://bugs.debian.org/51 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

Kind regards,
--
Marco Rodrigues

--- End Message ---


Bug#310905: marked as done ('deco' stuck at 80 colunmns, and doesn't resize when terminal does.)

2009-02-25 Thread Debian Bug Tracking System

Your message dated Wed, 25 Feb 2009 22:22:55 GMT
with message-id <20090225.n1pmmtdm015...@kmos.homeip.net>
and subject line deco has been removed from Debian, closing #310905
has caused the Debian Bug report #310905,
regarding 'deco' stuck at 80 colunmns, and doesn't resize when terminal does.
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
310905: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=310905
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: deco
Version: 3.9-1
Severity: wishlist


When started on a big xterm, say 112x33, 'deco' only uses 80 columns.  It'd
be better if could use all 112 columns, like 'mc' does.

Hope this helps...


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.11-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages deco depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libncurses5 5.4-4Shared libraries for terminal hand

-- no debconf information

--- End Message ---
--- Begin Message ---
Version: 3.9-3+rm

The deco package has been removed from Debian so we are closing
the bugs that were still opened against it.

For more information about this package's removal, read
http://bugs.debian.org/51 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

Kind regards,
--
Marco Rodrigues

--- End Message ---


Bug#403318: marked as done (sysfence: Missing an init file)

2009-02-25 Thread Debian Bug Tracking System

Your message dated Wed, 25 Feb 2009 22:23:18 GMT
with message-id <200902252223.n1pmnijo015...@kmos.homeip.net>
and subject line sysfence has been removed from Debian, closing #403318
has caused the Debian Bug report #403318,
regarding sysfence: Missing an init file
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
403318: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=403318
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: sysfence
Version: 0.14-1
Severity: wishlist

I found quite strange you do not provide an easy init script for
sysfence. It works as a daemon and you could provide a silly script
which starts/stop it using an /etc/sysfence.conf file, with usual conventions
about /etc/default/sysfence overrides and so on. Please, the rule of
least surprise is always valid, do not upset users with this kind of 
mispackaging.


-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-686
Locale: lang=it...@euro, lc_ctype=it...@euro (charmap=ISO-8859-15) (ignored: 
LC_ALL set to it...@euro)

--- End Message ---
--- Begin Message ---
Version: 0.16-2+rm

The sysfence package has been removed from Debian so we are closing
the bugs that were still opened against it.

For more information about this package's removal, read
http://bugs.debian.org/516665 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

Kind regards,
--
Marco Rodrigues

--- End Message ---