Your message dated Fri, 02 Jun 2006 14:32:36 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#368846: fixed in emacs-snapshot 1:20060602-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: emacs-snapshot
Version: 1:20060524-1
Severity: serious
Tags: patch
There was a problem building this week's snapshot. From the end of the
`debuild' log (sorry for the German, but the problem should be clear
anyway):
# save binary from deletion
mv src/emacs src/nox-emacs
touch emacs-nox-stamp
dh_testdir
touch build-stamp
fakeroot debian/rules binary
dh_testdir
touch build-stamp
cd debian && csplit -s -f README. README.in '/@@PATCH_LIST_HERE@@/'
cp debian/README.00 debian/README.tmp
dpatch-list-patch | tail +2 | grep -v -e '^debian/patches/' | \
sed '[EMAIL PROTECTED] [EMAIL PROTECTED]@' >> debian/README.tmp
tail: „+2“ kann nicht zum Lesen geöffnet werden: Datei oder Verzeichnis nicht
gefunden
tail +2 < debian/README.01 >> debian/README.tmp
tail: „+2“ kann nicht zum Lesen geöffnet werden: Datei oder Verzeichnis nicht
gefunden
make: *** [debian/README.Debian] Fehler 1
debuild: fatal error at line 1224:
fakeroot debian/rules binary failed
The reason is a change in the coreutils package, which as of version
5.96-1 conforms to the POSIX 2001 standard by default; that standard
disallows the `program +k file' syntax. The following patch fixes the
problem:
--- debian/rules~ 2006-05-25 12:46:42.000000000 +0200
+++ debian/rules 2006-05-25 13:45:29.000000000 +0200
@@ -317,9 +317,9 @@
debian/README.Debian: debian/README.in debian/patches/*.dpatch
cd debian && csplit -s -f README. README.in '/@@PATCH_LIST_HERE@@/'
cp debian/README.00 debian/README.tmp
- dpatch-list-patch | tail +2 | grep -v -e '^debian/patches/' | \
+ dpatch-list-patch | tail -n +2 | grep -v -e '^debian/patches/' | \
sed '[EMAIL PROTECTED] [EMAIL PROTECTED]@' >> debian/README.tmp
- tail +2 < debian/README.01 >> debian/README.tmp
+ tail -n +2 < debian/README.01 >> debian/README.tmp
mv debian/README.tmp debian/README.Debian
.PHONY: debian/README.Debian
DEB_TRASH += debian/README.tmp debian/README.00 debian/README.01
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.18
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
--- End Message ---
--- Begin Message ---
Source: emacs-snapshot
Source-Version: 1:20060602-1
We believe that the bug you reported is fixed in the latest version of
emacs-snapshot, which is due to be installed in the Debian FTP archive:
emacs-snapshot-bin-common_20060602-1_i386.deb
to pool/main/e/emacs-snapshot/emacs-snapshot-bin-common_20060602-1_i386.deb
emacs-snapshot-common_20060602-1_all.deb
to pool/main/e/emacs-snapshot/emacs-snapshot-common_20060602-1_all.deb
emacs-snapshot-el_20060602-1_all.deb
to pool/main/e/emacs-snapshot/emacs-snapshot-el_20060602-1_all.deb
emacs-snapshot-gtk_20060602-1_i386.deb
to pool/main/e/emacs-snapshot/emacs-snapshot-gtk_20060602-1_i386.deb
emacs-snapshot-nox_20060602-1_i386.deb
to pool/main/e/emacs-snapshot/emacs-snapshot-nox_20060602-1_i386.deb
emacs-snapshot_20060602-1.diff.gz
to pool/main/e/emacs-snapshot/emacs-snapshot_20060602-1.diff.gz
emacs-snapshot_20060602-1.dsc
to pool/main/e/emacs-snapshot/emacs-snapshot_20060602-1.dsc
emacs-snapshot_20060602-1_i386.deb
to pool/main/e/emacs-snapshot/emacs-snapshot_20060602-1_i386.deb
emacs-snapshot_20060602.orig.tar.gz
to pool/main/e/emacs-snapshot/emacs-snapshot_20060602.orig.tar.gz
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Romain Francoise <[EMAIL PROTECTED]> (supplier of updated emacs-snapshot
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Fri, 2 Jun 2006 19:58:14 +0200
Source: emacs-snapshot
Binary: emacs-snapshot-el emacs-snapshot-bin-common emacs-snapshot-nox
emacs-snapshot emacs-snapshot-common emacs-snapshot-gtk
Architecture: source i386 all
Version: 1:20060602-1
Distribution: unstable
Urgency: low
Maintainer: Romain Francoise <[EMAIL PROTECTED]>
Changed-By: Romain Francoise <[EMAIL PROTECTED]>
Description:
emacs-snapshot - The GNU Emacs editor (development snapshot)
emacs-snapshot-bin-common - The GNU Emacs editor's shared, architecture
dependent files
emacs-snapshot-common - The GNU Emacs editor's common infrastructure
emacs-snapshot-el - GNU Emacs LISP (.el) files
emacs-snapshot-gtk - The GNU Emacs editor (with GTK+ 2.x support)
emacs-snapshot-nox - The GNU Emacs editor (without X support)
Closes: 368023 368846
Changes:
emacs-snapshot (1:20060602-1) unstable; urgency=low
.
* The "Isabella Afterhours" release.
.
* New snapshot:
+ The menu bar can now be navigated with keys, via F10.
+ Org-mode has been updated to version 4.35.
.
* debian/rules:
+ Build with gcc-4.1, hoping to solve long-standing FTBFS bugs on
m68k. This also allows us to finally get rid of -Wno-pointer-sign
(closes: #368023).
+ Use 'tail -n +2' instead of 'tail +2', with thanks to Sven Joachim
(closes: #368846).
.
* debian/control.in: Add Build-Depends on gcc-4.1.
* debian/control: Regenerate.
.
* debian/patches/debian-puresize.dpatch: Resync with upstream.
* debian/patches/debian-menu.dpatch: Ditto.
.
* debian/README.in: Remove reference to the Arch archive, it might go
away soon.
.
* debian/copyright.in: Move Debian differences blurb closer to the top.
* debian/copyright: Regenerate.
Files:
6264c2e28cfa625806a5567857ad5d07 966 editors optional
emacs-snapshot_20060602-1.dsc
5fe535692ea0c7debd7e2225212760ca 24175581 editors optional
emacs-snapshot_20060602.orig.tar.gz
98e18a1fdc5def22eb0cf68483ac82fb 29733 editors optional
emacs-snapshot_20060602-1.diff.gz
be297a0e476a3f045ee24a31b67eac4d 18214204 editors optional
emacs-snapshot-common_20060602-1_all.deb
437346eeeca8160a13e49e8d2f1140d8 10986154 editors optional
emacs-snapshot-el_20060602-1_all.deb
94903ae2bdc476fb1fbe790827112d68 164508 editors optional
emacs-snapshot-bin-common_20060602-1_i386.deb
c3c0fedb61ee365a45fef65714fea6d7 2052110 editors optional
emacs-snapshot_20060602-1_i386.deb
ca5d52c00fe9a3cabb9a299282f4915c 2044694 editors optional
emacs-snapshot-gtk_20060602-1_i386.deb
a213bd53f25cefffe99fedb50002d8f6 1786836 editors optional
emacs-snapshot-nox_20060602-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (GNU/Linux)
iD8DBQFEgJXtogN2vsA8Vt8RAowNAJ9Az3H0hH8JOWkxQAbjuiMw/PHxTACfRxSA
XRVC0Uea12HY2XIvObqGzZc=
=hi/O
-----END PGP SIGNATURE-----
--- End Message ---