Bug#116507: Unlimited Music, Movie, Games, and Software Downloads Millions

2005-01-12 Thread Angel Abel
Do you remember when I was telling you about that link I received?
http://www.2oo5-downloading.com/gr8.html
You can file share dvd's, video games & music.  I bookmarked about 9 pages of 
dvd movies I wanted.
Already started downloading them.
Wait untill you see the selection of music and dvd's - it's pretty awsome.
Theres a few pages in there on how to get your selection on CD if you need the 
help.
I noticed in the movie section over lunch, they have titles for download that 
are still in theaters - it's fantastic.
Tell me when you get back.
Angel
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Bug#267503: upgrading from potato -- /etc/X11/Xwrapper.config not created

2005-01-12 Thread Brian Sammon
> Nevertheless, I'll accept a patch if it's clean, as long as that's not
> interpreted as a guarantee of potato->sarge support in general.

Okay, how's this?
I haven't actually downloaded the source and rebuilt the packages to test this 
yet, but it looks good...
If someone else is willing to build some test binaries with this patch, I 
could test those a lot faster than I would get around to downloading & 
building the source myself.
--- xserver-common.preinst.in.orig	2005-01-12 17:56:20.0 -0500
+++ xserver-common.preinst.in	2005-01-12 18:00:33.0 -0500
@@ -44,7 +44,7 @@
 
   # if performing a fresh install, place config files under management if they
   # do *not* already exist
-  if [ "$1" = "install" ]; then
+  if [ "$1" = "install" ] || ["$1" = "upgrade"] && dpkg --compare-versions "$2" lt "4.0.1-6"; then
 if ! [ -e "$XWRAPPER_CONFIG" ]; then
   # only proceed if config file auxiliary directory exists
   if [ -d "$CONFIG_AUX_DIR" ]; then
@@ -56,7 +56,7 @@
   fi
 
   # if upgrading from < 4.2.1-10, migrate X wrapper config file
-  if [ "$1" = "upgrade" ] && dpkg --compare-versions "$2" lt-nl "4.2.1-10"; then
+  if [ "$1" = "upgrade" ] && dpkg --compare-versions "$2" lt-nl "4.2.1-10" && dpkg --compare-versions "$2" ge "4.0.1-6"; then
 # do we have a configuration file to work with?
 if [ -e "$XWRAPPER_CONFIG" ]; then
   # only proceed if config file auxiliary directory exists


Bug#290238: Overquoting in xvfb-run

2005-01-12 Thread Olly Betts
Package: xvfb
Version: 4.3.0.dfsg.1-10

xvfb-run no longer works correctly.  Looking at the code and the
changelog, it appears it's been pretty much unusable since
4.3.0.dfsg.1-9 was uploaded on 9th December 2004, so I guess it's not a
particular popular utility.  But I find it very useful, so I tracked
down what's going wrong.

The problem is quoting of the arguments passed to Xvfb - both $XVFBARGS
and $LISTENTCP are quoted, so each is passed as a single argument and
Xvfb fails to understand them.  Removing the double quotes allows the
shell to split them into several arguments to Xvfb, and xvfb-run works
once again.  Here's a patch:

--- /usr/bin/xvfb-run   2004-12-15 19:15:49.0 +
+++ xvfb-run2005-01-13 03:48:02.0 +
@@ -140,7 +140,7 @@
 MCOOKIE=$(mcookie)
 XAUTHORITY=$AUTHFILE xauth add ":$SERVERNUM" "$XAUTHPROTO" "$MCOOKIE" \
   >"$ERRORFILE" 2>&1
-XAUTHORITY=$AUTHFILE Xvfb ":$SERVERNUM" "$XVFBARGS" "$LISTENTCP" >"$ERRORFILE" 
\
+XAUTHORITY=$AUTHFILE Xvfb ":$SERVERNUM" $XVFBARGS $LISTENTCP >"$ERRORFILE" \
   2>&1 &
 XVFBPID=$!
 sleep "$STARTWAIT"

Incidentally, I noticed that the changelog.Debian currently contains
what appears to be some leftovers from a CVS conflict:

