Bug#422236: emacs-snapshot: Tar mode should use the ISO8601 format to display the timestamps (or support TIME_STYLE)

2007-05-04 Thread Vincent Lefevre
On 2007-05-04 17:36:01 +0200, Sven Joachim wrote:
> That would be easy, please try out the following patch:
[...]

Thanks.

> > Other formats
> > (e.g. one corresponding to the locales) could be used via an option;
> > in particular, the support of the TIME_STYLE environment variable
> > (see coreutils manual) would be a good idea.
> 
> You should make your proposals on the emacs-devel mailing list, there
> are the developers who can implement them.

OK, I've just sent a mail there.

-- 
Vincent Lefèvre <[EMAIL PROTECTED]> - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / Arenaire project (LIP, ENS-Lyon)



libvncserver_0.8.2-2_i386.changes ACCEPTED

2007-05-04 Thread Debian Installer

Accepted:
libvncserver-dev_0.8.2-2_i386.deb
  to pool/main/libv/libvncserver/libvncserver-dev_0.8.2-2_i386.deb
libvncserver_0.8.2-2.diff.gz
  to pool/main/libv/libvncserver/libvncserver_0.8.2-2.diff.gz
libvncserver_0.8.2-2.dsc
  to pool/main/libv/libvncserver/libvncserver_0.8.2-2.dsc
linuxvnc_0.8.2-2_i386.deb
  to pool/main/libv/libvncserver/linuxvnc_0.8.2-2_i386.deb
vncommand_0.8.2-2_i386.deb
  to pool/main/libv/libvncserver/vncommand_0.8.2-2_i386.deb
x11vnc_0.8.2-2_i386.deb
  to pool/main/libv/libvncserver/x11vnc_0.8.2-2_i386.deb


Override entries for your package:
libvncserver-dev_0.8.2-2_i386.deb - optional x11
libvncserver_0.8.2-2.dsc - source x11
linuxvnc_0.8.2-2_i386.deb - optional x11
vncommand_0.8.2-2_i386.deb - optional x11
x11vnc_0.8.2-2_i386.deb - optional x11

Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


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



websec_1.9.0-2_i386.changes ACCEPTED

2007-05-04 Thread Debian Installer

Accepted:
websec_1.9.0-2.diff.gz
  to pool/main/w/websec/websec_1.9.0-2.diff.gz
websec_1.9.0-2.dsc
  to pool/main/w/websec/websec_1.9.0-2.dsc
websec_1.9.0-2_all.deb
  to pool/main/w/websec/websec_1.9.0-2_all.deb


Override entries for your package:
websec_1.9.0-2.dsc - source web
websec_1.9.0-2_all.deb - optional web

Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


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



Processing of libvncserver_0.8.2-2_i386.changes

2007-05-04 Thread Archive Administrator
libvncserver_0.8.2-2_i386.changes uploaded successfully to localhost
along with the files:
  libvncserver_0.8.2-2.dsc
  libvncserver_0.8.2-2.diff.gz
  libvncserver-dev_0.8.2-2_i386.deb
  x11vnc_0.8.2-2_i386.deb
  linuxvnc_0.8.2-2_i386.deb
  vncommand_0.8.2-2_i386.deb

Greetings,

Your Debian queue daemon


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



Processing of websec_1.9.0-2_i386.changes

2007-05-04 Thread Archive Administrator
websec_1.9.0-2_i386.changes uploaded successfully to localhost
along with the files:
  websec_1.9.0-2.dsc
  websec_1.9.0-2.diff.gz
  websec_1.9.0-2_all.deb

Greetings,

Your Debian queue daemon


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



Bug#422236: emacs-snapshot: Tar mode should use the ISO8601 format to display the timestamps (or support TIME_STYLE)

2007-05-04 Thread Sven Joachim
Vincent Lefevre writes:
> Package: emacs-snapshot
> Version: 1:20070302-1

Just FYI, emacs-snapshot is now maintained outside of Debian, please
look at http://emacs.orebokech.com/ for newer versions ([1], [2]).

> When tar-mode-show-date is set to t (to get the timestamps), the Tar
> mode displays them in a non-standard format. It should use the ISO8601
> format (this is what GNU tar (version 1.16.1) does).

That would be easy, please try out the following patch:

