Author: branden Date: 2004-06-22 13:16:23 -0500 (Tue, 22 Jun 2004) New Revision: 1557
Modified: trunk/debian/CHANGESETS trunk/debian/TODO trunk/debian/changelog trunk/debian/xlibs.bug Log: Enhance xlibs package's bug script to report compiled XKB data for X server, if possible. Modified: trunk/debian/CHANGESETS =================================================================== --- trunk/debian/CHANGESETS 2004-06-22 17:43:26 UTC (rev 1556) +++ trunk/debian/CHANGESETS 2004-06-22 18:16:23 UTC (rev 1557) @@ -40,4 +40,8 @@ (Closes: #255464) 1555, 1556 +Enhance xlibs package's bug script to report compiled XKB data for X +server, if possible. + 1557 + vim:set ai et sts=4 sw=4 tw=80: Modified: trunk/debian/TODO =================================================================== --- trunk/debian/TODO 2004-06-22 17:43:26 UTC (rev 1556) +++ trunk/debian/TODO 2004-06-22 18:16:23 UTC (rev 1557) @@ -17,7 +17,6 @@ 4.3.0.dfsg.1-6 -------------- -* Enhance xlibs bug script to include output of "xkbcomp $DISPLAY -o -". * Add "How to Use This Document" and "Acknowledgements" sections to FAQ. * Update FAQ entry about X Window System history to reflect developments over the past year with x.org, freedesktop.org, and The XFree86 Project, Inc. Modified: trunk/debian/changelog =================================================================== --- trunk/debian/changelog 2004-06-22 17:43:26 UTC (rev 1556) +++ trunk/debian/changelog 2004-06-22 18:16:23 UTC (rev 1557) @@ -23,12 +23,15 @@ * Update Danish debconf template translations (thanks, Claus Hindsgaul). (Closes: #255184) + * Enhance xlibs package's bug script to report compiled XKB data for X + server, if possible. + Changes by Fabio Massimo Di Nitto: * Update French debconf template translations (thanks, Christian Perrier). (Closes: #255464) - -- Branden Robinson <[EMAIL PROTECTED]> Tue, 22 Jun 2004 12:41:27 -0500 + -- Branden Robinson <[EMAIL PROTECTED]> Tue, 22 Jun 2004 13:15:22 -0500 xfree86 (4.3.0.dfsg.1-5) unstable; urgency=low Modified: trunk/debian/xlibs.bug =================================================================== --- trunk/debian/xlibs.bug 2004-06-22 17:43:26 UTC (rev 1556) +++ trunk/debian/xlibs.bug 2004-06-22 18:16:23 UTC (rev 1557) @@ -21,4 +21,19 @@ printf "\n" >&3 -# vim:set ai et sts=4 sw=4 tw=0: +if which xkbcomp >/dev/null 2>&1; then + if [ -n "$DISPLAY" ]; then + printf "Compiled XKB description for X server \"%s\":\n" "$DISPLAY" >&3 + if ! xkbcomp -o - "$DISPLAY" >&3; then + printf "xkbcomp command reported failure.\n" >&3 + fi + else + printf "Cannot report compiled XKB description; \$DISPLAY null or undefined.\n" + fi +else + printf "xkbcomp command not available.\n" >&3 +fi + +printf "\n" >&3 + +# vim:set ai et sts=4 sw=4 tw=80: