Bug#356813: package xdmx-tools is empty
Package: xdmx-tools Version: 1:1.0.1-2 Severity: minor Hi, I dunno if it's OK, but the xdmx-tools packages contains no useful file: [EMAIL PROTECTED]:~]$ dpkg -L xdmx-tools /. /usr /usr/share /usr/share/doc /usr/share/doc/xdmx-tools /usr/share/doc/xdmx-tools/copyright /usr/share/doc/xdmx-tools/changelog.Debian.gz Xav -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (x86_64) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15-1-amd64-k8 Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8) Versions of packages xdmx-tools depends on: ii xdmx 1:1.0.1-2 Distributed Multihead X server xdmx-tools recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#354130: xbase-clients: "(WW) Couldn't load XKB keymap, falling back to pre-XKB keymap" with xorg 7.0
Hello! On Sun, 26 Feb 2006 22:53:06 +0100, David Nusinow wrote: > On Fri, Feb 24, 2006 at 09:41:11AM +0200, Daniel Stone wrote: >> On Thu, Feb 23, 2006 at 10:31:46PM -0500, David Nusinow wrote: >> > On Thu, Feb 23, 2006 at 04:25:31PM +0100, Silvestre Zabala wrote: >> > > See subject. >> > > The fix was provided by ejka on #debian-x: >> > > >> > > mkdir /var/lib/xkb/ >> > > >> > > With /var/lib/xkb/ X starts correctly. >> > >> > Is this an xkb-data bug? I mean, we could supply this directory >> > in the server or whatever, but I get the feeling that it should >> > be in xkb-data. Denis? >> >> Whichever package provides xkbcomp. > > Ok, that'll work too. I'll add that to xbase-clients now. Well, it seems that the bug is still present in my Xorg.0.log (attached). My xorg.conf is attached as well. Thx, bye, Gismo / Luca -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (990, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-rc6 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Versions of packages xbase-clients depends on: ii libc62.3.6-3 GNU C Library: Shared libraries an ii libdmx1 1:1.0.1-1 X11 Distributed Multihead extensio ii libfontconfig1 2.3.2-5 generic font configuration library ii libfreetype6 2.1.10-1.1 FreeType 2 font engine, shared lib ii libfs6 2:1.0.0-1 X11 Font Services library ii libgl1-mesa-glx [libgl1] 6.4.1-0.3 A free implementation of the OpenG ii libice6 1:1.0.0-1 X11 Inter-Client Exchange library ii libpng12-0 1.2.8rel-5 PNG library - runtime ii libsm6 1:1.0.0-2 X11 Session Management library ii libx11-6 2:1.0.0-3 X11 client-side library ii libxau6 1:1.0.0-1 X11 authorisation library ii libxaw7 1:1.0.1-2 X11 Athena Widget library ii libxcursor1 1.1.5.2-1 X cursor management library ii libxext6 1:1.0.0-2 X11 miscellaneous extension librar ii libxft2 2.1.8.2-3 FreeType-based font drawing librar ii libxi6 1:1.0.0-2 X11 Input extension library ii libxinerama1 1:1.0.1-1 X11 Xinerama extension library ii libxkbfile1 1:1.0.1-1 X11 keyboard file manipulation lib ii libxmu6 1:1.0.1-1 X11 miscellaneous utility library ii libxmuu1 1:1.0.1-1 X11 miscellaneous micro-utility li ii libxrandr2 2:1.1.0.2-2 X11 RandR extension library ii libxrender1 1:0.9.0.2-1 X Rendering Extension client libra ii libxss1 1:1.0.1-2 X11 Screen Saver extension library ii libxt6 1:1.0.0-2 X11 toolkit intrinsics library ii libxtrap61:1.0.0-1 X11 event trapping extension libra ii libxtst6 1:1.0.1-1 X11 Testing -- Resource extension ii libxv1 1:1.0.1-1 X11 Video extension library ii libxxf86dga1 2:1.0.0-1 X11 Direct Graphics Access extensi ii libxxf86misc11:1.0.0-2 X11 XFree86 miscellaneous extensio ii libxxf86vm1 1:1.0.0-2 X11 XFree86 video mode extension l ii x11-common 1:7.0.4 X Window System (X.Org) infrastruc ii zlib1g 1:1.2.3-11 compression library - runtime xbase-clients recommends no packages. -- no debconf information Xorg.0.log.gz Description: Xorg.0.log with the XKB keymap error xorg.conf.gz Description: xorg.conf pgpVaGFPdaBpz.pgp Description: PGP signature
Bug#356858: xdm chokes on null pointers in address structures returned by getifaddrs()
Package: xdm Version: 1:1.0.1-2 Tags: experimental Hi, xdm makes the presumption that the "ifa_addr" pointer member of the ifaddrs structures returned by getifaddrs() is always valid (i.e. non-NULL): 731 Debug("DefineSelf\n"); 732 if (getifaddrs(&ifap) < 0) 733 return; 734 for (ifr = ifap; ifr != NULL; ifr = ifr->ifa_next) { >>> 735 len = sizeof(*(ifr->ifa_addr)); 736 family = ConvertAddr((XdmcpNetaddr)(ifr->ifa_addr), &len, &addr); ... which it isn't. A small test program shows that this member may be NULL for point-to-point devices - this is the data produced by getifaddrs() on my box (displaying ifa_addr if non-NULL; globally visible addresses dotted for privacy): Addr of eth0 (flags 0x1043): (Family 17) IFIndex 1 Addr of lo (flags 0x49): (Family 17) IFIndex 2 Addr of eth1 (flags 0x1003): (Family 17) IFIndex 3 Addr of sit0 (flags 0x80): (Family 17) IFIndex 4 Addr of tap0 (flags 0x1043): (Family 17) IFIndex 5 Addr of tap1 (flags 0x1043): (Family 17) IFIndex 6 Addr of ppp0 (flags 0x10d1): NULL Addr of ppp1 (flags 0x10d1): NULL Addr of ippp0 (flags 0xd1): NULL Addr of lo (flags 0x49): (Family 2) Addr 0x017f Mask 0x00ff Addr of eth1 (flags 0x1003): (Family 2) Addr 0x3d40a8c0 Mask 0x00ff Addr of tap0 (flags 0x1043): (Family 2) Addr 0x0120a8c0 Mask 0x00ff Addr of tap1 (flags 0x1043): (Family 2) Addr 0x0121a8c0 Mask 0x00ff Addr of ppp0 (flags 0x10d1): (Family 2) Addr 0x Mask 0x Addr of ppp1 (flags 0x10d1): (Family 2) Addr 0x Mask 0x Addr of ippp0 (flags 0xd1): (Family 2) Addr 0x Mask 0x Addr of eth0 (flags 0x1043): (Family 10) Addr fe80 Addr of lo (flags 0x49): (Family 10) Addr Addr of tap0 (flags 0x1043): (Family 10) Addr fe80 Addr of tap1 (flags 0x1043): (Family 10) Addr fe80 For the sake of completion, here's an excerpt of xdm's debug output, a few comments inserted: [...] source /usr/X11R6/lib/X11/xdm/Xstartup StartSession /usr/X11R6/lib/X11/xdm/Xsession: /usr/X11R6/lib/X11/xdm/Xsession ; DISPLAY=:0 HOME=/home/jcn LOGNAME=jcn USER=jcn PATH=/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games SHELL=/bin/bash >>> fork(); the following messages originate from the child User netname: unix.1000@(none) getsecretkey returns 0, key length 0 Could not set secret key. SetUserAuthorization XauLockAuth /home/jcn/.Xauthority Lock is 0 opens succeeded /home/jcn/.Xauthority /home/jcn/.Xauthority-n openFiles failed backup lock is 0 opens succeeded /tmp/.XauthTk38EO /tmp/.XauthTk38EO-n 2 authorization protocols for :0 writeLocalAuth: :0 MIT-MAGIC-COOKIE-1 setAuthNumber :0 setAuthNumber: 0 DefineSelf ConvertAddr returning -1 for family 17 ConvertAddr returning -1 for family 17 ConvertAddr returning -1 for family 17 ConvertAddr returning -1 for family 17 ConvertAddr returning -1 for family 17 ConvertAddr returning -1 for family 17 >>> child SIGSEGV, parent continues StartSession, fork succeeded 26437 Client Started Source reset program /usr/X11R6/lib/X11/xdm/Xreset source /usr/X11R6/lib/X11/xdm/Xreset Shell script execution: /bin/sh (optarg (null)) RemoveUserAuthorization XauLockAuth /home/jcn/.Xauthority Lock is 0 opens succeeded /home/jcn/.Xauthority /home/jcn/.Xauthority-n writeLocalAuth: :0 XDM-AUTHORIZATION-1 setAuthNumber :0 setAuthNumber: 0 DefineSelf ConvertAddr returning -1 for family 17 ConvertAddr returning -1 for family 17 ConvertAddr returning -1 for family 17 ConvertAddr returning -1 for family 17 ConvertAddr returning -1 for family 17 ConvertAddr returning -1 for family 17 >>> parent SIGSEGV Suggested code insertion: 735if (!ifr->ifa_addr) continue; Or is this a bug in libc6? A struct ifaddrs with a NULL ifa_addr member is rather pointless... Regards, Jan -- Jan C. Nordholz -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#356867: x11-common: /tmp/.ICE-unix is not created with right permissions after returning from single-user mode
Package: x11-common Version: 6.9.0.dfsg.1-4 Severity: normal Hi, /tmp/.ICE-unix is deleted by bootclean script during entering single-user mode (telinit 1), but is not recreated during returning back to original runlevel. It's because /etc/init.d/x11-common script is executed only in runlevel S, not in particular runlevels. This leads to problems e.g. with starting KDE: _IceTransmkdir: ERROR: Owner of /tmp/.ICE-unix must be set to root _IceTransSocketUNIXCreateListener: mkdir(/tmp/.ICE-unix) failed, errno = 1 _IceTransMakeAllCOTSServerListeners: failed to create listener for local KSMServer: Error listening for connections: Cannot establish any listening sockets KSMServer: Aborting. startkde: Shutting down... Thanks, Martin Kourim -- System Information: Debian Release: testing/unstable APT prefers testing-proposed-updates APT policy: (990, 'testing-proposed-updates'), (990, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/dash Kernel: Linux 2.6.15-3-k7 Locale: LANG=cs_CZ, LC_CTYPE=cs_CZ (charmap=ISO-8859-2) Versions of packages x11-common depends on: ii debconf [debconf-2.0] 1.4.71 Debian configuration management sy ii debianutils 2.15.3 Miscellaneous utilities specific t ii lsb-base 3.0-15 Linux Standard Base 3.0 init scrip x11-common recommends no packages. -- debconf information excluded -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#356858: xdm chokes on null pointers in address structures returned by getifaddrs()
# 356858 s/completion/completeness/ And I forgot to mention: libc6 is currently at 2.3.6-3 (whole system at latest unstable/experimental.) Regards, Jan -- Jan C. Nordholz -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#356883: xserver-xorg-core: error opening security policy file /usr/lib/xserver/SecurityPolicy
Package: xserver-xorg-core Version: 1:1.0.1-2 Severity: minor Tags: experimental Hello, as the title suggest, every time I launch `startx` I have that output, which is normal, as there's no SecurityPolicy file on my box where X.org could find it: = gismo:/home/luca# updatedb gismo:/home/luca# locate SecurityPolicy /mnt/hurd/etc/X11/xserver/SecurityPolicy gismo:/home/luca# dlocate SecurityPolicy gismo:/home/luca# update-dlocatedb gismo:/home/luca# = Then I checked the xserver-xorg-core sources: = [EMAIL PROTECTED]:~/test$ apt-get source xserver-xorg-core [...] [EMAIL PROTECTED]:~/test$ find ./ -name SecurityPolicy ./xorg-server-1.0.1/Xext/SecurityPolicy [EMAIL PROTECTED]:~/test$ grep -r SecurityPolicy xorg-server-1.0.1/ [simplified version] xorg-server-1.0.1/Xext/Makefile.in: xorg-server-1.0.1/Xext/security.c: xorg-server-1.0.1/Xext/SecurityPolicy: xorg-server-1.0.1/Xext/Makefile.am: xorg-server-1.0.1/ChangeLog: [EMAIL PROTECTED]:~/test$ = So, it seems that the dpkg-buildpackage doesn't install the SecurityPolicy file. I should admit that I don't know anything about this file, so maybe it's normal it's not installed. Thx, bye, Gismo / Luca -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (990, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-rc6 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Versions of packages xserver-xorg-core depends on: ii libc62.3.6-3 GNU C Library: Shared libraries an ii libfontenc1 1:1.0.1-1 X11 font encoding library ii libgcc1 1:4.0.3-1 GCC support library ii libxau6 1:1.0.0-1 X11 authorisation library ii libxdmcp61:1.0.0-1 X11 Display Manager Control Protoc ii libxfont11:1.0.0-2 X11 font rasterisation library ii x11-common 1:7.0.4 X Window System (X.Org) infrastruc ii xserver-xorg-input-kbd [xser 1:1.0.1.3-1 X.Org X server -- keyboard input d ii xserver-xorg-input-mouse [xs 1:1.0.3.1-1 X.Org X server -- mouse input driv ii xserver-xorg-video-ati [xser 1:6.5.7.3-2 X.Org X server -- ATI display driv ii xserver-xorg-video-fbdev [xs 1:0.1.0.5-1 X.Org X server -- fbdev display dr ii xserver-xorg-video-vesa [xse 1:1.0.1.3-1 X.Org X server -- VESA display dri ii xserver-xorg-video-vga [xser 1:4.0.0.5-1 X.Org X server -- VGA display driv ii zlib1g 1:1.2.3-11 compression library - runtime Versions of packages xserver-xorg-core recommends: pn xkeyboard-config (no description available) -- no debconf information pgpeb580yAmeV.pgp Description: PGP signature
Bug#356918: libx11: FTBFS in experimental.
Package: libx11 Version: 1:1.0.0-3 Severity: serious Tags: serious Hi, Your package is still failing to build. First I get: checking for XKBPROTO... configure: error: Package requirements (kbproto inputproto) were not met: No package 'inputproto' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables XKBPROTO_CFLAGS and XKBPROTO_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. make: *** [build-stamp] Error 1 Which seems to be a missing build dependency on x11proto-input-dev. Then I get: Making all in ru_RU.UTF-8 make[3]: Entering directory `/usr/src/libx11-1.0.0/obj-x86_64-linux-gnu/nls/ru_RU.UTF-8' make[3]: *** No rule to make target `XI18N_OBJS', needed by `all-am'. Stop. make[3]: Leaving directory `/usr/src/libx11-1.0.0/obj-x86_64-linux-gnu/nls/ru_RU.UTF-8' make[2]: *** [all-recursive] Error 1 I wonder why I didn't get any of those errors the previous time though. Kurt -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#356938: xserver-xorg: unable to switch VTs
Package: xserver-xorg Version: 6.9.0.dfsg.1-4 Severity: normal After the transition from XFree86 to X.Org I am unable to switch from X to the virtual consoles. Ctrl-Alt-Fx does nothing. When X is down, switching between the consoles is possible. A similar bug seems to be files on freedesktop.org: https://bugs.freedesktop.org/show_bug.cgi?id=5827 -- Package-specific info: Contents of /var/lib/xfree86/X.roster: xserver-xfree86 xserver-xorg /etc/X11/X target unchanged from checksum in /var/lib/xfree86/X.md5sum. X server symlink status: lrwxrwxrwx 1 root root 17 Mar 14 04:32 /etc/X11/X -> /usr/bin/X11/Xorg -rwxr-xr-x 1 root root 1878044 Jan 15 02:40 /usr/bin/X11/Xorg Contents of /var/lib/xfree86/xorg.conf.roster: xserver-xorg VGA-compatible devices on PCI bus: :02:00.0 VGA compatible controller: nVidia Corporation NV40 [GeForce 6800] (rev a1) /etc/X11/xorg.conf does not match checksum in /var/lib/xfree86/xorg.conf.md5sum. Xorg X server configuration file status: -rw-r--r-- 1 root root 3292 Mar 14 06:24 /etc/X11/xorg.conf Contents of /etc/X11/xorg.conf: # xorg.conf (Xorg X Window System server configuration file) # # This file was generated by dexconf, the Debian X Configuration tool, using # values from the debconf database. # # Edit this file with caution, and see the xorg.conf manual page. # (Type "man xorg.conf" at the shell prompt.) # # This file is automatically updated on xserver-xorg package upgrades *only* # if it has not been modified since the last upgrade of the xserver-xorg # package. # # If you have edited this file but would like it to be automatically updated # again, run the following commands as root: # # cp /etc/X11/xorg.conf /etc/X11/xorg.conf.custom # md5sum /etc/X11/xorg.conf >/var/lib/xfree86/xorg.conf.md5sum # dpkg-reconfigure xserver-xorg Section "Files" FontPath"unix/:7100"# local font server # if the local font server has problems, we can fall back on these FontPath"/usr/lib/X11/fonts/misc" FontPath"/usr/lib/X11/fonts/cyrillic" FontPath"/usr/lib/X11/fonts/100dpi/:unscaled" FontPath"/usr/lib/X11/fonts/75dpi/:unscaled" FontPath"/usr/lib/X11/fonts/Type1" FontPath"/usr/lib/X11/fonts/CID" FontPath"/usr/lib/X11/fonts/100dpi" FontPath"/usr/lib/X11/fonts/75dpi" EndSection Section "Module" Load"bitmap" Load"dbe" Load"ddc" Load"extmod" Load"freetype" Load"glx" Load"int10" Load"record" Load"type1" Load"vbe" Load"speedo" EndSection Section "InputDevice" Identifier "Generic Keyboard" Driver "keyboard" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "XkbLayout" "en" Option "XkbVariant""nodeadkeys" EndSection Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" Option "CorePointer" Option "Device""/dev/input/mice" Option "Protocol" "ImPS/2" Option "Emulate3Buttons" "true" Option "ZAxisMapping" "4 5" EndSection Section "Device" Identifier "NVidia Geforce 6800" Driver "nvidia" EndSection Section "Monitor" Identifier "Generic Monitor" Option "DPMS" VendorName "IIyama" ModelName "ProLite E481S" HorizSync 31-80 VertRefresh 55-75 Modeline "1152x864" 143.47 1152 1232 1360 1568 864 865 868 915 -hsync +vsync Modeline "1024x768" 113.31 1024 1096 1208 1392 768 769 772 814 -hsync +vsync Modeline "800x600" 68.18 800 848 936 1072 600 601 604 636 -hsync +vsync Modeline "640x480" 43.16 640 680 744 848 480 481 484 509 -hsync +vsync EndSection Section "Screen" Identifier "Default Screen" Device "NVidia Geforce 6800" Monitor "Generic Monitor" DefaultDepth24 SubSection "Display" Depth 1 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 4 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 8 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 15 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 16
Bug#354130: xbase-clients: "(WW) Couldn't load XKB keymap, falling back to pre-XKB keymap" with xorg 7.0
On Tue, Mar 14, 2006 at 02:40:22PM +0100, Luca Capello wrote: > Hello! > > On Sun, 26 Feb 2006 22:53:06 +0100, David Nusinow wrote: > > On Fri, Feb 24, 2006 at 09:41:11AM +0200, Daniel Stone wrote: > >> On Thu, Feb 23, 2006 at 10:31:46PM -0500, David Nusinow wrote: > >> > On Thu, Feb 23, 2006 at 04:25:31PM +0100, Silvestre Zabala wrote: > >> > > See subject. > >> > > The fix was provided by ejka on #debian-x: > >> > > > >> > > mkdir /var/lib/xkb/ > >> > > > >> > > With /var/lib/xkb/ X starts correctly. > >> > > >> > Is this an xkb-data bug? I mean, we could supply this directory > >> > in the server or whatever, but I get the feeling that it should > >> > be in xkb-data. Denis? > >> > >> Whichever package provides xkbcomp. > > > > Ok, that'll work too. I'll add that to xbase-clients now. > > Well, it seems that the bug is still present in my Xorg.0.log > (attached). My xorg.conf is attached as well. Which version of xkb-data is installed? Denis -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#347790: xterm: boldMode patch
Package: xterm Version: 208-3.1 Followup-For: Bug #347790 The attached patch fixes this issue, and additionally alters the behavior of boldMode. Previously, boldMode only had an effect on the primary font. This patch extends the option to also affect the alternate fonts font1, font2, font3, etc. This, in my opinion, is more useful, more consistent, and better coincides with the description in the manpage. Cheers, Tim Pope -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (990, 'unstable'), (700, 'stable'), (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15.4 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Versions of packages xterm depends on: ii libc62.3.6-2 GNU C Library: Shared libraries an ii libfontconfig1 2.3.2-1.1 generic font configuration library ii libice6 6.9.0.dfsg.1-4 Inter-Client Exchange library ii libncurses5 5.5-1 Shared libraries for terminal hand ii libsm6 6.9.0.dfsg.1-4 X Window System Session Management ii libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li ii libxaw8 6.9.0.dfsg.1-4 X Athena widget set library ii libxext6 6.9.0.dfsg.1-4 X Window System miscellaneous exte ii libxft2 2.1.8.2-3 FreeType-based font drawing librar ii libxmu6 6.9.0.dfsg.1-4 X Window System miscellaneous util ii libxt6 6.9.0.dfsg.1-4 X Toolkit Intrinsics ii xlibs6.9.0.dfsg.1-4 X Window System client libraries m ii xlibs-data 6.9.0.dfsg.1-4 X Window System client data Versions of packages xterm recommends: ii xutils6.9.0.dfsg.1-4 X Window System utility programs -- no debconf information --- fontutils.c 2006-03-14 15:14:11.0 -0600 +++ fontutils.c.patched 2006-03-14 15:05:53.0 -0600 @@ -704,7 +704,10 @@ } TRACE(("...derived bold %s\n", myfonts.f_b)); } - if (fp == 0 || bfs == 0) { +if (!screen->bold_mode) { +bfs = nfs; +TRACE(("...not loading a bold font, as per boldMode\n")); +} else if (fp == 0 || bfs == 0) { bfs = nfs; TRACE(("...cannot load a matching bold font\n")); } else if (same_font_size(xw, nfs, bfs)
Bug#356918: libx11: FTBFS in experimental.
On Tue, Mar 14, 2006 at 07:49:42PM +0100, Kurt Roeckx wrote: > Package: libx11 > Version: 1:1.0.0-3 > Severity: serious > Tags: serious > > Hi, > > Your package is still failing to build. First I get: > checking for XKBPROTO... configure: error: Package requirements [...] > Which seems to be a missing build dependency on > x11proto-input-dev. This dependency does exist: x11proto-xext-dev --> libxi-dev --> x11proto-input-dev OTOH quilt is missing. > Then I get: > Making all in ru_RU.UTF-8 > make[3]: Entering directory > `/usr/src/libx11-1.0.0/obj-x86_64-linux-gnu/nls/ru_RU.UTF-8' > make[3]: *** No rule to make target `XI18N_OBJS', needed by `all-am'. Stop. > make[3]: Leaving directory > `/usr/src/libx11-1.0.0/obj-x86_64-linux-gnu/nls/ru_RU.UTF-8' > make[2]: *** [all-recursive] Error 1 > > I wonder why I didn't get any of those errors the previous time > though. It looks fine with current SVN. Denis -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#356918: libx11: FTBFS in experimental.
On Tue, Mar 14, 2006 at 10:49:50PM +0100, Denis Barbier wrote: > On Tue, Mar 14, 2006 at 07:49:42PM +0100, Kurt Roeckx wrote: > > Package: libx11 > > Version: 1:1.0.0-3 > > Severity: serious > > Tags: serious > > > > Hi, > > > > Your package is still failing to build. First I get: > > checking for XKBPROTO... configure: error: Package requirements > [...] > > Which seems to be a missing build dependency on > > x11proto-input-dev. > > This dependency does exist: > x11proto-xext-dev --> libxi-dev --> x11proto-input-dev Not for the libxi-dev from unstable. Anyway, the package checks for a "inputproto.pc" file directly. It doesn't check for xextproto.pc (at that point), and libxi-dev doesn't even contain a .pc file. So you should build depend on it directly too. I see no need to make the x11proto-xext-dev depedency on libxi-dev versioned, so I suggest you don't do it. > OTOH quilt is missing. But that doesn't seem to be required to build the package. Atleast, it's just giving an error during clean which gets ignored, so I ignored that too, and looks like I shouldn't. > > Then I get: > > Making all in ru_RU.UTF-8 > > make[3]: Entering directory > > `/usr/src/libx11-1.0.0/obj-x86_64-linux-gnu/nls/ru_RU.UTF-8' > > make[3]: *** No rule to make target `XI18N_OBJS', needed by `all-am'. Stop. > > make[3]: Leaving directory > > `/usr/src/libx11-1.0.0/obj-x86_64-linux-gnu/nls/ru_RU.UTF-8' > > make[2]: *** [all-recursive] Error 1 > > > > I wonder why I didn't get any of those errors the previous time > > though. > > It looks fine with current SVN. Installing quilt seems to fix it. Kurt -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#356938: marked as done (xserver-xorg: unable to switch VTs)
Your message dated Tue, 14 Mar 2006 23:53:34 +0200 with message-id <[EMAIL PROTECTED]> and subject line Bug#356938: xserver-xorg: unable to switch VTs has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xserver-xorg Version: 6.9.0.dfsg.1-4 Severity: normal After the transition from XFree86 to X.Org I am unable to switch from X to the virtual consoles. Ctrl-Alt-Fx does nothing. When X is down, switching between the consoles is possible. A similar bug seems to be files on freedesktop.org: https://bugs.freedesktop.org/show_bug.cgi?id=5827 -- Package-specific info: Contents of /var/lib/xfree86/X.roster: xserver-xfree86 xserver-xorg /etc/X11/X target unchanged from checksum in /var/lib/xfree86/X.md5sum. X server symlink status: lrwxrwxrwx 1 root root 17 Mar 14 04:32 /etc/X11/X -> /usr/bin/X11/Xorg -rwxr-xr-x 1 root root 1878044 Jan 15 02:40 /usr/bin/X11/Xorg Contents of /var/lib/xfree86/xorg.conf.roster: xserver-xorg VGA-compatible devices on PCI bus: :02:00.0 VGA compatible controller: nVidia Corporation NV40 [GeForce 6800] (rev a1) /etc/X11/xorg.conf does not match checksum in /var/lib/xfree86/xorg.conf.md5sum. Xorg X server configuration file status: -rw-r--r-- 1 root root 3292 Mar 14 06:24 /etc/X11/xorg.conf Contents of /etc/X11/xorg.conf: # xorg.conf (Xorg X Window System server configuration file) # # This file was generated by dexconf, the Debian X Configuration tool, using # values from the debconf database. # # Edit this file with caution, and see the xorg.conf manual page. # (Type "man xorg.conf" at the shell prompt.) # # This file is automatically updated on xserver-xorg package upgrades *only* # if it has not been modified since the last upgrade of the xserver-xorg # package. # # If you have edited this file but would like it to be automatically updated # again, run the following commands as root: # # cp /etc/X11/xorg.conf /etc/X11/xorg.conf.custom # md5sum /etc/X11/xorg.conf >/var/lib/xfree86/xorg.conf.md5sum # dpkg-reconfigure xserver-xorg Section "Files" FontPath"unix/:7100"# local font server # if the local font server has problems, we can fall back on these FontPath"/usr/lib/X11/fonts/misc" FontPath"/usr/lib/X11/fonts/cyrillic" FontPath"/usr/lib/X11/fonts/100dpi/:unscaled" FontPath"/usr/lib/X11/fonts/75dpi/:unscaled" FontPath"/usr/lib/X11/fonts/Type1" FontPath"/usr/lib/X11/fonts/CID" FontPath"/usr/lib/X11/fonts/100dpi" FontPath"/usr/lib/X11/fonts/75dpi" EndSection Section "Module" Load"bitmap" Load"dbe" Load"ddc" Load"extmod" Load"freetype" Load"glx" Load"int10" Load"record" Load"type1" Load"vbe" Load"speedo" EndSection Section "InputDevice" Identifier "Generic Keyboard" Driver "keyboard" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "XkbLayout" "en" Option "XkbVariant""nodeadkeys" EndSection Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" Option "CorePointer" Option "Device""/dev/input/mice" Option "Protocol" "ImPS/2" Option "Emulate3Buttons" "true" Option "ZAxisMapping" "4 5" EndSection Section "Device" Identifier "NVidia Geforce 6800" Driver "nvidia" EndSection Section "Monitor" Identifier "Generic Monitor" Option "DPMS" VendorName "IIyama" ModelName "ProLite E481S" HorizSync 31-80 VertRefresh 55-75 Modeline "1152x864" 143.47 1152 1232 1360 1568 864 865 868 915 -hsync +vsync Modeline "1024x768" 113.31 1024 1096 1208 1392 768 769 772 814 -hsync +vsync Modeline "800x600" 68.18 800 848 936 1072 600 601 604 636 -hsync +vsync Modeline "640x480" 43.16 640 680 744 848 480 481 484 509 -hsync +vsync EndSection Section "Screen" Identifier "Default Screen" Device "NVidia Geforce 6800" Monitor "Generic Monitor" DefaultDepth24 SubSection "Display"
X Strike Force X.Org X11 SVN commit: r1457 - branches/modular/lib/libX11-X11R7.0-1.0.0/debian
Author: barbier Date: 2006-03-14 17:05:55 -0500 (Tue, 14 Mar 2006) New Revision: 1457 Modified: branches/modular/lib/libX11-X11R7.0-1.0.0/debian/changelog branches/modular/lib/libX11-X11R7.0-1.0.0/debian/control Log: Add Build-Depends: quilt. Modified: branches/modular/lib/libX11-X11R7.0-1.0.0/debian/changelog === --- branches/modular/lib/libX11-X11R7.0-1.0.0/debian/changelog 2006-03-14 07:03:26 UTC (rev 1456) +++ branches/modular/lib/libX11-X11R7.0-1.0.0/debian/changelog 2006-03-14 22:05:55 UTC (rev 1457) @@ -1,7 +1,8 @@ -libx11 (2:1.0.0-4) experimental; urgency=low +libx11 (2:1.0.0-4) UNRELEASED-experimental; urgency=low * Remove libx11-dev versioned dependency on libxext-dev. This was preventing bootstrapping of libxext. Thanks Eugene Konev. + * Add Build-Depends: quilt. -- David Nusinow <[EMAIL PROTECTED]> Mon, 13 Mar 2006 22:27:33 -0500 Modified: branches/modular/lib/libX11-X11R7.0-1.0.0/debian/control === --- branches/modular/lib/libX11-X11R7.0-1.0.0/debian/control2006-03-14 07:03:26 UTC (rev 1456) +++ branches/modular/lib/libX11-X11R7.0-1.0.0/debian/control2006-03-14 22:05:55 UTC (rev 1457) @@ -3,7 +3,7 @@ Priority: optional Maintainer: Debian X Strike Force Uploaders: David Nusinow <[EMAIL PROTECTED]>, Branden Robinson <[EMAIL PROTECTED]>, Fabio M. Di Nitto <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), pkg-config, xtrans-dev, x11proto-bigreqs-dev, x11proto-core-dev, x11proto-kb-dev, x11proto-xext-dev, x11proto-xf86bigfont-dev, libxdmcp-dev (>= 1:1.0.0-1), libxau-dev (>= 1:1.0.0-1), x11proto-xcmisc-dev +Build-Depends: debhelper (>= 4.0.0), pkg-config, xtrans-dev, x11proto-bigreqs-dev, x11proto-core-dev, x11proto-kb-dev, x11proto-xext-dev, x11proto-xf86bigfont-dev, libxdmcp-dev (>= 1:1.0.0-1), libxau-dev (>= 1:1.0.0-1), x11proto-xcmisc-dev, quilt Standards-Version: 3.6.1.0 Package: libx11-6 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#356918: libx11: FTBFS in experimental.
On Tue, Mar 14, 2006 at 10:49:50PM +0100, Denis Barbier wrote: > On Tue, Mar 14, 2006 at 07:49:42PM +0100, Kurt Roeckx wrote: > > Your package is still failing to build. First I get: > > checking for XKBPROTO... configure: error: Package requirements > [...] > > Which seems to be a missing build dependency on > > x11proto-input-dev. > > This dependency does exist: > x11proto-xext-dev --> libxi-dev --> x11proto-input-dev > OTOH quilt is missing. Can you say 'layering violation'? This dependency should not exist (and shame on me if I added it). XTest.h uses XInput.h, but the latter is in x11proto-input-dev, not libxi-dev. signature.asc Description: Digital signature
Bug#356918: libx11: FTBFS in experimental.
On Tue, Mar 14, 2006 at 11:03:32PM +0100, Kurt Roeckx wrote: > On Tue, Mar 14, 2006 at 10:49:50PM +0100, Denis Barbier wrote: > > On Tue, Mar 14, 2006 at 07:49:42PM +0100, Kurt Roeckx wrote: > > > Package: libx11 > > > Version: 1:1.0.0-3 > > > Severity: serious > > > Tags: serious > > > > > > Hi, > > > > > > Your package is still failing to build. First I get: > > > checking for XKBPROTO... configure: error: Package requirements > > [...] > > > Which seems to be a missing build dependency on > > > x11proto-input-dev. > > > > This dependency does exist: > > x11proto-xext-dev --> libxi-dev --> x11proto-input-dev > > Not for the libxi-dev from unstable. > > Anyway, the package checks for a "inputproto.pc" file directly. > It doesn't check for xextproto.pc (at that point), and libxi-dev > doesn't even contain a .pc file. So you should build depend on > it directly too. > > I see no need to make the x11proto-xext-dev depedency on > libxi-dev versioned, so I suggest you don't do it. I know nothing about pkg-config and won't fix this stuff myself, but just to clarify, configure.ac contains PKG_CHECK_MODULES(X11, xextproto xtrans xau xcmiscproto) which is surely why there is this dependency on x11proto-xext-dev. Denis -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#356918: libx11: FTBFS in experimental.
On Wed, Mar 15, 2006 at 12:18:43AM +0200, Daniel Stone wrote: > On Tue, Mar 14, 2006 at 10:49:50PM +0100, Denis Barbier wrote: > > On Tue, Mar 14, 2006 at 07:49:42PM +0100, Kurt Roeckx wrote: > > > Your package is still failing to build. First I get: > > > checking for XKBPROTO... configure: error: Package requirements > > [...] > > > Which seems to be a missing build dependency on > > > x11proto-input-dev. > > > > This dependency does exist: > > x11proto-xext-dev --> libxi-dev --> x11proto-input-dev > > OTOH quilt is missing. > > Can you say 'layering violation'? This dependency should not exist (and > shame on me if I added it). XTest.h uses XInput.h, but the latter is in > x11proto-input-dev, not libxi-dev. If I understand, you suggest to apply the attached patch, right? Denis Index: debian/control === --- debian/control (révision 1454) +++ debian/control (copie de travail) @@ -8,7 +8,7 @@ Package: x11proto-xext-dev Architecture: all -Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, libxi-dev, libxau-dev +Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, x11proto-input-dev, libxau-dev Conflicts: libxext-dev (<< 6.8.2-25), libxtst-dev (<< 6.8.2-25) Replaces: libxext-dev (<< 6.8.2-25), libxtst-dev (<< 6.8.2-25) Pre-Depends: x11-common (>= 1:1.0)
Bug#356918: libx11: FTBFS in experimental.
On Tue, Mar 14, 2006 at 11:50:34PM +0100, Denis Barbier wrote: > On Tue, Mar 14, 2006 at 11:03:32PM +0100, Kurt Roeckx wrote: > > Anyway, the package checks for a "inputproto.pc" file directly. > > It doesn't check for xextproto.pc (at that point), and libxi-dev > > doesn't even contain a .pc file. So you should build depend on > > it directly too. > > I know nothing about pkg-config and won't fix this stuff myself, but > just to clarify, configure.ac contains > PKG_CHECK_MODULES(X11, xextproto xtrans xau xcmiscproto) > which is surely why there is this dependency on x11proto-xext-dev. Yes, but later there is: AM_CONDITIONAL(XKB, [ test x$XKB = xyes ]) if test x"$XKB" = "xyes"; then XKBPROTO_REQUIRES="kbproto inputproto" PKG_CHECK_MODULES(XKBPROTO, $XKBPROTO_REQUIRES) PS: I would be happy with the proposed patch, as now libxi-dev and libx11-dev depend on each other, which really isn't something you want. Kurt -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
X Strike Force X.Org X11 SVN commit: r1458 - branches/modular/lib/libX11-X11R7.0-1.0.0/debian
Author: barbier Date: 2006-03-14 18:16:11 -0500 (Tue, 14 Mar 2006) New Revision: 1458 Modified: branches/modular/lib/libX11-X11R7.0-1.0.0/debian/changelog branches/modular/lib/libX11-X11R7.0-1.0.0/debian/control Log: Also add Build-Depends: x11proto-input-dev. Thanks Kurt Roeckx. Modified: branches/modular/lib/libX11-X11R7.0-1.0.0/debian/changelog === --- branches/modular/lib/libX11-X11R7.0-1.0.0/debian/changelog 2006-03-14 22:05:55 UTC (rev 1457) +++ branches/modular/lib/libX11-X11R7.0-1.0.0/debian/changelog 2006-03-14 23:16:11 UTC (rev 1458) @@ -2,7 +2,8 @@ * Remove libx11-dev versioned dependency on libxext-dev. This was preventing bootstrapping of libxext. Thanks Eugene Konev. - * Add Build-Depends: quilt. + * Add Build-Depends: x11proto-input-dev, quilt. Thanks Kurt Roeckx. +(Closes: #356918). -- David Nusinow <[EMAIL PROTECTED]> Mon, 13 Mar 2006 22:27:33 -0500 Modified: branches/modular/lib/libX11-X11R7.0-1.0.0/debian/control === --- branches/modular/lib/libX11-X11R7.0-1.0.0/debian/control2006-03-14 22:05:55 UTC (rev 1457) +++ branches/modular/lib/libX11-X11R7.0-1.0.0/debian/control2006-03-14 23:16:11 UTC (rev 1458) @@ -3,7 +3,7 @@ Priority: optional Maintainer: Debian X Strike Force Uploaders: David Nusinow <[EMAIL PROTECTED]>, Branden Robinson <[EMAIL PROTECTED]>, Fabio M. Di Nitto <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), pkg-config, xtrans-dev, x11proto-bigreqs-dev, x11proto-core-dev, x11proto-kb-dev, x11proto-xext-dev, x11proto-xf86bigfont-dev, libxdmcp-dev (>= 1:1.0.0-1), libxau-dev (>= 1:1.0.0-1), x11proto-xcmisc-dev, quilt +Build-Depends: debhelper (>= 4.0.0), pkg-config, xtrans-dev, x11proto-bigreqs-dev, x11proto-core-dev, x11proto-kb-dev, x11proto-input-dev, x11proto-xext-dev, x11proto-xf86bigfont-dev, libxdmcp-dev (>= 1:1.0.0-1), libxau-dev (>= 1:1.0.0-1), x11proto-xcmisc-dev, quilt Standards-Version: 3.6.1.0 Package: libx11-6 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
X Strike Force X.Org X11 SVN commit: r1459 - branches/modular/lib/libX11-X11R7.0-1.0.0/debian
Author: barbier Date: 2006-03-14 18:18:52 -0500 (Tue, 14 Mar 2006) New Revision: 1459 Modified: branches/modular/lib/libX11-X11R7.0-1.0.0/debian/changelog Log: Add committer's name Modified: branches/modular/lib/libX11-X11R7.0-1.0.0/debian/changelog === --- branches/modular/lib/libX11-X11R7.0-1.0.0/debian/changelog 2006-03-14 23:16:11 UTC (rev 1458) +++ branches/modular/lib/libX11-X11R7.0-1.0.0/debian/changelog 2006-03-14 23:18:52 UTC (rev 1459) @@ -1,7 +1,10 @@ libx11 (2:1.0.0-4) UNRELEASED-experimental; urgency=low + [ David Nusinow ] * Remove libx11-dev versioned dependency on libxext-dev. This was preventing bootstrapping of libxext. Thanks Eugene Konev. + + [ Denis Barbier ] * Add Build-Depends: x11proto-input-dev, quilt. Thanks Kurt Roeckx. (Closes: #356918). -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
X Strike Force X.Org X11 SVN commit: r1460 - branches/modular/proto/xextproto-X11R7.0-7.0.2/debian
Author: barbier Date: 2006-03-14 18:25:49 -0500 (Tue, 14 Mar 2006) New Revision: 1460 Modified: branches/modular/proto/xextproto-X11R7.0-7.0.2/debian/changelog branches/modular/proto/xextproto-X11R7.0-7.0.2/debian/control Log: * Replace dependency on libxi-dev by x11proto-input-dev, as suggested by Daniel Stone. Modified: branches/modular/proto/xextproto-X11R7.0-7.0.2/debian/changelog === --- branches/modular/proto/xextproto-X11R7.0-7.0.2/debian/changelog 2006-03-14 23:18:52 UTC (rev 1459) +++ branches/modular/proto/xextproto-X11R7.0-7.0.2/debian/changelog 2006-03-14 23:25:49 UTC (rev 1460) @@ -1,3 +1,10 @@ +x11proto-xext (7.0.2-3) UNRELEASED-experimental; urgency=low + + * Replace dependency on libxi-dev by x11proto-input-dev, as suggested by +Daniel Stone. + + -- Denis Barbier <[EMAIL PROTECTED]> Tue, 14 Mar 2006 23:00:09 + + x11proto-xext (7.0.2-2) experimental; urgency=low * Add epoch to versioned Pre-Depends on x11-common to make upgrades Modified: branches/modular/proto/xextproto-X11R7.0-7.0.2/debian/control === --- branches/modular/proto/xextproto-X11R7.0-7.0.2/debian/control 2006-03-14 23:18:52 UTC (rev 1459) +++ branches/modular/proto/xextproto-X11R7.0-7.0.2/debian/control 2006-03-14 23:25:49 UTC (rev 1460) @@ -8,7 +8,7 @@ Package: x11proto-xext-dev Architecture: all -Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, libxi-dev, libxau-dev +Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, x11proto-input-dev, libxau-dev Conflicts: libxext-dev (<< 6.8.2-25), libxtst-dev (<< 6.8.2-25) Replaces: libxext-dev (<< 6.8.2-25), libxtst-dev (<< 6.8.2-25) Pre-Depends: x11-common (>= 1:1.0) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#356918: libx11: FTBFS in experimental.
tags 356918 pending thanks On Tue, Mar 14, 2006 at 11:59:58PM +0100, Kurt Roeckx wrote: > On Tue, Mar 14, 2006 at 11:50:34PM +0100, Denis Barbier wrote: > > On Tue, Mar 14, 2006 at 11:03:32PM +0100, Kurt Roeckx wrote: > > > Anyway, the package checks for a "inputproto.pc" file directly. > > > It doesn't check for xextproto.pc (at that point), and libxi-dev > > > doesn't even contain a .pc file. So you should build depend on > > > it directly too. > > > > I know nothing about pkg-config and won't fix this stuff myself, but > > just to clarify, configure.ac contains > > PKG_CHECK_MODULES(X11, xextproto xtrans xau xcmiscproto) > > which is surely why there is this dependency on x11proto-xext-dev. > > Yes, but later there is: > AM_CONDITIONAL(XKB, [ test x$XKB = xyes ]) > if test x"$XKB" = "xyes"; then >XKBPROTO_REQUIRES="kbproto inputproto" >PKG_CHECK_MODULES(XKBPROTO, $XKBPROTO_REQUIRES) You are obviously right, thus I eventually added Build-Depends: x11proto-input-dev, quilt. > PS: I would be happy with the proposed patch, as now libxi-dev > and libx11-dev depend on each other, which really isn't something > you want. Yes, I will also commit this one after Daniel's blessing. Thanks for your help. Denis -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#356918: libx11: FTBFS in experimental.
On Tue, Mar 14, 2006 at 11:59:39PM +0100, Denis Barbier wrote: > On Wed, Mar 15, 2006 at 12:18:43AM +0200, Daniel Stone wrote: > > On Tue, Mar 14, 2006 at 10:49:50PM +0100, Denis Barbier wrote: > > > On Tue, Mar 14, 2006 at 07:49:42PM +0100, Kurt Roeckx wrote: > > > > Your package is still failing to build. First I get: > > > > checking for XKBPROTO... configure: error: Package requirements > > > [...] > > > > Which seems to be a missing build dependency on > > > > x11proto-input-dev. > > > > > > This dependency does exist: > > > x11proto-xext-dev --> libxi-dev --> x11proto-input-dev > > > OTOH quilt is missing. > > > > Can you say 'layering violation'? This dependency should not exist (and > > shame on me if I added it). XTest.h uses XInput.h, but the latter is in > > x11proto-input-dev, not libxi-dev. > > If I understand, you suggest to apply the attached patch, right? > Index: debian/control > === > --- debian/control(révision 1454) > +++ debian/control(copie de travail) > @@ -8,7 +8,7 @@ > > Package: x11proto-xext-dev > Architecture: all > -Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, libxi-dev, > libxau-dev > +Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, x11proto-input-dev, > libxau-dev > Conflicts: libxext-dev (<< 6.8.2-25), libxtst-dev (<< 6.8.2-25) > Replaces: libxext-dev (<< 6.8.2-25), libxtst-dev (<< 6.8.2-25) > Pre-Depends: x11-common (>= 1:1.0) Yep. signature.asc Description: Digital signature
Processed: Re: Bug#356918: libx11: FTBFS in experimental.
Processing commands for [EMAIL PROTECTED]: > tags 356918 pending Bug#356918: libx11: FTBFS in experimental. There were no tags set. Tags added: pending > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#356918: libx11: FTBFS in experimental.
On Tue, Mar 14, 2006 at 11:59:58PM +0100, Kurt Roeckx wrote: > On Tue, Mar 14, 2006 at 11:50:34PM +0100, Denis Barbier wrote: > > On Tue, Mar 14, 2006 at 11:03:32PM +0100, Kurt Roeckx wrote: > > > Anyway, the package checks for a "inputproto.pc" file directly. > > > It doesn't check for xextproto.pc (at that point), and libxi-dev > > > doesn't even contain a .pc file. So you should build depend on > > > it directly too. > > > > I know nothing about pkg-config and won't fix this stuff myself, but > > just to clarify, configure.ac contains > > PKG_CHECK_MODULES(X11, xextproto xtrans xau xcmiscproto) > > which is surely why there is this dependency on x11proto-xext-dev. > > Yes, but later there is: > AM_CONDITIONAL(XKB, [ test x$XKB = xyes ]) > if test x"$XKB" = "xyes"; then >XKBPROTO_REQUIRES="kbproto inputproto" >PKG_CHECK_MODULES(XKBPROTO, $XKBPROTO_REQUIRES) > > > PS: I would be happy with the proposed patch, as now libxi-dev > and libx11-dev depend on each other, which really isn't something > you want. Right, so you need B-Ds on x11proto-xext-dev, libxtrans-dev, libxau-dev, x11proto-xcmisc-dev, x11proto-kb-dev, x11proto-input-dev. You'd need to version the libxau-dev B-D. Cheers, Daniel signature.asc Description: Digital signature
Bug#356918: libx11: FTBFS in experimental.
On Wed, Mar 15, 2006 at 01:21:58AM +0200, Daniel Stone wrote: > > If I understand, you suggest to apply the attached patch, right? > > > Index: debian/control > > === > > --- debian/control (révision 1454) > > +++ debian/control (copie de travail) > > @@ -8,7 +8,7 @@ > > > > Package: x11proto-xext-dev > > Architecture: all > > -Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, libxi-dev, > > libxau-dev > > +Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, > > x11proto-input-dev, libxau-dev > > Conflicts: libxext-dev (<< 6.8.2-25), libxtst-dev (<< 6.8.2-25) > > Replaces: libxext-dev (<< 6.8.2-25), libxtst-dev (<< 6.8.2-25) > > Pre-Depends: x11-common (>= 1:1.0) > > Yep. Done, thanks. Denis
Bug#356918: libx11: FTBFS in experimental.
On Wed, Mar 15, 2006 at 01:31:11AM +0200, Daniel Stone wrote: > Right, so you need B-Ds on x11proto-xext-dev, libxtrans-dev, libxau-dev, > x11proto-xcmisc-dev, x11proto-kb-dev, x11proto-input-dev. You'd need to > version the libxau-dev B-D. SVN is right now, except that libxtrans-dev is named xtrans-dev, which seems quite logical since it is not a library. Thanks again. Denis -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#356918: libx11: FTBFS in experimental.
On Wed, Mar 15, 2006 at 12:47:43AM +0100, Denis Barbier wrote: > On Wed, Mar 15, 2006 at 01:31:11AM +0200, Daniel Stone wrote: > > Right, so you need B-Ds on x11proto-xext-dev, libxtrans-dev, libxau-dev, > > x11proto-xcmisc-dev, x11proto-kb-dev, x11proto-input-dev. You'd need to > > version the libxau-dev B-D. > > SVN is right now, except that libxtrans-dev is named xtrans-dev, which > seems quite logical since it is not a library. > Thanks again. Yeah, I should realise that, since I was the one that named the thing ... duh. Thanks for committing. :) Daniel signature.asc Description: Digital signature
Unidentified subject!
-- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#356786: upgrading x11-common from 6.8.2.dfsg.1-7 to 6.9.0.dfsg.1-4 fails with error
On Tue, 2006-03-14 at 15:16 +1100, Ian MacKinnell wrote: > Package: x11-common > > Version: 6.8.2.dfsg.1-7 > > On attempting to upgrade x11-common from 6.8.2.dfsg.1-7 to > 6.9.0.dfsg.1-4, it fails to upgrade with the error message: > > trying to overwite `/usr/include/X11', which is also in package libxft-dev > > My installed version of libxft-dev is 2.1.8.2-3 Looks like a duplicate of http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=350298 . -- Earthling Michel Dänzer | Debian (powerpc), X and DRI developer Libre software enthusiast| http://svcs.affero.net/rm.php?r=daenzer
Bug#351779: marked as done (x.org r6 and r7 don't play nice together yet)
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: x11proto-core-dev,x11proto-fonts-dev,xtrans-dev Severity: serious Hi, I'm not quite sure which package to report this against: | Automatic build of libfs_2:1.0.0-1 on odin by sbuild/sparc 79 | Build started at 20060207-1038 | ** | Checking available source versions... | Fetching source files... | Reading Package Lists... | Building Dependency Tree... | Need to get 334kB of source archives. | Get:1 http://sinclair.farm.ftbfs.de experimental/main libfs 2:1.0.0-1 (dsc) [820B] | Get:2 http://sinclair.farm.ftbfs.de experimental/main libfs 2:1.0.0-1 (tar) [319kB] | Get:3 http://sinclair.farm.ftbfs.de experimental/main libfs 2:1.0.0-1 (diff) [14.5kB] | Fetched 334kB in 0s (2497kB/s) | Download complete and in download only mode | ** Using build dependencies supplied by package: | Build-Depends: debhelper (>= 4.0.0), pkg-config, x11proto-core-dev (>= 6.8.99.15+cvs.20050722-1), x11proto-fonts-dev, xtrans-dev | Checking for already installed source dependencies... | debhelper: missing | Using default version 5.0.22 | pkg-config: missing | x11proto-core-dev: missing | Using default version 7.0.4-1 | x11proto-fonts-dev: missing | xtrans-dev: missing | Checking for source dependency conflicts... | /usr/bin/sudo /usr/bin/apt-get --purge -o Dir::State::status=/home/buildd/build/chroot-experimental/var/lib/dpkg/status -o DPkg::Options::=--root=/home/buildd/build/chroot-experimental -o DPkg::Run-Directory=/home/buildd/build/chroot-experimental -q -y install debhelper pkg-config x11proto-core-dev x11proto-fonts-dev xtrans-dev | Reading Package Lists... | Building Dependency Tree... | The following extra packages will be installed: | debconf debconf-i18n debconf-utils file gettext gettext-base html2text | intltool-debian liblocale-gettext-perl libmagic1 libtext-charwidth-perl | libtext-iconv-perl libtext-wrapi18n-perl po-debconf x11-common | Suggested packages: | debconf-doc whiptail dialog gnome-utils libterm-readline-gnu-perl | libgnome2-perl libqt-perl libnet-ldap-perl dh-make cvs gettext-doc | libgnome-dev x-window-system-core x-window-system | Recommended packages: | apt-utils curl wget lynx libmail-sendmail-perl libcompress-zlib-perl | The following NEW packages will be installed: | debconf debconf-i18n debconf-utils debhelper file gettext gettext-base | html2text intltool-debian liblocale-gettext-perl libmagic1 | libtext-charwidth-perl libtext-iconv-perl libtext-wrapi18n-perl pkg-config | po-debconf x11-common x11proto-core-dev x11proto-fonts-dev xtrans-dev | 0 upgraded, 20 newly installed, 0 to remove and 9 not upgraded. | Need to get 69.1kB/4577kB of archives. | After unpacking 15.7MB of additional disk space will be used. | Get:1 http://sinclair.farm.ftbfs.de experimental/main x11proto-fonts-dev 2.0.2-1 [11.4kB] | Get:2 http://sinclair.farm.ftbfs.de experimental/main xtrans-dev 1.0.0-1 [57.8kB] | Fetched 69.1kB in 0s (841kB/s) | Selecting previously deselected package liblocale-gettext-perl. | (Reading database ... 9167 files and directories currently installed.) | Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.05-1_sparc.deb) ... | Selecting previously deselected package libtext-iconv-perl. | Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.4-2_sparc.deb) ... | Selecting previously deselected package libtext-charwidth-perl. | Unpacking libtext-charwidth-perl (from .../libtext-charwidth-perl_0.04-3_sparc.deb) ... | Selecting previously deselected package libtext-wrapi18n-perl. | Unpacking libtext-wrapi18n-perl (from .../libtext-wrapi18n-perl_0.06-4_all.deb) ... | Selecting previously deselected package debconf-i18n. | Unpacking debconf-i18n (from .../debconf-i18n_1.4.70_all.deb) ... | Selecting previously deselected package debconf. | Unpacking debconf (from .../debconf_1.4.70_all.deb) ... | Selecting previously deselected package x11-common. | Unpacking x11-common (from .../x11-common_6.9.0.dfsg.1-4_all.deb) ... | Setting up liblocale-gettext-perl (1.05-1) ... | Setting up libtext-iconv-perl (1.4-2) ... | Setting up libtext-charwidth-perl (0.04-3) ... | Setting up libtext-wrapi18n-perl (0.06-4) ... | Setting up debconf-i18n (1.4.70) ... | Setting up debconf (1.4.70) ... | | Setting up x11-common (6.9.0.dfsg.
Bug#354099: marked as done (xdm_1:1.0.1-1(sparc/experimental): FTBFS: configure error)
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xdm Version: 1:1.0.1-1 Severity: serious Hi, your package failed to build from source. The cause are probably the missing epoches in the build-dependencies. | Automatic build of xdm_1:1.0.1-1 on odin by sbuild/sparc 79 | Build started at 20060223-0719 | ** | Checking available source versions... | Fetching source files... | Reading Package Lists... | Building Dependency Tree... | Need to get 541kB of source archives. | Get:1 http://sinclair.farm.ftbfs.de experimental/main xdm 1:1.0.1-1 (dsc) [869B] | Get:2 http://sinclair.farm.ftbfs.de experimental/main xdm 1:1.0.1-1 (tar) [478kB] | Get:3 http://sinclair.farm.ftbfs.de experimental/main xdm 1:1.0.1-1 (diff) [62.3kB] | Fetched 541kB in 0s (3042kB/s) | Download complete and in download only mode | ** Using build dependencies supplied by package: | Build-Depends: debhelper (>= 4.0.0), pkg-config, libxmu-dev (>= 1.0.1-1), libx11-dev (>= 1.0.0-1), libxau-dev (>= 1.0.0-1), libxaw7-dev (>= 1.0.1-1), libpam0g-dev, libselinux1-dev, libxinerama-dev (>= 1.0.1-1) [...] | Setting up libice6 (6.9.0.dfsg.1-4) ... | | Setting up x-dev (6.9.0.dfsg.1-4) ... | Setting up libice-dev (6.9.0.dfsg.1-4) ... | Setting up libpam0g-dev (0.79-3.1) ... | | Setting up libsepol1-dev (1.10-2) ... | Setting up libselinux1-dev (1.28-4) ... | Setting up libsm6 (6.9.0.dfsg.1-4) ... | | Setting up libsm-dev (6.9.0.dfsg.1-4) ... | Setting up x11-common (6.9.0.dfsg.1-4) ... | Adding system startup for /etc/init.d/x11-common ... |/etc/rcS.d/S70x11-common -> ../init.d/x11-common | Setting up X server socket directory /tmp/.X11-unix...done. | Setting up ICE socket directory /tmp/.ICE-unix...done. | | Setting up xlibs-data (6.9.0.dfsg.1-4) ... | | Setting up libx11-6 (6.9.0.dfsg.1-4) ... | | Setting up libxext6 (6.9.0.dfsg.1-4) ... | | Setting up libxext-dev (6.9.0.dfsg.1-4) ... | Setting up libxi6 (6.9.0.dfsg.1-4) ... | | Setting up libxkbfile1 (6.9.0.dfsg.1-4) ... | | Setting up libxkbfile-dev (6.9.0.dfsg.1-4) ... | Setting up libxau6 (6.9.0.dfsg.1-4) ... | | Setting up libxau-dev (6.9.0.dfsg.1-4) ... | Setting up libxt6 (6.9.0.dfsg.1-4) ... | | Setting up libxmu6 (6.9.0.dfsg.1-4) ... | | Setting up libxpm4 (6.9.0.dfsg.1-4) ... | | Setting up libxaw7 (6.9.0.dfsg.1-4) ... | | Setting up libxp6 (6.9.0.dfsg.1-4) ... | | Setting up libxinerama1 (6.9.0.dfsg.1-4) ... | | Setting up pkg-config (0.20-1) ... | Setting up libxi-dev (6.9.0.dfsg.1-4) ... | Setting up libx11-dev (6.9.0.dfsg.1-4) ... | Setting up libxt-dev (6.9.0.dfsg.1-4) ... | Setting up libxmu-dev (6.9.0.dfsg.1-4) ... | Setting up libxp-dev (6.9.0.dfsg.1-4) ... | Setting up libxpm-dev (6.9.0.dfsg.1-4) ... | Setting up libxaw7-dev (6.9.0.dfsg.1-4) ... | Setting up libxinerama-dev (6.9.0.dfsg.1-4) ... | Checking correctness of source dependencies... | Toolchain package versions: libc6-dev_2.3.6-1 linux-kernel-headers_2.6.13+0rc3-2 gcc-4.0_4.0.2-9 g++-4.0_4.0.2-9 binutils_2.16.1cvs20060117-1 libstdc++6-4.0-dev_4.0.2-9 libstdc++6_4.0.2-9 | -- | dpkg-source: extracting xdm in xdm-1.0.1 | su: Authentication service cannot retrieve authentication info. | (Ignored) | dpkg-buildpackage: source package is xdm | dpkg-buildpackage: source version is 1:1.0.1-1 | dpkg-buildpackage: host architecture sparc | /usr/bin/fakeroot debian/rules clean | rm -f stampdir/genscripts | rm -f debian/*.config \ | debian/*.postinst \ | debian/*.postrm \ | debian/*.preinst \ | debian/*.prerm | rm -f stampdir/patch | Unapplying patches...nothing to do. | dh_testdir | rm -f .pc patches | rm -rf stampdir build-tree | rm -rf imports | dh_clean debian/shlibs.local \ |debian/MANIFEST.sparc debian/MANIFEST.sparc.new \ |debian/po/pothead | dh_testdir | dh_testroot | rm -rf obj-sparc-linux-gnu | dh_clean | debian/rules build | mkdir stampdir | >stampdir/stampdir | if [ ! -e stampdir/patches ]; then \ | mkdir stampdir/patches; \ | ln -s stampdir/patches .pc; \ | echo 2 >stampdir/patches/.version; \ | fi; \ | if [ ! -e stampdir/log ]; then \ | mkdir stampdir/log; \ | fi; \ | if [ ! -e
Bug#354130: marked as done (xbase-clients: "(WW) Couldn't load XKB keymap, falling back to pre-XKB keymap" with xorg 7.0)
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xbase-clients Version: 1:1.0.1-1 Severity: normal Tags: experimental patch See subject. The fix was provided by ejka on #debian-x: mkdir /var/lib/xkb/ With /var/lib/xkb/ X starts correctly. Best regards, Silvestre -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (101, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15.4-suspend2 Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Versions of packages xbase-clients depends on: ii libc6 2.3.6-1GNU C Library: Shared libraries an ii libdmx1 1:1.0.1-1 X11 Distributed Multihead extensio ii libfontconfig12.3.2-2generic font configuration library ii libfreetype6 2.1.10-1 FreeType 2 font engine, shared lib ii libfs62:1.0.0-1 X11 Font Services library ii libice6 1:1.0.0-1 X11 Inter-Client Exchange library ii libpng12-01.2.8rel-5 PNG library - runtime ii libsm66.9.0.dfsg.1-4 X Window System Session Management ii libx11-6 2:1.0.0-1 X11 client-side library ii libxau6 1:1.0.0-1 X11 authorisation library ii libxaw7 6.9.0.dfsg.1-4 X Athena widget set library ii libxcursor1 1.1.5.2-1 X cursor management library ii libxext6 1:1.0.0-1 X11 miscellaneous extension librar ii libxft2 2.1.8.2-3 FreeType-based font drawing librar ii libxi61:1.0.0-1 X11 Input extension library ii libxinerama1 6.9.0.dfsg.1-4 X Window System multi-head display ii libxkbfile1 1:1.0.1-1 X11 keyboard file manipulation lib ii libxmu6 6.9.0.dfsg.1-4 X Window System miscellaneous util ii libxmuu1 6.9.0.dfsg.1-4 lightweight X Window System miscel ii libxrandr26.9.0.dfsg.1-4 X Window System Resize, Rotate and ii libxrender1 1:0.9.0.2-1X Rendering Extension client libra ii libxss1 1:1.0.1-1 X11 Screen Saver extension library ii libxt66.9.0.dfsg.1-4 X Toolkit Intrinsics ii libxtrap6 1:1.0.0-1 X11 event trapping extension libra ii libxtst6 1:1.0.1-1 X11 Testing -- Resource extension ii libxv11:1.0.1-1 X11 Video extension library ii libxxf86dga1 1:1.0.1-1 X11 Direct Graphics Access extensi ii libxxf86misc1 1:1.0.0-1 X11 XFree86 miscellaneous extensio ii libxxf86vm1 1:1.0.0-1 X11 XFree86 video mode extension l ii x11-common1:7.0.0X Window System (X.Org) infrastruc ii xlibmesa-gl [libgl1] 6.9.0.dfsg.1-4 Mesa 3D graphics library [X.Org] ii zlib1g1:1.2.3-9 compression library - runtime xbase-clients recommends no packages. -- no debconf information signature.asc Description: Digital signature --- End Message --- --- Begin Message --- This bug has been reported against a package in experimental, does not affect unstable, and has since been fixed in experimental. I am thus closing it now, thanks for your report. Denis --- End Message ---
Bug#354246: marked as done (xbase-clients: Doesn't contain (at least) glxgears anymore)
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xbase-clients Version: 1:1.0.1-1 Severity: normal Contrary to what is said in the package description, (at least) glxgears is not present in the package. -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15-1-686 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages xbase-clients depends on: ii libc6 2.3.6-1GNU C Library: Shared libraries an ii libdmx1 1:1.0.1-1 X11 Distributed Multihead extensio ii libfontconfig12.3.2-2generic font configuration library ii libfreetype6 2.1.10-1 FreeType 2 font engine, shared lib ii libfs62:1.0.0-1 X11 Font Services library ii libice6 1:1.0.0-1 X11 Inter-Client Exchange library ii libpng12-01.2.8rel-5 PNG library - runtime ii libsm66.9.0.dfsg.1-4 X Window System Session Management ii libx11-6 2:1.0.0-1 X11 client-side library ii libxau6 1:1.0.0-1 X11 authorisation library ii libxaw7 6.9.0.dfsg.1-4 X Athena widget set library ii libxcursor1 1.1.5.2-1 X cursor management library ii libxext6 1:1.0.0-1 X11 miscellaneous extension librar ii libxft2 2.1.8.2-3 FreeType-based font drawing librar ii libxi61:1.0.0-1 X11 Input extension library ii libxinerama1 6.9.0.dfsg.1-4 X Window System multi-head display ii libxkbfile1 6.9.0.dfsg.1-4 X Keyboard Extension file parsing ii libxmu6 6.9.0.dfsg.1-4 X Window System miscellaneous util ii libxmuu1 6.9.0.dfsg.1-4 lightweight X Window System miscel ii libxrandr26.9.0.dfsg.1-4 X Window System Resize, Rotate and ii libxrender1 1:0.9.0.2-1X Rendering Extension client libra ii libxss1 1:1.0.1-1 X11 Screen Saver extension library ii libxt66.9.0.dfsg.1-4 X Toolkit Intrinsics ii libxtrap6 1:1.0.0-1 X11 event trapping extension libra ii libxtst6 1:1.0.1-1 X11 Testing -- Resource extension ii libxv11:1.0.1-1 X11 Video extension library ii libxxf86dga1 1:1.0.1-1 X11 Direct Graphics Access extensi ii libxxf86misc1 1:1.0.0-1 X11 XFree86 miscellaneous extensio ii libxxf86vm1 1:1.0.0-1 X11 XFree86 video mode extension l ii x11-common1:7.0.0X Window System (X.Org) infrastruc ii xlibmesa-gl [libgl1] 6.9.0.dfsg.1-4 Mesa 3D graphics library [X.Org] ii zlib1g1:1.2.3-9 compression library - runtime xbase-clients recommends no packages. -- no debconf information --- End Message --- --- Begin Message --- This bug has been reported against a package in experimental, does not affect unstable, and has since been fixed in experimental. I am thus closing it now, thanks for your report. Denis --- End Message ---
Bug#354975: marked as done (xfonts-base: fails at installing properly when upgrading from 6.9.0)
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xfonts-base Version: 1:1.0.0-1 Severity: normal apt-listchanges: Mailing eric: apt-listchanges: changelogs for atto Sélection du paquet xfonts-encodings précédemment désélectionné. (Lecture de la base de données... 62094 fichiers et répertoires déjà installés.) Dépaquetage de xfonts-encodings (à partir de .../xfonts-encodings_1%3a1.0.0-1_all.deb) ... Sélection du paquet xfonts-utils précédemment désélectionné. Dépaquetage de xfonts-utils (à partir de .../xfonts-utils_1%3a1.0.0-1_i386.deb) ... Remplacement de fichiers dans l'ancien paquet xutils ... Préparation du remplacement de xfonts-base 6.9.0.dfsg.1-4 (en utilisant .../xfonts-base_1%3a1.0.0-1_all.deb) ... Dépaquetage de la mise à jour de xfonts-base ... dpkg : avertissement - impossible de supprimer l'ancien fichier « /usr/X11R6/lib/X11/fonts/encodings/large » : Le répertoire n'est pas vide. dpkg : avertissement - impossible de supprimer l'ancien fichier « /usr/X11R6/lib/X11/fonts/encodings » : Le répertoire n'est pas vide. Paramétrage de xfonts-encodings (1.0.0-1) ... Paramétrage de xfonts-utils (1.0.0-1) ... Paramétrage de xfonts-base (1.0.0-1) ... usage error: unrecognized option Usage: update-fonts-dir DIRECTORY ... update-fonts-dir { -h | --help } This program is a wrapper for mkfontdir(1x) that is primarily useful to Debian package maintainer scripts. See update-fonts-dir(8) for more information. Options: -h, --help display this usage message and exit xfonts-base postinst warning: update-fonts-dir --x11r7-layout misc failed; font directory data may not be up to date usage error: unrecognized option Usage: update-fonts-alias DIRECTORY ... update-fonts-alias { -h | --help } This program combines X font alias information from several packages into a single file that is placed in each specified X font directory DIRECTORY. This utility is primarily useful to Debian package maintainer scripts. See update-fonts-alias(8) for more information. Options: -h, --help display this usage message and exit xfonts-base postinst warning: update-fonts-alias --x11r7-layout misc failed; font directory data may not be up to date atto:~[0]# export LC_ALL -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.14.2n Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C) Versions of packages xfonts-base depends on: ii x11-common1:7.0.0X Window System (X.Org) infrastruc ii xfonts-utils 1:1.0.0-1 X Window System font utility progr xfonts-base recommends no packages. -- no debconf information --- End Message --- --- Begin Message --- This bug has been reported against a package in experimental, does not affect unstable, and has since been fixed in experimental. I am thus closing it now, thanks for your report. Denis --- End Message ---
Bug#354848: marked as done (xserver-xorg-video-savage: package is empty)
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xserver-xorg-video-savage Version: 1:2.0.2.3-1 Severity: grave Justification: renders package unusable There is nothing in this package. Probably a packaging mistake. --- End Message --- --- Begin Message --- This bug has been reported against a package in experimental, does not affect unstable, and has since been fixed in experimental. I am thus closing it now, thanks for your report. Denis --- End Message ---
Bug#355703: marked as done (xorg-dev: package needs dependencies update)
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xorg-dev Severity: grave Tags: experimental Justification: renders package unusable -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package depends on libxaw[6|7]-dev at the same time. But these libs are in conflict. I'm sure you have noticed this ( you have a new libxaw in new). This report is only a reminder to not forget about it. Cheers Carsten Luedtke - -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15.3-1-k7 Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFEDY0jK569vX68PzgRAig3AKDwwWQT4d5lCbVRTcSBWoxCx0WfZACgxmlV AqBHOot3gOMmam5xTH51M0A= =CIwG -END PGP SIGNATURE- --- End Message --- --- Begin Message --- This bug has been reported against a package in experimental, does not affect unstable, and has since been fixed in experimental. I am thus closing it now, thanks for your report. Denis --- End Message ---
Bug#354977: marked as done ([xfonts-75dpi] chokes in postinst when upgrading from 6.9.0)
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xfonts-75dpi Version: 1:1.0.0-1 Severity: normal atto:~[0]# apt-get install xfonts-75dpi -t experimental Reading package lists... Done Building dependency tree... Done The following packages will be upgraded: xfonts-75dpi 1 upgraded, 0 newly installed, 0 to remove and 297 not upgraded. Need to get 3470kB of archives. After unpacking 754kB disk space will be freed. WARNING: The following packages cannot be authenticated! xfonts-75dpi Install these packages without verification [y/N]? y Get:1 http://ftp.de.debian.org ../project/experimental/main xfonts-75dpi 1:1.0.0-1 [3470kB] Fetched 3470kB in 39s (87.5kB/s) Reading changelogs... Done xfonts-75dpi (1:1.0.0-1) experimental; urgency=low [ David Nusinow ] * First modular upload to Debian [ Eugene Konev ] * Move fonts to /usr/share/fonts/X11/75dpi. * Resurrect xfonts-75dpi-transcoded. -- David Nusinow <[EMAIL PROTECTED]> Sun, 19 Feb 2006 10:22:56 -0500 apt-listchanges: Do you want to continue? [Y/n]? apt-listchanges: Mailing eric: apt-listchanges: changelogs for atto (Reading database ... 62337 files and directories currently installed.) Preparing to replace xfonts-75dpi 6.9.0.dfsg.1-4 (using .../xfonts-75dpi_1%3a1.0.0-1_all.deb) ... Unpacking replacement xfonts-75dpi ... dpkg: warning - unable to delete old file `/etc/X11/fonts/75dpi': Directory not empty Setting up xfonts-75dpi (1.0.0-1) ... usage error: unrecognized option Usage: update-fonts-dir DIRECTORY ... update-fonts-dir { -h | --help } This program is a wrapper for mkfontdir(1x) that is primarily useful to Debian package maintainer scripts. See update-fonts-dir(8) for more information. Options: -h, --help display this usage message and exit xfonts-75dpi postinst warning: update-fonts-dir --x11r7-layout 75dpi failed; font directory data may not be up to date usage error: unrecognized option Usage: update-fonts-alias DIRECTORY ... update-fonts-alias { -h | --help } This program combines X font alias information from several packages into a single file that is placed in each specified X font directory DIRECTORY. This utility is primarily useful to Debian package maintainer scripts. See update-fonts-alias(8) for more information. Options: -h, --help display this usage message and exit xfonts-75dpi postinst warning: update-fonts-alias --x11r7-layout 75dpi failed; font directory data may not be up to date atto:~[0]# -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.14.2n Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C) Versions of packages xfonts-75dpi depends on: ii x11-common1:7.0.0X Window System (X.Org) infrastruc ii xfonts-utils 1:1.0.0-1 X Window System font utility progr xfonts-75dpi recommends no packages. -- no debconf information --- End Message --- --- Begin Message --- This bug has been reported against a package in experimental, does not affect unstable, and has since been fixed in experimental. I am thus closing it now, thanks for your report. Denis --- End Message ---
Bug#355762: marked as done (xfs in experimental does not start and comes with invalid config file)
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xfs Version: 1:1.0.1-1 Severity: normal xfs in experimental is broken: It comes without init script and will not start automatically. config file - /usr/lib/X11/fs/config is not marked as a config file. The config file has wrong font paths. It expects fonts to be in /usr/lib/X11/fonts/ but they should be in /usr/share/fonts/X11. Also it includes "cache-hi-mark = 2048", "cache-low-mark = 1433" and "cache-balance = 70" which do no longer work. Regards /Rasmus -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-rc5 Locale: LANG=da_DK.UTF-8, LC_CTYPE=da_DK.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to da_DK.UTF-8) Versions of packages xfs depends on: ii libc6 2.3.6-3GNU C Library: Shared libraries an ii libfs62:1.0.0-1 X11 Font Services library ii libxfont1 1:1.0.0-1 X11 font rasterisation library xfs recommends no packages. -- no debconf information --- End Message --- --- Begin Message --- This bug has been reported against a package in experimental, does not affect unstable, and has since been fixed in experimental. I am thus closing it now, thanks for your report. Denis --- End Message ---
Bug#355742: marked as done (missing build dependency)
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xkeyboard-config Version: 0.6-2 dpkg-checkbuilddeps -B doesn't list anything missing but: fakeroot debian/rules binary-arch dh_testdir ./configure --prefix=/usr --disable-xkbcomp-symlink --with-xkb-rules-symlink=xorg --with-xkb-base=/etc/X11/xkb-data checking for a BSD-compatible install... /scratchbox/tools/bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking for xkbcomp... not_found configure: error: xkbcomp is required to install the xkb data files make: *** [config.status] Error 1 --- End Message --- --- Begin Message --- This bug has been reported against a package in experimental, does not affect unstable, and has since been fixed in experimental. I am thus closing it now, thanks for your report. Denis --- End Message ---
Bug#356039: marked as done (xserver-xorg: xserver does not finds rgb.txt colors database)
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xserver-xorg Version: 1:7.0.2 Severity: normal Hi After upgrading to experimental I needed to point xserver to the rgb colors database: Section "Files" RgbPath "/etc/X11/rgb" # ... EndSection without it some clients (as for example Emacs) refused to start complaining about unknown color "black" or similar. So xserver must expect it in different location than current /etc/X11/rgb.txt in x11-common. -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15+vserver Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2) Versions of packages xserver-xorg depends on: ii debconf 1.4.71 Debian configuration management sy ii discover1 1.7.17 hardware identification system ii laptop-detect 0.12.1 attempt to detect a laptop ii mdetect 0.5.2.1mouse device autodetection tool ii x11-common1:7.0.2X Window System (X.Org) infrastruc ii xresprobe 0.4.18-1 X Resolution Probe ii xserver-xorg-core 1:1.0.1-1 X.Org X server -- core server ii xserver-xorg-input-al 1:7.0.2the X.Org X server -- input driver ii xserver-xorg-input-ev 1:1.0.0.5-1X.Org X server -- evdev input driv ii xserver-xorg-input-kb 1:1.0.1.3-1X.Org X server -- keyboard input d ii xserver-xorg-input-mo 1:1.0.3.1-1X.Org X server -- mouse input driv ii xserver-xorg-video-al 1:7.0.2the X.Org X server -- output drive ii xserver-xorg-video-ap 1:1.0.1.5-1X.Org X server -- APM display driv ii xserver-xorg-video-ar 1:0.5.0.5-1X.Org X server -- ark display driv ii xserver-xorg-video-at 1:6.5.7.3-1X.Org X server -- ATI display driv ii xserver-xorg-video-ch 1:1.0.1.3-2X.Org X server -- Chips display dr ii xserver-xorg-video-ci 1:1.0.0.5-1X.Org X server -- Cirrus display d ii xserver-xorg-video-cy 1:1.0.0.5-1X.Org X server -- Cyrix display dr ii xserver-xorg-video-du 1:0.1.0.5-1X.Org X server -- dummy display dr ii xserver-xorg-video-fb 1:0.1.0.5-1X.Org X server -- fbdev display dr ii xserver-xorg-video-gl 1:1.0.1.3-1X.Org X server -- Glint display dr ii xserver-xorg-video-i1 1:1.1.0.5-1X.Org X server -- i128 display dri ii xserver-xorg-video-i7 1:1.0.0.5-1X.Org X server -- i740 display dri ii xserver-xorg-video-i8 1:1.4.1.3-2X.Org X server -- Intel i8xx, i9xx ii xserver-xorg-video-im 1:1.0.0.5-1X.Org X server -- IMSTT display dr ii xserver-xorg-video-mg 1:1.2.1.3-2X.Org X server -- MGA display driv ii xserver-xorg-video-ne 1:1.0.0.5-1X.Org X server -- Neomagic display ii xserver-xorg-video-ne 1:0.1.4.1-2X.Org X server -- Newport display ii xserver-xorg-video-ns 1:2.7.6.5-1X.Org X server -- NSC display driv ii xserver-xorg-video-nv 1:1.0.1.5-1X.Org X server -- NV display drive ii xserver-xorg-video-re 1:4.0.1.3.dfsg.1-1 X.Org X server -- Rendition displa ii xserver-xorg-video-s3 1:1.8.6.5-1X.Org X server -- S3 ViRGE display ii xserver-xorg-video-sa 1:2.0.2.3-2X.Org X server -- Savage display d ii xserver-xorg-video-si 1:1.3.1.5-2X.Org X server -- SiliconMotion di ii xserver-xorg-video-si 1:0.8.1.3-1X.Org X server -- SiS display driv ii xserver-xorg-video-si 1:0.7.1.3-1X.Org X server -- SiS USB display ii xserver-xorg-video-td 1:1.1.1.3-2X.Org X server -- tdfx display dri ii xserver-xorg-video-tg 1:1.0.0.5-2X.Org X server -- TGA display driv ii xserver-xorg-video-tr 1:1.0.1.2-1X.Org X server -- Trident display ii xserver-xorg-video-ts 1:1.0.0.5-1X.Org X server -- Tseng display dr ii xserver-xorg-video-ve 1:1.0.1.3-1X.Org X server -- VESA display dri ii xserver-xorg-video-vg 1:4.0.0.5-1X.Org X server -- VGA display driv ii xserver-xorg-video-vi 1:0.1.33.2-1 X.Org X server -- VIA display driv ii xserver-xorg-video-vm 1:10.11.1.3-1 X.Org X server -- VMware display d ii xserver-xorg-video-vo 1:1.0.0.5-1X.Org X server -- Voodo
Bug#356181: marked as done (Font paths wrong in dexconf from x11-common 1:7.0.2)
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: x11-common Version: 1:7.0.2 Severity: important Tags: patch The package version should be 1:7.0.2 not 1:7.02 and the file order for the patch should perhaps be reversed: --- /usr/bin/dexconf2006-03-08 03:42:10.0 +0100 +++ ./dexconf 2006-03-10 09:12:09.0 +0100 @@ -202,13 +202,13 @@ exec 4>"$DEXCONFTMPDIR/Files" cat >&4 < Package: x11-common > Version: 1:7.02 > Severity: important > Tags: patch > > Font paths are wrong in the dexconf script, see attached path: > > > --- ./dexconf 2006-03-10 09:12:09.0 +0100 > +++ /usr/bin/dexconf2006-03-08 03:42:10.0 +0100 > @@ -202,13 +202,13 @@ ... --- End Message --- --- Begin Message --- This bug has been reported against a package in experimental, does not affect unstable, and has since been fixed in experimental. I am thus closing it now, thanks for your report. Denis --- End Message ---
Bug#356415: marked as done (libx11-6: Should conflict with (old) xlibs-data)
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: libx11-6 Version: 1.0.0-1 Severity: serious Hi, It seems there is a conflict between libx11-6 and xlibs-data: Unpacking xlibs-data (from .../xlibs-data_6.9.0.dfsg.1-4_all.deb) ... dpkg: error processing /var/cache/apt/archives/xlibs-data_6.9.0.dfsg.1-4_all.deb (--unpack): trying to overwrite `/usr/X11R6/lib/X11/locale', which is also in package libx11-6 dpkg-deb: subprocess paste killed by signal (Broken pipe) Errors were encountered while processing: /var/cache/apt/archives/xlibs-data_6.9.0.dfsg.1-4_all.deb E: Sub-process /usr/bin/dpkg returned an error code (1) Also, I don't think you can replace a directory by a symlink. Kurt --- End Message --- --- Begin Message --- This bug has been reported against a package in experimental, does not affect unstable, and has since been fixed in experimental. I am thus closing it now, thanks for your report. Denis --- End Message ---
Bug#356421: marked as done (xutils: FTBFS: Missing version for build dependencies.)
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xutils Version: 1:1.0.1-1 Severity: serious Tags: experimental Hi, Your package is failing to build with the following error: checking pkg-config is at least version 0.9.0... yes checking for FSLSFONTS... configure: error: Package requirements (x11 libfs) were not met: No package 'x11' found No package 'libfs' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables FSLSFONTS_CFLAGS and FSLSFONTS_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. make: *** [build-stamp] Error 1 It seems both libx11-dev and libfs-dev are missing the version requirements to build it. Kurt --- End Message --- --- Begin Message --- This bug has been reported against a package in experimental, does not affect unstable, and has since been fixed in experimental. I am thus closing it now, thanks for your report. Denis --- End Message ---
Bug#356437: marked as done (xorg: depends on uninstallable xfonts-scalable)
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xorg Severity: grave Tags: experimental Justification: renders package unusable -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 xorg depends on xfonts-scalable-1:1.0.0-1 which isn't in the archive and I haven't seen it in new. Please upload this version of xfonts-scalable and allow an older version of it (if possible) until this is fixed. Cheers Carsten Luedtke - -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15.3-1-k7 Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2.2 (GNU/Linux) iD8DBQFEE4ACK569vX68PzgRAmxOAJ4qvXWGI8HSkYdAS/eo0CxwPSHCvACZAQg6 KxYg3WxuCDyNMSFFkYg0Yok= =lb5I -END PGP SIGNATURE- --- End Message --- --- Begin Message --- This bug has been reported against a package in experimental, does not affect unstable, and has since been fixed in experimental. I am thus closing it now, thanks for your report. Denis --- End Message ---
Bug#356443: marked as done (xorg: xorg depends on unavailable xfonts-scalable (>= 1:1.0.0-1))
Your message dated Wed, 15 Mar 2006 01:11:29 +0100 with message-id <[EMAIL PROTECTED]> and subject line Closing bugs in experimental has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xorg Severity: grave The version of xfonts-scalable (>= 1:1.0.0-1) needed by package xorg is unavailable. I'm used to waiting for newer dependencies for new packages, but this has remained unsatisfied for some time now. I want to make sure nothing was overlooked. Thanks, Chris Thiel -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15-1-686 Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) --- End Message --- --- Begin Message --- This bug has been reported against a package in experimental, does not affect unstable, and has since been fixed in experimental. I am thus closing it now, thanks for your report. Denis --- End Message ---