Processed: retitle 565488 to nv: lockup in x11perf
Processing commands for cont...@bugs.debian.org: > retitle 565488 nv: lockup in x11perf Bug #565488 [xserver-xorg-video-nv] xserver-xorg-core: server crash with nv driver Changed Bug title to 'nv: lockup in x11perf' from 'xserver-xorg-core: server crash with nv driver' > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.12685594041881.transcr...@bugs.debian.org
xorg: Changes to 'refs/tags/xorg-1_7.5+4'
Tag 'xorg-1_7.5+4' created by Brice Goglin at 2010-03-14 10:22 + Tagging upload of xorg 1:7.5+4 to unstable. Changes since xorg-1_7.5+3: Brice Goglin (5): Add Xreset and Xreset.d support Prefix Xreset.d lines with a # so that they are ignored when reading all Xreset.d files Document username in Xreset.d README Improve startup speed of Xsession.d scripts by eliminating all unnecessary external program calls Prepare changelog for upload --- debian/changelog | 16 debian/local/Xreset| 34 + debian/local/Xreset.d/README |4 ++ debian/local/Xsession.d/20x11-common_process-args | 14 ++- debian/local/Xsession.d/30x11-common_xresources| 30 +++ debian/local/Xsession.d/50x11-common_determine-startup |4 +- debian/local/Xsession.d/90x11-common_ssh-agent |2 - debian/rules |2 + debian/x11-common.dirs |1 debian/x11-common.install |2 + 10 files changed, 89 insertions(+), 20 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqky8-0002l7...@alioth.debian.org
xorg: Changes to 'debian-unstable'
debian/changelog | 16 +++-- debian/local/Xsession.d/20x11-common_process-args | 14 +++ debian/local/Xsession.d/30x11-common_xresources| 30 +++-- debian/local/Xsession.d/50x11-common_determine-startup |4 +- debian/local/Xsession.d/90x11-common_ssh-agent |2 - 5 files changed, 43 insertions(+), 23 deletions(-) New commits: commit c3a8249d58deeba4b9d163a768e792a1d044ce8b Author: Brice Goglin Date: Sun Mar 14 11:15:20 2010 +0100 Prepare changelog for upload diff --git a/debian/changelog b/debian/changelog index 442a8d6..7a58436 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -xorg (1:7.5+4) UNRELEASED; urgency=low +xorg (1:7.5+4) unstable; urgency=low * Add Xreset and Xreset.d support, closes: #230422. * Improve startup speed of Xsession.d scripts by eliminating all unnecessary @@ -12,7 +12,7 @@ xorg (1:7.5+4) UNRELEASED; urgency=low unlikely (like "~/.Xresources exists") outside, to avoid running the other tests (like "xrdb exists") on systems which don't use Xresources. - -- Brice Goglin Sat, 06 Mar 2010 16:15:01 +0100 + -- Brice Goglin Sun, 14 Mar 2010 11:15:07 +0100 xorg (1:7.5+3) unstable; urgency=low commit f4928802701d1a2301ce3e92da015d9bf7ed5d65 Author: Brice Goglin Date: Sun Mar 14 11:14:59 2010 +0100 Improve startup speed of Xsession.d scripts by eliminating all unnecessary external program calls diff --git a/debian/changelog b/debian/changelog index 0359056..442a8d6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,16 @@ xorg (1:7.5+4) UNRELEASED; urgency=low * Add Xreset and Xreset.d support, closes: #230422. + * Improve startup speed of Xsession.d scripts by eliminating all unnecessary +external program calls, thanks Martin Pitt, closes: #570447. +- In 20x11-common_process-args, cat $OPTIONFILE once into a variable and + use POSIX variable substitution in all scripts instead of calling grep + for every single test. +- Use shell built in "type" instead of external "which" to test for + programs. +- 30x11-common_xresources: Swap the order of tests to keep the most + unlikely (like "~/.Xresources exists") outside, to avoid running the + other tests (like "xrdb exists") on systems which don't use Xresources. -- Brice Goglin Sat, 06 Mar 2010 16:15:01 +0100 diff --git a/debian/local/Xsession.d/20x11-common_process-args b/debian/local/Xsession.d/20x11-common_process-args index 53e7a7b..93e4653 100644 --- a/debian/local/Xsession.d/20x11-common_process-args +++ b/debian/local/Xsession.d/20x11-common_process-args @@ -2,6 +2,18 @@ # This file is sourced by Xsession(5), not executed. +# read OPTIONFILE +OPTIONS=$(cat "$OPTIONFILE") || true + +has_option() { + if [ "${OPTIONS#* +$1}" != "$OPTIONS" ]; then +return 0 + else +return 1 + fi +} + # Determine how many arguments were provided. case $# in 0) @@ -12,7 +24,7 @@ case $# in case "$1" in failsafe) # Failsafe session was requested. -if grep -qs ^allow-failsafe "$OPTIONFILE"; then +if has_option allow-failsafe; then if [ -e /usr/bin/x-terminal-emulator ]; then if [ -x /usr/bin/x-terminal-emulator ]; then exec x-terminal-emulator -geometry +1+1 diff --git a/debian/local/Xsession.d/30x11-common_xresources b/debian/local/Xsession.d/30x11-common_xresources index f9f6e13..c3f53a8 100644 --- a/debian/local/Xsession.d/30x11-common_xresources +++ b/debian/local/Xsession.d/30x11-common_xresources @@ -4,25 +4,23 @@ # If xrdb (from xbase-clients) is installed, merge system-wide X resources. # Then merge the user's X resources, if the options file is so configured. -if /usr/bin/which xrdb >/dev/null 2>&1; then - if [ -d "$SYSRESOURCES" ]; then -RESOURCEFILES=$(run-parts --list $SYSRESOURCES) -if [ -n "$RESOURCEFILES" ]; then - for RESOURCEFILE in $RESOURCEFILES; do -xrdb -merge $RESOURCEFILE - done -fi +if [ -d "$SYSRESOURCES" ] && type xrdb >/dev/null 2>&1; then + RESOURCEFILES=$(run-parts --list $SYSRESOURCES) + if [ -n "$RESOURCEFILES" ]; then +for RESOURCEFILE in $RESOURCEFILES; do + xrdb -merge $RESOURCEFILE +done fi +fi - if grep -qs ^allow-user-resources "$OPTIONFILE"; then -if [ -f "$USRRESOURCES" ]; then - xrdb -merge $USRRESOURCES -fi +if has_option allow-user-resources && [ -f "$USRRESOURCES" ]; then + if type xrdb >/dev/null 2>&1; then +xrdb -merge $USRRESOURCES + else +# Comment out this command if you desire a legacy-free X environment, and find +# the warning spurious. +message "warning: xrdb command not found; X resources not merged." fi -else - # Comment out this command if you desire a legacy-free X environment, and find - # the warning spurious. - message "warning: xrdb command not found; X resources not merged." fi #
Bug#573002: marked as done (wrong compile flags for powerpcg3)
Your message dated Sun, 14 Mar 2010 11:18:42 +0100 with message-id <20100314101842.ga27...@loulous.org> and subject line Re: Bug#573002: wrong compile flags for powerpcg3 has caused the Debian Bug report #573002, regarding wrong compile flags for powerpcg3 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 573002: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=573002 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xserver-xorg-video-r128 Version: 6.8.1-2 Severity: grave Im sorry if I am doing the wrong thing. There is a serious bug in libsdl1.2debian which prevents SDL from working at all on powerpc g3. I submitted the bug report under supertux when it should have been under libsdl1.2debian http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572420 --- End Message --- --- Begin Message --- On Sun, Mar 07, 2010 at 10:39:03PM -0800, SPH wrote: > Package: xserver-xorg-video-r128 > Version: 6.8.1-2 > Severity: grave > > Im sorry if I am doing the wrong thing. There is a serious bug in > libsdl1.2debian which prevents SDL from working at all on powerpc g3. > I submitted the bug report under supertux when it should have been > under libsdl1.2debian > > http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572420 The above bug seems to be enough, I don't see why we'd need one against the r128 driver. Brice --- End Message ---
Processing of xorg_7.5+4_i386.changes
xorg_7.5+4_i386.changes uploaded successfully to localhost along with the files: xorg_7.5+4.dsc xorg_7.5+4.tar.gz x11-common_7.5+4_all.deb xorg-dev_7.5+4_all.deb xlibmesa-gl_7.5+4_all.deb xlibmesa-gl-dev_7.5+4_all.deb xlibmesa-glu_7.5+4_all.deb libglu1-xorg_7.5+4_all.deb libglu1-xorg-dev_7.5+4_all.deb xbase-clients_7.5+4_all.deb xutils_7.5+4_all.deb xserver-xorg_7.5+4_i386.deb xserver-xorg-video-all_7.5+4_i386.deb xserver-xorg-input-all_7.5+4_i386.deb xorg_7.5+4_i386.deb Greetings, Your Debian queue daemon (running on host ries.debian.org) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nql1t-0004fe...@ries.debian.org
xorg_7.5+4_i386.changes ACCEPTED
Accepted: libglu1-xorg-dev_7.5+4_all.deb to main/x/xorg/libglu1-xorg-dev_7.5+4_all.deb libglu1-xorg_7.5+4_all.deb to main/x/xorg/libglu1-xorg_7.5+4_all.deb x11-common_7.5+4_all.deb to main/x/xorg/x11-common_7.5+4_all.deb xbase-clients_7.5+4_all.deb to main/x/xorg/xbase-clients_7.5+4_all.deb xlibmesa-gl-dev_7.5+4_all.deb to main/x/xorg/xlibmesa-gl-dev_7.5+4_all.deb xlibmesa-gl_7.5+4_all.deb to main/x/xorg/xlibmesa-gl_7.5+4_all.deb xlibmesa-glu_7.5+4_all.deb to main/x/xorg/xlibmesa-glu_7.5+4_all.deb xorg-dev_7.5+4_all.deb to main/x/xorg/xorg-dev_7.5+4_all.deb xorg_7.5+4.dsc to main/x/xorg/xorg_7.5+4.dsc xorg_7.5+4.tar.gz to main/x/xorg/xorg_7.5+4.tar.gz xorg_7.5+4_i386.deb to main/x/xorg/xorg_7.5+4_i386.deb xserver-xorg-input-all_7.5+4_i386.deb to main/x/xorg/xserver-xorg-input-all_7.5+4_i386.deb xserver-xorg-video-all_7.5+4_i386.deb to main/x/xorg/xserver-xorg-video-all_7.5+4_i386.deb xserver-xorg_7.5+4_i386.deb to main/x/xorg/xserver-xorg_7.5+4_i386.deb xutils_7.5+4_all.deb to main/x/xorg/xutils_7.5+4_all.deb Override entries for your package: libglu1-xorg-dev_7.5+4_all.deb - optional libdevel libglu1-xorg_7.5+4_all.deb - optional libs x11-common_7.5+4_all.deb - optional x11 xbase-clients_7.5+4_all.deb - optional x11 xlibmesa-gl-dev_7.5+4_all.deb - optional libdevel xlibmesa-gl_7.5+4_all.deb - optional libs xlibmesa-glu_7.5+4_all.deb - optional libdevel xorg-dev_7.5+4_all.deb - optional x11 xorg_7.5+4.dsc - source x11 xorg_7.5+4_i386.deb - optional x11 xserver-xorg-input-all_7.5+4_i386.deb - optional x11 xserver-xorg-video-all_7.5+4_i386.deb - optional x11 xserver-xorg_7.5+4_i386.deb - optional x11 xutils_7.5+4_all.deb - optional x11 Announcing to debian-devel-chan...@lists.debian.org Closing bugs: 230422 570447 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nql7y-00054s...@ries.debian.org
Bug#230422: marked as done (xfree86-common: Should include /etc/X11/Xreset{.d})
Your message dated Sun, 14 Mar 2010 10:32:58 + with message-id and subject line Bug#230422: fixed in xorg 1:7.5+4 has caused the Debian Bug report #230422, regarding xfree86-common: Should include /etc/X11/Xreset{.d} to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 230422: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=230422 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xfree86-common Version: 4.2.1-16 Severity: wishlist In skolelinux, we would like to run a script when the users are logging out, to do general cleanup. For this, it would be useful if the display managers had hooks in Xreset we could use to have our script executed. Could you please add /etc/X11/Xreset and /etc/X11/Xreset.d (like the current /etc/X11/Xsession{.d}), and thus make it possible for the display managers to share one such file? If you are interested in adding this feature, I'll provide a patch and send bugreports against wdm, xdm and kdm to ask them to use this file. (Not sure why gdm do not include a Xreset file, but it did not appear on http://packages.debian.org/cgi-bin/search_contents.pl?word=Xreset>). I'll file a bug on gdm too just to keep all of them consistent. :) --- End Message --- --- Begin Message --- Source: xorg Source-Version: 1:7.5+4 We believe that the bug you reported is fixed in the latest version of xorg, which is due to be installed in the Debian FTP archive: libglu1-xorg-dev_7.5+4_all.deb to main/x/xorg/libglu1-xorg-dev_7.5+4_all.deb libglu1-xorg_7.5+4_all.deb to main/x/xorg/libglu1-xorg_7.5+4_all.deb x11-common_7.5+4_all.deb to main/x/xorg/x11-common_7.5+4_all.deb xbase-clients_7.5+4_all.deb to main/x/xorg/xbase-clients_7.5+4_all.deb xlibmesa-gl-dev_7.5+4_all.deb to main/x/xorg/xlibmesa-gl-dev_7.5+4_all.deb xlibmesa-gl_7.5+4_all.deb to main/x/xorg/xlibmesa-gl_7.5+4_all.deb xlibmesa-glu_7.5+4_all.deb to main/x/xorg/xlibmesa-glu_7.5+4_all.deb xorg-dev_7.5+4_all.deb to main/x/xorg/xorg-dev_7.5+4_all.deb xorg_7.5+4.dsc to main/x/xorg/xorg_7.5+4.dsc xorg_7.5+4.tar.gz to main/x/xorg/xorg_7.5+4.tar.gz xorg_7.5+4_i386.deb to main/x/xorg/xorg_7.5+4_i386.deb xserver-xorg-input-all_7.5+4_i386.deb to main/x/xorg/xserver-xorg-input-all_7.5+4_i386.deb xserver-xorg-video-all_7.5+4_i386.deb to main/x/xorg/xserver-xorg-video-all_7.5+4_i386.deb xserver-xorg_7.5+4_i386.deb to main/x/xorg/xserver-xorg_7.5+4_i386.deb xutils_7.5+4_all.deb to main/x/xorg/xutils_7.5+4_all.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 230...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Brice Goglin (supplier of updated xorg package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 14 Mar 2010 11:15:07 +0100 Source: xorg Binary: x11-common xserver-xorg xserver-xorg-video-all xserver-xorg-input-all xorg xorg-dev xlibmesa-gl xlibmesa-gl-dev xlibmesa-glu libglu1-xorg libglu1-xorg-dev xbase-clients xutils Architecture: source all i386 Version: 1:7.5+4 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Brice Goglin Description: libglu1-xorg - transitional package for Debian etch libglu1-xorg-dev - transitional package for Debian etch x11-common - X Window System (X.Org) infrastructure xbase-clients - miscellaneous X clients - metapackage xlibmesa-gl - transitional package for Debian etch xlibmesa-gl-dev - transitional package for Debian etch xlibmesa-glu - transitional package for Debian etch xorg - X.Org X Window System xorg-dev - the X.Org X Window System development libraries xserver-xorg - the X.Org X server xserver-xorg-input-all - the X.Org X server -- input driver metapackage xserver-xorg-video-all - the X.Org X server -- output driver metapackage xutils - X Window System utility programs metapackage Closes: 230422 570447 Changes: xorg (1:7.5+4) unstable; urgency=low . * Add Xreset and Xreset.d support, closes: #230422. * Improve startup speed of Xsession.d scripts by eliminating all unnecessary external program calls, thanks Martin Pitt, closes: #570447. - In 20x11-common_process-args, cat $OPTIONFILE once into a variable and use POSIX variable subst
Bug#570447: marked as done (x11-common: Optimize speed of Xsession.d scripts)
Your message dated Sun, 14 Mar 2010 10:32:58 + with message-id and subject line Bug#570447: fixed in xorg 1:7.5+4 has caused the Debian Bug report #570447, regarding x11-common: Optimize speed of Xsession.d scripts to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 570447: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=570447 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xorg Version: 7.5+3 Severity: wishlist Tags: patch User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid ubuntu-patch Hello, In our vendetta for faster boot I examined x11-common's Xsession.d scripts and noticed that they call a lot of external programs (grep several times, which) and run some code which is unlikely to be useful on many machines (such as ~/.Xresources). Attached patch streamlines the scripts to prefer shell builtins over external programs. (Details see changelog). Thanks for considering! Martin -- Martin Pitt| http://www.piware.de Ubuntu Developer (www.ubuntu.com) | Debian Developer (www.debian.org) diff -Nru xorg-7.5+1ubuntu2/debian/changelog xorg-7.5+1ubuntu3/debian/changelog --- xorg-7.5+1ubuntu2/debian/changelog 2010-01-26 00:38:13.0 +0100 +++ xorg-7.5+1ubuntu3/debian/changelog 2010-02-18 23:14:11.0 +0100 @@ -1,3 +1,18 @@ +xorg (1:7.5+1ubuntu3) lucid; urgency=low + + * Improve startup speed of Xsession.d scripts by eliminating all unnecessary +external program calls: +- In 20x11-common_process-args, cat $OPTIONFILE once into a variable and + use POSIX variable substitution in all scripts instead of calling grep + for every single test. +- Use shell built in "type" instead of external "which" to test for + programs. +- 30x11-common_xresources: Swap the order of tests to keep the most + unlikely (like "~/.Xresources exists") outside, to avoid running the + other tests (like "xrdb exists") on systems which don't use Xresources. + + -- Martin Pitt Thu, 18 Feb 2010 23:02:22 +0100 + xorg (1:7.5+1ubuntu2) lucid; urgency=low [ David Planella ] diff -Nru xorg-7.5+1ubuntu2/debian/local/Xsession.d/20x11-common_process-args xorg-7.5+1ubuntu3/debian/local/Xsession.d/20x11-common_process-args --- xorg-7.5+1ubuntu2/debian/local/Xsession.d/20x11-common_process-args 2010-01-25 10:53:09.0 +0100 +++ xorg-7.5+1ubuntu3/debian/local/Xsession.d/20x11-common_process-args 2010-02-18 23:13:59.0 +0100 @@ -2,6 +2,10 @@ # This file is sourced by Xsession(5), not executed. +# read OPTIONFILE +OPTIONS=$(cat "$OPTIONFILE") || true + + # Determine how many arguments were provided. case $# in 0) @@ -12,7 +16,7 @@ case "$1" in failsafe) # Failsafe session was requested. -if grep -qs ^allow-failsafe "$OPTIONFILE"; then +if [ "${OPTIONS#*allow-failsafe}" != "$OPTIONS" ]; then if [ -e /usr/bin/x-terminal-emulator ]; then if [ -x /usr/bin/x-terminal-emulator ]; then exec x-terminal-emulator -geometry +1+1 diff -Nru xorg-7.5+1ubuntu2/debian/local/Xsession.d/30x11-common_xresources xorg-7.5+1ubuntu3/debian/local/Xsession.d/30x11-common_xresources --- xorg-7.5+1ubuntu2/debian/local/Xsession.d/30x11-common_xresources 2008-06-25 04:05:17.0 +0200 +++ xorg-7.5+1ubuntu3/debian/local/Xsession.d/30x11-common_xresources 2010-02-18 22:58:38.0 +0100 @@ -4,25 +4,23 @@ # If xrdb (from xbase-clients) is installed, merge system-wide X resources. # Then merge the user's X resources, if the options file is so configured. -if /usr/bin/which xrdb >/dev/null 2>&1; then - if [ -d "$SYSRESOURCES" ]; then -RESOURCEFILES=$(run-parts --list $SYSRESOURCES) -if [ -n "$RESOURCEFILES" ]; then - for RESOURCEFILE in $RESOURCEFILES; do -xrdb -merge $RESOURCEFILE - done -fi +if [ -d "$SYSRESOURCES" ] && type xrdb >/dev/null 2>&1; then + RESOURCEFILES=$(run-parts --list $SYSRESOURCES) + if [ -n "$RESOURCEFILES" ]; then +for RESOURCEFILE in $RESOURCEFILES; do + xrdb -merge $RESOURCEFILE +done fi +fi - if grep -qs ^allow-user-resources "$OPTIONFILE"; then -if [ -f "$USRRESOURCES" ]; then - xrdb -merge $USRRESOURCES -fi +if [ "${OPTIONS#*allow-user-resources}" != "$OPTIONS" ] && [ -f "$USRRESOURCES" ]; then + if type xrdb >/dev/null 2>&1; then +xrdb -merge $USRRESOURCES + else +# Comment out this command if you desire a legacy-free X environment, and find +# the warning spurious. +message "warning: xrdb command not found; X resources not
xdm: Changes to 'debian-unstable'
debian/changelog |6 -- debian/control |4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) New commits: commit 0fb13ca5ee1ee087e5ab964c81e90b745101835b Author: Brice Goglin Date: Sun Mar 14 11:31:09 2010 +0100 Prepare changelog for upload diff --git a/debian/changelog b/debian/changelog index f71ebce..f2d00c8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -xdm (1:1.1.9-1) UNRELEASED; urgency=low +xdm (1:1.1.9-1) unstable; urgency=low [ Julien Cristau ] * Xreset, Xstartup: don't add /usr/bin/X11 to PATH. @@ -30,8 +30,9 @@ xdm (1:1.1.9-1) UNRELEASED; urgency=low * Refresh patches. * Add Xreset hook, closes: #571607. * Bump Standards-Version to 3.8.4, no changes. + * Add myself to Uploaders. - -- Brice Goglin Sun, 06 Dec 2009 22:05:09 +0100 + -- Brice Goglin Sun, 14 Mar 2010 11:44:38 +0100 xdm (1:1.1.8-6) unstable; urgency=low diff --git a/debian/control b/debian/control index ad7b734..b3ce44c 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: xdm Section: x11 Priority: optional Maintainer: Debian X Strike Force -Uploaders: David Nusinow +Uploaders: David Nusinow , Brice Goglin Build-Depends: debhelper (>= 5.0.0), pkg-config, commit 13d71030509eb837b818b4815dd554c8ad0cdcd6 Author: Brice Goglin Date: Sun Mar 14 11:36:52 2010 +0100 Bump Standards-Version to 3.8.4 diff --git a/debian/changelog b/debian/changelog index 386f5fb..f71ebce 100644 --- a/debian/changelog +++ b/debian/changelog @@ -29,6 +29,7 @@ xdm (1:1.1.9-1) UNRELEASED; urgency=low applied upstream. * Refresh patches. * Add Xreset hook, closes: #571607. + * Bump Standards-Version to 3.8.4, no changes. -- Brice Goglin Sun, 06 Dec 2009 22:05:09 +0100 diff --git a/debian/control b/debian/control index 6221a1f..ad7b734 100644 --- a/debian/control +++ b/debian/control @@ -18,7 +18,7 @@ Build-Depends: automake, libtool, xutils-dev -Standards-Version: 3.8.1 +Standards-Version: 3.8.4 Vcs-Git: git://git.debian.org/git/pkg-xorg/app/xdm Vcs-Browser: http://git.debian.org/?p=pkg-xorg/app/xdm.git -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqlti-9p...@alioth.debian.org
xdm: Changes to 'refs/tags/xdm-1_1.1.9-1'
Tag 'xdm-1_1.1.9-1' created by Brice Goglin at 2010-03-14 10:54 + Tagging upload of xdm 1:1.1.9-1 to unstable. Changes since xdm-1_1.1.8-6: Alan Coopersmith (25): Update AC_DEFINE_DIR to latest version from Autoconf Archive Remove RCS Ids Move xdmcp ARRAY initializators to declarations Replace FORCE_CURSOR_FLASH code with simpler cursor update for passwd field Remove OS/2's duplicate copy of default path definitions in resource.c sprintf -> snprintf/asprintf conversions Documentation improvements malloc(strlen()); strcpy() -> strdup() Delete old A/UX (#ifdef macII) code Use imdent to show cpp macro nesting more clearly Remove #ifdef Lynx blocks Clarify comment/#ifdefs for USE_SIOCGLIFCONF Do a better job of getting user name for failed login log when using PAM Continue processing Xaccess after unresolvable host entry found Truncate pid file before writing new pid to it Set utmp/wtmp paths via configure instead of hardcoding them Treat all 127.0.0.0/8 addresses as localhost Update to using xorg-macros 1.3, including XORG_DEFAULT_OPTIONS Add support for AM_SILENT_RULES for building files with cpp Replace -D_XOPEN_SOURCE & -D_BSD_SOURCE with AC_USE_SYSTEM_EXTENSIONS Unrecognized argument errors shouldn't print xdm error header repeatedly Refactor & constify error logging code Log errors when failing to make authentication dirs/files Fill in COPYING file Version bump: 1.1.9 Branden Robinson (7): spelling fix Add some more log and debug messages session.c: Add more debugging to execute() Use xdm's _SysErrorMsg() function instead of merely printing errno Use _SysErrorMsg() in the log message in various error conditions. Use xdm's _SysErrorMsg() function instead of strerror() Add RemovePid() function, and register it with atexit() Brice Goglin (6): Merge tag 'xdm-1.1.9' into debian-unstable New upstream release Try to refresh patches, not ready yet Add Xreset hook Bump Standards-Version to 3.8.4 Prepare changelog for upload David Sainty (1): Bug 16356: xdm Xstartup/Xreset configuration files malconstructed by cpp James Cloos (1): xaw8 is gone, use xaw7 Jeff Chua (1): xdm compile failed due to asprintf() Julien Cristau (26): Add support for syslog on more than openbsd. Call InitErrorLog() right after BecomeDaemon() Add upstream commit references to patches Xreset, Xstartup: don't add /usr/bin/X11 to PATH. make sure we remove the display manager configuration file on purge xdm.prerm uses ps, add Depends on procps. xsfbs.sh: remove unused check_symlinks_and_{bomb,warn} xsfbs.sh: remove unused analyze_path xsfbs.sh: remove unused maplink function xsfbs.sh: remove unused find_culprits function xsfbs.sh: remove unused reject_whitespace function xsfbs.mk: no need for shlibs.local xsfbs.sh: fix typo and remove svn keyword xsfbs.mk: kill obsolete DEFAULT_DCRESOLUTIONS and SOURCE_DIR usage xsfbs.mk: remove more obsolete code Some progress towards updating the patch stack Update patches 20_xdm_log_timestamp.diff and 21_xdm_log_append.diff. Drop 01_xdm_include_fcntl.diff, not necessary. 15_xdm_openfiles.diff: only keep the race condition fix. log_sourcing_better.diff: resurrect patch header Minor formatting change to storepid_rewrite.diff header Document patches applied upstream Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good reason. Thanks, Colin Watson! Remove myself from Uploaders Merge branch 'debian-unstable' of git://git.debian.org/pkg-xorg/xsfbs into debian-unstable Get rid of obsolete svn $Id$ keywords in the packaging. Matthieu Herrb (2): Remove RCS Id and put some comment here. getLocalAddress(): return 127.0.0.1 if the hostname doesn't resolve. Matěj Cepl (1): Add variable DisplayManager.authDir to xdm-config (Fedora bug 388431) Paulo Cesar Pereira de Andrade (1): Ansification and compile warning fixes. --- .gitignore|4 COPYING | 175 +++- ChangeLog | 373 + Makefile.am | 17 - README| 30 ++ access.c | 162 +-- acinclude.m4 | 32 +- app-defaults/Chooser.ad |2 auth.c| 317 +++-- choose.c | 122 chooser.c | 185 ++-- config/GiveConsole|1 co
Processing of xdm_1.1.9-1_i386.changes
xdm_1.1.9-1_i386.changes uploaded successfully to localhost along with the files: xdm_1.1.9-1.dsc xdm_1.1.9.orig.tar.gz xdm_1.1.9-1.diff.gz xdm_1.1.9-1_i386.deb Greetings, Your Debian queue daemon (running on host ries.debian.org) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqluy-0007gj...@ries.debian.org
xdm_1.1.9-1_i386.changes ACCEPTED
Accepted: xdm_1.1.9-1.diff.gz to main/x/xdm/xdm_1.1.9-1.diff.gz xdm_1.1.9-1.dsc to main/x/xdm/xdm_1.1.9-1.dsc xdm_1.1.9-1_i386.deb to main/x/xdm/xdm_1.1.9-1_i386.deb xdm_1.1.9.orig.tar.gz to main/x/xdm/xdm_1.1.9.orig.tar.gz Override entries for your package: xdm_1.1.9-1.dsc - source x11 xdm_1.1.9-1_i386.deb - optional x11 Announcing to debian-devel-chan...@lists.debian.org Closing bugs: 571607 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqlc4-or...@ries.debian.org
Bug#571607: marked as done (xdm: Please provide a Xreset hook using a common framework)
Your message dated Sun, 14 Mar 2010 11:04:04 + with message-id and subject line Bug#571607: fixed in xdm 1:1.1.9-1 has caused the Debian Bug report #571607, regarding xdm: Please provide a Xreset hook using a common framework to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 571607: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571607 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xdm Version: 1:1.1.8-5 Tags: patch User: debian-...@lists.debian.org UserTags: debian-edu In btw report #230422, I outline the need for a hook into the Xreset phase of the display manager. Please implement support for it in xdm, to make it possible to run scripts when users log out from a xdm session. This patch implement it, by looking for a script /etc/X11/Xreset and running it if it exist. It will hopefully be provided by x11-common when #230422 is fixed. This bug should be blocked by bug #230422. diff -ur xdm-1.1.8/debian/local/Xreset xdm-1.1.8-pere/debian/local/Xreset --- xdm-1.1.8/debian/local/Xreset 2010-02-26 13:24:27.0 +0100 +++ xdm-1.1.8-pere/debian/local/Xreset 2010-02-26 13:26:39.0 +0100 @@ -6,6 +6,11 @@ PATH="$PATH:/usr/bin/X11" +# Use common Xreset framework if it exist +if [ -x /etc/X11/Xreset ] ; then +/etc/X11/Xreset +fi + # Remove the utmp entry for the session. if grep -qs '^use-sessreg' /etc/X11/xdm/xdm.options \ && which sessreg >/dev/null 2>&1; then Happy hacking, -- Petter Reinholdtsen --- End Message --- --- Begin Message --- Source: xdm Source-Version: 1:1.1.9-1 We believe that the bug you reported is fixed in the latest version of xdm, which is due to be installed in the Debian FTP archive: xdm_1.1.9-1.diff.gz to main/x/xdm/xdm_1.1.9-1.diff.gz xdm_1.1.9-1.dsc to main/x/xdm/xdm_1.1.9-1.dsc xdm_1.1.9-1_i386.deb to main/x/xdm/xdm_1.1.9-1_i386.deb xdm_1.1.9.orig.tar.gz to main/x/xdm/xdm_1.1.9.orig.tar.gz A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 571...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Brice Goglin (supplier of updated xdm package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 14 Mar 2010 11:44:38 +0100 Source: xdm Binary: xdm Architecture: source i386 Version: 1:1.1.9-1 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Brice Goglin Description: xdm- X display manager Closes: 571607 Changes: xdm (1:1.1.9-1) unstable; urgency=low . [ Julien Cristau ] * Xreset, Xstartup: don't add /usr/bin/X11 to PATH. * xdm.postrm: remove /etc/X11/default-display-manager on purge if it exists and points to xdm. Fixes piuparts failure. * xdm.prerm uses ps, add Depends on procps. * Update patches 20_xdm_log_timestamp.diff and 21_xdm_log_append.diff. * Drop 01_xdm_include_fcntl.diff, not necessary. * 15_xdm_openfiles.diff: only keep the race condition fix. The other change allowed passing NULL as third argument to openFiles(), and used to have an accompanying change in SetUserAuthorization() which seems to have disappeared since then, so this isn't necessary anymore. * log_sourcing_better.diff: resurrect patch header from the monolith's 078_xdm_log_sourcing_better.diff. * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good reason. Thanks, Colin Watson! * Remove myself from Uploaders * Get rid of obsolete svn $Id$ keywords in the packaging. . [ Brice Goglin ] * New upstream release. + Drop 00_warning_fixes.diff, always entirely fixed upstream. + Drop openlog.diff, irrelevant now. + Drop 03_spelling.diff, 04_xdm_init_log_earlier.diff, 07_xdm_more_debug.diff, 08_xdm_execute_more_debug.diff, 09_xdm_syserrormsg.diff, 10_xdm_better_logging.diff, 11_xdm_strerror.diff, 12_remove_pidfile.diff, applied upstream. * Refresh patches. * Add Xreset hook, closes: #571607. * Bump Standards-Version to 3.8.4, no changes. * Add myself to Uploaders. Checksums-Sha1: ce5b89deb381848035b51c524ae6fc05b638467f 1395 xdm_1.1.9-1.dsc 30fd474b91a2c2b218243c5b181509eb6420d51b 549840 xdm_1.1.9.orig.tar.gz ddfab8f28af
Processed: found 572979 in 7.7-4
Processing commands for cont...@bugs.debian.org: > found 572979 7.7-4 Bug #572979 [libgl1-mesa-dri] libgl1-mesa-dri: screen corruption and mouse slowness after upgrade Bug Marked as found in versions mesa/7.7-4. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.126856420526579.transcr...@bugs.debian.org
Bug#538131: Bug#539099: /usr/bin/compiz: compiz isn't working as a window manager
Do you still experience problems with compiz ABI vs libglib? Brice -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20100314110252.ga28...@loulous.org
Bug#530298: marked as done (compiz: ABI version problems after update)
Your message dated Sun, 14 Mar 2010 12:01:04 +0100 with message-id <20100314110104.ga28...@loulous.org> and subject line Re: Bug#530298: compiz: ABI version problems after update has caused the Debian Bug report #530298, regarding compiz: ABI version problems after update to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 530298: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=530298 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: compiz Version: 1:0.7.9+git20080918.shame-0 Severity: important i have updated compiz few days ago and some very useful for me plugins have stopped to work now. when i start compiz from console and try to start some components i get the following message: * Detected Session: gnome * Searching for installed applications... * NVIDIA on Xorg detected, exporting: __GL_YIELD=NOTHING * Using the GTK Interface * Starting Compiz ... executing: compiz.real --replace --sm-disable --ignore-desktop-hints ccp --loose-binding --indirect-rendering * Launching Settings Manager Loading icons... compiz.real (core) - Error: Plugin 'core' has ABI version '20080828', expected ABI version '20090207'. compiz.real (ring) - Error: InitObject failed compiz.real (core) - Error: Couldn't activate plugin 'ring' cheers, Mark -- System Information: Debian Release: squeeze/sid APT prefers proposed-updates APT policy: (500, 'proposed-updates'), (500, 'testing'), (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.26-1-686-bigmem (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages compiz depends on: ii compiz-core 1:0.7.9+git20080918.shame-0 OpenGL window and compositing mana ii compiz-gnome 1:0.7.9+git20080918.shame-0 OpenGL window and compositing mana ii compiz-plugi 1:0.7.9+git20080918.shame-0 OpenGL window and compositing mana compiz recommends no packages. compiz suggests no packages. -- no debconf information --- End Message --- --- Begin Message --- On Sun, May 24, 2009 at 12:16:30AM +0200, Julien Cristau wrote: > On Sat, May 23, 2009 at 23:29:27 +0200, Mark Poks wrote: > > > Package: compiz > > Version: 1:0.7.9+git20080918.shame-0 > > Severity: important > > > > Versions of packages compiz depends on: > > ii compiz-core 1:0.7.9+git20080918.shame-0 OpenGL window and compositing > > mana > > ii compiz-gnome 1:0.7.9+git20080918.shame-0 OpenGL window and compositing > > mana > > ii compiz-plugi 1:0.7.9+git20080918.shame-0 OpenGL window and compositing > > mana > > > None of the packages listed above come from Debian... No reply, and we have 0.8.4 now, so obsolete anyway. Closing. Brice --- End Message ---
Processed: retitle 573528 to wrong ABI for core plugin
Processing commands for cont...@bugs.debian.org: > retitle 573528 wrong ABI for core plugin Bug #573528 [compiz-core] compiz Changed Bug title to 'wrong ABI for core plugin' from 'compiz' > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.12685646581155.transcr...@bugs.debian.org
Bug#570447: Acknowledgement (x11-common: Optimize speed of Xsession.d scripts)
Hi, I'm probably looking at this a bit late, but... On Fri, Feb 19, 2010 at 06:45:58 +0100, Martin Pitt wrote: > diff -Nru xorg-7.5+1ubuntu2/debian/changelog > xorg-7.5+1ubuntu3/debian/changelog > --- xorg-7.5+1ubuntu2/debian/changelog2010-01-26 00:38:13.0 > +0100 > +++ xorg-7.5+1ubuntu3/debian/changelog2010-02-18 23:14:11.0 > +0100 > @@ -1,3 +1,18 @@ > +xorg (1:7.5+1ubuntu3) lucid; urgency=low > + > + * Improve startup speed of Xsession.d scripts by eliminating all > unnecessary > +external program calls: > +- In 20x11-common_process-args, cat $OPTIONFILE once into a variable and > + use POSIX variable substitution in all scripts instead of calling grep > + for every single test. This looks like a good idea. > +- Use shell built in "type" instead of external "which" to test for > + programs. There's no guarantee that /bin/sh has a 'type' built-in, as far as I can tell from SUSv3 and policy). I'd suggest command -v, but apparently posh doesn't like that either, so I don't know. > +- 30x11-common_xresources: Swap the order of tests to keep the most > + unlikely (like "~/.Xresources exists") outside, to avoid running the > + other tests (like "xrdb exists") on systems which don't use Xresources. > + I'm not sure about this one. x11-common installs a file in /etc/X11/Xresources, so you'll end up looking for xrdb on pretty much every system regardless. And then the reordering means you're looking for it twice (granted, with 'type' the shell can cache the result of the first lookup, but still). Cheers, Julien signature.asc Description: Digital signature
Bug#549863: 855GM support gone upstream?
OoO En ce milieu de nuit étoilée du mercredi 03 mars 2010, vers 04:08, Cyril Brulebois disait : >> i855 is not gone upstream. > Hi folks, > how are things going with an up-to-date sid environment? (Some details > are available the second part of [1].) > 1. http://ikibiki.org/blog/2010/02/28/Where_have_you_been/ With the current 2.6.32 in Sid and everything up-to-date (as of yesterday), it is not very long before a crash happens. However, it is a crash, not some freeze like before. After the crash, if I try to restart X, I get those errors: (WW) intel(0): Disabling Xv because no adaptors could be initialized. (II) intel(0): direct rendering: DRI2 Enabled (--) RandR disabled [...] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer (II) AIGLX: enabled GLX_SGI_make_current_read (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects (II) AIGLX: Loaded and initialized /usr/lib/dri/i915_dri.so (II) GLX: Initialized DRI2 GL provider for screen 0 (II) intel(0): Setting screen physical size to 346 x 260 (II) intel(0): Allocate new frame buffer 1024x768 stride 1024 Fatal server error: Failed to submit batchbuffer: Input/output error This does not happen when I just restart X. Here is a backtrace: Program received signal SIGABRT, Aborted. 0xb7888424 in __kernel_vsyscall () (gdb) bt full #0 0xb7888424 in __kernel_vsyscall () No symbol table info available. #1 0xb75b08e0 in *__GI_raise (sig=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:64 resultvar = pid = -1217622028 selftid = 3632 #2 0xb75b3e15 in *__GI_abort () at abort.c:88 act = {__sigaction_handler = {sa_handler = 0xb739136c, sa_sigaction = 0xb739136c}, sa_mask = {__val = { 3077345268, 3077350336, 3077345268, 3077350336, 173742480, 3216241264, 3076481245, 3216241508, 3077345268, 3077345268, 113, 3216241468, 3076416554, 170658048, 170658048, 112, 173742480, 0, 112, 4222451712, 170658048, 170658149, 170658048, 170658048, 170658160, 170658348, 170658048, 170658348, 0, 0, 0, 0}}, sa_flags = 0, sa_restorer = 0xb76c9c20 } sigs = {__val = {32, 0 }} #3 0xb75a9ace in *__GI___assert_fail (assertion=0xb73ee410 "pI830->batch_ptr != ((void *)0)", file=0xb73ee3d3 "../../src/i830_batchbuffer.h", line=79, function=0xb73ee5c7 "intel_batch_emit_dword") at assert.c:78 buf = 0xa3dca80 "\370\b,\n\360\243l\267/src/i830_batchbuffer.h:79: intel_batch_emit_dword: Assertion `pI830->batch_ptr != ((void *)0)' failed.\nx" errstr = "Unexpected error.\n" #4 0xb73a2c2f in intel_batch_emit_dword (pScrn=0x9e5f208) at ../../src/i830_batchbuffer.h:79 No locals. #5 I830EmitFlush (pScrn=0x9e5f208) at ../../src/i830_accel.c:159 pI830 = 0x9e5f6e0 flags = 17 __func__ = "I830EmitFlush" #6 0xb73a2d3c in I830Sync (pScrn=0x9e5f208) at ../../src/i830_accel.c:142 No locals. #7 0xb73afdbf in I830LeaveVT (scrnIndex=0, flags=0) at ../../src/i830_driver.c:2871 pScrn = 0x9e5f208 pI830 = 0x9e5f6e0 ret = #8 0xb7472079 in glxDRILeaveVT (index=0, flags=0) at ../../glx/glxdri2.c:538 No locals. #9 0x080b7395 in AbortDDX () at ../../../../hw/xfree86/common/xf86Init.c:1248 i = 1 #10 0x080af9bd in AbortServer () at ../../os/log.c:404 No locals. #11 0x080affae in FatalError (f=0xb73ee7d8 "Failed to submit batchbuffer: %s\n") at ../../os/log.c:529 beenhere = 1 #12 0xb73a3ba5 in intel_batch_flush (pScrn=0x9e5f208, flushed=0) at ../../src/i830_batchbuffer.c:207 pI830 = 0x9e5f6e0 ret = #13 0xb73cff4a in i830_uxa_prepare_access (pixmap=0xa52bb38, access=UXA_ACCESS_RW) at ../../src/i830_uxa.c:482 bo = 0xa52bc60 scrn = 0x9e5f208 __func__ = "i830_uxa_prepare_access" #14 0xb73e5154 in uxa_prepare_access (pDrawable=0xa52bb38, access=UXA_ACCESS_RW) at ../../uxa/uxa.c:155 pPixmap = 0xa52bb38 offscreen = #15 0xb73e7243 in uxa_copy_n_to_n (pSrcDrawable=0xa3eb3c8, pDstDrawable=0xa52bb38, pGC=0xa50d1b8, pbox=0xbfb3f724, nbox=1, dx=422, dy=0, reverse=0, upsidedown=0, bitplane=0, closure=0x0) at ../../uxa/uxa-accel.c:482 src_off_x = src_off_y = dst_off_x = dst_off_y = pSrcPixmap = 0xa3eb3c8 pDstPixmap = 0xa52bb38 __FUNCTION__ = "uxa_copy_n_to_n" #16 0x081959cb in miCopyRegion (pSrcDrawable=0xa3eb3c8, pDstDrawable=0xa52bb38, pGC=0xa50d1b8, pDstRegion=0xbfb3f724, dx=422, dy=0, copyProc=0xb73e6f00 , bitPlane=0, closure=0x0) at ../../mi/micopy.c:138 reverse = 0 upsidedown = 2 pbox = nbox = 1 pboxNew1 = 0x9e5f6e0 pboxNew2 = pboxBase = pboxNext = pboxTmp = #17 0x08195eed in miDoCopy (pSrcDrawable=0xa3eb3c8, pDstDrawable=0xa52bb38, pGC=0xa50d1b8, xIn=424, yIn=0, widthSrc=56, heightSrc=56, xOut=2, yOut=0, copyProc=0xb73e6f00
Bug#573264: "Hangcheck timer elapsed..." is back with i915 + 2.6.33
reassign 573264 linux-2.6 2.6.33-1~experimental.2 thank you On Wed, Mar 10, 2010 at 09:20:45AM +0100, Adrian von Bidder wrote: > Package: xserver-xorg-video-intel > Version: 2:2.9.1-2 > Severity: Important > Justification: Frequent crashes on specific hardware > > Heyho! > > Opening a new bug since errors are slightly different from what I've seen > reported with earlier kernel/X. > > Symptom: > X suddenly goes black during some (unspecified) actions (opening menus, > resizing windows, ...); this time instead of a mouse counter there is a text > cursor (non-blinking underline) top left of the screen. > > Changing to text console is not possible. ssh is fine, restarting X is not > possible. > > Messages: > dmesg ends with: > [ 5559.16] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer > elapsed... GPU hung > [ 5559.100019] render error detected, EIR: 0x > [ 5559.100249] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request > returns -5 (awaiting 425747 at 425735) Reassigning to the kernel. Brice -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20100314111021.ga29...@loulous.org
Processed: Re: Bug#573264: "Hangcheck timer elapsed..." is back with i915 + 2.6.33
Processing commands for cont...@bugs.debian.org: > reassign 573264 linux-2.6 2.6.33-1~experimental.2 Bug #573264 [xserver-xorg-video-intel] "Hangcheck timer elapsed..." is back with i915 + 2.6.33 Bug reassigned from package 'xserver-xorg-video-intel' to 'linux-2.6'. Bug No longer marked as found in versions xserver-xorg-video-intel/2:2.9.1-2. Bug #573264 [linux-2.6] "Hangcheck timer elapsed..." is back with i915 + 2.6.33 There is no source info for the package 'linux-2.6' at version '2.6.33-1~experimental.2' with architecture '' Unable to make a source version for version '2.6.33-1~experimental.2' Bug Marked as found in versions 2.6.33-1~experimental.2. > thank you Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.12685650298896.transcr...@bugs.debian.org
Processed: reassign 569659 to xserver-xorg-video-intel
Processing commands for cont...@bugs.debian.org: > reassign 569659 xserver-xorg-video-intel 2:2.9.1-2 Bug #569659 [xserver-xorg] xserver-xorg: xserver doesn't start completely and keyboard is blocked Bug reassigned from package 'xserver-xorg' to 'xserver-xorg-video-intel'. Bug No longer marked as found in versions xorg/1:7.5+3. Bug #569659 [xserver-xorg-video-intel] xserver-xorg: xserver doesn't start completely and keyboard is blocked Bug Marked as found in versions xserver-xorg-video-intel/2:2.9.1-2. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.126856566917319.transcr...@bugs.debian.org
Bug#568207: The different way of doing did not work
retitle 568207 KMS does not work on 82830 CGC reassign 568207 linux-2.6 thank you On Mon, Feb 15, 2010 at 09:57:38PM +0100, Jack.R wrote: > After some hours of computer inactivity, I get a black screen and a > froozen system (need power OFF/power ON) > > I switch to the grub way and it seems OK until now (1 day trial) Looks like KMS doesn't work on i830 then, not very surprising... Reassigning to the kernel. You might want to try a more recent 2.6.32-3 or 2.6.33 kernel package, but I am afraid this chipset doesn't get much support from the intel devs... Brice -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20100314111942.ga29...@loulous.org
Processed: Re: Bug#568207: The different way of doing did not work
Processing commands for cont...@bugs.debian.org: > retitle 568207 KMS does not work on 82830 CGC Bug #568207 [xserver-xorg-video-intel] xserver-xorg-video-intel: After upgrade from 2.9.1-1 to 2.9.1-2, Changed Bug title to 'KMS does not work on 82830 CGC' from 'xserver-xorg-video-intel: After upgrade from 2.9.1-1 to 2.9.1-2,' > reassign 568207 linux-2.6 Bug #568207 [xserver-xorg-video-intel] KMS does not work on 82830 CGC Bug reassigned from package 'xserver-xorg-video-intel' to 'linux-2.6'. Bug No longer marked as found in versions xserver-xorg-video-intel/2:2.9.1-2. > thank you Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.126856559015675.transcr...@bugs.debian.org
Bug#569039: xserver-xorg-video-radeonhd: overscan at 1920x1080
On Tue, Feb 09, 2010 at 11:41:53AM -0500, Decklin Foster wrote: > Package: xserver-xorg-video-radeonhd > Version: 1.3.0-2 > Severity: important > > Since upgrading to 1.3.0, I am experiencing overscan on the HDMI > output at 1920x1080 (native resolution of my TV -- there is no > overscan at lower resolutions). It it probably not more that 25 > pixels, but causes scaling artifacts. (I don't understand how you > can even have overscan with a digital output, but that's what it > looks like.) > > I believe that I had this problem with 1.2.0, and 1.2.5 fixed it, and > now it is broken again, but 1.2.5 has been removed from the archive > and snapshot.debian.net appears to not mirrored anything for the past > 10 months so I am unable to locate packages to roll everything back > and test this. Can you try the radeon driver instead? Either 6.12.5 in unstable or 6.12.191 in experimental with a recent kernel and KMS. Brice -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20100314112205.ga29...@loulous.org
Processed: Re: Bug#568886: Regression: Hsync/Vrefresh incorrectly detected
Processing commands for cont...@bugs.debian.org: > reassign 568886 xserver-xorg-video-radeon 1:6.12.4-2 Bug #568886 [xserver-xorg] Regression: Hsync/Vrefresh incorrectly detected Bug reassigned from package 'xserver-xorg' to 'xserver-xorg-video-radeon'. Bug No longer marked as found in versions xorg/1:7.5+3. Bug #568886 [xserver-xorg-video-radeon] Regression: Hsync/Vrefresh incorrectly detected Bug Marked as found in versions xserver-xorg-video-ati/1:6.12.4-2. > thank you Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.126856588821299.transcr...@bugs.debian.org
Bug#568886: Regression: Hsync/Vrefresh incorrectly detected
reassign 568886 xserver-xorg-video-radeon 1:6.12.4-2 thank you On Mon, Feb 08, 2010 at 07:36:47AM -0800, Ben Wong wrote: > SUMMARY: Horizontal sync and vertical refresh are being given wacky > values when not specified in /etc/X11/xorg.conf or when, as is the > default, xorg.conf does not exist. The most noticable effect of this > is that the screen resolution is very odd and (for people such as > myself) unusable. > > CAUSE: I believe the problem began when debian/testing started > shipping Xorg 7.5 instead of 7.4. It looks suspiciously like the X > server is using DDC values for the S-Video port instead of the VGA > port, but that's just a guess. Please see the attached Xorg.0.log. Can you try upgrading xserver-xorg-video-radeon to 6.12.5 in unstable or even 6.12.191 in experimental with a recent kernel and KMS ? Brice -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20100314112441.ga29...@loulous.org
Bug#573849: xserver-xorg-video-radeon: Be verbose about discarding modes
Package: xserver-xorg-video-radeon Version: 6.12.5-1 Severity: wishlist Since fairly recently (a few months, I think), by Radeon refuses to set my monitor to 1600x1200. Looking at the server log, I found (in random order): (II) RADEON(0): #6: hsize: 1600 vsize 1200 refresh: 60 vid: 16553 (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 31 H max: 81 kHz, PixClock max 170 MHz (II) RADEON(0): Not using mode "1600x1200" (mode clock too high) This makes no sense. It should be able to go up to 170 MHz, but it refuses 162 MHz. In the source I found: /* clocks over 135 MHz have heat issues with DVI on RV100 */ if ((radeon_output->MonType == MT_DFP) && (info->ChipFamily == CHIP_FAMILY_RV100) && (pMode->Clock > 135000)) return MODE_CLOCK_HIGH; This explains why it refuses the mode. Looking at the source should not be required for understanding the log file. Please make it more readable by adding a line about the heat issues. It may also be a good idea to allow overriding the check. I never had any trouble using 1600x1200 with this card and monitor. Thanks, Bas signature.asc Description: Digital signature
Bug#569039: marked as done (xserver-xorg-video-radeonhd: overscan at 1920x1080)
Your message dated Sun, 14 Mar 2010 10:25:07 -0400 with message-id <1268576643-sup-7...@gillespie.rupamsunyata.org> and subject line Re: Bug#569039: xserver-xorg-video-radeonhd: overscan at 1920x1080 has caused the Debian Bug report #569039, regarding xserver-xorg-video-radeonhd: overscan at 1920x1080 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 569039: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=569039 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xserver-xorg-video-radeonhd Version: 1.3.0-2 Severity: important Since upgrading to 1.3.0, I am experiencing overscan on the HDMI output at 1920x1080 (native resolution of my TV -- there is no overscan at lower resolutions). It it probably not more that 25 pixels, but causes scaling artifacts. (I don't understand how you can even have overscan with a digital output, but that's what it looks like.) I believe that I had this problem with 1.2.0, and 1.2.5 fixed it, and now it is broken again, but 1.2.5 has been removed from the archive and snapshot.debian.net appears to not mirrored anything for the past 10 months so I am unable to locate packages to roll everything back and test this. -- System Information: Debian Release: 5.0.3 APT prefers stable APT policy: (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.30.5-linode20 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages xserver-xorg-video-radeonhd depends on: ii libc6 2.7-18 GNU C Library: Shared libraries pn libpci3(no description available) pn xserver-xorg-core (no description available) xserver-xorg-video-radeonhd recommends no packages. xserver-xorg-video-radeonhd suggests no packages. --- End Message --- --- Begin Message --- Excerpts from Brice Goglin's message of Sun Mar 14 07:22:05 -0400 2010: > Can you try the radeon driver instead? Either 6.12.5 in unstable > or 6.12.191 in experimental with a recent kernel and KMS. Actually, I think it may have been the card. I'm currently using radeon with an older card and everything is fine. I'll close this. -- things change. deck...@red-bean.com --- End Message ---
Bug#573849: xserver-xorg-video-radeon: Be verbose about discarding modes
On Sun, Mar 14, 2010 at 7:50 AM, Bas Wijnen wrote: > Package: xserver-xorg-video-radeon > Version: 6.12.5-1 > Severity: wishlist > > Since fairly recently (a few months, I think), by Radeon refuses to set > my monitor to 1600x1200. Looking at the server log, I found (in random > order): > > (II) RADEON(0): #6: hsize: 1600 vsize 1200 refresh: 60 vid: 16553 > (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 > 1201 1204 1250 +hsync +vsync (75.0 kHz) > (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 31 H max: 81 kHz, > PixClock max 170 MHz > (II) RADEON(0): Not using mode "1600x1200" (mode clock too high) > > This makes no sense. It should be able to go up to 170 MHz, but it > refuses 162 MHz. In the source I found: > > /* clocks over 135 MHz have heat issues with DVI on RV100 */ > if ((radeon_output->MonType == MT_DFP) && > (info->ChipFamily == CHIP_FAMILY_RV100) && > (pMode->Clock > 135000)) > return MODE_CLOCK_HIGH; > > This explains why it refuses the mode. > > Looking at the source should not be required for understanding the log > file. Please make it more readable by adding a line about the heat > issues. It may also be a good idea to allow overriding the check. I > never had any trouble using 1600x1200 with this card and monitor. You can start the xserver with higher verbosity levels and it will tell you why modes were rejected. You can also manually specify modelines in your xorg.conf or at run time using xrandr to override what the driver/xserver's selections. Alex -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/a728f9f91003140821x43da871bx7a4c50c53190a...@mail.gmail.com
xterm 255-1 MIGRATED to testing
FYI: The status of the xterm source package in Debian's testing distribution has changed. Previous version: 253-1 Current version: 255-1 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See http://release.debian.org/testing-watch/ for more information. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqqqc-0003xp...@ries.debian.org
Processed: your mail
Processing commands for cont...@bugs.debian.org: > unblock 565188 by 568162 Bug #565188 [plymouth] please package 0.8 pre-release Bug #573582 [plymouth] please package 0.8 pre-release Was blocked by: 568162 Removed blocking bug(s) of 565188: 568162 Was blocked by: 568162 Removed blocking bug(s) of 573582: 568162 > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.126858956326075.transcr...@bugs.debian.org
Processed: tagging 546714, tagging 569103, tagging 568168
Processing commands for cont...@bugs.debian.org: > tags 546714 help upstream Bug #546714 [xserver-xorg-video-sis] sis: color issues with 0.10.1 and server 1.6 Added tag(s) upstream and help. > tags 569103 help Bug #569103 [xserver-xorg-video-v4l] Uses obsolete V4L1 API Added tag(s) help. > tags 568168 help Bug #568168 [xserver-xorg-video-nouveau] xserver-xorg-video-nouveau: fails to build with X server 1.7 Bug #573294 [xserver-xorg-video-nouveau] can't install on powerpc Added tag(s) help. Added tag(s) help. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.126858995730150.transcr...@bugs.debian.org
xserver-xorg-video-tga: Changes to 'debian-unstable'
debian/changelog | 12 debian/control |8 2 files changed, 12 insertions(+), 8 deletions(-) New commits: commit 8c08367db03220e59fd6932a7541f6a64bff23e8 Author: Brice Goglin Date: Sun Mar 14 19:43:00 2010 +0100 Prepare changelog for upload diff --git a/debian/changelog b/debian/changelog index 76f8d13..d4f52d6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -xserver-xorg-video-tga (1:1.2.1-1) UNRELEASED; urgency=low +xserver-xorg-video-tga (1:1.2.1-1) unstable; urgency=low [ Timo Aaltonen ] * New upstream release, closes: #569423. @@ -11,8 +11,9 @@ xserver-xorg-video-tga (1:1.2.1-1) UNRELEASED; urgency=low [ Brice Goglin ] * Bump Standards-Version to 3.8.4, no changes needed. * Drop the XS- prefix from Vcs-* control fields. + * Add myself to Uploaders. - -- Timo Aaltonen Sat, 05 Dec 2009 11:01:22 +0200 + -- Brice Goglin Sun, 14 Mar 2010 19:42:54 +0100 xserver-xorg-video-tga (1:1.2.0-1) unstable; urgency=low diff --git a/debian/control b/debian/control index e8c9255..228bc5c 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: xserver-xorg-video-tga Section: x11 Priority: optional Maintainer: Debian X Strike Force -Uploaders: David Nusinow +Uploaders: David Nusinow , Brice Goglin Build-Depends: debhelper (>= 5.0.0), automake, commit 7e42d9f1b45f71db2bf217b26396ae93c6fd2d3a Author: Brice Goglin Date: Sun Mar 14 19:41:53 2010 +0100 Drop the XS- prefix from Vcs-* control fields. diff --git a/debian/changelog b/debian/changelog index 486ba97..76f8d13 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,7 @@ xserver-xorg-video-tga (1:1.2.1-1) UNRELEASED; urgency=low [ Brice Goglin ] * Bump Standards-Version to 3.8.4, no changes needed. + * Drop the XS- prefix from Vcs-* control fields. -- Timo Aaltonen Sat, 05 Dec 2009 11:01:22 +0200 diff --git a/debian/control b/debian/control index 733a371..e8c9255 100644 --- a/debian/control +++ b/debian/control @@ -18,8 +18,8 @@ Build-Depends: x11proto-randr-dev, x11proto-render-dev Standards-Version: 3.8.4 -XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-tga -XS-Vcs-Browser: http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-tga.git +Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-tga +Vcs-Browser: http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-tga.git Package: xserver-xorg-video-tga Architecture: alpha amd64 arm armeb armel hppa hurd-i386 i386 ia64 kfreebsd-i386 m68k mips mipsel netbsd-i386 powerpc commit 51e986271c7505b97c310ebda951de81722c36c1 Author: Brice Goglin Date: Sun Mar 14 19:41:19 2010 +0100 Bump Standards-Version to 3.8.4 diff --git a/debian/changelog b/debian/changelog index 78d8a75..486ba97 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,13 +2,15 @@ xserver-xorg-video-tga (1:1.2.1-1) UNRELEASED; urgency=low [ Timo Aaltonen ] * New upstream release, closes: #569423. - * Bump Standards-Version to 3.8.3. * Build against Xserver 1.7. [ Julien Cristau ] * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good reason. Thanks, Colin Watson! + [ Brice Goglin ] + * Bump Standards-Version to 3.8.4, no changes needed. + -- Timo Aaltonen Sat, 05 Dec 2009 11:01:22 +0200 xserver-xorg-video-tga (1:1.2.0-1) unstable; urgency=low diff --git a/debian/control b/debian/control index d56bee4..733a371 100644 --- a/debian/control +++ b/debian/control @@ -17,7 +17,7 @@ Build-Depends: x11proto-fonts-dev, x11proto-randr-dev, x11proto-render-dev -Standards-Version: 3.8.3 +Standards-Version: 3.8.4 XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-tga XS-Vcs-Browser: http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-tga.git commit 822a82ec46b3f76c93c05847841e32f90264af5c Author: Brice Goglin Date: Sun Mar 14 19:40:08 2010 +0100 Add bug closer diff --git a/debian/changelog b/debian/changelog index d3d893a..78d8a75 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,7 @@ xserver-xorg-video-tga (1:1.2.1-1) UNRELEASED; urgency=low [ Timo Aaltonen ] - * New upstream release. + * New upstream release, closes: #569423. * Bump Standards-Version to 3.8.3. * Build against Xserver 1.7. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqspv-0007he...@alioth.debian.org
xserver-xorg-video-tga: Changes to 'refs/tags/xserver-xorg-video-tga-1_1.2.1-1'
Tag 'xserver-xorg-video-tga-1_1.2.1-1' created by Brice Goglin at 2010-03-14 18:46 + Tagging upload of xserver-xorg-video-tga 1:1.2.1-1 to unstable. Changes since xserver-xorg-video-tga-1_1.2.0-1: Adam Jackson (1): Remove useless loader symbol lists. Brice Goglin (4): Add bug closer Bump Standards-Version to 3.8.4 Drop the XS- prefix from Vcs-* control fields. Prepare changelog for upload Dave Airlie (3): tga: update for resources/RAC API removal tga: change to using ABI version check bump to 1.2.1 David Nusinow (1): Add README.source Julien Cristau (13): Add unistd.h include for getpagesize() and usleep() xsfbs: don't run dpkg --print-installation-architecture Kill custom readlink function xsfbs.sh: remove unused check_symlinks_and_{bomb,warn} xsfbs.sh: remove unused analyze_path xsfbs.sh: remove unused maplink function xsfbs.sh: remove unused find_culprits function xsfbs.sh: remove unused reject_whitespace function xsfbs.mk: no need for shlibs.local xsfbs.sh: fix typo and remove svn keyword xsfbs.mk: kill obsolete DEFAULT_DCRESOLUTIONS and SOURCE_DIR usage xsfbs.mk: remove more obsolete code Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good reason. Thanks, Colin Watson! Peter Hutterer (1): Update to xextproto 7.1 support. Timo Aaltonen (6): Merge commit 'xf86-video-tga-1.2.1' into debian-unstable Merge branch 'debian-unstable' of ../../xsfbs into debian-unstable Update the changelogs. Bump Standards-Version to 3.8.3. Build against Xserver 1.7. Fix the changelog. --- ChangeLog | 41 configure.ac |6 + debian/README.source | 73 ++ debian/changelog | 17 +++ debian/control| 10 +- debian/rules | 10 +- debian/xsfbs/xsfbs.mk | 21 debian/xsfbs/xsfbs.sh | 245 -- src/tga_driver.c | 59 ++-- 9 files changed, 162 insertions(+), 320 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqsq1-0007vu...@alioth.debian.org
libxmu: Changes to 'debian-unstable'
debian/changelog |2 ++ debian/rules | 25 - 2 files changed, 14 insertions(+), 13 deletions(-) New commits: commit 1bca2ffd31fa433a07e94413fe86805479bde11a Author: Julien Cristau Date: Sun Mar 14 19:42:45 2010 +0100 Don't pass both -s and -Nfoo/-pfoo to dh_strip. This resulted in an empty libxmuu1-dbg. Thanks to Luca Falavigna for the report. diff --git a/debian/changelog b/debian/changelog index 28b695f..7f2ea30 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ libxmu (2:1.0.5-2) UNRELEASED; urgency=low * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no good reason. Thanks, Colin Watson! * Remove myself from Uploaders + * Don't pass both -s and -Nfoo/-pfoo to dh_strip. This resulted in an empty +libxmuu1-dbg. Thanks to Luca Falavigna for the report. -- Julien Cristau Sat, 16 Jan 2010 16:47:39 + diff --git a/debian/rules b/debian/rules index 881508a..8743212 100755 --- a/debian/rules +++ b/debian/rules @@ -70,26 +70,25 @@ install: build cd build && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install # Build architecture-dependent files here. -binary-arch: DH_OPTIONS=-s binary-arch: install dh_testdir dh_testroot - dh_installdocs - dh_install --sourcedir=debian/tmp --list-missing -Xusr/include -X.la - dh_installchangelogs ChangeLog - dh_link + dh_installdocs -s + dh_install -s --sourcedir=debian/tmp --list-missing -Xusr/include -X.la + dh_installchangelogs -s ChangeLog + dh_link -s dh_strip -Nlibxmu6 -Nlibxmuu1 dh_strip -plibxmu6 --dbg-package=libxmu6-dbg dh_strip -plibxmuu1 --dbg-package=libxmuu1-dbg - dh_compress - dh_fixperms - dh_makeshlibs - dh_shlibdeps - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb + dh_compress -s + dh_fixperms -s + dh_makeshlibs -s + dh_shlibdeps -s + dh_installdeb -s + dh_gencontrol -s + dh_md5sums -s + dh_builddeb -s # Build architecture-independent files here. binary-indep: DH_OPTIONS=-i -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqsqq-00013x...@alioth.debian.org
Processing of xserver-xorg-video-tga_1.2.1-1_i386.changes
xserver-xorg-video-tga_1.2.1-1_i386.changes uploaded successfully to localhost along with the files: xserver-xorg-video-tga_1.2.1-1.dsc xserver-xorg-video-tga_1.2.1.orig.tar.gz xserver-xorg-video-tga_1.2.1-1.diff.gz xserver-xorg-video-tga_1.2.1-1_i386.deb Greetings, Your Debian queue daemon (running on host ries.debian.org) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqsr4-0003sp...@ries.debian.org
xserver-xorg-video-tga_1.2.1-1_i386.changes ACCEPTED
Accepted: xserver-xorg-video-tga_1.2.1-1.diff.gz to main/x/xserver-xorg-video-tga/xserver-xorg-video-tga_1.2.1-1.diff.gz xserver-xorg-video-tga_1.2.1-1.dsc to main/x/xserver-xorg-video-tga/xserver-xorg-video-tga_1.2.1-1.dsc xserver-xorg-video-tga_1.2.1-1_i386.deb to main/x/xserver-xorg-video-tga/xserver-xorg-video-tga_1.2.1-1_i386.deb xserver-xorg-video-tga_1.2.1.orig.tar.gz to main/x/xserver-xorg-video-tga/xserver-xorg-video-tga_1.2.1.orig.tar.gz Override entries for your package: xserver-xorg-video-tga_1.2.1-1.dsc - source x11 xserver-xorg-video-tga_1.2.1-1_i386.deb - optional x11 Announcing to debian-devel-chan...@lists.debian.org Closing bugs: 569423 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqt4h-0004yc...@ries.debian.org
Bug#569423: marked as done (xserver-xorg-video-tga: FTBFS: ../../src/tga_driver.c:41:27: error: xf86Resources.h: No such file or directory)
Your message dated Sun, 14 Mar 2010 19:02:07 + with message-id and subject line Bug#569423: fixed in xserver-xorg-video-tga 1:1.2.1-1 has caused the Debian Bug report #569423, regarding xserver-xorg-video-tga: FTBFS: ../../src/tga_driver.c:41:27: error: xf86Resources.h: No such file or directory to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 569423: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=569423 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Source: xserver-xorg-video-tga Version: 1:1.2.0-1 Severity: serious User: debian...@lists.debian.org Usertags: qa-ftbfs-20100211 qa-ftbfs Justification: FTBFS on amd64 Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part: > /bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. > -I../../src -I..-fvisibility=hidden -I/usr/include/xorg > -I/usr/include/pixman-1 -Wall -g -O2 -MT tga_seg.lo -MD -MP -MF > .deps/tga_seg.Tpo -c -o tga_seg.lo ../../src/tga_seg.c > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../src -I.. > -fvisibility=hidden -I/usr/include/xorg -I/usr/include/pixman-1 -Wall -g -O2 > -MT BT463ramdac.lo -MD -MP -MF .deps/BT463ramdac.Tpo -c > ../../src/BT463ramdac.c -fPIC -DPIC -o .libs/BT463ramdac.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../src -I.. > -fvisibility=hidden -I/usr/include/xorg -I/usr/include/pixman-1 -Wall -g -O2 > -MT BTramdac.lo -MD -MP -MF .deps/BTramdac.Tpo -c ../../src/BTramdac.c -fPIC > -DPIC -o .libs/BTramdac.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../src -I.. > -fvisibility=hidden -I/usr/include/xorg -I/usr/include/pixman-1 -Wall -g -O2 > -MT IBM561ramdac.lo -MD -MP -MF .deps/IBM561ramdac.Tpo -c > ../../src/IBM561ramdac.c -fPIC -DPIC -o .libs/IBM561ramdac.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../src -I.. > -fvisibility=hidden -I/usr/include/xorg -I/usr/include/pixman-1 -Wall -g -O2 > -MT tga_cursor.lo -MD -MP -MF .deps/tga_cursor.Tpo -c ../../src/tga_cursor.c > -fPIC -DPIC -o .libs/tga_cursor.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../src -I.. > -fvisibility=hidden -I/usr/include/xorg -I/usr/include/pixman-1 -Wall -g -O2 > -MT tga_accel.lo -MD -MP -MF .deps/tga_accel.Tpo -c ../../src/tga_accel.c > -fPIC -DPIC -o .libs/tga_accel.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../src -I.. > -fvisibility=hidden -I/usr/include/xorg -I/usr/include/pixman-1 -Wall -g -O2 > -MT tga_dac.lo -MD -MP -MF .deps/tga_dac.Tpo -c ../../src/tga_dac.c -fPIC > -DPIC -o .libs/tga_dac.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../src -I.. > -fvisibility=hidden -I/usr/include/xorg -I/usr/include/pixman-1 -Wall -g -O2 > -MT ICS1562.lo -MD -MP -MF .deps/ICS1562.Tpo -c ../../src/ICS1562.c -fPIC > -DPIC -o .libs/ICS1562.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../src -I.. > -fvisibility=hidden -I/usr/include/xorg -I/usr/include/pixman-1 -Wall -g -O2 > -MT tga_line.lo -MD -MP -MF .deps/tga_line.Tpo -c ../../src/tga_line.c -fPIC > -DPIC -o .libs/tga_line.o > mv -f .deps/ICS1562.Tpo .deps/ICS1562.Plo > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../src -I.. > -fvisibility=hidden -I/usr/include/xorg -I/usr/include/pixman-1 -Wall -g -O2 > -MT tga_seg.lo -MD -MP -MF .deps/tga_seg.Tpo -c ../../src/tga_seg.c -fPIC > -DPIC -o .libs/tga_seg.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../src -I.. > -fvisibility=hidden -I/usr/include/xorg -I/usr/include/pixman-1 -Wall -g -O2 > -MT tga_driver.lo -MD -MP -MF .deps/tga_driver.Tpo -c ../../src/tga_driver.c > -fPIC -DPIC -o .libs/tga_driver.o > mv -f .deps/tga_cursor.Tpo .deps/tga_cursor.Plo > mv -f .deps/BTramdac.Tpo .deps/BTramdac.Plo > mv -f .deps/BT463ramdac.Tpo .deps/BT463ramdac.Plo > mv -f .deps/tga_dac.Tpo .deps/tga_dac.Plo > ../../src/tga_driver.c:41:27: error: xf86Resources.h: No such file or > directory > ../../src/tga_driver.c:57:21: error: xf86RAC.h: No such file or directory > In file included from ../../src/tga_driver.c:68: > /usr/include/X11/extensions/xf86dgastr.h:1:2: warning: #warning "xf86dgastr.h > is obsolete and may be removed in the future." > /usr/include/X11/extensions/xf86dgastr.h:2:2: warning: #warning "include > for the protocol defines." > ../../src/tga_driver.c:73:33: error: X11/extensions/dpms.h: No such file or > directory > ../../src/tga_driver.c: In function 'tgaSetup': > ../../src/tga_driver.c:240: warning: implicit declaration of function > 'LoaderRefSymLists' > ../../src/tga_driver.c: In function 'TGAPreInit': > ../../src/tga_driver.c:482: warning: impli
xterm: Changes to 'debian-unstable'
debian/changelog |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) New commits: commit 7e127ea18eaab47f4ea859fc62b9b482709a2502 Author: Julien Cristau Date: Sun Mar 14 20:15:19 2010 +0100 Prepare changelog for upload diff --git a/debian/changelog b/debian/changelog index a0553df..57b3d7b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -xterm (256-1) UNRELEASED; urgency=low +xterm (256-1) unstable; urgency=low * New upstream release. * Delete patch 901_xterm_manpage.diff, the utmp/wtmp paths are now set in @@ -8,7 +8,7 @@ xterm (256-1) UNRELEASED; urgency=low xterm(1). * Also document the libxkbfile-dev and libutempter-dev build-deps. - -- Julien Cristau Sun, 07 Mar 2010 11:35:23 +0100 + -- Julien Cristau Sun, 14 Mar 2010 20:15:13 +0100 xterm (255-1) unstable; urgency=low -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqtmk-0003nr...@alioth.debian.org
xterm: Changes to 'refs/tags/xterm-256-1'
Tag 'xterm-256-1' created by Julien Cristau at 2010-03-14 19:20 + Tagging upload of xterm 256-1 to unstable. -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.10 (GNU/Linux) iQIcBAABCAAGBQJLnTcHAAoJEDEBgAUJBeQMejIQAOh77SS9T2uoplXD1Sw6+fH7 5K52bmdZ0U/KSj/q8Ysd6ibwAJEBP5Q7Z4HH53LelZQqN6YZnvmkpXaRbInQ7Zil Dm71IQqZkWU+sTdOf2q8GsxlMvg38910jnlEocl+ZBFSeGQupGiGALC87v2tyBdI 1xuVPikPCoT/tR54hvav2fzCali333ysYzRNmcCtrBrubu8sYeJmxo86etzGLa6o HvgQYOKNnmNj7Ny9LV/dwnRaAX6yEUPqe2reCV5IiY8EcKKx3Njo8f/7f0kyjEm+ D7S8t/kwnx4cQhRj8eVLBkDA4pXa71t5dCpLWZX7PWRgGl9rwy1itcdgAirmtblP RuDeds2KW3VHs6rudXFZo0I8vc4WdfS/RB0wKC65I/OKEAUxo90TDy0q6PyNAQBI 7HYxDdnjDX0DPNQ/oo7Ig0yjCXIdoDEzU8NEfw2UdxXwny+8BBaFMHg6el86XVA1 HcsXl/cqyr1fsxC3mlKcO/50uhl2CVffNhC5gY+Azk0Ym+AjKn9XZUEWr1zwol8F Ho6Ij7hHne+90k1riRF7QG74LpKCQSHGQhO2v8pmym3ecNnoXQ5IHJpOFjcjg0YT 6Y6B7SosfUwEKC8vF6yHvsJLFLMpb37gXwJBXFcyESxmaTXhOT+Q2AuAe97hnHNn rzO+FYVdjwizerozLXU6 =LpaP -END PGP SIGNATURE- Changes since xterm-255-1: Julien Cristau (7): Import xterm 256 Merge branch 'upstream-unstable' into debian-unstable Bump changelog Delete patch 901_xterm_manpage.diff Refresh patches 902 and 904. Add build dependency on xorg-docs-core to fix the reference to X(7) in xterm(1). Prepare changelog for upload --- KOI8RXTerm.ad |6 +- Makefile.in | 85 -- UXTerm.ad |6 +- debian/changelog | 12 debian/control|9 +++ debian/patches/901_xterm_manpage.diff | 22 debian/patches/902_windowops.diff |2 debian/patches/904_fontops.diff |2 debian/patches/series |1 minstall.sh | 18 +++ misc.c|4 - sinstall.sh |6 +- uxterm.desktop|4 - version.h |4 - xterm.desktop |4 - xterm.log.html| 34 + xterm.man |4 - 17 files changed, 144 insertions(+), 79 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqtmo-0003o9...@alioth.debian.org
Processing of xterm_256-1_i386.changes
xterm_256-1_i386.changes uploaded successfully to localhost along with the files: xterm_256-1.dsc xterm_256.orig.tar.gz xterm_256-1.diff.gz xterm_256-1_i386.deb Greetings, Your Debian queue daemon (running on host ries.debian.org) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqtoy-0005bb...@ries.debian.org
xterm_256-1_i386.changes ACCEPTED
Accepted: xterm_256-1.diff.gz to main/x/xterm/xterm_256-1.diff.gz xterm_256-1.dsc to main/x/xterm/xterm_256-1.dsc xterm_256-1_i386.deb to main/x/xterm/xterm_256-1_i386.deb xterm_256.orig.tar.gz to main/x/xterm/xterm_256.orig.tar.gz Override entries for your package: xterm_256-1.dsc - source x11 xterm_256-1_i386.deb - optional x11 Announcing to debian-devel-chan...@lists.debian.org Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqty3-0006pe...@ries.debian.org
Bug#573849: xserver-xorg-video-radeon: Be verbose about discarding modes
On Sun, Mar 14, 2010 at 10:21:02AM -0500, Alex Deucher wrote: > > /* clocks over 135 MHz have heat issues with DVI on RV100 */ > > if ((radeon_output->MonType == MT_DFP) && > > (info->ChipFamily == CHIP_FAMILY_RV100) && > > (pMode->Clock > 135000)) > > return MODE_CLOCK_HIGH; > > > > This explains why it refuses the mode. > > > > Looking at the source should not be required for understanding the log > > file. Please make it more readable by adding a line about the heat > > issues. It may also be a good idea to allow overriding the check. I > > never had any trouble using 1600x1200 with this card and monitor. > > You can start the xserver with higher verbosity levels and it will > tell you why modes were rejected. I didn't test, but looking at the source I find it hard to believe that there will be more information than "mode clock too high". After all, the rejecting code (which I quoted above) doesn't provide any more information than that. > You can also manually specify modelines in your xorg.conf or at run > time using xrandr to override what the driver/xserver's selections. That might work, but I'm not sure. This is the code when a modeline is already present (in this case it's a default modeline), and is checked for validity. I expect that check to be performed when specifying it manually as well. But I didn't test, because I recompiled the package with the check removed, and so I have a workaround already. Thanks, Bas signature.asc Description: Digital signature
Bug#573849: xserver-xorg-video-radeon: Be verbose about discarding modes
On Sun, Mar 14, 2010 at 02:46:15PM -0500, Alex Deucher wrote: > > I didn't test, but looking at the source I find it hard to believe that > > there will be more information than "mode clock too high". After all, > > the rejecting code (which I quoted above) doesn't provide any more > > information than that. > > yeah, that's what it will tell you, but I that's all you should need. It now says "The maximum I can handle is 170 MHz, this mode is 162 MHz, I can't handle this one because the clock is too high". It doesn't make sense. ;-) > >> You can also manually specify modelines in your xorg.conf or at run > >> time using xrandr to override what the driver/xserver's selections. > > It will work. The point of manual modelines is that you can use them > to override what the driver/xserver decides or to add modes that may > not be in your monitor's edid. If you specify one, then presumably > you know what you are doing. Ok, that sounds good. Thanks, Bas signature.asc Description: Digital signature
Processed: Re: kdm: logging out fails
Processing commands for cont...@bugs.debian.org: > reassign 484312 xserver-xorg Bug #484312 [kdm] kdm: logging out fails Bug reassigned from package 'kdm' to 'xserver-xorg'. Bug No longer marked as found in versions kdebase/4:3.5.9.dfsg.1-2 and kdebase-workspace/4:4.3.2-2. > affects 484312 + kdm Bug #484312 [xserver-xorg] kdm: logging out fails Added indication that 484312 affects kdm > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.12685970621481.transcr...@bugs.debian.org
Bug#573849: xserver-xorg-video-radeon: Be verbose about discarding modes
On Sun, Mar 14, 2010 at 2:32 PM, Bas Wijnen wrote: > On Sun, Mar 14, 2010 at 10:21:02AM -0500, Alex Deucher wrote: >> > /* clocks over 135 MHz have heat issues with DVI on RV100 */ >> > if ((radeon_output->MonType == MT_DFP) && >> > (info->ChipFamily == CHIP_FAMILY_RV100) && >> > (pMode->Clock > 135000)) >> > return MODE_CLOCK_HIGH; >> > >> > This explains why it refuses the mode. >> > >> > Looking at the source should not be required for understanding the log >> > file. Please make it more readable by adding a line about the heat >> > issues. It may also be a good idea to allow overriding the check. I >> > never had any trouble using 1600x1200 with this card and monitor. >> >> You can start the xserver with higher verbosity levels and it will >> tell you why modes were rejected. > > I didn't test, but looking at the source I find it hard to believe that > there will be more information than "mode clock too high". After all, > the rejecting code (which I quoted above) doesn't provide any more > information than that. yeah, that's what it will tell you, but I that's all you should need. > >> You can also manually specify modelines in your xorg.conf or at run >> time using xrandr to override what the driver/xserver's selections. > > That might work, but I'm not sure. This is the code when a modeline is > already present (in this case it's a default modeline), and is checked > for validity. I expect that check to be performed when specifying it > manually as well. > > But I didn't test, because I recompiled the package with the check > removed, and so I have a workaround already. > It will work. The point of manual modelines is that you can use them to override what the driver/xserver decides or to add modes that may not be in your monitor's edid. If you specify one, then presumably you know what you are doing. Running TMDS above 135 Mhz on those cards is out of spec, so you are on your own, it might work for you, but will not work for others (in fact the check was added as a bug fix). Alex > Thanks, > Bas > > -BEGIN PGP SIGNATURE- > Version: GnuPG v1.4.9 (GNU/Linux) > > iEYEARECAAYFAkudOdUACgkQFShl+2J8z5UqUQCgi4EPrlPC07IPeA7bYJAO+qbT > AQ4AoK3FIZp1oqj4XBFo+dCVHb+IFW1u > =MOx4 > -END PGP SIGNATURE- > > -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/a728f9f91003141246y90b8038t9dc6a0f31b240...@mail.gmail.com
Bug#573849: xserver-xorg-video-radeon: Be verbose about discarding modes
On Sun, Mar 14, 2010 at 2:50 PM, Bas Wijnen wrote: > On Sun, Mar 14, 2010 at 02:46:15PM -0500, Alex Deucher wrote: >> > I didn't test, but looking at the source I find it hard to believe that >> > there will be more information than "mode clock too high". After all, >> > the rejecting code (which I quoted above) doesn't provide any more >> > information than that. >> >> yeah, that's what it will tell you, but I that's all you should need. > > It now says "The maximum I can handle is 170 MHz, this mode is 162 MHz, > I can't handle this one because the clock is too high". It doesn't make > sense. ;-) Well, the monitor says it can handle a max of 170 Mhz, but in this case, the gpu cannot. It can be a bit confusing. Alex > >> >> You can also manually specify modelines in your xorg.conf or at run >> >> time using xrandr to override what the driver/xserver's selections. >> >> It will work. The point of manual modelines is that you can use them >> to override what the driver/xserver decides or to add modes that may >> not be in your monitor's edid. If you specify one, then presumably >> you know what you are doing. > > Ok, that sounds good. > > Thanks, > Bas > > -BEGIN PGP SIGNATURE- > Version: GnuPG v1.4.9 (GNU/Linux) > > iEYEARECAAYFAkudPgEACgkQFShl+2J8z5VCBgCgyVxTHc8ncXOOklU+OH0haUJh > c+QAoL6sCA5cJOaHoa2+3jOibgu392US > =PEo7 > -END PGP SIGNATURE- > > -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/a728f9f91003141256t227a3a26s8fc910fb3a453...@mail.gmail.com
Bug#484312: kdm: logging out fails
tag 484312 moreinfo kthxbye On Sun, Mar 14, 2010 at 21:04:11 +0100, Eckhart Wörner wrote: > reassign 484312 xserver-xorg > affects 484312 + kdm > thanks > > According to the kdm maintainer (see > https://bugs.kde.org/show_bug.cgi?id=202629#c12 ) this is a bug in the X > server, therefore reassigning. I'm not sure what leads you to that conclusion, considering that this bug report (#484312) is in german, and contains 0 information about the issue. I suppose it could be a bug in the graphics driver, but there's no way to tell... Cheers, Julien signature.asc Description: Digital signature
Processed: Re: Bug#484312: kdm: logging out fails
Processing commands for cont...@bugs.debian.org: > tag 484312 moreinfo Bug #484312 [xserver-xorg] kdm: logging out fails Added tag(s) moreinfo. > kthxbye Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.126859831921492.transcr...@bugs.debian.org
Bug#484312: kdm: logging out fails
On Sun, Mar 14, 2010 at 21:53:35 +0100, Eckhart Wörner wrote: > Hi, > > > > According to the kdm maintainer (see > > > https://bugs.kde.org/show_bug.cgi?id=202629#c12 ) this is a bug in the X > > > server, therefore reassigning. > > > > I'm not sure what leads you to that conclusion, considering that this > > bug report (#484312) is in german, and contains 0 information about the > > issue. I suppose it could be a bug in the graphics driver, but there's > > no way to tell... > > When reassigning I mainly followed the close message of the linked-to KDE bug > report which contains most of the relevant information. > The bug is reported to appear at least with intel and nvidia drivers, so at > least it cannot be isolated to a single graphics driver. > I can't see any evidence that that kde bug has anything to do with 484312, what's the link you're talking about? In any case we'd probably have to see X logs from the submitter. Alex, are you still having issues logging out from kdm as you did in 2008 when you filed http://bugs.debian.org/484312 ? Cheers, Julien signature.asc Description: Digital signature
Bug#484312: kdm: logging out fails
Hi, > > According to the kdm maintainer (see > > https://bugs.kde.org/show_bug.cgi?id=202629#c12 ) this is a bug in the X > > server, therefore reassigning. > > I'm not sure what leads you to that conclusion, considering that this > bug report (#484312) is in german, and contains 0 information about the > issue. I suppose it could be a bug in the graphics driver, but there's > no way to tell... When reassigning I mainly followed the close message of the linked-to KDE bug report which contains most of the relevant information. The bug is reported to appear at least with intel and nvidia drivers, so at least it cannot be isolated to a single graphics driver. Eckhart -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/201003142153.36175.ewoer...@kde.org
Bug#484312: kdm: logging out fails
julien is still right. there is absolutely zero relevant information. to confirm an x bug, one would need at minimum /var/log/Xorg.0.log (right after being dropped to the console). whether it is another x server regeneration crash can be verified by trying TerminateServer=true as detailed in the various quotes and links. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20100314210523.ga8...@ugly.local
Bug#573899: x11-common: checks allow-user-session instead of allow-user-xsession
Package: x11-common Version: 1:7.5+4 Severity: grave File: /etc/X11/Xsession.d/50x11-common_determine-startup The file /etc/X11/Xsession.d/50x11-common_determine-startup checks for option allow-user-session whereas the correct option name (according to Xsession.options and man Xsession.options) is allow-user-xsession. As a result user's xsession file isn't executed. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: i386 (x86_64) Kernel: Linux 2.6.32-3-amd64 (SMP w/2 CPU cores) Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages x11-common depends on: ii debconf [debconf-2.0] 1.5.28 Debian configuration management sy ii debianutils 3.2.2 Miscellaneous utilities specific t ii lsb-base 3.2-23 Linux Standard Base 3.2 init scrip x11-common recommends no packages. x11-common suggests no packages. -- debconf information: x11-common/xwrapper/allowed_users: Console Users Only x11-common/experimental_packages: x11-common/xwrapper/actual_allowed_users: console -- Дмитрий Падучих
xorg: Changes to 'debian-unstable'
debian/changelog |6 ++ debian/local/Xsession.d/50x11-common_determine-startup |4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) New commits: commit 094b3111bf3374dca6f364dd213941b79d91800b Author: Brice Goglin Date: Sun Mar 14 22:43:46 2010 +0100 Fix typo in Xsession.d/50x11-common_determine-startup diff --git a/debian/changelog b/debian/changelog index 7a58436..59e409d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xorg (1:7.5+5) UNRELEASED; urgency=low + + * Fix typo in Xsession.d/50x11-common_determine-startup, closes: #573899. + + -- Brice Goglin Sun, 14 Mar 2010 22:41:20 +0100 + xorg (1:7.5+4) unstable; urgency=low * Add Xreset and Xreset.d support, closes: #230422. diff --git a/debian/local/Xsession.d/50x11-common_determine-startup b/debian/local/Xsession.d/50x11-common_determine-startup index 4ed7a32..cd9e4d3 100644 --- a/debian/local/Xsession.d/50x11-common_determine-startup +++ b/debian/local/Xsession.d/50x11-common_determine-startup @@ -7,7 +7,7 @@ # executable, fall back to looking for a user's custom X session script, if # allowed by the options file. if [ -z "$STARTUP" ]; then - if has_option allow-user-session; then + if has_option allow-user-xsession; then for STARTUPFILE in "$USERXSESSION" "$ALTUSERXSESSION"; do if [ -e "$STARTUPFILE" ]; then if [ -x "$STARTUPFILE" ]; then @@ -36,7 +36,7 @@ fi # If we still have not found a startup program, give up. if [ -z "$STARTUP" ]; then ERRMSG="unable to start X session ---" - if has_option allow-user-session; then + if has_option allow-user-xsession; then ERRMSG="$ERRMSG no \"$USERXSESSION\" file, no \"$ALTUSERXSESSION\" file," fi errormsg "$ERRMSG no session managers, no window managers, and no terminal" \ -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqvbz-wq...@alioth.debian.org
xorg: Changes to 'debian-unstable'
debian/changelog |5 +++-- debian/control |2 +- 2 files changed, 4 insertions(+), 3 deletions(-) New commits: commit b93b220a340ec41e36eb9a4d6a5f7c9fad8aa621 Author: Brice Goglin Date: Sun Mar 14 22:45:14 2010 +0100 Prepare changelog for upload diff --git a/debian/changelog b/debian/changelog index beed34f..54fab9e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,9 @@ -xorg (1:7.5+5) UNRELEASED; urgency=low +xorg (1:7.5+5) unstable; urgency=low * Fix typo in Xsession.d/50x11-common_determine-startup, closes: #573899. * Bump Standards-Version to 3.8.4, no changes needed. - -- Brice Goglin Sun, 14 Mar 2010 22:41:20 +0100 + -- Brice Goglin Sun, 14 Mar 2010 22:45:09 +0100 xorg (1:7.5+4) unstable; urgency=low commit f07e8e0de64aaf4916b7b32c0dd8eafe8b82cf8d Author: Brice Goglin Date: Sun Mar 14 22:48:17 2010 +0100 Bump Standards-Version to 3.8.4 diff --git a/debian/changelog b/debian/changelog index 59e409d..beed34f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ xorg (1:7.5+5) UNRELEASED; urgency=low * Fix typo in Xsession.d/50x11-common_determine-startup, closes: #573899. + * Bump Standards-Version to 3.8.4, no changes needed. -- Brice Goglin Sun, 14 Mar 2010 22:41:20 +0100 diff --git a/debian/control b/debian/control index 3d22056..731c839 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: x11 Priority: optional Maintainer: Debian X Strike Force Uploaders: David Nusinow , Drew Parsons , Brice Goglin -Standards-Version: 3.8.3 +Standards-Version: 3.8.4 Build-Depends: dpkg (>= 1.7.0), po-debconf, debhelper (>= 7) Package: x11-common -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqvlc-00041k...@alioth.debian.org
xorg: Changes to 'refs/tags/xorg-1_7.5+5'
Tag 'xorg-1_7.5+5' created by Brice Goglin at 2010-03-14 21:54 + Tagging upload of xorg 1:7.5+5 to unstable. Changes since xorg-1_7.5+4: Brice Goglin (3): Fix typo in Xsession.d/50x11-common_determine-startup Bump Standards-Version to 3.8.4 Prepare changelog for upload --- debian/changelog |7 +++ debian/control |2 +- debian/local/Xsession.d/50x11-common_determine-startup |4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqvlh-00043u...@alioth.debian.org
Processing of xorg_7.5+5_i386.changes
xorg_7.5+5_i386.changes uploaded successfully to localhost along with the files: xorg_7.5+5.dsc xorg_7.5+5.tar.gz x11-common_7.5+5_all.deb xorg-dev_7.5+5_all.deb xlibmesa-gl_7.5+5_all.deb xlibmesa-gl-dev_7.5+5_all.deb xlibmesa-glu_7.5+5_all.deb libglu1-xorg_7.5+5_all.deb libglu1-xorg-dev_7.5+5_all.deb xbase-clients_7.5+5_all.deb xutils_7.5+5_all.deb xserver-xorg_7.5+5_i386.deb xserver-xorg-video-all_7.5+5_i386.deb xserver-xorg-input-all_7.5+5_i386.deb xorg_7.5+5_i386.deb Greetings, Your Debian queue daemon (running on host ries.debian.org) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqvq6-n3...@ries.debian.org
Bug#484312: kdm: logging out fails
Hi Julien, > I can't see any evidence that that kde bug has anything to do with > 484312, what's the link you're talking about? In any case we'd probably > have to see X logs from the submitter. okay, I then misunderstood your first response (thought you questionned the linking of the KDE bug report to X), my fault. As for the Debian bug report, the decision is mostly based on the timing of the report (I couldn't see any major related changes in kdm which could cause breakage at the KDE 3.5.9 release, I'm no expert though), and is of course partially based on suspicion. > Alex, are you still having issues logging out from kdm as you did in > 2008 when you filed http://bugs.debian.org/484312 ? Same question goes to Karsten Hilbert, he reported the same problem. Eckhart -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/201003142237.45918.ewoer...@kde.org
xorg_7.5+5_i386.changes ACCEPTED
Accepted: libglu1-xorg-dev_7.5+5_all.deb to main/x/xorg/libglu1-xorg-dev_7.5+5_all.deb libglu1-xorg_7.5+5_all.deb to main/x/xorg/libglu1-xorg_7.5+5_all.deb x11-common_7.5+5_all.deb to main/x/xorg/x11-common_7.5+5_all.deb xbase-clients_7.5+5_all.deb to main/x/xorg/xbase-clients_7.5+5_all.deb xlibmesa-gl-dev_7.5+5_all.deb to main/x/xorg/xlibmesa-gl-dev_7.5+5_all.deb xlibmesa-gl_7.5+5_all.deb to main/x/xorg/xlibmesa-gl_7.5+5_all.deb xlibmesa-glu_7.5+5_all.deb to main/x/xorg/xlibmesa-glu_7.5+5_all.deb xorg-dev_7.5+5_all.deb to main/x/xorg/xorg-dev_7.5+5_all.deb xorg_7.5+5.dsc to main/x/xorg/xorg_7.5+5.dsc xorg_7.5+5.tar.gz to main/x/xorg/xorg_7.5+5.tar.gz xorg_7.5+5_i386.deb to main/x/xorg/xorg_7.5+5_i386.deb xserver-xorg-input-all_7.5+5_i386.deb to main/x/xorg/xserver-xorg-input-all_7.5+5_i386.deb xserver-xorg-video-all_7.5+5_i386.deb to main/x/xorg/xserver-xorg-video-all_7.5+5_i386.deb xserver-xorg_7.5+5_i386.deb to main/x/xorg/xserver-xorg_7.5+5_i386.deb xutils_7.5+5_all.deb to main/x/xorg/xutils_7.5+5_all.deb Override entries for your package: libglu1-xorg-dev_7.5+5_all.deb - optional libdevel libglu1-xorg_7.5+5_all.deb - optional libs x11-common_7.5+5_all.deb - optional x11 xbase-clients_7.5+5_all.deb - optional x11 xlibmesa-gl-dev_7.5+5_all.deb - optional libdevel xlibmesa-gl_7.5+5_all.deb - optional libs xlibmesa-glu_7.5+5_all.deb - optional libdevel xorg-dev_7.5+5_all.deb - optional x11 xorg_7.5+5.dsc - source x11 xorg_7.5+5_i386.deb - optional x11 xserver-xorg-input-all_7.5+5_i386.deb - optional x11 xserver-xorg-video-all_7.5+5_i386.deb - optional x11 xserver-xorg_7.5+5_i386.deb - optional x11 xutils_7.5+5_all.deb - optional x11 Announcing to debian-devel-chan...@lists.debian.org Closing bugs: 573899 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqw7b-0003zd...@ries.debian.org
Bug#573899: marked as done (x11-common: checks allow-user-session instead of allow-user-xsession)
Your message dated Sun, 14 Mar 2010 22:16:53 + with message-id and subject line Bug#573899: fixed in xorg 1:7.5+5 has caused the Debian Bug report #573899, regarding x11-common: checks allow-user-session instead of allow-user-xsession to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 573899: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=573899 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: x11-common Version: 1:7.5+4 Severity: grave File: /etc/X11/Xsession.d/50x11-common_determine-startup The file /etc/X11/Xsession.d/50x11-common_determine-startup checks for option allow-user-session whereas the correct option name (according to Xsession.options and man Xsession.options) is allow-user-xsession. As a result user's xsession file isn't executed. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: i386 (x86_64) Kernel: Linux 2.6.32-3-amd64 (SMP w/2 CPU cores) Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages x11-common depends on: ii debconf [debconf-2.0] 1.5.28 Debian configuration management sy ii debianutils 3.2.2 Miscellaneous utilities specific t ii lsb-base 3.2-23 Linux Standard Base 3.2 init scrip x11-common recommends no packages. x11-common suggests no packages. -- debconf information: x11-common/xwrapper/allowed_users: Console Users Only x11-common/experimental_packages: x11-common/xwrapper/actual_allowed_users: console -- Дмитрий Падучих --- End Message --- --- Begin Message --- Source: xorg Source-Version: 1:7.5+5 We believe that the bug you reported is fixed in the latest version of xorg, which is due to be installed in the Debian FTP archive: libglu1-xorg-dev_7.5+5_all.deb to main/x/xorg/libglu1-xorg-dev_7.5+5_all.deb libglu1-xorg_7.5+5_all.deb to main/x/xorg/libglu1-xorg_7.5+5_all.deb x11-common_7.5+5_all.deb to main/x/xorg/x11-common_7.5+5_all.deb xbase-clients_7.5+5_all.deb to main/x/xorg/xbase-clients_7.5+5_all.deb xlibmesa-gl-dev_7.5+5_all.deb to main/x/xorg/xlibmesa-gl-dev_7.5+5_all.deb xlibmesa-gl_7.5+5_all.deb to main/x/xorg/xlibmesa-gl_7.5+5_all.deb xlibmesa-glu_7.5+5_all.deb to main/x/xorg/xlibmesa-glu_7.5+5_all.deb xorg-dev_7.5+5_all.deb to main/x/xorg/xorg-dev_7.5+5_all.deb xorg_7.5+5.dsc to main/x/xorg/xorg_7.5+5.dsc xorg_7.5+5.tar.gz to main/x/xorg/xorg_7.5+5.tar.gz xorg_7.5+5_i386.deb to main/x/xorg/xorg_7.5+5_i386.deb xserver-xorg-input-all_7.5+5_i386.deb to main/x/xorg/xserver-xorg-input-all_7.5+5_i386.deb xserver-xorg-video-all_7.5+5_i386.deb to main/x/xorg/xserver-xorg-video-all_7.5+5_i386.deb xserver-xorg_7.5+5_i386.deb to main/x/xorg/xserver-xorg_7.5+5_i386.deb xutils_7.5+5_all.deb to main/x/xorg/xutils_7.5+5_all.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 573...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Brice Goglin (supplier of updated xorg package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 14 Mar 2010 22:45:09 +0100 Source: xorg Binary: x11-common xserver-xorg xserver-xorg-video-all xserver-xorg-input-all xorg xorg-dev xlibmesa-gl xlibmesa-gl-dev xlibmesa-glu libglu1-xorg libglu1-xorg-dev xbase-clients xutils Architecture: source all i386 Version: 1:7.5+5 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Brice Goglin Description: libglu1-xorg - transitional package for Debian etch libglu1-xorg-dev - transitional package for Debian etch x11-common - X Window System (X.Org) infrastructure xbase-clients - miscellaneous X clients - metapackage xlibmesa-gl - transitional package for Debian etch xlibmesa-gl-dev - transitional package for Debian etch xlibmesa-glu - transitional package for Debian etch xorg - X.Org X Window System xorg-dev - the X.Org X Window System development libraries xserver-xorg - the X.Org X server xserver-xorg-input-all - the X.Org X server -- input driver metapackage xserver-xorg-video-all - the X.Org X server -- output
Processed: tagging 572067
Processing commands for cont...@bugs.debian.org: > # Automatically generated email from bts, devscripts version 2.10.35lenny7 > tags 572067 + pending Bug #572067 [libdrm-dev] linux-libc-dev: Can not install, file conflict with libdrm Bug #572592 [libdrm-dev] libdrm-dev: /usr/include/drm/nouveau_drm.h belongs to linux-libc-dev since 2.6.33 Added tag(s) pending. Added tag(s) pending. > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.126860732410952.transcr...@bugs.debian.org
Re: Bug#572067: linux-libc-dev: Can not install, file conflict with libdrm
On Fri, 2010-03-05 at 10:59 +0100, Julien Cristau wrote: > On Fri, Mar 5, 2010 at 04:03:15 +, Ben Hutchings wrote: > > > On Mon, 2010-03-01 at 13:50 +0100, Jens-Michael Hoffmann wrote: > > > Package: linux-libc-dev > > > Version: 2.6.33-1~experimental.2 > > > Severity: normal > > > > > > When trying to install linux-libc-dev from experimental, dpkg shows the > > > following error message: > > > > > > dpkg: error processing > > > /var/cache/apt/archives/linux-libc-dev_2.6.33-1~experimental.2_amd64.deb > > > (--unpack): > > > trying to overwrite '/usr/include/drm/nouveau_drm.h', which is also in > > > package libdrm-dev 0:2.4.18-2 > > > > It makes no sense to have the DRM headers split between libdrm-dev and > > linux-libc-dev. I'm happy to have libdrm-dev provide them all. What do > > you want to do? > > > I think we should go back to libdrm-dev installing the headers. I sent > a patch to dri-devel a few days ago that makes libdrm install its > headers in $(includedir)/libdrm so they don't conflict with the ones > installed by the kernel, waiting for some feedback on that… I have committed changes to remove /usr/include/drm from linux-libc-dev. Please give libdrm-dev a versioned dependency on linux-libc-dev (>= 2.6.32-10). Ben. -- Ben Hutchings I say we take off; nuke the site from orbit. It's the only way to be sure. signature.asc Description: This is a digitally signed message part
Processed: reassign 573921 to x11-common, forcibly merging 573899 573921
Processing commands for cont...@bugs.debian.org: > reassign 573921 x11-common 1:7.5+4 Bug #573921 [xdm] .xsession isn't read after update to xdm 1.1.9-1 Bug reassigned from package 'xdm' to 'x11-common'. Bug No longer marked as found in versions xdm/1:1.1.9-1. Bug #573921 [x11-common] .xsession isn't read after update to xdm 1.1.9-1 Bug Marked as found in versions xorg/1:7.5+4. > forcemerge 573899 573921 Bug#573899: x11-common: checks allow-user-session instead of allow-user-xsession Bug#573921: .xsession isn't read after update to xdm 1.1.9-1 Forcibly Merged 573899 573921. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.126860912932331.transcr...@bugs.debian.org
libdrm: Changes to 'debian-unstable'
debian/changelog |1 + debian/control |3 ++- debian/rules |6 -- 3 files changed, 3 insertions(+), 7 deletions(-) New commits: commit a88e94deeaf9f642a108ef3b57436a534dc353e0 Author: Julien Cristau Date: Mon Mar 15 00:28:11 2010 +0100 Add back the drm headers in libdrm-dev. diff --git a/debian/changelog b/debian/changelog index 6f8766d..4b1ba28 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ libdrm (2.4.18-3) UNRELEASED; urgency=low * Include full SONAME in libdrm*.install to prevent accidental breakage. + * Add back the drm headers in libdrm-dev. -- Julien Cristau Sun, 07 Mar 2010 15:31:51 +0100 diff --git a/debian/control b/debian/control index 13708bf..65f013a 100644 --- a/debian/control +++ b/debian/control @@ -20,11 +20,12 @@ Package: libdrm-dev Section: libdevel Architecture: any Depends: - linux-libc-dev (>= 2.6.32) [linux-any], libdrm2 (= ${binary:Version}), libdrm-intel1 (= ${binary:Version}) [amd64 i386 kfreebsd-amd64 kfreebsd-i386], libdrm-radeon1 (= ${binary:Version}) [linux-any], ${misc:Depends}, +Replaces: + linux-libc-dev (<< 2.6.32-10) Description: Userspace interface to kernel DRM services -- development files This library implements the userspace interface to the kernel DRM services. DRM stands for "Direct Rendering Manager", which is the diff --git a/debian/rules b/debian/rules index 6eaef3d..dede329 100755 --- a/debian/rules +++ b/debian/rules @@ -103,12 +103,6 @@ install: build dh_installdirs cd build && $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp -ifeq (linux, $(DEB_HOST_ARCH_OS)) - # remove files provided by linux-libc-dev - for file in drm_mode.h drm_sarea.h drm.h i915_drm.h mga_drm.h r128_drm.h radeon_drm.h savage_drm.h sis_drm.h via_drm.h; do \ - rm -f debian/tmp/usr/include/drm/$$file; \ - done -endif # Build architecture-independent files here. binary-indep: build install -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1nqxfk-0002zp...@alioth.debian.org
Re: Bug#572067: linux-libc-dev: Can not install, file conflict with libdrm
On Sun, Mar 14, 2010 at 23:11:45 +, Ben Hutchings wrote: > I have committed changes to remove /usr/include/drm from linux-libc-dev. > Please give libdrm-dev a versioned dependency on linux-libc-dev > (>= 2.6.32-10). > Done, http://git.debian.org/?p=pkg-xorg/lib/libdrm.git;a=commitdiff;h=a88e94deeaf9f642a108ef3b57436a534dc353e0 Cheers, Julien signature.asc Description: Digital signature
Bug#573921: .xsession isn't read after update to xdm 1.1.9-1
Package: xdm Version: 1:1.1.9-1 Severity: grave Justification: renders package unusable After the update to 1.1.9-1, it seems to me that xdm no longer reads .xsessionrc. I've had this same setup for quite some time now. I boot into xdm, and xdm loads up i3 (my window manager) after setting my wallpaper with hsetroot. Here's my .xsession: hsetroot -fill ~/wallpapers/current.jpg exec i3 I also use a .xsessionrc file: .. $HOME/.profile In order to make sure it wasn't my settings that were getting in the way, I moved .bash*, .profile, and .xsessionrc to another directory and copied over everything from /etc/skel. After restarting the xdm service, the result was the same, so I don't think it's my settings. I don't remember ever messing with /etc/X11 (except for xorg.conf) either (I hardly ever edit files in /etc, as I prefer to perform the changes locally when needed). To make sure there aren't leftovers, I uninstalled and reinstalled xdm (note that I have --purge in my apt settings, so the conf files should have been erased between during this process). The result is still the same. Right now I'm using startx, and .xinitrc is a symlink to .xsession and it's working just fine. both i3 and hsetroot are in my path (they're in /usr/bin) and they haven't been updated recently, afaik. I can't reproduce this bug on my laptop, which runs unstable as well, but amd64. It also got the xdm update today, but xdm works just fine. The only other unusual settings in this machine are some extra apt settings (placed in /etc/apt/conf.d/99local): APT::Install-Recommends "0"; APT::Get::AutomaticRemove "1"; APT::Get::Purge "1"; Other than that, I don't think there's anything unusual about this machine. The amd64 laptop is configured pretty much the exactly way. I updated this machine earlier today (maybe 4 hours ago). 30 minutes ago I had a power outage. When I booted up again (running xdm for the first time since the update), I found myself in this situation. I don't think the power outage is related at all to this, though, as the update was long before the power outage and I didn't get any ext3 warnings. Btw, this is an ext3 root file system (/home resides in a separate partition) with all "stock" options, i.e., I didn't configure anything with tune2fs or anything like that. I'm under the impression that either .xsession isn't being read and so an xterm is spawned by xdm. .xsession is 0644, btw. To sum it up: - Expected behavior: xdm should launch my window manager after login - Current situation: xdm launches an xterm (no wm is running) Please let me know of any other information you guys might need. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.32-3-686 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages xdm depends on: ii cpp 4:4.4.3-1 The GNU C preprocessor (cpp) ii debconf [debconf-2.0] 1.5.28 Debian configuration management sy ii libc6 2.10.2-6 Embedded GNU C Library: Shared lib ii libpam0g 1.1.1-2Pluggable Authentication Modules l ii libselinux1 2.0.89-4 SELinux runtime shared libraries ii libx11-6 2:1.3.3-2 X11 client-side library ii libxau6 1:1.0.5-2 X11 authorisation library ii libxaw7 2:1.0.7-1 X11 Athena Widget library ii libxdmcp6 1:1.0.3-2 X11 Display Manager Control Protoc ii libxext6 2:1.1.1-3 X11 miscellaneous extension librar ii libxft2 2.1.14-2 FreeType-based font drawing librar ii libxinerama1 2:1.1-3X11 Xinerama extension library ii libxmu6 2:1.0.5-1 X11 miscellaneous utility library ii libxpm4 1:3.5.8-1 X11 pixmap library ii libxrender1 1:0.9.5-2 X Rendering Extension client libra ii libxt61:1.0.7-1 X11 toolkit intrinsics library ii lsb-base 3.2-23 Linux Standard Base 3.2 init scrip ii procps1:3.2.8-8 /proc file system utilities ii x11-common1:7.5+4X Window System (X.Org) infrastruc ii x11-utils 7.5+3 X11 utilities ii x11-xserver-utils 7.5+1+b1 X server utilities xdm recommends no packages. xdm suggests no packages. -- debconf information: xdm/stop_running_server_with_children: false xdm/daemon_name: /usr/bin/xdm * shared/default-x-display-manager: xdm -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20100314232031.1747.11917.report...@gonzalez.localnet
xorg-server: Changes to 'debian-unstable'
ChangeLog | 90 + Xext/Makefile.am |4 Xi/exevents.c |2 configure.ac |6 debian/changelog | 22 + debian/control | 28 + debian/patches/02_Add-libgcrypt-and-libnettle-as-options-for-sha1.diff | 180 ++ debian/patches/02_Add-libgcrypt-as-an-option-for-sha1.diff | 84 debian/patches/16-xfree86-fix-build-with-xv-disabled.diff | 53 ++ debian/patches/series |3 debian/rules | 128 --- debian/xdmx-tools.install | 14 debian/xdmx.install|4 debian/xnest.install |4 debian/xserver-common.install |4 debian/xserver-xephyr.install |4 debian/xserver-xfbdev.install |2 debian/xserver-xorg-core-udeb.install |6 debian/xserver-xorg-core.install | 20 - debian/xserver-xorg-dev.install|6 debian/xvfb.install|8 dix/events.c | 91 +++-- hw/xfree86/dri2/dri2.c |2 include/inputstr.h | 30 + 24 files changed, 597 insertions(+), 198 deletions(-) New commits: commit f3790c2e1fe06b15d9993483f8bd90f90f005ba3 Author: Cyril Brulebois Date: Mon Mar 15 01:49:57 2010 +0100 Link statically against libnettle.a Static vs. dynamic could be controlled by an option for extra flexibility, but the current patch should do the job for now. diff --git a/debian/changelog b/debian/changelog index 17abbf2..8d12681 100644 --- a/debian/changelog +++ b/debian/changelog @@ -30,7 +30,8 @@ xorg-server (2:1.7.5.902-1) UNRELEASED; urgency=low - libxfont-dev * Replace 02_Add-libgcrypt-as-an-option-for-sha1.diff with 02_Add-libgcrypt-and-libnettle-as-options-for-sha1.diff so that it's -also possible to link against libnettle. +also possible to link against libnettle. Link (unconditionally) +statically against libnettle.a to avoid an extra udeb for a few bytes. * Add nettle-dev to Build-Depends; and pass --with-sha1=libnettle for the udeb build (and --with-sha1=libgcrypt for the main build). diff --git a/debian/patches/02_Add-libgcrypt-and-libnettle-as-options-for-sha1.diff b/debian/patches/02_Add-libgcrypt-and-libnettle-as-options-for-sha1.diff index 8603a1a..77f548e 100644 --- a/debian/patches/02_Add-libgcrypt-and-libnettle-as-options-for-sha1.diff +++ b/debian/patches/02_Add-libgcrypt-and-libnettle-as-options-for-sha1.diff @@ -69,7 +69,7 @@ index c215b5c..e688f94 100644 +if test "x$with_sha1" = xlibnettle; then +AC_DEFINE([HAVE_SHA1_IN_LIBNETTLE], [1], + [Use libnettle SHA1 functions]) -+SHA1_LIBS=-lnettle ++SHA1_LIBS=/usr/lib/libnettle.a +fi +# We don't need all of the OpenSSL libraries, just libcrypto +AC_CHECK_LIB([crypto], [SHA1_Init], [HAVE_LIBCRYPTO=yes]) commit b2833df454c93a0b7bd8b336c4aa1bdcc8b493a1 Author: Cyril Brulebois Date: Mon Mar 15 00:51:55 2010 +0100 Add nettle-dev to Build-Depends, pass --with-sha1=lib{gcrypt,nettle} for {main,udeb} builds. diff --git a/debian/changelog b/debian/changelog index 293ec98..17abbf2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -31,6 +31,8 @@ xorg-server (2:1.7.5.902-1) UNRELEASED; urgency=low * Replace 02_Add-libgcrypt-as-an-option-for-sha1.diff with 02_Add-libgcrypt-and-libnettle-as-options-for-sha1.diff so that it's also possible to link against libnettle. + * Add nettle-dev to Build-Depends; and pass --with-sha1=libnettle for +the udeb build (and --with-sha1=libgcrypt for the main build). -- Drew Parsons Wed, 03 Mar 2010 23:33:54 +1100 diff --git a/debian/control b/debian/control index df2f6ad..eedfe5c 100644 --- a/debian/control +++ b/debian/control @@ -46,6 +46,7 @@ Build-Depends: libpixman-1-dev (>= 0.15.20), libpciaccess-dev (>= 0.11.0-2), libgcrypt-dev, + nettle-dev, libdbus-1-dev [kfreebsd-amd64 kfreebsd-i386], libhal-dev [kfreebsd-amd64 kfreebsd-i386], libudev-dev (>= 150-3) [alpha amd64 arm armeb armel avr32 hppa i386 ia64 lpia m32r m68k mips mipsel powerpc ppc64 s390 s390x