Package: debtags-edit
Version: 1.1.3
Followup-For: Bug #391575
The issue is caused by a bug in libapt-front-dev. I attached
a patch and I will open a bug against libapt-front-dev (debtags-edit
still needs to be rebuilt when libapt-front-dev is fixed since its
statically linked against libapt-front).
Best Regards,
Andreas
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.4
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Versions of packages debtags-edit depends on:
ii apt [libapt-pkg-libc6.3-6-3. 0.6.46.1 Advanced front-end for dpkg
ii debtags 1.5.7 Enables support for package tags
ii libatk1.0-0 1.12.3-1 The ATK accessibility toolkit
ii libc6 2.3.6.ds1-6 GNU C Library: Shared libraries
ii libcairo2 1.2.4-1 The Cairo 2D vector graphics libra
ii libfontconfig1 2.4.1-2 generic font configuration library
ii libgcc1 1:4.1.1-16 GCC support library
ii libglib2.0-0 2.12.4-1 The GLib library of C routines
ii libglibmm-2.4-1c2a 2.12.0-1 C++ wrapper for the GLib toolkit (
ii libgtk2.0-0 2.8.20-2 The GTK+ graphical user interface
ii libgtkmm-2.4-1c2a 1:2.8.8-1 C++ wrappers for GTK+ 2.4 (shared
ii libpango1.0-0 1.14.5-1 Layout and rendering of internatio
ii libsigc++-2.0-0c2a 2.0.17-2 type-safe Signal Framework for C++
ii libstdc++6 4.1.1-16 The GNU Standard C++ Library v3
ii libtdb1 1.0.6-13 Trivial Database - shared library
ii libx11-6 2:1.0.0-9 X11 client-side library
ii libxcursor1 1.1.7-4 X cursor management library
ii libxext6 1:1.0.1-2 X11 miscellaneous extension librar
ii libxi6 1:1.0.1-3 X11 Input extension library
ii libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library
ii libxrandr2 2:1.1.0.2-4 X11 RandR extension library
ii libxrender1 1:0.9.1-3 X Rendering Extension client libra
ii zlib1g 1:1.2.3-13 compression library - runtime
debtags-edit recommends no packages.
-- no debconf information
--- libapt-front-0.3.11/apt-front/cache/component/packagetags.cpp
2006-10-04 14:18:59.000000000 +0200
+++ libapt-front-0.3.11.new/apt-front/cache/component/packagetags.cpp
2006-10-12 14:31:44.000000000 +0200
@@ -129,7 +129,7 @@
string patchFile = rcdir + "/patch";
string backup = patchFile + "~";
- if (access(patchFile.c_str(), F_OK))
+ if (access(patchFile.c_str(), F_OK) == 0)
if (rename(patchFile.c_str(), backup.c_str()) == -1)
throw SystemException(errno, "Can't rename " +
patchFile + " to " + backup);