--- tar-mode.el~2007-01-21 04:53:10.0 +0100
+++ tar-mode.el 2007-05-04 17:08:32.0 +0200
@@ -319,8 +319,7 @@
   (progn (beep) (message "Invalid checksum for file %s!" file-name
 
 (defun tar-clip-time-string (time)
-  (let ((str (current-time-string time)))
-(concat " " (substring str 4 16) (substring str 19 24
+  (format-time-string " %Y-%m-%d %H:%M" time))
 
 (defun tar-grind-file-mode (mode)
   "Construct a `-rw--r--r--' string indicating MODE.
@@ -634,7 +633,7 @@
   "Move cursor vertically down ARG lines and to the start of the filename."
   (interactive "p")
   (forward-line arg)
-  (if (eobp) nil (forward-char (if tar-mode-show-date 54 36
+  (if (eobp) nil (forward-char (if tar-mode-show-date 53 36
 
 (defun tar-previous-line (arg)
   "Move cursor vertically up ARG lines and to the start of the filename."


> Other formats
> (e.g. one corresponding to the locales) could be used via an option;
> in particular, the support of the TIME_STYLE environment variable
> (see coreutils manual) would be a good idea.

You should make your proposals on the emacs-devel mailing list, there
are the developers who can implement them.

Cheers,

Sven


[1]http://lists.debian.org/debian-emacsen/2007/03/msg00012.html
[2]http://lists.debian.org/debian-emacsen/2007/04/msg2.html


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



Bug#412848: marked as done (bcm5700-source: remove from debian ?)

2007-05-04 Thread Debian Bug Tracking System
Your message dated Fri, 4 May 2007 16:34:16 +0200
with message-id <[EMAIL PROTECTED]>
and subject line bcm5700-source: remove from debian ?
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: bcm5700-source
Version: 8.2.18-2
Severity: wishlist

Hi,

It might be a good idea to remove this package from Debian:

- it wasn't included in etch because of grave bug #390429

- the tg3 driver in the vanilla kernel seems to perfectly replace it

- upstream (Broadcom) doesn't seem to provide it anymore, nor support
  it, and directs users to the tg3 driver instead.

Thank you,
-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |

--- End Message ---
--- Begin Message ---
Hi,

There's an active maintainer for the package, only he didn't get his packages 
uploaded to Debian, that's why the version in Debian seemed unmaintained. 
I'll sponsor Markus if necessary. I see no reason to remove this package when 
there's still demand for it.


Thijs
--- End Message ---


Bug#390429: marked as done (bcm5700-source: does not compile against 2.6.18)

2007-05-04 Thread Debian Bug Tracking System
Your message dated Fri, 4 May 2007 16:29:30 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Fixed in 8.3.14-1
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: bcm5700-source
Version: 8.2.18-2
Severity: important


# cat /var/cache/modass/bcm5700-source.buildlog.2.6.18-grml.1159692311
[...]
  CC [M]  /usr/src/modules/bcm5700/src/b57um.o
In file included from /usr/src/modules/bcm5700/src/mm.h:186,
 from /usr/src/modules/bcm5700/src/b57um.c:19:
/usr/src/modules/bcm5700/src/lm.h:462:5: warning: "INCLUDE_5703_A0_FIX" is not 
defined
In file included from /usr/src/modules/bcm5700/src/mm.h:188,
 from /usr/src/modules/bcm5700/src/b57um.c:19:
/usr/src/modules/bcm5700/src/tigon3.h:34:5: warning: "T3_JUMBO_RCB_ENTRY_COUNT" 
is not defined
In file included from /usr/src/modules/bcm5700/src/b57um.c:19:
/usr/src/modules/bcm5700/src/mm.h:392:5: warning: "TIGON3_DEBUG" is not defined
/usr/src/modules/bcm5700/src/b57um.c:465: error: 'UTS_RELEASE' undeclared here 
(not in a function)
/usr/src/modules/bcm5700/src/b57um.c:474:5: warning: "TIGON3_DEBUG" is not 
defined
/usr/src/modules/bcm5700/src/b57um.c:1704:5: warning: "TIGON3_DEBUG" is not 
defined
/usr/src/modules/bcm5700/src/b57um.c:1973:5: warning: "TIGON3_DEBUG" is not 
defined
/usr/src/modules/bcm5700/src/b57um.c:1997:5: warning: "TIGON3_DEBUG" is not 
defined
/usr/src/modules/bcm5700/src/b57um.c: In function 'bcm5700_start_xmit':
/usr/src/modules/bcm5700/src/b57um.c:2018: error: 'struct skb_shared_info' has 
no member named 'tso_size'
/usr/src/modules/bcm5700/src/b57um.c: At top level:
/usr/src/modules/bcm5700/src/b57um.c:4432: warning: initialization from 
incompatible pointer type
/usr/src/modules/bcm5700/src/b57um.c:4664:5: warning: "LINUX_KERNEL_VERSION" is 
not defined
/usr/src/modules/bcm5700/src/b57um.c:4740:5: warning: "LINUX_KERNEL_VERSION" is 
not defined
/usr/src/modules/bcm5700/src/b57um.c:5078:5: warning: "TIGON3_DEBUG" is not 
defined
make[4]: *** [/usr/src/modules/bcm5700/src/b57um.o] Error 1
make[3]: *** [_module_/usr/src/modules/bcm5700/src] Error 2
[...]

regards,
-mika-

--- End Message ---
--- Begin Message ---
Version: 8.3.14-1

Hi,

The new upstream version that was just uploaded fixes the build problem.


Thijs
--- End Message ---


Bug#392985: marked as done (bcm5700-source: Bizarre use of dh_builddeb destdir causes build failure)

2007-05-04 Thread Debian Bug Tracking System
Your message dated Fri, 4 May 2007 16:24:56 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Not a bug
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: bcm5700-source
Version: 8.2.18-2
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

$ fakeroot debian/rules binary-modules KSRC=/lib/modules/2.6.17-2-k7/build 
KVERS=$(uname -r)
...
dh_builddeb --destdir=/lib/modules/2.6.17-2-k7/build/..
dpkg-deb: building package `bcm5700-module-2.6.17-2-k7' in 
`/lib/modules/2.6.17-2-k7/build/../bcm5700-module-2.6.17-2-k7_8.2.18-2_i386.deb'.
dpkg-deb: unable to create 
`/lib/modules/2.6.17-2-k7/build/../bcm5700-module-2.6.17-2-k7_8.2.18-2_i386.deb':
 Permission denied
dh_builddeb: command returned error code 512
make: *** [binary-modules] Error 1

Removing the --destdir argument to dh_builddep causes it to (correctly)
build the module package in the parent directory.

- -- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (530, 'testing'), (520, 'unstable'), (510, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-k7
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages bcm5700-source depends on:
ii  module-assistant  0.10.6 tool to make module package creati

Versions of packages bcm5700-source recommends:
ii  debconf-utils 1.5.5  debconf utilities
ii  debhelper 5.0.37.3   helper programs for debian/rules
ii  dpkg-dev  1.13.22package building tools for Debian
ii  kernel-package10.062 A utility for building Linux kerne

- -- no debconf information

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFMPbishl/216gEHgRAi6aAKCVVcJXthDlIsEQrDXAlEkT3mNEAQCgxQpc
68dNtfn6Ui+t5VO4sIfKEx4=
=p8Mg
-END PGP SIGNATURE-

--- End Message ---
--- Begin Message ---
Hi,

I'm closing this bug as per the reasoning in its clone, #407841:
> Yes that's the case for every Debian source packages. But this one is
> not a source package.
>
> Every kernel module package create the binary packages to $DEB_DESTDIR,
> set by default by module-assistant to /usr/src. So this package is
> perfectly correct.
>
> If you don't agree with this default, please report your bug to
> module-assistant, not to every kernel module you found. They all behave
> like that. If they don't, it's a bug.


Thijs
--- End Message ---


Bug#422250: [INTL:nl] Dutch po-debconf translation

2007-05-04 Thread cobaco (aka Bart Cornelis)
Package: ilisp
Severity: wishlist
Tags: patch l10n

Please find attached the dutch po-debconf translation. Please add 
it to your next package revision, it should be inserted in your package 
build-tree as debian/po/nl.po, TIA.

Feel free to mail me if this file needs updating at some future date.
--
Cheers, cobaco

/"\  ASCII Ribbon Campaign
\ /  No proprietary formats in attachments without request
 X   i.e. *NO* WORD, POWERPOINT or EXCEL documents
/ \  Respect Open Standards
  http://www.fsf.org/philosophy/no-word-attachments.html
  http://www.goldmark.org/netrants/no-word/attach.html







-- 
cobaco (aka Bart Cornelis)



nl.po
Description: application/gettext


pgpZghPQvoTzf.pgp
Description: PGP signature