<<< .working
-- Fabio M. Di Nitto <[EMAIL PROTECTED]>  Thu, 09 Dec 2004 17:14:45 +0100
===
-- Fabio M. Di Nitto <[EMAIL PROTECTED]>  Thu,  9 Dec 2004 17:14:45 +0100
>>> .merge-right.r2073

Cheers,
Olly


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#230597: xserver-xfree86: have configure script to check if defoma is installed and add defoma fontpaths if so

2005-01-12 Thread Sebastian Kapfer
Am Donnerstag, den 19.02.2004, 18:24 +0100 schrieb Sebastian Kapfer:
> Am So, den 01.02.2004 schrieb Friedemann Schorer um 09:53:
> > Package: xserver-xfree86
> > Version: 4.2.1-12.1
> > Severity: wishlist
> > 
> > Debian now supports the usage of TrueType fonts very well
> 
> You must be joking ;-)
> 
> > and so it
> > might be a good thing to have the configure-script checking if defoma
> > and/or x-ttcidfont-conf are installed and, if so, add the standard
> > defoma FontPath lines to the Files section in /etc/X11/XF86config-4.
> > I'd appreciate it, and maybe others too to have TT capability from the
> > first start of X on :-)
> 
> Agreed. Using defoma shouldn't require manual editing of XF86Config-4.
> 
> FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
> FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
> 
> In fact, I'd vote for adding those two FontPath lines in any case,
> wether x-ttcidfont-conf is installed or not. XF86 will ignore the font
> directory when it isn't readable (yes, there's a warning, but that
> shouldn't scare anyone).
> 
> Users are likely to install x-ttcidfont-conf later on anyway, when they
> find out that some classical X apps don't offer all installed TT fonts.
> We're saving them at least one step (reconfiguring X or manually editing
> XF86Config-4) when the FontPath line is already in place and working.
> 
> As an added bonus, one could remove the unfortunate Debconf warning from
> x-ttcidfont-conf which tells users how to modify their XF86Config-4. (Or
> rather, fails to tell the users. Judging from reports on debian-user,
> quite a few don't understand what they're supposed to do.)

Please, can something be done about this bug?  At least apply my
_trivial_ suggestion from above?  It defeats the purpose of all that
Debconf/Defoma magic when users have to amend the fontpaths on their
own.  It would be very sad if Sarge shipped with this misbehaviour.

-- 
Best Regards,  | This signature is currently under construction.
 Sebastian | Please check back later!


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#290140: libx11-6: xfree86 includes in sun/us won't work

2005-01-12 Thread Denis Barbier
reassign 290140 xlibs
tags 290140 + pending
merge 290140 286268
thanks

On Wed, Jan 12, 2005 at 10:47:02PM +0100, Daniel van Eeden wrote:
> Package: libx11-6
> Version: 4.3.0.dfsg.1-10
> Severity: important
> 
> 
> When I started X on my newly installed Ultra 60 I got the "keybinding
> not found" error.
> With an "strace -eopen" of the XFree86 server process I got some error
> messages with line numbers. The errors all pointed to the "include
> "srvr_ctrl(xfree86)";" lines. It worked after puting some slashes before
> those lines.
> The other includes do _not_ end with a semicolon...

This bug will be fixed by the next upload.

Denis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#290140: libx11-6: xfree86 includes in sun/us won't work

2005-01-12 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 290140 xlibs
Bug#290140: libx11-6: xfree86 includes in sun/us won't work
Bug reassigned from package `libx11-6' to `xlibs'.

> tags 290140 + pending
Bug#290140: libx11-6: xfree86 includes in sun/us won't work
There were no tags set.
Tags added: pending

> merge 290140 286268
Bug#286268: xlibs: sun keyboard not working, error in xkb symbols file
Bug#290140: libx11-6: xfree86 includes in sun/us won't work
Bug#287810: xlibs: syntax error in /etc/X11/xkb/symbols/sun/us prevents xkbcomp 
from working
Merged 286268 287810 290140.

> 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#290140: libx11-6: xfree86 includes in sun/us won't work

2005-01-12 Thread Daniel van Eeden
Package: libx11-6
Version: 4.3.0.dfsg.1-10
Severity: important


