Source: pyabiword Version: 0.8.0-8 Severity: serious Tags: patch User: [email protected] Usertags: oldlibs
Hi, pyabiword build-depends on libgucharmap2-dev, which is no longer built from the gucharmap source package since version 1:3.2.0-1 Looking through the sources of pyabiword, libgucharmap2-dev is not actually used (anymore) and the build dependency can simply be dropped. The attached patch does just that. Cheers, Michael -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (200, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.1.0-1-486 Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff --git a/debian/control b/debian/control index 43ce175..604792a 100644 --- a/debian/control +++ b/debian/control @@ -18,7 +18,6 @@ Build-Depends: autotools-dev, libwv-dev (>= 1.2.0), libenchant-dev (>= 1.2.0), libgoffice-0.8-dev, - libgucharmap2-dev, libcairo-dev, libpango1.0-dev, libgtk2.0-dev (>= 2.12.0), diff --git a/debian/rules b/debian/rules index 199d99b..e186ca4 100755 --- a/debian/rules +++ b/debian/rules @@ -31,7 +31,7 @@ DEB_INSTALL_EXAMPLES_python-abiword = examples/* CDBS_BUILD_DEPENDS += , libabiword-2.8-dev (>= 2.8.1-1.0), python-gtk2-dev # workaround for missing build-dependencies of libabiword-2.8-dev -CDBS_BUILD_DEPENDS += , libfribidi-dev (>= 0.10.4), libglib2.0-dev (>= 2.6.0), libgsf-1-dev (>= 1.12), libwv-dev (>= 1.2.0), libenchant-dev (>= 1.2.0), libgoffice-0.8-dev, libgucharmap2-dev, libcairo-dev, libpango1.0-dev, libgtk2.0-dev (>= 2.12.0), librsvg2-dev (>= 2.16.0) +CDBS_BUILD_DEPENDS += , libfribidi-dev (>= 0.10.4), libglib2.0-dev (>= 2.6.0), libgsf-1-dev (>= 1.12), libwv-dev (>= 1.2.0), libenchant-dev (>= 1.2.0), libgoffice-0.8-dev, libcairo-dev, libpango1.0-dev, libgtk2.0-dev (>= 2.12.0), librsvg2-dev (>= 2.16.0) # Avoid .la files - see http://wiki.debian.org/ReleaseGoals/LAFileRemoval common-binary-post-install-arch::

