r12151 - in /desktop/experimental/pango1.0/debian: changelog libpango1.0-0.postinst.in libpango1.0-doc.postinst.in
lool at users.alioth.debian.org
lool at users.alioth.debian.org
Mon Jul 30 19:05:56 UTC 2007
Author: lool
Date: Mon Jul 30 19:05:56 2007
New Revision: 12151
URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=12151
Log:
* Drop /usr/share/doc/libpango1.0-doc/pango/pango during the postinst of
libpango1.0-doc if it's a symlink; should be dropped after lenny;
closes: #430040.
Added:
desktop/experimental/pango1.0/debian/libpango1.0-doc.postinst.in
Modified:
desktop/experimental/pango1.0/debian/changelog
desktop/experimental/pango1.0/debian/libpango1.0-0.postinst.in
Modified: desktop/experimental/pango1.0/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/pango1.0/debian/changelog?rev=12151&op=diff
==============================================================================
--- desktop/experimental/pango1.0/debian/changelog (original)
+++ desktop/experimental/pango1.0/debian/changelog Mon Jul 30 19:05:56 2007
@@ -2,8 +2,11 @@
* New upstream development release; minor API change in the new API.
* Cleanups; set warnings in update-pangox-aliases (Perl).
-
- -- Loic Minier <lool at dooz.org> Mon, 30 Jul 2007 20:44:20 +0200
+ * Drop /usr/share/doc/libpango1.0-doc/pango/pango during the postinst of
+ libpango1.0-doc if it's a symlink; should be dropped after lenny;
+ closes: #430040.
+
+ -- Loic Minier <lool at dooz.org> Mon, 30 Jul 2007 20:50:58 +0200
pango1.0 (1.17.4-3) experimental; urgency=high
Modified: desktop/experimental/pango1.0/debian/libpango1.0-0.postinst.in
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/pango1.0/debian/libpango1.0-0.postinst.in?rev=12151&op=diff
==============================================================================
--- desktop/experimental/pango1.0/debian/libpango1.0-0.postinst.in (original)
+++ desktop/experimental/pango1.0/debian/libpango1.0-0.postinst.in Mon Jul 30 19:05:56 2007
@@ -2,10 +2,10 @@
set -e
-DOCDIR=/usr/share/doc/libpango at APIVER@- at SONAME@
-if [ -d $DOCDIR ] && [ ! -L $DOCDIR ]; then
- rm -rf $DOCDIR
- ln -sf libpango at APIVER@-common $DOCDIR
+# Hey, I'm a snippet removing old cruft (Debian #430040); drop me after lenny!
+BOGUSDOCDIR=/usr/share/doc/libpango at APIVER@-doc/pango/pango
+if [ -L $BOGUSDOCDIR ]; then
+ rm -f $BOGUSDOCDIR
fi
#DEBHELPER#
Added: desktop/experimental/pango1.0/debian/libpango1.0-doc.postinst.in
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/pango1.0/debian/libpango1.0-doc.postinst.in?rev=12151&op=file
==============================================================================
--- desktop/experimental/pango1.0/debian/libpango1.0-doc.postinst.in (added)
+++ desktop/experimental/pango1.0/debian/libpango1.0-doc.postinst.in Mon Jul 30 19:05:56 2007
@@ -1,0 +1,11 @@
+#!/bin/sh
+
+set -e
+
+DOCDIR=/usr/share/doc/libpango at APIVER@- at SONAME@
+if [ -d $DOCDIR ] && [ ! -L $DOCDIR ]; then
+ rm -rf $DOCDIR
+ ln -sf libpango at APIVER@-common $DOCDIR
+fi
+
+#DEBHELPER#
More information about the pkg-gnome-commits
mailing list