diff -Nru /tmp/z28o2AxruZ/hp-ppd-0.8/debian/changelog /tmp/yhnKE6mGU7/hp-ppd-0.8ubuntu1/debian/changelog --- /tmp/z28o2AxruZ/hp-ppd-0.8/debian/changelog 2006-07-28 12:40:29.000000000 +0200 +++ /tmp/yhnKE6mGU7/hp-ppd-0.8ubuntu1/debian/changelog 2006-09-28 19:17:10.000000000 +0200 @@ -1,3 +1,10 @@ +hp-ppd (0.8ubuntu1) edgy; urgency=low + + * Merge from debian unstable. + * Fix bashism in install.sh + + -- Soren Hansen Thu, 28 Sep 2006 19:17:07 +0200 + hp-ppd (0.8) unstable; urgency=low * Bug fix: "ppd files not installed into /usr/share/ppd", thanks to @@ -9,12 +16,28 @@ -- A Mennucc1 Fri, 28 Jul 2006 12:23:04 +0200 +hp-ppd (0.7ubuntu1) edgy; urgency=low + + * Merge from debian unstable. + * Install ppd files to /usr/share/ppp. + * Fix bashism in install.sh + + -- Soren Hansen Tue, 25 Jul 2006 01:07:26 +0200 + hp-ppd (0.7) unstable; urgency=low * do not install broken symlinks -- A Mennucc1 Sun, 23 Apr 2006 16:00:28 +0200 +hp-ppd (0.6ubuntu1) dapper; urgency=low + + * Synchronize with Debian unstable. + * Remove dangling symlinks + * Install ppd files to /usr/share/ppp. + + -- Matthias Klose Tue, 11 Apr 2006 09:58:01 +0000 + hp-ppd (0.6) unstable; urgency=low * this package does not contain PPDs from @@ -75,4 +98,3 @@ -- A Mennucc1 Wed, 4 Jul 2001 12:13:16 +0200 - diff -Nru /tmp/z28o2AxruZ/hp-ppd-0.8/install.sh /tmp/yhnKE6mGU7/hp-ppd-0.8ubuntu1/install.sh --- /tmp/z28o2AxruZ/hp-ppd-0.8/install.sh 2006-03-29 06:51:03.000000000 +0200 +++ /tmp/yhnKE6mGU7/hp-ppd-0.8ubuntu1/install.sh 2006-07-29 01:35:36.000000000 +0200 @@ -13,7 +13,8 @@ H=`pwd` for i in "$@" ; do - pushd $i + oldpwd="$PWD" + cd $i echo INSTALLING FROM $i for f in *ppd ; do if grep -q MacStandard $f ; then @@ -24,7 +25,7 @@ cp $f $D/$f fi done - popd + cd "$oldpwd" done