r1673 - in glibc-package/trunk/debian: . debhelper.in
Author: barbier
Date: 2006-07-05 21:10:40 +0000 (Wed, 05 Jul 2006)
New Revision: 1673
Modified:
glibc-package/trunk/debian/changelog
glibc-package/trunk/debian/debhelper.in/libc.postinst
glibc-package/trunk/debian/debhelper.in/libc.postrm
Log:
* debian/debhelper.in/libc.postinst: Call iconvconfig to generate
/usr/lib/gconv/gconv-modules.cache. (Closes: #376811)
* debian/debhelper.in/libc.postrm: Remove this cache file.
Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog 2006-07-03 20:36:50 UTC (rev 1672)
+++ glibc-package/trunk/debian/changelog 2006-07-05 21:10:40 UTC (rev 1673)
@@ -29,6 +29,9 @@
Fix roundtrip conversion for 0x5C character. (Closes: #375074)
* Update Brazilian Portuguese debconf translation, by Felipe Augusto
van de Wiel. (Closes: #375451)
+ * debian/debhelper.in/libc.postinst: Call iconvconfig to generate
+ /usr/lib/gconv/gconv-modules.cache. (Closes: #376811)
+ * debian/debhelper.in/libc.postrm: Remove this cache file.
-- Aurelien Jarno <aurel32@debian.org> Thu, 8 Jun 2006 08:03:49 +0200
Modified: glibc-package/trunk/debian/debhelper.in/libc.postinst
===================================================================
--- glibc-package/trunk/debian/debhelper.in/libc.postinst 2006-07-03 20:36:50 UTC (rev 1672)
+++ glibc-package/trunk/debian/debhelper.in/libc.postinst 2006-07-05 21:10:40 UTC (rev 1673)
@@ -337,6 +337,9 @@
fi # end upgrading and $preversion lt 2.3.5-1
fi # Upgrading
+ # Generate cache file /usr/lib/gconv/gconv-modules.cache
+ iconvconfig || true
+
# # DO NOT FOLLOW THIS EXAMPLE IN OTHER PACKAGES
updatercd glibc.sh start 01 S .
if [ -x /usr/sbin/invoke-rc.d ]; then
Modified: glibc-package/trunk/debian/debhelper.in/libc.postrm
===================================================================
--- glibc-package/trunk/debian/debhelper.in/libc.postrm 2006-07-03 20:36:50 UTC (rev 1672)
+++ glibc-package/trunk/debian/debhelper.in/libc.postrm 2006-07-05 21:10:40 UTC (rev 1673)
@@ -9,6 +9,8 @@
suidunregister -s LIBC /usr/libexec/pt_chown
fi
fi
+ # Created in the postinst by iconvconfig
+ rm -f /usr/lib/gconv/gconv-modules.cache || true
fi
if [ "$1" = upgrade ]; then
Reply to: