diff -Nru debhelper-8.0.0ubuntu2~ppa1~lucid1/debian/changelog debhelper-8.0.0ubuntu2~ppa1~lucid2/debian/changelog --- debhelper-8.0.0ubuntu2~ppa1~lucid1/debian/changelog 2011-01-24 06:07:36.000000000 +0000 +++ debhelper-8.0.0ubuntu2~ppa1~lucid2/debian/changelog 2011-03-20 20:53:35.000000000 +0000 @@ -1,3 +1,9 @@ +debhelper (8.0.0ubuntu2~ppa1~lucid2) lucid; urgency=low + + * Fixed dependency to gconf for Lucid to version 2.28.1. + + -- Nicola Ferralis Sun, 20 Mar 2011 16:52:58 -0400 + debhelper (8.0.0ubuntu2~ppa1~lucid1) lucid; urgency=low * Backport to Lucidbleed ppa. diff -Nru debhelper-8.0.0ubuntu2~ppa1~lucid1/dh_gconf debhelper-8.0.0ubuntu2~ppa1~lucid2/dh_gconf --- debhelper-8.0.0ubuntu2~ppa1~lucid1/dh_gconf 2011-01-16 21:22:00.000000000 +0000 +++ debhelper-8.0.0ubuntu2~ppa1~lucid2/dh_gconf 2011-03-20 20:52:31.000000000 +0000 @@ -66,14 +66,14 @@ if ($mandatory ne '') { doit("mkdir","-p","$tmp/usr/share/gconf/mandatory"); doit("install","-p","-m644",$mandatory,"$tmp/usr/share/gconf/mandatory/${priority}_$package"); - addsubstvar($package, "misc:Depends", "gconf2 (>= 2.28.1-2)"); + addsubstvar($package, "misc:Depends", "gconf2 (>= 2.28.1)"); $gconf_dep = 1; } my $defaults = pkgfile($package,"gconf-defaults"); if ($defaults ne '') { doit("mkdir","-p","$tmp/usr/share/gconf/defaults"); doit("install","-p","-m644",$defaults,"$tmp/usr/share/gconf/defaults/${priority}_$package"); - addsubstvar($package, "misc:Depends", "gconf2 (>= 2.28.1-2)") unless $gconf_dep; + addsubstvar($package, "misc:Depends", "gconf2 (>= 2.28.1)") unless $gconf_dep; $gconf_dep = 1; } @@ -91,7 +91,7 @@ # Get a list of the schemas my $schemas = `find $new_schemas_dir -type f -name \\*.schemas -printf '%P '`; if ($schemas ne '') { - addsubstvar($package, "misc:Depends", "gconf2 (>= 2.28.1-2)") unless $gconf_dep; + addsubstvar($package, "misc:Depends", "gconf2 (>= 2.28.1)") unless $gconf_dep; } } }