Package: emacs23
Version: 23.1+1-3
Severity: serious
Tags: patch
>From my pbuilder log:
,----
| set -o pipefail; cd /tmp/buildd/emacs23-23.1+1/debian/emacs23-common && \
| find -name "*.elc" | perl -pe 's/\.elc$/\.el/o' | xargs rm -f
| set -o pipefail; cd /tmp/buildd/emacs23-23.1+1/debian/emacs23-common && \
| find -name "*.elc" | perl -pe 's/\.elc$/\.el\.gz/o' | xargs rm -f
| rm
/tmp/buildd/emacs23-23.1+1/debian/emacs23-common/usr/share/info/emacs-23/dir
| rm
/tmp/buildd/emacs23-23.1+1/debian/emacs23-common/usr/share/info/emacs-23/dir.old
| rm: cannot remove
`/tmp/buildd/emacs23-23.1+1/debian/emacs23-common/usr/share/info/emacs-23/dir.old':
No such file or directory
| make: *** [install] Error 1
`----
This happens since the upload of dpkg 1.15.4 to unstable.
The following patch takes care of this, but there are many other cases
in debian/rules where "rm" should really be replaced with "rm -f":
--8<---------------cut here---------------start------------->8---
diff -u emacs23-23.1+1/debian/rules emacs23-23.1+1/debian/rules
--- emacs23-23.1+1/debian/rules
+++ emacs23-23.1+1/debian/rules
@@ -779,8 +779,8 @@
find -name "*.elc" | perl -pe 's/\.elc$$/\.el\.gz/o' | xargs rm -f
# Remove extraneous info dir file.
- rm $(pkgdir_common)/usr/share/info/emacs-$(major_ver)/dir
- rm $(pkgdir_common)/usr/share/info/emacs-$(major_ver)/dir.old
+ rm -f $(pkgdir_common)/usr/share/info/emacs-$(major_ver)/dir
+ rm -f $(pkgdir_common)/usr/share/info/emacs-$(major_ver)/dir.old
# Remove the shared game score directory to as a simple way to avoid
# a conflict with other flavors of Emacs. Since Debian's
--8<---------------cut here---------------end--------------->8---
-- System Information:
Debian Release: squeeze/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: i386 (x86_64)
Kernel: Linux 2.6.30.5-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages emacs23 depends on:
ii emacs23-bin-common 23.1+1-3 The GNU Emacs editor's shared, arc
ii install-info 4.13a.dfsg.1-4 Manage installed documentation in
ii libasound2 1.0.20-4 shared library for ALSA applicatio
ii libatk1.0-0 1.26.0-1 The ATK accessibility toolkit
ii libc6 2.9-26 GNU C Library: Shared libraries
ii libcairo2 1.8.8-2 The Cairo 2D vector graphics libra
ii libdbus-1-3 1.2.16-2 simple interprocess messaging syst
ii libfontconfig1 2.6.0-4 generic font configuration library
ii libfreetype6 2.3.9-5 FreeType 2 font engine, shared lib
ii libgif4 4.1.6-8 library for GIF images (library)
ii libglib2.0-0 2.20.5-1 The GLib library of C routines
ii libgpm2 1.20.4-3.2 General Purpose Mouse - shared lib
ii libgtk2.0-0 2.16.6-1 The GTK+ graphical user interface
ii libice6 2:1.0.5-1 X11 Inter-Client Exchange library
ii libjpeg62 6b-15 The Independent JPEG Group's JPEG
ii libm17n-0 1.5.4-1+b1 a multilingual text processing lib
ii libncurses5 5.7+20090906-1 shared libraries for terminal hand
ii libotf0 0.9.9-1 A Library for handling OpenType Fo
ii libpango1.0-0 1.24.5-1 Layout and rendering of internatio
ii libpng12-0 1.2.39-1 PNG library - runtime
ii librsvg2-2 2.26.0-1 SAX-based renderer library for SVG
ii libsm6 2:1.1.1-1 X11 Session Management library
ii libtiff4 3.9.1-1 Tag Image File Format (TIFF) libra
ii libx11-6 2:1.2.2-1 X11 client-side library
ii libxft2 2.1.13-3 FreeType-based font drawing librar
ii libxpm4 1:3.5.7-2 X11 pixmap library
ii libxrender1 1:0.9.4-2 X Rendering Extension client libra
ii zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime
emacs23 recommends no packages.
Versions of packages emacs23 suggests:
pn emacs23-common-non-dfsg <none> (no description available)
-- no debconf information
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]