When I started X on my newly installed Ultra 60 I got the "keybinding
not found" error.
With an "strace -eopen" of the XFree86 server process I got some error
messages with line numbers. The errors all pointed to the "include
"srvr_ctrl(xfree86)";" lines. It worked after puting some slashes before
those lines.
The other includes do _not_ end with a semicolon...

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: sparc (sparc64)
Kernel: Linux 2.4.27-1-sparc64-smp
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages libx11-6 depends on:
ii  debconf [debconf-2.0]1.4.30.11   Debian configuration management sy
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  xfree86-common   4.3.0.dfsg.1-10 X Window System (XFree86) infrastr
ii  xlibs-data   4.3.0.dfsg.1-10 X Window System client data

-- debconf information:
  libx11-6/migrate_xkb_dir: true


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#290025: xserver-xfree86: xfree startup problem

2005-01-12 Thread Denis Barbier
On Wed, Jan 12, 2005 at 01:54:08PM +0100, Arno wrote:
> Package: xserver-xfree86
> Version: 4.3.0.dfsg.1-10
> Severity: normal
> 
> 
> Hello,
> 
> Since today i've got a problem when I start X-Window, I've got this message 
> (the X server stop) :
> the XKEYBOARD keymap compiler (xkbcomp) reports:
> 
> [...]
> > Warning :   Type "ONE_LEVEL" has 1 levels, but  has 2 symbols
>   Ignoring extra symbols
> Errors from xkbcomp are not fatal to the X server  

The last sentence tells that this warning cannot make X abort.
If you did not upgrade today, maybe one of your partitions is full?

Denis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: tagging 233551

2005-01-12 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.8.5
>  # fixed in Debian X Strike Force XFree86 repository; to view, run "svn diff 
> -r 2132:2133 svn://necrotic.deadbeast.net/xfree86"
> tags 233551 + pending
Bug#233551: xdm: please add SELinux support
Tags were: patch upstream
Tags added: 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 [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



X Strike Force XFree86 SVN commit: r2133 - in trunk/debian: . patches

2005-01-12 Thread X Strike Force SVN Repository Admin
Author: branden
Date: 2005-01-12 14:56:03 -0500 (Wed, 12 Jan 2005)
New Revision: 2133

Added:
   trunk/debian/patches/099s_selinux_support.diff
Modified:
   trunk/debian/CHANGESETS
   trunk/debian/TODO
   trunk/debian/changelog
Log:
Add patch from Manoj Srivastava that implements support for SELinux in
imake and xdm.  (Note that this patch only adds source-level support, and
does not actually enable it.)  Thanks, Manoj!  (Closes: #233551)


Modified: trunk/debian/CHANGESETS
===
--- trunk/debian/CHANGESETS 2005-01-12 07:11:51 UTC (rev 2132)
+++ trunk/debian/CHANGESETS 2005-01-12 19:56:03 UTC (rev 2133)
@@ -132,4 +132,9 @@
 operational error, not a user-input error.
 2128, 2129, 2130
 
+Add patch from Manoj Srivastava that implements support for SELinux in
+imake and xdm.  (Note that this patch only adds source-level support, and
+does not actually enable it.)  Thanks, Manoj!  (Closes: #233551)
+2133
+
 vim:set ai et sts=4 sw=4 tw=80:

Modified: trunk/debian/TODO
===
--- trunk/debian/TODO   2005-01-12 07:11:51 UTC (rev 2132)
+++ trunk/debian/TODO   2005-01-12 19:56:03 UTC (rev 2133)
@@ -50,7 +50,6 @@
 port.  See http://lists.debian.org/debian-68k/2004/08/msg00392.html>.
 * #245541: Evaluate Sven Luther's driver DDK package patch:
   http://lists.debian.org/debian-x/2003/debian-x-200311/msg2.html
-* #233551: add SELinux support to xdm
 
 Post 4.3.0-1
 

Modified: trunk/debian/changelog
===
--- trunk/debian/changelog  2005-01-12 07:11:51 UTC (rev 2132)
+++ trunk/debian/changelog  2005-01-12 19:56:03 UTC (rev 2133)
@@ -105,8 +105,12 @@
 XOpenDisplay() fails.  Being unable to connect to the X server is an
 operational error, not a user-input error.
 
- -- Branden Robinson <[EMAIL PROTECTED]>  Tue, 11 Jan 2005 01:17:16 -0500
+  * Add patch from Manoj Srivastava that implements support for SELinux in
+imake and xdm.  (Note that this patch only adds source-level support, and
+does not actually enable it.)  Thanks, Manoj!  (Closes: #233551)
 
+ -- Branden Robinson <[EMAIL PROTECTED]>  Wed, 12 Jan 2005 14:54:44 -0500
+
 xfree86 (4.3.0.dfsg.1-10) unstable; urgency=medium
 
   * Upload urgency set to medium due to fix for stable-release-critical bugs

Added: trunk/debian/patches/099s_selinux_support.diff
===
--- trunk/debian/patches/099s_selinux_support.diff  2005-01-12 07:11:51 UTC 
(rev 2132)
+++ trunk/debian/patches/099s_selinux_support.diff  2005-01-12 19:56:03 UTC 
(rev 2133)
@@ -0,0 +1,186 @@
+$Id$
+
+Add support for SELinux.  Note that this patch only adds source-level
+support, and does not actually enable it.
+
+This patch by Manoj Srivastava.  As he notes in Debian #233551:
+
+As implemented, the patch merely provides a capability, which
+has to be explicitly turned on at compile time with -DHasSELinux=YES.
+If one does not compile with -DHasSELinux=YES, the patch is a no-op.
+Since none of the code is compiled in, there is no change in
+behaviour, nor is there any performance hit.
+
+If you do turn on the SELinux compatibility with -DHasSELinux,
+you would need libselinux at build time.  In other words, the
+mainline X build does not build depend on SELinux; the dependency is
+only invoked if you explicitly pass a parameter to imake.
+
+Even when SELinux compatibility is compiled in, on a non
+SELinux kernel it is dead code; there is no change in functionality,
+apart from a single check to see if SELinux is available at each
+login. The SELinux code paths are not exercised on non-SELinux
+kernels.
+
+The more permanent way to enable SELinux support is to #define HasSELinux
+YES in the relevant distribution-specific section of linux.cf.  If that is
+done for Debian, the source package will need to add a build-dependency on
+the libselinux1-dev package.
+
+Not submitted upstream to XFree86 or X.Org.
+
+--- xc/config/cf/Imake.tmpl~   2005-01-12 11:55:51.0 -0500
 xc/config/cf/Imake.tmpl2005-01-12 11:56:26.0 -0500
+@@ -2033,17 +2033,21 @@
+  * EXTRA_INCLUDES contains project-specific includes set in project incfiles
+  * INCLUDES contains client-specific includes set in Imakefile
+  * LOCAL_LDFLAGS contains client-specific ld flags flags set in Imakefile
++ * SELINUX_INCLUDES contains SELinux-specific includes set in the appropriate 
.cf file
++ * SELINUX_LDFLAGS contains SELinux-specific ld flags set in the appropriate 
.cf file
++ * SELINUX_CFLAGS contains SELinux-specific compiler flags set in the .cf file
++ * SELINUX_LIBS contains SELinux-specific libraries to link with set in the 
.cf file
+  */
+-  ALLINCLUDES = $(INCLUDES) $(EXTRA_INCLUDES) $(TOP_INCLUDES) 
$(INSTALLED_INCLUDES) $(STD_INCLUDES)
++  A

Bug#258942: fixed in xfree86_4.3.0.dfsg.1-9

2005-01-12 Thread Julien Cristau
Hello XSF,

I believe this bug should be closed:

xfree86 (4.3.0.dfsg.1-9) unstable; urgency=high
[...]
  * Stop manually compressing the plain text version of the Debian X FAQ;
dh_compress will take care of that.  Tell dh_compress to avoid compressing
the XHTML version of the FAQ.
[...]
 -- Fabio M. Di Nitto <[EMAIL PROTECTED]>  Thu,  9 Dec 2004 17:14:45 +0100

Regards,
Julien


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#290025: xserver-xfree86: xfree startup problem

2005-01-12 Thread Arno
Package: xserver-xfree86
Version: 4.3.0.dfsg.1-10
Severity: normal


Hello,

Since today i've got a problem when I start X-Window, I've got this message 
(the X server stop) :
the XKEYBOARD keymap compiler (xkbcomp) reports:

[...]
> Warning : Type "ONE_LEVEL" has 1 levels, but  has 2 symbols
Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server  
[...]

bye,


-- Package-specific info:
Contents of /var/lib/xfree86/X.roster:
xserver-xfree86

/etc/X11/X target unchanged from checksum in /var/lib/xfree86/X.md5sum.

X server symlink status:
lrwxrwxrwx  1 root root 20 2004-10-28 22:04 /etc/X11/X -> /usr/bin/X11/XFree86
-rwxr-xr-x  1 root root 1745740 2004-12-15 20:19 /usr/bin/X11/XFree86

Contents of /var/lib/xfree86/XF86Config-4.roster:
xserver-xfree86

VGA-compatible devices on PCI bus:
:01:00.0 VGA compatible controller: nVidia Corporation NV4 [RIVA TNT] (rev 
04)

/etc/X11/XF86Config-4 unchanged from checksum in 
/var/lib/xfree86/XF86Config-4.md5sum.

XFree86 X server configuration file status:
-rw-r--r--  1 root root 3516 2004-11-25 11:33 /etc/X11/XF86Config-4

Contents of /etc/X11/XF86Config-4:
# XF86Config-4 (XFree86 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 XF86Config-4 manual page.
# (Type "man XF86Config-4" at the shell prompt.)
#
# This file is automatically updated on xserver-xfree86 package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xfree86
# 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/XF86Config-4 /etc/X11/XF86Config-4.custom
#   md5sum /etc/X11/XF86Config-4 >/var/lib/xfree86/XF86Config-4.md5sum
#   dpkg-reconfigure xserver-xfree86

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/Speedo"
FontPath"/usr/lib/X11/fonts/100dpi"
FontPath"/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
Load"GLcore"
Load"bitmap"
Load"dbe"
Load"ddc"
Load"dri"
Load"extmod"
Load"freetype"
Load"glx"
Load"int10"
Load"record"
Load"speedo"
Load"type1"
Load"vbe"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "keyboard"
Option  "CoreKeyboard"
Option  "XkbRules"  "xfree86"
Option  "XkbModel"  "pc105"
Option  "XkbLayout" "fr"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device""/dev/psaux"
Option  "Protocol"  "ImPS/2"
Option  "Emulate3Buttons"   "true"
Option  "ZAxisMapping"  "4 5"
EndSection
Section "InputDevice"
Identifier  "Generic Mouse"
Driver  "mouse"
Option  "SendCoreEvents""true"
Option  "Device""/dev/input/mice"
Option  "Protocol"  "ImPS/2"
Option  "Emulate3Buttons"   "true"
Option  "ZAxisMapping"  "4 5"
EndSection

Section "Device"
Identifier  "nVidia Corporation NV4 [RIVA TNT]"
Driver  "nv"
EndSection

Section "Monitor"
Identifier  "Écran générique"
HorizSync   30-96
VertRefresh 50-160
Option  "DPMS"
EndSection

Section "Screen"
Identifier  "Default Screen"
Device  "nVidia Corporation NV4 [RIVA TNT]"
Monitor "Écran générique"
DefaultDepth24
SubSection "Display"
Depth   1
Modes   "1600x1200" "1280x1024" "1280x960" "1152x864" 
"1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth   4
Modes   "1600x1200" "1280x1024" "1280x960" "1152x864" 
"1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth   8
Modes   "1600x1200" "1280x1024" "1280x960" "1152x864" 
"1024x768" "800x6

Virus détecté dans le message. Refusé.

2005-01-12 Thread ssiadmin
Un virus a ete trouve dans le message

envoye par:  debian-x@lists.debian.org
a:  [EMAIL PROTECTED]

le: Wed, 12 Jan 2005 12:49:58 +0100
dont l'objet est: Re: improved

Informations trouvees sur le virus: Scenarios/CorruptData: 'Selected'.
Scenarios/Incoming/Content Scanner Sophos: Threat: 'W32/Netsky-N' detected by 
'Sophos AV Interface for MIMEsweeper'.
Scenarios/Exe-Java: 'Selected'.



Pour plus d'informations, contactez [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]